home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / pine430.zip / pine.hlp < prev    next >
Text File  |  2000-10-25  |  770KB  |  20,828 lines

  1. # $Id: pine.hlp,v 4.608 2000/10/25 16:17:31 hubert Exp $
  2. #
  3. #           T H E   P I N E    M E S S A G E   S Y S T E M
  4. #
  5. #   Laurence Lundblade, Mike Seibel, Mark Crispin, Steve Hubert,
  6. #      Sheryl Erez, David Miller, Stefan Kramer
  7. #   Networks & Distributed Computing
  8. #   Computing & Communications
  9. #   University of Washington
  10. #   Administration Building, Box 351208
  11. #   Seattle, Washington, 98195, USA
  12. #
  13. #   Email: pine@cac.washington.edu
  14. #
  15. #   Pine and Pico are trademarks of the University of Washington.
  16. #   Pine, Pico and Pilot Copyright 1989-2000  University of Washington
  17. #
  18. #   Additional legal notices are in the Release Notes below or
  19. #   at http://www.washington.edu/pine/legal.html
  20. #
  21. #   Pine was originally based in part on The Elm Mail System:
  22. #
  23. #    ***********************************************************************
  24. #    *       The Elm Mail System  -  Revision: 2.13                        *
  25. #    *                                                                     *
  26. #    *       Copyright (c) 1986, 1987 Dave Taylor                          *
  27. #    *       Copyright (c) 1988, 1989 USENET Community Trust               *
  28. #    ***********************************************************************
  29. #
  30. #
  31.          Help text for the Pine mailer
  32.  
  33. This file is in a format created to be turned into text strings in a C
  34. program.
  35.  
  36. NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE
  37.  
  38.      If you are familiar with versions of this file PRIOR to 
  39.      Pine 4.00 forget what you know.  No more '{' sensitivity.
  40.      No more escaping double-quote character.
  41.  
  42. NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE-NOTE
  43.  
  44. There are two shell scripts that run on this.  Cmplhelp.sh is the
  45. first and turns this into a C file (helptext.c) of text strings that
  46. are compiled and linked. The other program, cmplhlp2.sh, turns this
  47. into a .h file (helptext.h) with extern string definitions of the
  48. strings in the .c file.  The code that actually processes these files
  49. while pine is running is in help.c
  50.  
  51. The lines with "===== xxxx ====" divide the different help screens.  The
  52. xxx is the name of the variable that strings will be put in, which are
  53. also declared in helptext.h.
  54.  
  55. # is a comment
  56.  
  57. Help text screen text can be either plain text OR HTML.  The latter is
  58. denoted by the first line starting with "<HTML>".  The former is simply
  59. displayed as it's formatted here.
  60.  
  61. HTML is limited to simple formatting ala HTML 2.0.  No forms, or tables.
  62. In addition a small set of tools are are available to customize the HTML
  63. screen's text:
  64.  
  65. 1a)  Default and function key bindings are separated like this:
  66.  
  67. <!--chtml if pinemode="function_key"-->
  68.     Function key bindings here
  69. <!--chtml else-->
  70.     Default key bindings here
  71. <!--chtml endif-->
  72.  
  73.  
  74. 1b)  A way to distinguish HTML text that is to be displayed when
  75.      pine is running vs. when the text is served up outside Pine
  76.      (someday) can be done via:
  77.  
  78. <!--chtml if pinemode="running"-->
  79.    Text displayed when viewed within a running pine session
  80. <!--chtml else-->
  81.    Text displayed when HTML viewed outside pine (using chtml aware server)
  82. <!--chtml endif-->
  83.  
  84. 1c)  A way to distinguish HTML text that is to be displayed under
  85.      PC-Pine vs. not is available via:
  86.  
  87. <!--chtml if pinemode="os_windows"-->
  88.    Text displayed under PC-Pine
  89. <!--chtml else-->
  90.    Text displayed otherwise
  91. <!--chtml endif-->
  92.  
  93. WARNING ABOUT CHTML "if-else-endif" CLAUSES: They don't nest.
  94.  
  95. 2a) Several "server side include" commented elements are supported:
  96.  
  97. <!--#include file="textfile"--> 
  98.  
  99. The file "textfile" will be inserted into the HTML text directly.
  100. Pine does no formatting of the text.  At some point we might want to
  101. look at the first line for <HTML> but not today.
  102.  
  103. 2b) Various bits of Pine's running state can be inserted into the
  104. HTML text as well using the special comment:
  105.  
  106. <!--#echo var="variable"--> 
  107.  
  108. Where "variable" is one of either:
  109.  
  110.     PINE_VERSION
  111.     PINE_COMPILE_DATE
  112.     PINE_TODAYS_DATE
  113.     _LOCAL_FULLNAME_
  114.     _LOCAL_ADDRESS_
  115.     _BUGS_FULLNAME_
  116.     _BUGS_ADDRESS_
  117.     CURRENT_DIR
  118.     HOME_DIR
  119.  
  120. 3) The URL scheme "X-Pine-Gripe:" is available to insert links to
  121.    pine's composer such that various debugging data can be attached to the
  122.    message. Aside from normal email addresses, this can be set to
  123.    either "_LOCAL_ADDRESS_" for the configured local help address, or
  124.    "_BUGS_ADDRESS_" for the configured local bug reporting address.
  125.    Aside from the special tokens above, the default behavior only differs
  126.    from "mailto:" by the insertion of a special Subject: prefix that
  127.    consists of a randomly-generated token for tracking purposes.
  128.    Several optional parameters can be included to control what is
  129.    attached or offered for attachment to the message:
  130.  
  131.         ?config  --  Automatically attaches the user's configuration
  132.                      information to the trouble report
  133.         ?keys    --  Automatically attaches the user's most recent
  134.                      keystrokes
  135.         ?curmsg  --  Causes the user to get an offer to attach the
  136.                      current message to the trouble report
  137.         ?local   --  Automatically attaches the result of the script 
  138.                      defined by VAR_BUGS_EXTRAS
  139.  
  140. For HTML-format sections, the help screen dividers  "===== xxxx ====" must 
  141. contain one and only one space after the first and before the second set of 
  142. equal signs.
  143.  
  144. Note to authors of this file: to mark sections that need further revision, 
  145. please use the text string on the following line consistently so that it is 
  146. easy to find those places again in this file:
  147. *revision needed*
  148.  
  149. NOTE: Several sections of help text which weren't being used were removed
  150. at RCS version number 4.122.  In particular, there were some placeholders
  151. with help text for the config screen and the composer that didn't have any
  152. reasonable place to be called from.
  153.  
  154. ============= h_news =================
  155. <HTML>
  156. <HEAD>
  157. <TITLE>RELEASE NOTES for Pine</TITLE>
  158. </HEAD>
  159. <BODY>                 
  160. <H1>Pine Release Notes</H1>
  161. <CENTER>Version <!--#echo var="PINE_VERSION"-->
  162. <!--chtml if pinemode="running"-->
  163. (built <!--#echo var=PINE_COMPILE_DATE-->)
  164. <!--chtml endif-->
  165. <BR>University of Washington</CENTER><P>
  166.  
  167. <P>
  168. Pine® is the University of Washington's "Program for Internet
  169. News and Email". It is intended to be an easy-to-use program for
  170. sending, receiving, and filing Internet electronic mail messages and
  171. bulletin board (Netnews) messages.  There are versions that will run on
  172. many different flavors of the Unix® operating system, as well as a
  173. version with GUI amenities for 32-bit flavors of Microsoft Windows (95,
  174. 98, NT, 2000, and Millennium).
  175.  
  176.  
  177. <H2>New in Pine <!--#echo var="PINE_VERSION"--></H2>
  178.  
  179. Version <!--#echo var="PINE_VERSION"--> is an evolutionary release that 
  180. introduces both new functionality as well as addresses several bugs found 
  181. in earlier releases. 
  182. <P>
  183. Major new additions include:
  184. <P>
  185. <UL>
  186.   <LI> Configuration flexibility
  187.   <UL>
  188.     <LI> pine configurations can now be stored <A HREF="h_config_remote_config">remotely</A> on an imap server for access 
  189.          from different locations without the need to configure for each 
  190.          location.
  191.     <LI> configuration may be split into two parts: generic
  192.          configuration and <A HREF="h_config_exceptions">exceptional</A>,
  193.      per-platform configuration.
  194.     <LI> signatures can now be stored remotely or as part of the pinerc file
  195.     <LI> for configuration options which are lists,
  196.      <A HREF="h_config_inheritance">inheritance</A> is supported
  197.   </UL>
  198.   <LI> New security features
  199.   <UL>
  200.     <LI> SSL support for Unix Pine (source code only)
  201.     <LI> SSL enhancements for PC-Pine
  202.   </UL>
  203.   <LI> Minor rule enhancements
  204.   <UL>
  205.     <LI> status of a message (New, Deleted, etc.) can now be used as criteria
  206.          for pattern matching.
  207.     <LI> "move-only-if-not-deleted" option in filtering to lessen the chance
  208.          of messages being filtered more than once when running multiple
  209.          pine sessions.
  210.     <LI> ability to set <A HREF="h_config_role_setotherhdr">arbitrary headers</A>
  211.          in roles.
  212.     <LI> news filtering made more efficient.
  213.   </UL>
  214.   <LI> Basic <A HREF="h_index_sort_thread">threaded</A> sorting
  215.        (Expanded functionality to be added in a future version).
  216.   <LI> Enhanced MAPI support for PC-Pine
  217.   <LI> Various other new features and configuration options
  218.   <UL>
  219.     <LI> <A HREF="h_config_alt_compose_menu">alternate-compose-menu</A>
  220.     <LI> <A HREF="h_config_saved_msg_name_rule">by-replyto</A> for
  221.          saved-msg-name-rule
  222.     <LI> <A HREF="h_config_check_mail_onquit">check-newmail-when-quitting</A>
  223.     <LI> <A HREF="h_config_tab_no_prompt">continue-tab-without-confirm</A>
  224.     <LI> <A HREF="h_config_expose_hidden_config">expose-hidden-config</A>
  225.     <LI> <A HREF="h_config_expunge_manually">expunge-only-manually</A>
  226.     <LI> <A HREF="h_config_inc_startup">incoming-startup-rule</A> additions
  227.     <LI> <A HREF="h_config_literal_sig">literal-signature</A>
  228.     <LI> <A HREF="h_config_mark_for_cc">mark-for-cc</A>
  229.     <LI> <A HREF="h_config_prefer_plain_text">prefer-plain-text</A>
  230.     <LI> <A HREF="h_config_pruning_rule">pruning-rule</A>, for monthly
  231.          sent-mail renaming and deleting
  232.     <LI> <A HREF="h_config_quell_post_prompt">quell-extra-post-prompt</A>
  233.     <LI> hidden feature <A HREF="h_config_allow_chg_from">allow-changing-from</A>
  234.          defaults to on 
  235.   </UL>
  236.   <LI> New command line options:
  237.   <UL>
  238.     <LI> -p <pinerc>, pinerc can now refer to a remote mailbox which contains
  239.          the configuration file
  240.     <LI> -x <exception_config>, is how you override your default pinerc settings with exceptions for a particular platform, may be local or remote
  241.     <LI> -aux <local_auxiliary_files_directory>, allows you to tell Pine the local directory to use for auxiliary files when pinerc is remote (PC-Pine only)
  242.     <LI> -copy_pinerc and -copy_abook options
  243.     <LI> -v option
  244.   </UL>
  245. </UL>
  246. <P>
  247. Bugs that have been addressed in this release include:
  248. <P>
  249. <UL>
  250.   <LI> Incoming mail with an extremely long From address can cause a buffer overflow on the stack (security)
  251.   <LI> X-Keywords crash for unix formatted mailboxes
  252.   <LI> Composer word wrapping needlessly wraps words
  253.   <LI> New messages appear in zoomed view
  254.   <LI> "Bad msgno 0" filtering crash
  255.   <LI> "+" during login doesn't always mean that SSL is being used
  256.   <LI> news filtering refilters messages that had already been filtered
  257.   <LI> Goto and Save can't access folders that are readable but not listable
  258.   <LI> Goto doesn't allow access of folders outside of a Collection List
  259.   <LI> PC-Pine SSL functionality broken in Windows 2000/Millennium
  260.   <LI> FromOrTo and To in index-format don't work for newsgroups
  261.   <LI> Sorting by score doesn't always work
  262.   <LI> Viewing of very large messages uses more memory than is need
  263.   <LI> Loss of body for reply to multipart/signed mime messages
  264.   <LI> Pine crashes when replying to or forwarding messages with certain types
  265.        of attachments
  266.   <LI> Brackets are falsely recognized as url characters
  267.   <LI> Crash when enclosing options in quotes for PC-Pine
  268.   <LI> Newsgroup posting doesn't allow posting to additional news servers
  269. </UL>
  270. <P>
  271. Additional details on changes in this (and previous) versions of Pine
  272. may be found at the following URL:
  273. <P>
  274. <CENTER><SAMP><A HREF="http://www.washington.edu/pine/changes.html">http://www.washington.edu/pine/changes.html</A></SAMP></CENTER>
  275. <P>
  276.  
  277. <HR WIDTH="75%"><P>
  278.  
  279. <H2>Getting Help</H2>
  280. <DL>
  281. <DT>Online Help</DT>
  282. <DD>
  283. Every Pine screen and command has associated help text
  284. accessible via the "?" key (or Ctrl-G in text-input contexts).
  285. </DD>
  286.  
  287. <DT>Web Help</DT>
  288. <DD>
  289. The most current source of information about Pine,
  290. including new version availability, is the web page at
  291. <P>
  292. <CENTER><SAMP><A HREF="http://www.washington.edu/pine/">http://www.washington.edu/pine/</A></SAMP></CENTER>
  293. </DD>
  294. </DL>
  295.  
  296. Frequently Asked Questions (and answers) may be found at the following
  297. URL:
  298. <P>
  299. <CENTER><SAMP><A HREF="http://www.washington.edu/pine/faq/">http://www.washington.edu/pine/faq/</A></SAMP></CENTER>
  300. <P>
  301. Some topics of current interest include:
  302. <UL>
  303. <P><LI> Information on <A HREF="h_info_on_locking">Folder Locking</A>
  304. <P><LI> Information on <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A>
  305. <P><LI> Information on <A HREF="h_composer_cntxt_path">Folder Namespaces</A>
  306. <P>
  307. </UL>
  308.  
  309. <HR WIDTH="75%"><P>
  310.  
  311. <H2>Additional Information</H2>
  312.  
  313. General Pine configuration information can be found
  314. <A HREF="h_news_config">here</A>.
  315. <P>
  316. Pine is also available for Windows 32-bit environments.  More information
  317. on PC-Pine can be found <A HREF="h_news_pcpine">here</A>.
  318. <P>
  319. <P> 
  320. Pine was developed by the Office of Computing & Communications at
  321. the University of Washington in Seattle.  A more complete list of
  322. principal players and key contributors can be found on the credits Web
  323. page at
  324.  
  325. <P>
  326. <CENTER><A HREF="http://www.washington.edu/pine/credits.html">http://www.washington.edu/pine/credits</A></CENTER>
  327.  
  328. <P>
  329. Pine and Pico are trademarks of the University of Washington.
  330.  
  331. <P>
  332. Pine, Pico and Pilot Copyright 1989-2000 University of Washington
  333.  
  334. <P>
  335. Additional legal notices can be found <A HREF="h_news_legal">here</A>
  336. or at the web URL:
  337.  
  338. <P>
  339. <CENTER><A HREF="http://www.washington.edu/pine/legal.html">http://www.washington.edu/pine/legal</A></CENTER>
  340.  
  341. <P>
  342. <End of Release Notes>
  343. </BODY>
  344. </HTML>
  345. ====== h_news_pcpine ======
  346. <HTML>
  347. <HEAD>
  348. <TITLE>PC-Pine Notes</TITLE>
  349. </HEAD>
  350. <BODY>
  351. <H1>PC-Pine Notes</H1>
  352.  
  353. PC-Pine <!--#echo var="PINE_VERSION"--> is available for 32-bit
  354. Windows only.  While it is not a full GUI Windows
  355. application, it supports numerous GUI amenities, including:
  356. tool bar, scroll bar, pull-down menus, pop-up menus,
  357. expanded mouse support, etc.
  358.  
  359. <H2>New in PC-Pine 4.20</H2>
  360. <UL>
  361.   <LI> Built-in SSL support -- initiated via
  362.        <A HREF="h_valid_folder_names">/SSL</A> option in
  363.        bracketed server-name
  364.   <LI> More presentable startup
  365.   <LI> Current folder displayed in window title and icon text
  366.   <LI> Configurable input cursor shape
  367.   <LI> Context sensitive mouse cursor shape
  368.   <LI> Mouse vanishes while typing in composer and text input prompts
  369.   <LI> Window and Taskbar icon turn red with new mail notification
  370.     <BR>("<A HREF="h_config_tray_icon">enable-tray-icon</A>"
  371.         added for backward compatibility)
  372.   <LI> Selected URL offered for Pasting to clipboard in popup menu
  373.   <LI> Paste popup menu available in text input prompts
  374.   <LI> Ctrl-Shift-F accelerator added for WhereIs
  375.   <LI> Open folder no longer required before message sending
  376. </UL>
  377. <P>
  378. <B>New in PC-Pine 4.00:</B>
  379. <P>
  380. <UL>
  381.  <LI>Built-in LDAP directory service support.
  382. <P>
  383.  <LI>Remote addressbook support.  The addressbook can be stored on an
  384. IMAP server, so it can be accessed from different computers running
  385. Unix Pine or PC-Pine <!--#echo var="PINE_VERSION"-->.  See Setup/AddressBooks screen for more details.
  386. <P>
  387.  <LI>POP support (though not in traditional offline mode).
  388. <P>
  389.  <LI>Built-in spell checking.
  390. <P>
  391.  <LI>Integration with Windows registry simplifies configuration
  392. for attachment viewing and sending.
  393. <P>
  394.  <LI>Full READ-WRITE access to local Unix-style folders.
  395. <P>
  396. <H2>Problems with INBOX CLOSED DUE TO ACCESS ERROR messages</H2>
  397.  
  398. We have recently discovered that a combination of bugs in TCP/IP
  399. implementations can lead to these errors.  In particular, a problem
  400. with Microsoft's WINSOCK used by PC-Pine and a different problem with
  401. many Unix TCP implementations affecting IMAP server behavior may lead to
  402. this error.  A workaround is to change the mail-check-interval in the
  403. pinerc file on your PC from the default value of 150 seconds to 50
  404. seconds.
  405. <P>
  406. </UL>
  407. Additional notes:
  408. <P>
  409. <UL>
  410. <LI>
  411. While message folders may be either local or remote, Pine's support
  412. files must, generally speaking, be located on your PC's local disk.
  413. These files include Pine's configuration file (PINERC), signature file
  414. (PINE.SIG), interrupted message folder, and debug files.  Two files that 
  415. are by default also located on your PC's local disk <B>may</B> be instead 
  416. located on a remote host:
  417. <P>
  418. <OL>
  419.  <LI>  The postponed messages folder can be <A
  420.  HREF="h_config_postponed_folder">defined in the Setup/Config</A> to be
  421.  on an IMAP server.  This allows it to be accessible from both Unix
  422.  Pine and PC-Pine thus allowing you to, for example, begin composing a
  423.  message in Unix Pine, postpone it, and resume its composition later
  424.  with PC-Pine, provided that <B>both</B> Pine configurations specify the
  425.  <B>same</B> postponed messages folder location.  For example:
  426.  <P>
  427.  <CENTER><SAMP>{myIMAPhost.myschool.k12.wa.us}mail/postponed</SAMP></CENTER>
  428.  
  429.  <LI>It's also possible, depending on your local system configuration, to
  430.  arrange remote access to your NEWSRC as well.  The advantage, as with
  431.  the postponed message folder, is that both Unix Pine and PC-Pine can
  432.  refer to the same information. See the Main Menu's help text section on
  433.  "<A HREF="main_menu_tx#read_news">Reading News</A>"
  434.  for more information.
  435. </OL>
  436.  
  437. <P>
  438. <LI> The PC-Pine message folder format is based on byte-counts for maximum
  439.  efficiency, so they must not be edited. The format is non-standard, but
  440.  conversion utilities would not be difficult. This format is supported in
  441.  Unix Pine as well.
  442.  
  443. </UL>
  444.  
  445. <P>
  446. <End of PC-Pine Notes>
  447. </BODY>
  448. </HTML>
  449. ====== h_news_config ======
  450. <HTML>
  451. <HEAD>
  452. <TITLE>Pine Configuration</TITLE>
  453. </HEAD>
  454. <BODY>
  455. <H1>Pine Configuration</H1>
  456.  
  457. <H2>Configuration precedence</H2>
  458.  
  459. There are several levels of Pine configuration.  Configuration values at
  460. a given level override corresponding values at lower levels.  In order of
  461. increasing precedence:
  462. <P>
  463. <UL>
  464.  <LI> built-in defaults
  465.  <LI> system-wide
  466. <!--chtml if pinemode="os_windows"-->
  467.       config file from command line or provided
  468.       by "PINECONF" environment variable
  469. <!--chtml else-->
  470.       pine.conf file
  471. <!--chtml endif-->
  472.  <LI> personal configuration file
  473.  <LI> personal exceptions configuration file
  474.  <LI> command-line options
  475.  <!--chtml if pinemode="os_windows"--><!--chtml else-->
  476.  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
  477. </UL>
  478. <P>
  479. The values in both the personal configuration file and the
  480. <A HREF="h_config_exceptions">exceptions</A>
  481. configuration file may be set using the Setup command.
  482. Setup/Config is the command to change most of the personal configuration
  483. options.
  484. The other Setup subcommands are also used to change the configuration,
  485. for example, Setup/AddressBook, Setup/Rules, and so on.
  486. Changing the personal exceptions configuration is very similar.
  487. To change a value in the Config screen you would use the command
  488. Setup/eXceptions/Config.
  489. Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
  490. <P>
  491. There are a couple exceptions to the rule that configuration values are replaced
  492. by the value of the same option in a higher-precedence file.
  493. The feature-list variable has values that are additive, but can be
  494. negated by prepending "no-" in front of an individual feature name.
  495. So for features, each individual feature's value is replaced by the value
  496. of the same feature in a higher-precedence file.
  497. Note that this is done automatically for you when you change these values via
  498. the Setup/Config command.
  499. The other exception to the <EM>replace</EM> semantics happens when you
  500. use <A HREF="h_config_inheritance">configuration inheritance</A>
  501. for option lists.
  502.  
  503. <H2>File name defaults</H2>
  504.  
  505. Notes:<P>
  506.  
  507. <BR> <exe dir> = directory where pine.exe found.
  508. <BR> <pinerc dir> = directory where pinerc found.
  509. <BR> # = default file name is overridable in pinerc.
  510. <BR> $HOME, if not explicitly set, defaults to root of the current drive.
  511. <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
  512. <BR> + between the mailcap paths implies that the two files are combined.
  513. <BR> ; between other default paths implies that the first one found is used.
  514. </P>
  515. Pine looks for most support files in the same directory it finds its
  516. personal configuration file (pinerc).  The -p command-line flag may be
  517. used to specify a particular path name for the pinerc file.  If a
  518. pinerc file does not exist, it will be created (if directory permissions
  519. allow).  In PC-Pine, if -p or $PINERC are not defined, Pine will look
  520. in $HOME\PINE and the directory containing the PINE.EXE.  If a PINERC
  521. file does not exist in either one, it will create one in the first of those
  522. two directories that is writable.  In detail:
  523. <PRE>
  524.  
  525. PC-Pine:
  526.  
  527.  executable     <DOS search path>\pine.exe
  528.  help index     <exe dir>\pine.ndx
  529.  help text      <exe dir>\pine.hlp
  530.  
  531.  pers config    $PINERC  ;  $HOME\pine\PINERC  ;  <exe dir>\PINERC
  532.  except config  $PINERCEX ; $HOME\pine\PINERCEX  ;  <exe dir>\PINERCEX
  533.  global cfg     $PINECONF
  534.  
  535.  password       <pinerc dir>\pine.pwd
  536.  debug          <pinerc dir>\pinedebg.txt
  537.  crash          <pinerc dir>\pinecrsh.txt
  538.  signature#     <pinerc dir>\pine.sig
  539.  addressbook#   <pinerc dir>\addrbook
  540.  addrbook lu    <pinerc dir>\addrbook.lu    (appends .lu to addrbk name.)
  541.  mailcap#       <pinerc dir>\mailcap  +  <exe dir>\mailcap
  542.  mimetypes#     <pinerc dir>\mimetype +  <exe dir>\mimetype
  543.  newsrc#        $HOME\newsrc (if exists, else) <pinerc dir>\newsrc
  544.  sentmail#      $HOME\mail\sentmail.mtx
  545.  postponed#     $HOME\mail\postpond.mtx
  546.  interrupted    $HOME\mail\intruptd
  547.  
  548. Unix Pine:
  549.  
  550.  executable     <Unix search path>/pine
  551.  persnl cfg     ~/.pinerc
  552.  except cfg     ~/.pinercex
  553.  global cfg     /usr/local/lib/pine.conf
  554.  fixed cfg      /usr/local/lib/pine.conf.fixed
  555.  local help     /usr/local/lib/pine.info
  556.  
  557.  interrupted    ~/.pine-interrupted-mail
  558.  debug          ~/.pine-debugN
  559.  crash        ~/.pine-crash
  560.  newsrc#        ~/.newsrc
  561.  signature#     <pinerc dir>/.signature
  562.  addressbook#   <pinerc dir>/.addressbook
  563.  addrbook lu    <pinerc dir>/.addressbook.lu  (appends .lu to addrbk name.)
  564.  postponed#     ~/mail/postponed-msgs
  565.  sentmail#      ~/mail/sent-mail
  566.  mailcap#       ~/.mailcap + /etc/mailcap
  567.                            + /usr/etc/mailcap + /usr/local/etc/mailcap
  568.  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
  569.  
  570.  news-spool    varies across Unix flavors, e.g. /usr/spool/news or /var/news
  571.  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
  572.  lock files     /tmp/.\usr\spool\mail\xxxx
  573.  inbox          /usr/spool/mail/xxxx
  574.  password       /etc/passwd
  575.  
  576. Unix Pine and PC-Pine:
  577.  
  578.  .ab*           remote addressbook support files
  579.  a[1-9]*        temporary (while Pine is running) addressbook files
  580.  
  581. </PRE>
  582.  
  583. <H2>Mailcap files</H2>
  584.  
  585. Pine honors the mailcap configuration system for specifying external
  586. programs for handling attachments.  The mailcap file maps MIME attachment
  587. types to the external programs loaded on your system which can display
  588. and/or print the file.  A sample mailcap file comes bundled with the Pine
  589. distribution.  It includes comments which explain the syntax you need to
  590. use for mailcap.  With the mailcap file, any program (mail readers,
  591. newsreaders, WWW clients) can use the same configuration for handling
  592. MIME-encoded data.
  593.  
  594. <H2>MIME-Types files</H2>
  595.  
  596. Pine uses mime-types files (.mime.types or MIMETYPE) to determine
  597. what Content-Type to use for labeling an attached file, based on
  598. the file extension.  That is, this file provides a mapping between
  599. filename extensions and MIME content-types.
  600.  
  601. <H2>Environment variables</H2>
  602.  
  603. PC-Pine uses the following environment variables:
  604. <DL>
  605. <DT>PINERC</DT>
  606. <DD>Optional path to pinerc file.</DD>
  607. <DT>PINERCEX</DT>
  608. <DD>Optional path to personal exceptions configuration file.</DD>
  609. <DT>PINECONF</DT>
  610. <DD>Optional path to global pine config file.</DD>
  611. <DT>HOME</DT>
  612. <DT>TMP or TEMP</DT>
  613. <DT>COMSPEC</DT>
  614. <DT>MAILCAPS</DT>
  615. <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
  616. <DT>USER_DICTIONARY</DT>
  617. <DD>Used to specify the file to contain the user's spell check
  618. dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
  619. directory as the <SAMP>SPELL32.DLL</SAMP></DD>
  620. </DL>
  621.  
  622. Unix Pine uses the following environment variables:
  623. <DL>
  624. <DT>TERM</DT>
  625. <DD>Tells Pine what kind of terminal is being used.</DD>
  626. <DT>DISPLAY</DT>
  627. <DD>Determines if Pine will try to display IMAGE attachments.</DD>
  628. <DT>SHELL</DT>
  629. <DD>If not set, default is "/bin/sh".</DD>
  630. <DT>MAILCAPS</DT>
  631. <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
  632. </DL>
  633. <!--chtml if pinemode="os_windows"-->
  634. <H2>Common PC-Pine Configuration Problems</H2>
  635.  
  636. <H3>Configuration settings aren't being saved</H3>
  637.  
  638. <P>This problem can happen if you run pine from one directory and
  639. then decide to move your pine directory to another location.  PC-Pine
  640. stores certain variables, including the configuration location, in the
  641. Windows Registry (which you shouldn't ever need to manually edit).  There
  642. are a couple of ways to go about removing or resetting the values in the
  643. registry.
  644.  
  645. <P>
  646. 1) Run PC-Pine's registry value deletion command.  This can be done by
  647. running: "<your pine directory>\pine.exe -registry clear" from the DOS
  648. prompt. You could create a shortcut to pine.exe and change the "Target"
  649. value to the above command.
  650.  
  651. <P>
  652. 2) Tell PC-Pine where to look for the configuration file.  Configuration
  653. information is stored in a file called the PINERC.  With the "-p PINERC"
  654. option, you can tell PC-Pine the location of your pinerc.  An example of
  655. this would be to run: "<your pine directory>\pine.exe -p C:\pine\mypinerc".
  656. Again, you can use the DOS prompt or the shortcut method explained in (1).
  657.  
  658. <P>
  659. Additionally, there is the "-registry set" option, which will actively
  660. set registry values to the current setting, and is therefore useful with
  661. the "-p PINERC" option.
  662.  
  663. <!--chtml endif-->
  664. <P>
  665. <End of Configuration Notes>
  666. </BODY>
  667. </HTML>
  668. ====== h_news_legal ======
  669. <html>
  670. <head>
  671. <TITLE>Pine Legal Notices</TITLE>
  672. </head>
  673. <body>
  674.  
  675. <H1>Pine Legal Notices</H1>
  676.  
  677. Pine and Pico are registered trademarks of the University of Washington.
  678. No commercial use of these trademarks may be made without prior written
  679. permission of the University of Washington.
  680. <P>
  681. Pine, Pico, and Pilot software and its included text are Copyright
  682. 1989-2000 by the University of Washington. 
  683. <P>
  684. Use of Pine/Pico/Pilot:  You may compile and execute these programs for
  685. any purpose, including commercial, without paying anything to the
  686. University of Washington, provided that the legal notices are maintained
  687. intact and honored.
  688. <P>
  689. Local modification of this release is permitted as follows, or by mutual
  690. agreement: In order to reduce confusion and facilitate debugging, we
  691. request that locally modified versions be denoted by appending the letter
  692. "L" to the current version number, and that the local changes be
  693. enumerated in the integral release notes and associated documentation.
  694. <P>
  695. Redistribution of this release is permitted as follows, or by mutual
  696. agreement:<BR>
  697.  (a) In free-of-charge or at-cost distributions by non-profit concerns;<BR>
  698.  (b) In free-of-charge distributions by for-profit concerns;<BR>
  699.  (c) Inclusion in a CD-ROM collection of free-of-charge, shareware, or
  700.       non-proprietary software for which a fee may be charged for the 
  701.       packaged distribution.
  702. <P>
  703. Redistribution of binary versions is further constrained by license agreements
  704. for incorporated libraries from third parties, e.g. LDAP, GSSAPI.
  705. <P>
  706. The University of Washington encourages unrestricted distribution of 
  707. individual patches to the Pine
  708. system.  By "patches" we mean "difference" files 
  709. that can be applied
  710. to the University of Washington Pine source distribution in order to 
  711. accomplish bug fixes, minor
  712. enhancements, or adaptation to new operating systems.  Submission of these
  713. patches to University of Washington for possible inclusion in future 
  714. Pine versions is also
  715. encouraged.
  716. <P>
  717. The above permissions are hereby granted, provided that the Pine and Pico
  718. copyright and trademark notices appear in all copies and that both the
  719. above copyright notice and this permission notice appear in supporting
  720. documentation, and that the name of the University of Washington not be
  721. used in advertising or publicity pertaining to distribution of the
  722. software without specific, prior written permission.  This software is
  723. made available "as is", and
  724. <P>
  725. THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  726. WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  727. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  728. NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  729. INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  730. LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  731. (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN
  732. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 
  733.  
  734.  
  735.  
  736. <P>
  737. <End of Pine Legal Notices>
  738. </BODY>
  739. </HTML>
  740. ===== h_news_bugs =====
  741. <HTML>
  742. <HEAD>
  743. <TITLE>Bug fixes in <!--#echo var="PINE_VERSION"--></TITLE>
  744. </HEAD>
  745. <BODY>
  746.  
  747. <H1>Bug Fixes in <!--#echo var="PINE_VERSION"--></H1>
  748.  
  749. The bugs found, reported and fixed in this version of Pine include:
  750. <P>
  751. <UL>
  752. <LI> fixed Fcc: vs. ^T vs. file existence confusion
  753. <LI> fixed hang when mail-check-interval set to zero
  754. <LI> Tab completion made more consistent
  755. <LI> fixed to allow attaching file names containing commas
  756. <LI> Selected in Folder List preserved in all cases
  757. <LI> improved accuracy of NextNew processing
  758. <LI> adjacent folder becomes selected when Folder List entry deleted
  759. <LI> leading newlines suppressed with empty reply-leadin
  760. <LI> Role processing now applies to Forward command
  761. <LI> Role processing now applies to mailto: handling
  762. <LI> folder list's disappearing INBOX
  763. <LI> text paging preserved when screen resized
  764. <LI> PC-Pine failure to cache large (> 16k) fetches
  765. <LI> potential loss of postponed message when INBOX open failed
  766. <LI> potential loss of .interrupted-mail when telnet session lost
  767. <LI> crash when From address deleted from postponed message
  768. <LI> LOGIN referral failure
  769. <LI> safer method used to spin bar in wait indicator
  770. <LI> improved listmode performance in newsgroup selection
  771. <LI> zoomed Message Index now printable
  772. <LI> bug causing incorrect Message Index after sort
  773. </UL>
  774.  
  775. <P>
  776. <End of Fixed Bug List>
  777. </BODY>
  778. </HTML>
  779. ===== h_info_on_mbox =====
  780. <HTML>
  781. <HEAD>
  782. <TITLE>Information on mbox driver</TITLE>
  783. </HEAD>
  784. <BODY>
  785. <H1>Information on "Missing Mail" and the "mbox" driver</H1>
  786.  
  787. Beginning with Pine 4.00 (but also with earlier versions of the
  788. University of Washington's imapd server), a new INBOX access method is
  789. available as part of the standard configuration.  It is called the
  790. "mbox" driver and it works like this:<P>
  791.  
  792. <P>
  793. <BLOCKQUOTE>
  794. If the file "mbox" exists in the user's home directory, and
  795. is in Unix mailbox format, then when INBOX is opened this file will be
  796. selected as INBOX instead of the mail spool file.  Messages will be
  797. automatically transferred from the mail spool file into the mbox
  798. file. Beginning with Pine 4.01, a message is displayed whenever Pine
  799. copies messages from the system mail spool directory to the mbox
  800. file.
  801. </BLOCKQUOTE>
  802.  
  803. <P>
  804. The advantage of this method is that, after new mail has been copied
  805. from the system mail spool, all subsequent access is confined to the
  806. user's home directory, which is desirable on some systems.  However, a
  807. possible disadvantage is that mail tools other than those from the
  808. University of Washington will not know to look for mail in the user's
  809. mbox file.  For example, POP or IMAP servers other than those from the
  810. University of Washington, and many "new mail notification"
  811. programs may not work as expected with this driver enabled.<P>
  812.  
  813. To disable this behavior, either remove/rename the "mbox"
  814. file or find the "disable-these-drivers=" variable in your
  815. Pine configuration file and add "mbox" to it.  You must
  816. manually edit the config file so that you see the following:<P>
  817. disable-these-drivers=mbox
  818.  
  819. <P>
  820. <End of help on this topic>
  821. </BODY>
  822. </HTML>
  823. ===== h_info_on_locking =====
  824. <HTML>
  825. <HEAD>
  826. <TITLE>FAQs on Pine Locking</TITLE>
  827. </HEAD>
  828. <BODY>
  829. <H1>What Systems Managers Need to Know about Pine File Locking</H1>
  830.  
  831. There is an extensive section on locking in the Pine technical notes;
  832. this information is intended to provide answers to some common questions:<P>
  833. <OL>
  834. <LI> Why did locking change in Pine 4.00?<BR>
  835. The actual locking mechanisms did not change in 4.00.
  836. What changed is that when one particular locking mechanism used by Pine 
  837. fails, Pine now issues a warning message.  Prior to 4.00, the locking
  838. failure would occur, but no warning was issued.<P>
  839.  
  840. <LI> Is this what the "Mailbox vulnerable" message is about?<BR>
  841. Yes.  It means that Pine was unable to create a lockfile in the
  842. spool directory, generally because of overly restrictive protections on the
  843. spool directory.  The correct permissions on the spool directory for
  844. running Pine are 1777, i.e. read-write-execute permission for everyone,
  845. with the sticky-bit set, so only owners of a file can delete them.<P>
  846.  
  847. <LI> Why does Pine require that the mail spool directory have 1777
  848.    protections?<BR>
  849. Pine was designed to run without special privileges.  This means that in
  850. order to create a lockfile in the spool directory, it is necessary to have
  851. the spool directory permissions be world-writable.<P>
  852.  
  853. <LI> Can't you create the lockfile somewhere else?<BR>
  854. No.  The lockfile in question must be in the mail spool directory, because
  855. that's where the mail delivery program expects to find it, and the purpose
  856. of the file is to coordinate access between the mail client (Pine) and the
  857. mail delivery program.<P>
  858.  
  859. <LI> Isn't having the spool directory world-writable a big security risk?<BR>
  860. No.  Remember that the individual mail files in the spool directory are
  861. NOT world-writable, only the containing directory.  Setting the "sticky
  862. bit" -- indicated by the "1" before the "777" mode 
  863. -- means that only the owner of the file (or root) can delete files in the 
  864. directory.  So the only bad behavior that is invited by the 1777 mode is that 
  865. anyone could
  866. create a random file in the spool directory.  If the spool directory is
  867. under quota control along with home directories, there is little incentive
  868. for anyone to do this, and even without quotas a periodic scan for
  869. non-mail files usually takes care of the problem.  <P>
  870.  
  871. <LI> Why not run Pine as setgid mail?<BR>
  872. Pine was never designed to run with privileges, and to do so introduces a
  873. significant security vulnerability.  For example, if a user suspends Pine,
  874. the resulting shell will have group privileges.  This is one example of
  875. why we strongly recommend against running Pine as a privileged program.
  876. In addition, a "privileged mailer " paradigm would mean that normal 
  877. users
  878. could not test Pine versions or other mailers that had not been installed
  879. by the system administrators.<P>
  880.  
  881.  
  882. <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
  883. There are, but they all have different sets of tradeoffs, and not all will
  884. work on all systems.  Some examples:<UL>
  885.  <LI> Use lock system calls.  Works fine on a few systems, provided mail
  886.    spool is local.   Doesn't work reliably if NFS is used.
  887.    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
  888.    use the same calls.
  889.  <LI> Deliver mail to user's home directory.  An excellent solution, highly
  890.    recommended -- but one which is incompatible with some "legacy" 
  891. mail tools that always look in the spool directory for the mail.
  892. </UL><P>
  893.  
  894. <LI> Are these spool directory lock files the only kinds of locks used by
  895.    Pine?<BR>
  896. No.  Pine also creates lockfiles in the /tmp directory.  For normal Unix
  897. mailbox format folders, these are used to coordinate access between
  898. multiple Pine sessions.  <P>
  899.  
  900. <LI> What about the 
  901. <A HREF="h_config_quell_lock_failure_warnings">"quell-lock-failure-warnings"</A> feature added in Pine 4.01?<BR>
  902. This is for people who are content to live dangerously, or who have
  903. specific knowledge that the spool directory lockfiles are superfluous on
  904. their system (because both Pine and the mail delivery program are using 
  905. system call file locking in a context that works reliably, e.g. not NFS.)<P>
  906.  
  907. <LI> Where can I find more details on how Pine locking works?<BR>
  908. See the Pine Technical Notes.<P>
  909.  
  910. </OL>
  911. <P>
  912. <End of help on this topic>
  913. </BODY>
  914. </HTML>
  915. ===== h_finding_help ====
  916. <HTML>
  917. <HEAD>
  918. <TITLE>Finding more information and requesting help</TITLE>
  919. </HEAD>
  920. <BODY>
  921. <H1>Places to Look for More Answers</H1>
  922. If you have questions about or problems with Pine that you cannot resolve 
  923. after consulting the program's internal, context-sensitive help screens, here 
  924. are additional information resources that you may find helpful:
  925. <P>
  926. <UL>
  927.   <LI> Pine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
  928. listing of changes in Pine <!--#echo var="PINE_VERSION"-->
  929.   since the last version, which may be useful for you to be aware of, 
  930. <B>especially</B> if a "problem" you are encountering is actually 
  931. a change in the way an aspect of Pine works.  There, you will also find notes 
  932. on Pine configuration.<P>
  933.  
  934.   <LI> The Pine Information Center (maintained by the University of
  935.        Washington) World Wide Web site contains, among other things
  936.        <UL>
  937.        <LI>a collection of Frequently Asked Questions (and answers!) about Pine
  938.        <LI>an overview of the basics for beginning Pine users
  939.        <LI>Technical Notes for systems administrators
  940.        <LI>archives (including a searchable index) of the pine-info 
  941. mailing list, on which matters of interest to systems/email administrators,
  942. developers, trainers, user support personnel, and others involved with Pine 
  943. messaging on a "technical" level are discussed.
  944. </UL>
  945.     The Pine Information Center can be accessed with a WWW browser at:<P>
  946.         <CENTER><A HREF="http://www.washington.edu/pine/">http://www.washington.edu/pine/</A></CENTER>  
  947. </UL>
  948. <P><HR WIDTH="75%">
  949. <H1>Requesting help</H1>
  950. If the internal help, the Release Notes, the Pine Information Center, and your 
  951. local online and print resources do not help you resolve a problem, please
  952. start by contacting your local computer support staff and asking for help.
  953. <p>
  954. This is especially true if:
  955. <ul>
  956.   <li>You suddenly have trouble sending or receiving mail.
  957.   <li>You receive a "disk quota exceeded" message.
  958.   <li>You have forgotten your password.
  959.   <li>You think your account may have been compromised.
  960.   <li>You need help viewing an attachment.
  961.   <li>You need to know how to configure your:
  962.       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
  963.       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
  964.       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
  965.       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
  966.   <li>You want to know what alternative editors or spellcheckers you may be able to use.
  967.   <li>You want to block email from a particular person.
  968.   <li>You're going on vacation and need to autorespond to incoming mail.
  969.   <li>You want to automatically file or filter incoming messages.
  970. </ul>
  971.  
  972. In all of these cases,
  973. you should contact <B>your</B> support staff, because <B>only they</B> 
  974. will be able to assist you effectively. Your support staff may be, depending on who 
  975. provides you with the email account you use Pine with, for example:<UL>
  976. <LI> the computing help desk of (a department of) your university, school, 
  977. employer, ... ; or
  978. <LI> the customer service center of your Internet Service Provider; or
  979. <LI> the friendly volunteer helpers of your Freenet; or
  980. <LI> the person who setup your computer and internet connection.
  981. </UL>
  982.  
  983. Due to the large number of Pine installations worldwide, and because we
  984. receive no funding for it, the Pine development team <B>cannot provide 
  985. individual support services outside the University of Washington</B>.
  986. <P>
  987. If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
  988. newsgroup can be a valuable source of information and assistance for Pine 
  989. user issues.
  990. <P>
  991. For systems/email administrators, developers, trainers, user support
  992. personnel, and others involved with Pine messaging on a "technical"
  993. level, the mailing list pine-info is available; for information on
  994. subscribing and posting to it, see
  995. <P>
  996. <CENTER><A HREF="http://www.washington.edu/pine/pine-info/subscribing.html">http://www.washington.edu/pine/pine-info/subscribing.html</A></CENTER>
  997. <P>
  998.  
  999. Regardless of whom you are asking for help with Pine, remember 
  1000. to provide as much detail as you can about the
  1001. nature of any problem you are encountering, such as
  1002. <UL>
  1003. <LI>when it first occurred;
  1004. <LI>what, if anything, happened that might have brought it about;
  1005. <LI>whether it still persists;
  1006. <LI>whether it is reproducible, and if so, how;
  1007. <LI>what, if anything, you already tried to solve it.
  1008. </UL> 
  1009. It may also be helpful if you specify what version of Pine you are using 
  1010. <!--chtml if pinemode="running"-->
  1011. -- this is <!--#echo var="PINE_VERSION"--> --
  1012. <!--chtml endif-->
  1013. and on what system, and when the copy of Pine you are using was created
  1014. <!--chtml if pinemode="running"-->
  1015. -- for this copy: <!--#echo var=PINE_COMPILE_DATE-->
  1016. <!--chtml endif-->
  1017.  
  1018. <!--chtml if pinemode="running"-->
  1019. <P>   
  1020. When the Pine program you are currently using was installed, a support
  1021. contact email address may have been set up; in that case, you can simply select
  1022. this link now to send a message to it:<BR>
  1023. <A HREF="X-Pine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
  1024. <!--chtml endif-->
  1025. <!--chtml if [ -r /usr/local/lib/pine.info ]-->
  1026. <HR WIDTH="75%">Local Support Contacts:<P>
  1027. <!--#include file="/usr/local/lib/pine.info"-->
  1028. <HR WIDTH="75%">
  1029. <!--chtml endif-->
  1030. <P> 
  1031. <End of help on this topic>
  1032. </BODY>
  1033. </HTML>
  1034. ===== new_user_greeting ======
  1035. <HTML>
  1036. <HEAD>
  1037. <TITLE>NEW USER GREETING</TITLE>
  1038. </HEAD>
  1039. <BODY>
  1040. <CENTER><<<This message will appear only once>>></CENTER>
  1041. <BR>
  1042. <H1>Welcome to Pine ... a Program for Internet News and Email</H1>
  1043. We hope you will explore Pine's many capabilities. From the Main Menu,
  1044. select Setup/Config to see many of the options available to you. Also note
  1045. that all screens have context-sensitive help text available.<P>
  1046. <!--chtml if pinemode="phone_home"-->
  1047. SPECIAL REQUEST:
  1048. This software is made available world-wide as a public service of the
  1049. University of Washington in Seattle.  In order to justify continuing
  1050. development, it is helpful to have an idea of how many people are using
  1051. Pine.  Are you willing to be counted as a Pine user?  Pressing 
  1052. <A HREF="X-Pine-Phone-Home:">Return</A>
  1053. will send an anonymous (meaning, your real email address will not be revealed) 
  1054. message to the Pine development team at the University of Washington for 
  1055. purposes of tallying.
  1056. <P>
  1057. <!--To Exit this screen and continue your Pine session press "E".-->
  1058. <!--chtml else-->
  1059. To Exit this screen and continue your Pine session press "Return".
  1060. <!--chtml endif-->
  1061. <CENTER>Pine is a trademark of the University of Washington.</CENTER>
  1062. </BODY>
  1063. </HTML>
  1064. ===== new_version_greeting ======
  1065. <HTML>
  1066. <HEAD>
  1067. <TITLE>NEW VERSION GREETING</TITLE>
  1068. </HEAD>
  1069. <BODY>
  1070. <CENTER><<<This message will appear only once>>></CENTER>
  1071. <BR>
  1072. <H1>Welcome to Pine version <!--#echo var="PINE_VERSION"-->!</H1>
  1073. Your Pine configuration file indicates that you may not have used 
  1074. this version of Pine before.  This version's significant changes are
  1075. documented in the Release Notes, which may be viewed by pressing 
  1076. "R" now or while in the Main Menu.
  1077. <P>
  1078. <!--chtml if pinemode="phone_home"-->
  1079. SPECIAL REQUEST: 
  1080. This software is made available world-wide as a public service of the
  1081. University of Washington in Seattle.  In order to justify continuing
  1082. development, it is helpful to have an idea of how many people are using
  1083. Pine.  Are you willing to be counted as a Pine user?  Pressing 
  1084. <A HREF="X-Pine-Phone-Home:">Return</A>
  1085. will send an anonymous (meaning, your real email address will not be revealed) 
  1086. message to the Pine development team at the University of Washington for 
  1087. purposes of tallying.
  1088.  
  1089. <!--To Exit this screen and continue your Pine session press "E".-->
  1090. <!--chtml else-->
  1091. To Exit this screen and continue your Pine session press "Return".
  1092. <!--chtml endif-->
  1093. <P>
  1094. <CENTER>Pine is a trademark of the University of Washington.</CENTER>
  1095. </BODY>
  1096. </HTML>
  1097.  
  1098. ===== main_menu_tx ======
  1099. <HTML>
  1100. <HEAD>
  1101. <TITLE>GENERAL INFORMATION ON THE PINE MESSAGE SYSTEM</TITLE>
  1102. </HEAD>
  1103. <BODY>
  1104. <H1>GENERAL INFORMATION ON THE PINE MESSAGE SYSTEM</H1>
  1105. <CENTER>Version <!--#echo var="PINE_VERSION"-->
  1106. <!--chtml if pinemode="running"-->
  1107. (built <!--#echo var=PINE_COMPILE_DATE-->)
  1108. <!--chtml endif-->
  1109. <BR>University of Washington</CENTER>
  1110.  
  1111. <H2>TABLE OF CONTENTS</H2>
  1112. <OL>
  1113.   <LI> <A HREF="#intro">Introduction</A>
  1114.   <LI> <A HREF="#pine_help">Pine Help</A>
  1115. <!--chtml if [ -r /usr/local/lib/pine.info ]-->
  1116.   <LI> <A HREF="#local_support">Local Support Contacts</A>
  1117. <!--chtml endif-->
  1118.   <LI> <A HREF="#giving_cmds">Giving Commands in Pine</A>
  1119.   <LI> <A HREF="#status_line">Status Line</A>
  1120.   <LI> <A HREF="#main_menu">Main Menu</A>
  1121.  
  1122.   <li> <a href="#addressbooks">Address Books</a>
  1123.   <li> <a href="#ldap">LDAP</a>
  1124.   <li> <a href="#index">Index of Messages</a>
  1125.   <li> <a href="#messages">Reading Messages</a>
  1126.   <li> <a href="#compose">Composing Messages</a>
  1127.   <li> <a href="#collection">Collection List</a>
  1128.   <li> <a href="#folders">Folder List</a>
  1129.   <li> <a href="#color">Color</a>
  1130.   <li> <a href="#roles">Roles</a>
  1131.   <li> <a href="#filtering">Filtering</a>
  1132.   <li> <a href="#patterns">Patterns</a>
  1133.  
  1134.   <LI> <A HREF="#cmd_line">Command Line Options</A>
  1135.   <LI> <A HREF="#pine_conf">Pine Configuration</A>
  1136.   <LI> <A HREF="#read_news">Reading News</A>
  1137.   <LI> <A HREF="#probs">Reporting Problems</A>
  1138.  
  1139.   <li> <a href="h_help_index">Index to Pine's Online Help</a>
  1140. </OL>
  1141.  
  1142. <H2><A NAME="intro">Introduction</A></H2>
  1143.  
  1144. Pine® is the University of Washington's "Program for Internet
  1145. News and Email".  It is intended to be an easy-to-use program for
  1146. sending, receiving, and filing Internet electronic mail messages and
  1147. bulletin board (Netnews/Usenet) messages. Pine supports the following
  1148. Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
  1149. NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
  1150. Extensions), and IMAP (Internet Message Access Protocol).<p>
  1151.  
  1152. Although originally designed for inexperienced email users, Pine has
  1153. evolved to support many advanced features.  There are an ever-growing
  1154. number of configuration and personal-preference options, though which of
  1155. them are available to you is determined by your local system managers. 
  1156.  
  1157. <H3>WHAT PINE DOES...</H3>
  1158.  
  1159. Pine is a "mail user agent" (MUA), which is a program that
  1160. allows you to
  1161. compose and read messages using Internet mail standards.  (Whether you
  1162. can correspond with others on the Internet depends on whether or not your
  1163. computer is connected to the Internet.)  Pine also allows reading and
  1164. posting messages on the Internet "net news" system, provided
  1165. that your site operates a suitable news server.
  1166.  
  1167. <H3>WHAT PINE DOES <EM>NOT</EM> DO...</H3>
  1168.  
  1169. A "mail user agent" such as Pine is just one part of a
  1170. messaging system. Here are some things that are <B>not</B> done by Pine,
  1171. but require other programs:<P>
  1172. <UL>
  1173.  <LI> Actual relaying of email... which is done by "message transfer 
  1174. agents".
  1175.  <LI> Vacation messages... automatically responding to incoming messages
  1176.  <LI> Anything to do with "talk"... which has nothing to do with 
  1177. email.
  1178.  <LI> Anything to do with "irc"... which has nothing to do with email.
  1179.  <LI> List processing... resending one message to a list of recipients.
  1180. </UL>
  1181.  
  1182. <H2><A NAME="pine_help">Pine Help</A></H2>
  1183.  
  1184. Pine help is generally context-sensitive. In other words, each Pine screen you 
  1185. use will have its own help text, explaining the choices available for that
  1186. screen. This general help section, on the other hand, attempts to give an 
  1187. overall picture of what Pine is capable of doing, as well as pointers to 
  1188. additional help sections about specific topics.<p>
  1189.  
  1190. In addition to this general help on Pine, <A HREF="h_news">Release Notes</A>
  1191. on the current Pine version are also available from the MAIN MENU: Press
  1192. <!--chtml if pinemode="function_key"-->
  1193. "F9"
  1194. <!--chtml else-->
  1195. "R"
  1196. <!--chtml endif-->
  1197. to browse the release notes.  These include changes since the last release,
  1198. notes for PC-Pine, configuration information, the history of the Pine
  1199. project, credits, and legal notices.
  1200.  
  1201. Pine files and documentation are available via FTP or WWW:
  1202. <P>
  1203. <CENTER><SAMP><A 
  1204. HREF="ftp://ftp.cac.washington.edu/pine/">ftp://ftp.cac.washington.edu/pine/</A>
  1205. </SAMP></CENTER>
  1206. or
  1207. <CENTER><SAMP><A 
  1208. HREF="http://www.washington.edu/pine/">http://www.washington.edu/pine/</A></SAMP
  1209. ></CENTER>
  1210. <P>
  1211.  
  1212. If you would like to print <EM>all</EM> of Pine's internal help text for
  1213. a little light bedtime reading, then press
  1214. <!--chtml if pinemode="function_key"-->
  1215. "F12"
  1216. <!--chtml else-->
  1217. "Z"
  1218. <!--chtml endif-->
  1219. now.  (This assumes that the
  1220. copy of Pine you are using has been properly configured for printing
  1221. at your site.)
  1222.  
  1223.  
  1224. <!--chtml if [ -r /usr/local/lib/pine.info ]-->
  1225. <H2><A NAME="local_support">Local Support Contacts</A></H2>
  1226. <!--#include file="/usr/local/lib/pine.info"-->
  1227. <!--chtml endif-->
  1228.  
  1229. <H2><A NAME="giving_cmds">Giving Commands in Pine</A></H2>
  1230.  
  1231. The bottom two lines of the screen are always used to list the
  1232. commands you can give.  You press the keys that are highlighted to give
  1233. the command.  The commands for getting help and going back to the main
  1234. menu are always present (except when viewing help as you are now).
  1235. <!--chtml if pinemode="function_key"-->
  1236. <!--chtml else-->
  1237. <p>
  1238. Pressing O (meaning "Other Commands") changes the keys
  1239. you see at the bottom of any screen. In some cases there are 3 different
  1240. sets of keys that can be seen by using the O key. <EM>All commands are 
  1241. active</EM>, even if they are not currently showing at the bottom of your 
  1242. screen. In other words, you <EM>never</EM> need to press the O key, except to 
  1243. remind yourself of the proper key to press to perform an operation.
  1244.  
  1245. <H3>Control Key Commands</H3>
  1246. When composing mail, and in a few other places, in Pine you
  1247. have to use Control keys. This means pressing the Control key (usually labeled 
  1248. "Ctrl") and the
  1249. letter indicated at the same time.  Usually, this is shown with a
  1250. "^" in front of the letter.  On some systems, certain control
  1251. characters are intercepted before they get to Pine.  As a work-around,
  1252. you can press the ESCAPE key twice followed by the desired key.  For
  1253. example, if Ctrl-O (^O) does not work on your system, try typing
  1254. "ESC ESC O".
  1255. <!--chtml endif-->
  1256. <H3>Paging Up and Down</H3>
  1257. The "+" and "-" keys are used for
  1258. moving to the next or previous page.  The space bar is a synonym for
  1259. "+".  You may also use Ctrl-V to page down and Ctrl-Y to page
  1260. up as you do in the message composer.  On screens with a WhereIs (search)
  1261. command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
  1262. message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
  1263. of the message or list.
  1264.  
  1265. <H3>Return Key</H3>
  1266. The return key is usually a synonym for a frequently used
  1267. command.  When viewing a message, there is currently not a default
  1268. command, so RETURN does nothing; when in the index, it is synonymous with
  1269. "view msg". In the key menu at the bottom of the screen, whatever is
  1270. enclosed in square brackets [] is the same as the return key.
  1271.  
  1272. <H3>Control Keys Not Used By Pine</H3>
  1273. Most commands in Pine are single letters, with -- we hope -- some mnemonic 
  1274. value, but in places where Pine is expecting text input, e.g. in the composer or 
  1275. at prompts for file/folder names, control keys must be used for editing and 
  1276. navigation functions.
  1277. <P>
  1278.  
  1279. Pine has used nearly all the control keys available.  There are, however,
  1280. certain control keys that are reserved by other programs or for technical
  1281. reasons.  Pine does not use any of these keys:
  1282. <DL>
  1283.  <DT>Ctrl-S</DT> <DD>Used by Unix as "stop output"</DD>
  1284.  <DT>Ctrl-Q</DT> <DD>Used by Unix as "resume output"</DD>
  1285.  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
  1286.  <DT>Ctrl-\</DT> <DD>Often used by Unix as "Abort"</DD>
  1287. </DL>
  1288. <P>
  1289. Note: Ctrl-S and Ctrl-Q can be subject to 
  1290. <A HREF="h_special_xon_xoff">special handling</A>.
  1291. <P>
  1292. In addition, while the ESC key alone is not used for command input,
  1293. Pine will recognize two consecutive ESC key presses followed by a letter 
  1294. key as a substitute for control key input.  For example, the control key
  1295. <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
  1296. three keystrokes: <SAMP>ESC ESC x</SAMP>.
  1297. This is useful if the communication program you are using
  1298. (e.g. Telnet) has its own, conflicting, idea of what certain control
  1299. characters mean.
  1300.  
  1301.  
  1302. <H3>Repainting the Screen</H3>
  1303. Sometimes what is displayed on the screen will be
  1304. incorrect due to noise on the phone line or other causes and you will want
  1305. to repaint the whole screen to make it correct.  You can use the Ctrl-L
  1306. command to do this.  It never hurts to do it when in doubt.
  1307.  
  1308.  
  1309. <H2><A NAME="status_line">Status Line</A></H2>
  1310.  
  1311. The top line of the screen is Pine's status line.  It will always display
  1312. the current version of Pine and will also convey information about the
  1313. status of the program.  This is where you look to find out what
  1314. collection, folder and message number is active.
  1315. <P>
  1316.  
  1317. If the top line says "READONLY" it means that the open folder
  1318. (typically your INBOX) is "locked" by another mail session --
  1319. most likely a more recent session of Pine has taken the INBOX lock.
  1320. <P>
  1321.  
  1322. If the top line says "CLOSED" it means that you are trying to
  1323. access a
  1324. folder on a remote mail server, and for some reason, communication with
  1325. the mail server has either been lost, or never successfully established.
  1326. This can be a result of trying to open a non-existent folder, or one
  1327. stored on an invalid or non-operational server, or it can mean that Pine
  1328. has been suspended for more that 30 minutes while accessing a remote mail
  1329. server.
  1330.  
  1331.  
  1332. <H2><A NAME="main_menu">Main Menu</a></h2>
  1333.  
  1334. <p>The Main Menu lists Pine's main options. The key or keys you must type to 
  1335. enter your
  1336. choice are to the left of each option or command name. You can usually type 
  1337. either
  1338. uppercase or lowercase letters, and you should not press <Return>.</p>
  1339.  
  1340. <p>From the Main Menu you can choose to read online help, write (compose) and 
  1341. send a
  1342. message, look at an index of your mail messages, open or maintain your mail 
  1343. folders, update
  1344. your address book, configure Pine, and quit Pine. There are additional options 
  1345. listed at
  1346. the bottom of the screen as well.</p>
  1347.  
  1348. <h3>Main Menu Commands</H3>
  1349. Pine main menu lists the most common Pine functions. A <a
  1350. href="h_main_menu_commands">full list of these
  1351. commands</a> and what they do is available.
  1352.  
  1353.  
  1354. <H2><A NAME="addressbooks">Address Books</a></h2>
  1355. <p>As you use email, you can build a list of your regular email correspondents 
  1356. in your Pine
  1357. Address Book. At the Pine Main Menu, press A to see the Address Book List 
  1358. screen. Your
  1359. personal address book will be highlighted. Press <Return> to view it. You can 
  1360. use the
  1361. address book to store email addresses for individuals or groups, to create 
  1362. easily
  1363. remembered "nicknames" for these addresses, and to quickly retrieve an email 
  1364. address when
  1365. you are composing a message. </p>
  1366.  
  1367. <p>There are two ways to add addresses to your address book: you can add them 
  1368. manually or take them from messages (by pressing T to access the Take command). 
  1369. With either method, you specify nicknames for your correspondents. A single 
  1370. address book entry (or nickname) can point to just one email address, or, it can
  1371. point to more than one. When it points to more than one, it is called a 
  1372. distribution list. Each distribution list has a nickname, a full name, and a 
  1373. list of addresses. These
  1374. addresses may be actual addresses, other nicknames in your address book, or 
  1375. other
  1376. distribution lists. </p>
  1377.  
  1378. <p>Additional information is available in Pine's online help:</p>
  1379. <ul>
  1380.   <li><a href="h_abook_opened">The Pine Address Book</a></li>
  1381. </ul>
  1382.  
  1383. <H2><A NAME="ldap">LDAP</a></h2>
  1384. <p>LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
  1385. an organization's shared
  1386. directories. Essentially, using LDAP, Pine is able to find email addresses in 
  1387. large address
  1388. books, rather like the White Pages provided by the phone company. As a Pine 
  1389. user, it is not
  1390. necessary to know much about how this works, only how to use it and how to 
  1391. configure
  1392. it.</p>
  1393.  
  1394. More information on configuring LDAP is available in Pine's online help:
  1395. <ul>
  1396.   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
  1397. </ul>
  1398.  
  1399. <p>Additional help on using LDAP in Pine is also available:</p>
  1400. <ul>
  1401.   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
  1402. </ul>
  1403.  
  1404.  
  1405. <H2><A NAME="index">Index of Messages</A></H2>
  1406.  
  1407. <p>In Pine's message index, the selected message is highlighted. The first 
  1408. column on the
  1409. left is blank, or shows a "+" if the message was sent directly to you (i.e., it 
  1410. is not a
  1411. copy or from a list). </p>
  1412.  
  1413. <p>The second column may be blank, or it may contain:</p>
  1414. <ul>
  1415.   <li>"N" if the message is new (unread), </li>
  1416.   <li>"A" if you have answered the message (using the Reply command), </li>
  1417.   <li>"D" if you have marked the message for deletion.</li>
  1418. </ul>
  1419.  
  1420. <p>
  1421. Note: If you answer a message as well as mark it deleted (in either order), 
  1422. you will only see the "D".</p>
  1423.  
  1424. <p>The rest of the columns in the message line show you the message
  1425. number, date sent, sender, size, and subject. For details, press ? (Help).  
  1426. Most of the commands you need to handle your messages are visible at the
  1427. bottom of the screen, and you can press O (OTHER CMDS) to see additional
  1428. commands that are available. You do not need to see these "other commands"
  1429. on the screen to use them. That is, you never need to press O as a prefix
  1430. for any other command. </p>
  1431.  
  1432. <p>Additional information is available in Pine's online help:</p>
  1433. <ul>
  1434.   <li><a href="h_mail_index">Message Index Commands</a></li>
  1435. </ul>
  1436.  
  1437.  
  1438. <H2><A NAME="messages">Reading Messages</A></H2>
  1439.  
  1440. <p>The message text screen shows you the text of the message along with
  1441. its header. If a message has attachments, those will be listed (but not
  1442. displayed) also.  The top bar displays information about the currently
  1443. open message, folder and collection.  You see the name of the collection
  1444. (if there is one) in angle brackets, then the name of the folder, then the
  1445. message number and finally the position within the current message (in
  1446. percent). If the message is marked for deletion "DEL" will appear in the
  1447. upper right as well. </p>
  1448.  
  1449. <p>As with every Pine screen, the bottom two lines show you the commands 
  1450. available.</p>
  1451.  
  1452. <p>Additional information is available in Pine's online help:</p>
  1453. <ul>
  1454.   <li><a href="h_mail_view">Message Text Screen</a></li>
  1455.   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
  1456.   <li><a href="h_mail_text_add_view">Attachment View Screen Explained</a></li>
  1457. </ul>
  1458.  
  1459.  
  1460. <H2><A NAME="compose">Composing Messages</A></H2>
  1461.  
  1462. <p>To write a message, press C (Compose). You see the Compose Message
  1463. screen, which is divided into two parts: the header area and the message
  1464. text area. The header area is where information on the recipient (the To:
  1465. field) and the subject line go, while the message text area contains the
  1466. actual text of the email message. Different commands are available to you
  1467. when your cursor is in different areas on this screen. To see additional
  1468. help on commands in either the message text or header area, type
  1469. <Control>G (Get help).</p>
  1470.  
  1471. <p>To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
  1472. (Previous line); to correct typing errors, use <Backspace> or <Delete>. </p>
  1473.  
  1474. <p>The following information from Pine's online help should prove useful:</p>
  1475.  
  1476. <ul>
  1477.   <li><a href="h_composer_to">Message Header Commands</a></li>
  1478.   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
  1479.   <li><a href="h_composer">Composer Commands</a></li>
  1480.   <li><a href="h_edit_nav_commands">Composer Editing Commands</a></li>
  1481.   <li><a href="h_compose_send">Send Command</a></li>
  1482.   <li><a href="h_compose_spell">Spell Check Command</a></li>
  1483. </ul>
  1484.  
  1485.  
  1486. <H2><A NAME="collection">Collection List</A></H2>
  1487. <p>Collection lists are Pine's way of organizing groups of folders. Each
  1488. "collection" can reside on a different server, for example, and contain a
  1489. different group of mail folders.<p>
  1490.  
  1491. <p>For more information on this, see:</p>
  1492. <ul>
  1493.   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
  1494. </ul>
  1495. <p>Additional information relating to collection lists is also available in 
  1496. Pine's online
  1497. help:</p>
  1498. <ul>
  1499.   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
  1500.   <li><a href="h_collection_screen">Collection List Screen</a></li>
  1501. </ul>
  1502.  
  1503.  
  1504. <H2><A NAME="folders">Folders</A></H2>
  1505.  
  1506. <p>Messages can quickly accumulate in your INBOX folder. If you use email
  1507. often, you soon could have hundreds. You need to delete messages you do
  1508. not want, and you can use folders to organize messages you wish to save. A
  1509. folder is a collection of one or more messages that are stored (just like
  1510. the messages in your INBOX) so you can access and manage them.</p>
  1511.  
  1512. <p>You can organize your email messages into different folders by topic,
  1513. correspondent, date, or any other category that is meaningful to you. You
  1514. can create your own folders, and Pine automatically provides three: </p>
  1515. <ul>
  1516.  
  1517.   <li>The INBOX folder: messages sent to you are listed in this folder.
  1518.       When you first start Pine and go to the Message Index screen, you are
  1519. looking at the list of messages in your INBOX folder. Every incoming
  1520. message remains in your INBOX until you delete it or save it in another
  1521. folder. </li>
  1522.   <li>The sent-mail folder: copies of messages you send are stored in this 
  1523. folder. This is
  1524. convenient if you cannot remember whether you actually sent a message and want 
  1525. to check, or
  1526. if you want to send a message again.</li>
  1527.   <li>The saved-messages folder: copies of messages you save are stored in this 
  1528. folder
  1529. unless you choose to save them to other folders you create yourself.</li>
  1530. </ul>
  1531.  
  1532. <p>More information about folders is available in Pine's online help:</p>
  1533. <ul>
  1534.   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
  1535.   <li><a href="h_folder_maint">Help for Folder List</a></li>
  1536.   <li><a href="h_common_folders">Folder List Commands</a></li>
  1537.   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
  1538.   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
  1539. Explained</a></li>
  1540.   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
  1541. </ul>
  1542.  
  1543.  
  1544. <H2><A NAME="color">Color</A></H2>
  1545. <P>
  1546. If the terminal emulator you are using is capable of displaying color or if
  1547. you are using PC-Pine, then it is possible to set up Pine so that various
  1548. parts of the display will be shown in colors you configure. This is done
  1549. using the Setup Color screen, available from the Main Menu by selecting
  1550. the Setup command followed by "K" for Kolor.
  1551.  
  1552. <P>
  1553. For example, you may color things like the titlebar, the current item,
  1554. the keymenu, and the status messages.
  1555. You may also color lines in the index, and headers and quoted text in the
  1556. MESSAGE VIEW screen.
  1557. You use the Color Setup screen for configuring most of this, but you must
  1558. use the IndexColor setup for coloring index lines.
  1559. That is available from the Main Menu under Setup/Rules/IndexColor.
  1560.  
  1561. <P>
  1562. The following entries in Pine's online help provide additional information 
  1563. about how to use color:
  1564. <UL>
  1565.   <LI> <A HREF="h_color_setup">Color Setup screen</A>
  1566.   <LI> <A HREF="h_rules_incols">Index Line Color</A>
  1567.   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
  1568.   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
  1569. </UL>
  1570.  
  1571. <H2><A NAME="roles">Roles</A></H2>
  1572. <p>You may play different roles depending on who you are replying to. For
  1573. example, if you are replying to a message addressed to help-desk you may
  1574. be acting as a Help Desk Worker. That role may require that you use a
  1575. different return address and/or a different signature.</p>
  1576.  
  1577. <p>To configure roles, go to the Main Menu and use the Setup command
  1578. followed by "Rules" and then "Roles".
  1579. The following entries in Pine's online help provide additional information 
  1580. about how to
  1581. use roles:</p>
  1582. <ul>
  1583.   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
  1584.   <li><a href="h_role_select">Roles Screen</a></li>
  1585. </ul>
  1586.  
  1587. <H2><A NAME="filtering">Filtering</A></H2>
  1588. <P>
  1589. The software which actually delivers mail (the stuff that happens
  1590. before Pine is involved) for you is in a better position to do mail filtering
  1591. than Pine itself.
  1592. If possible, you may want to look into using that sort of mail filtering to
  1593. deliver mail to different folders, delete it, or forward it.
  1594. However, if you'd like Pine to help with this, Pine's filtering is for you.
  1595.  
  1596. <P>
  1597. Filtering is a way to automatically move certain messages from one folder
  1598. to another or to automatically delete messages.
  1599. Pine doesn't have the ability to forward mail to another address.
  1600.  
  1601. <P>
  1602. To configure filtering, go to the Main Menu and use the Setup command
  1603. followed by "Rules" and then "Filters".
  1604. The following entries in Pine's online help provide additional information 
  1605. about how to use filtering:
  1606. <UL>
  1607.   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
  1608. </UL>
  1609.  
  1610. <H2><A NAME="patterns">Patterns</A></H2>
  1611. <P>
  1612. Patterns are used with Roles, Filtering, Index Coloring,
  1613. and Scoring so it may help you to understand exactly how Patterns work.
  1614. The following entries in Pine's online help provide information 
  1615. about using Patterns:
  1616. <UL>
  1617.   <LI> <A HREF="h_rule_patterns">Patterns</A>
  1618. </UL>
  1619.  
  1620.  
  1621. <H2><A NAME="cmd_line">Command Line Options</A></H2>
  1622.  
  1623. Pine accepts a number of command line arguments, allowing you, for
  1624. example, to start Pine and immediately access a particular folder.
  1625. Many of these arguments overlap with options in the Pine configuration file.
  1626. If there is a difference, then an option set on the command line takes
  1627. precedence.
  1628. Pine expects command line arguments (other than addresses) to be
  1629. preceded by a "-" (dash) as normally used by UNIX programs.
  1630. A <a href="h_command_line_options">full list</a> of command line
  1631. possibilities is available.
  1632.  
  1633. <H2><A NAME="pine_conf">Pine Configuration</A></H2>
  1634.  
  1635. Unless it has been administratively disabled, the Setup command on the
  1636. MAIN MENU has a "Config" subcommand which will allow you to modify
  1637. Pine's behavior by setting or unsetting various features, defining folder
  1638. collections, etc.  These settings are stored in your personal
  1639. "pinerc" configuration file (or, optionally, they may be stored
  1640. <A HREF="h_config_remote_config">remotely</A>),
  1641. but on shared systems these settings
  1642. may be over-ridden by a system-wide control file (due to local site
  1643. security or support policies).  A global pine configuration file can also
  1644. be used to set default values for all Pine users on a particular system.
  1645. Power users may be interested in splitting their personal configuration
  1646. data into two pieces, a generic piece and
  1647. <A HREF="h_config_exceptions">exceptions</A> which apply to
  1648. a particular platform.
  1649. They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
  1650. General Pine configuration information can be found
  1651. <A HREF="h_news_config">here</A>.
  1652.  
  1653. <H2><A NAME="read_news">Reading News</A></H2>
  1654.  
  1655. <H3>Background</h3>
  1656. Pine can read and post to Internet (or USENET) newsgroups, using the same 
  1657. commands as for mail. Similar to mailing lists but existing on a larger scale, 
  1658. Usenet newsgroups allow groups of people with common interests to discuss 
  1659. particular topics. You might find newsgroups related to your career, or you 
  1660. might wish to check out the online discussion among the fans of your favorite 
  1661. television show. 
  1662.  
  1663. <h3>Configuring Pine for Reading News</h3> Pine often arrives
  1664. pre-configured by your system administrator to automatically access the
  1665. newsgroups offered by your organization, Internet Service Provider, or
  1666. school. PC-Pine users, and those attempting to customize Unix Pine, will
  1667. need additional details on <a href="h_configuring_news">how to
  1668. configure Pine to read news</a>.
  1669.  
  1670. <h3>Accessing Newsgroups</h3>
  1671. The first step in reading news is to access the newsgroups collections
  1672. screen from Pine. If everything is configured properly, you should be able
  1673. to do this by first typing L (folder List), then selecting the folder
  1674. collection listed as "News." The actual name of this collection may differ
  1675. from system to system.
  1676.  
  1677. <h3>Subscribing to Newsgroups</h3>
  1678.  
  1679. Once you have accessed the news collection, you need to subscribe to a
  1680. newsgroup that interests you. Subscribing to a newsgroup means that Pine
  1681. will keep a record of the newsgroups in which you are interested and which
  1682. articles in those newsgroups have been read.
  1683.  
  1684. <h3>Using Newsgroups</h3> 
  1685. Pine uses the similar commands to read news as to read mail. For example,
  1686. the D command marks messages as Deleted (or "Dismissed," if you prefer),
  1687. and the R command Replies to a news posting. Basically, Pine allows you to
  1688. read news as if it were mail, so you don't need to change the way you
  1689. interact with Pine.
  1690. <p>
  1691. There is also additional Pine help available on 
  1692. <A HREF="h_reading_news">how to use Pine to read news</A>.
  1693.  
  1694. <H2><A NAME="probs">Reporting Problems</A></H2>
  1695.  
  1696. There are now literally millions of Pine users in over 50 countries.
  1697. The Pine development team has no funding to provide support to anyone
  1698. outside of the University of Washington.  However, we certainly want Pine
  1699. to be the best tool it can be, so we do want to know about problems. We
  1700. ask that you first read the relevant help screens and then seek
  1701. assistance from your own local support staff.  Once you are sure that your
  1702. difficulty is not a local configuration problem, you might look at the
  1703. help section explaining where to look for
  1704. <A HREF="h_finding_help">more information</A> and where to 
  1705. get assistance.
  1706. <P>
  1707.  
  1708. Please note: Pine has been adapted to several other operating systems
  1709. besides those directly supported by the University of Washington; see:
  1710. <P>
  1711. <CENTER><A HREF="http://www.washington.edu/pine/overview/non-UW.html">http://www.washington.edu/pine/overview/non-UW.html</A></CENTER>
  1712.  
  1713. <P>
  1714. Inquiries about these other ports (e.g., VMS and AmigaDOS) should be
  1715. directed to the individual or group that did the adaptation. 
  1716. <P>
  1717.  
  1718. <ADDRESS>
  1719.    Pine Development Team <pine@cac.washington.edu><BR>
  1720.    Computing & Communications<BR>
  1721.    University of Washington<BR>
  1722.    Seattle, WA 98195<BR>
  1723. </ADDRESS>
  1724.  
  1725. <P>
  1726. <End of help on this topic>
  1727. </BODY>
  1728. </HTML>
  1729. ===== h_main_menu_commands ======
  1730. <HTML>
  1731. <HEAD>
  1732. <TITLE>MAIN MENU COMMANDS</TITLE>
  1733. </HEAD>
  1734. <BODY>
  1735. <H1>MAIN MENU COMMANDS</H1>
  1736.  
  1737. <!--chtml if pinemode="function_key"-->
  1738.  Available Commands --
  1739.  Group 1           Available Commands -- Group 2<BR>
  1740.  ------------------------------
  1741.           --------------------
  1742. ----------<BR>
  1743.  F1  Show this help text                 F1  Show this help text<BR>
  1744.  F2  Show all other available commands   F2  Show other commands<BR>
  1745.  F3  Quit Pine<BR>
  1746.  F4  Execute current MAIN MENU command   F4  <A 
  1747. HREF="h_common_compose">Compose</A> a message<BR>
  1748.  F5  Select previous command up on menu  F5  <A 
  1749. HREF="h_common_folders">FOLDER LIST</A> screen<BR>
  1750.  F6  Select next command down on menu    F6  <A 
  1751. HREF="h_common_goto">Goto</A> a specified folder<BR>
  1752.                                         
  1753.  F7  <A 
  1754. HREF="h_common_index">MESSAGE INDEX</A> screen<BR>
  1755.                                         
  1756.  F8  <A 
  1757. HREF="h_main_journal">Journal</A> of status messages<BR>
  1758.  F9  Display <A 
  1759. HREF="h_main_release_notes">Release Notes</A> notes          F9  <A 
  1760. HREF="h_main_setup">SETUP</A> menus<BR>
  1761.  F10 <A 
  1762. HREF="h_main_kblock">Lock Keyboard</A>                       F10 <A 
  1763. HREF="h_main_addrbook">ADDRESS BOOK</A> screen<BR>
  1764.                                         
  1765.  F11 <A 
  1766. HREF="h_common_role">Compose message using a role</a><BR>
  1767. <!--chtml else-->
  1768.  General Pine Commands           Main Menu Screen Commands<BR>
  1769.  ---------------------           --------------------------<BR>
  1770.  ?  Show Help Text               O  Show all Other available commands<BR>
  1771.  C  <A 
  1772. HREF="h_common_compose">Compose</A> a message            P  Select Previous command up on menu<BR>
  1773.  I  <A 
  1774. HREF="h_common_index">MESSAGE INDEX</A> screen         N  Select Next command down on menu<BR>
  1775.  L  <A 
  1776. HREF="h_common_folders">FOLDER LIST</A> screen           R  Display Pine <A HREF="h_main_release_notes">Release Notes</A><BR>
  1777.  A  <A 
  1778. HREF="h_main_addrbook">ADDRESS BOOK</A> screen          K  <A 
  1779. HREF="h_main_kblock">Lock Keyboard</A><BR>
  1780.  S  <A 
  1781. HREF="h_main_setup">SETUP</A> functions              G  <A 
  1782. HREF="h_common_goto">Goto</A> a specified folder<BR>
  1783.  Q  Quit Pine                    J  <A HREF="h_main_journal">Journal</A> of status messages<BR>
  1784.                                  #  <A 
  1785. HREF="h_common_role">Compose message using a role</a><BR>
  1786. <!--chtml endif-->
  1787.  
  1788. <P>
  1789. NOTE:
  1790. <OL>
  1791.  <LI>For help on a particular command, hilite the bold text associated
  1792. with it above and hit Return.
  1793.  <LI> The availability of certain commands (e.g. some of the options under
  1794. SETUP) is determined by Pine configuration files and system capabilities.
  1795. At some sites, certain commands may not be available due to security or
  1796. support concerns.
  1797. </OL>
  1798. <P>
  1799. <End of help on this topic>
  1800. </BODY>
  1801. </HTML>
  1802.  
  1803. ===== h_command_line_options ======
  1804. <HTML>
  1805. <HEAD>
  1806. <TITLE>COMMAND LINE OPTIONS</TITLE>
  1807. </HEAD>
  1808. <BODY>
  1809. <H1>COMMAND LINE OPTIONS</H1>
  1810. Possible starting arguments for Pine:
  1811.  
  1812. <DL COMPACT>
  1813.  
  1814. <DT> <EM>[addresses]</EM>
  1815.  
  1816. <DD> Send-to:  If you give <EM>Pine</EM> an argument or arguments which
  1817. do not begin with a dash, <EM>Pine</EM> treats them as email addresses.
  1818. <EM>Pine</EM> will startup in
  1819. the composer with a message started to the addresses specified.
  1820. Once the message is sent, the <EM>Pine</EM> session closes.
  1821. Standard input redirection is allowed.
  1822. Separate multiple addresses with a space between them.
  1823. Addresses are placed in the "To" field only.
  1824. <P>
  1825.  
  1826. <DT> < <EM>file</EM>
  1827.  
  1828. <DD> <EM>Pine</EM> will startup in the composer with <EM>file</EM> read
  1829. into the body of the message.
  1830. Once the message is sent, the <EM>Pine</EM> session closes. 
  1831. <P>
  1832.  
  1833. <DT> -attach <EM>file</EM>
  1834.  
  1835. <DD> Go directly into composer with given file attached.
  1836. <P>
  1837.  
  1838. <DT> -attachlist <EM>file-list</EM>
  1839.  
  1840. <DD> Go directly into composer with given files attached.
  1841. This must be the last option on the command line.
  1842. <P>
  1843.  
  1844. <DT> -attach_and_delete <EM>file</EM>
  1845.  
  1846. <DD> Go directly into composer with given file attached, delete when finished.
  1847. <P>
  1848.  
  1849. <DT> -aux <EM>local_directory</EM>
  1850.  
  1851. <DD> <EM>PC-Pine</EM> only.
  1852. When using a remote configuration
  1853. (-p <remote_config>) this tells <EM>PC-Pine</EM> the local directory to use
  1854. for storing auxiliary files, like debug files,
  1855. address books, and signature files.
  1856. <P>
  1857.  
  1858. <DT> -bail
  1859.  
  1860. <DD> If the personal configuration file doesn't already exist, exit.
  1861. This might be useful if the configuration file is accessed using some
  1862. remote filesystem protocol. If the remote mount is missing this will cause
  1863. <EM>Pine</EM> to quit instead of creating a new pinerc.
  1864. <P>
  1865.  
  1866. <DT> -c <EM>n</EM>
  1867.  
  1868. <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
  1869. This is used when there are multiple folder collections (contexts) and you 
  1870. want to open a folder not in the primary collection.
  1871. <P>
  1872.  
  1873. <DT> -conf
  1874.  
  1875. <DD> Configuration: Prints a sample system configuration file to the
  1876. screen or standard output. To generate an initial system configuration 
  1877. file, execute
  1878.  
  1879. <PRE><CODE>
  1880.         pine -conf > /usr/local/lib/pine.conf
  1881. </CODE></PRE>
  1882. <P>
  1883.  
  1884. To generate a system configuration file using settings from an old
  1885. system configuration file, execute
  1886.  
  1887. <PRE><CODE>
  1888.         pine -P old-pine.conf -conf > /usr/local/lib/pine.conf
  1889. </CODE></PRE>
  1890. <P>
  1891. A system configuration file is not required.
  1892. <P>
  1893.  
  1894. <DT> -copy_abook <<EM>local_abook_file</EM>> <<EM>remote_abook_folder</EM>>
  1895.  
  1896. <DD> Copy an address book file to a remote address book folder.
  1897. If the remote folder doesn't exist, it will be created.
  1898. If it exists but the first message in the folder isn't a remote address
  1899. book header message, the copy will be aborted.
  1900. This flag will not usually be used by a user.
  1901. Instead, the user will create a remote address book from within <EM>Pine</EM>
  1902. and copy entries from the local address book by using aggregate Save in
  1903. the address book screen.
  1904. <P>
  1905.  
  1906. <DT> -copy_pinerc <<EM>local_pinerc_file</EM>> <<EM>remote_pinerc_folder</EM>>
  1907.  
  1908. <DD> Copy a pinerc configuration file to a remote pinerc folder.
  1909. If the remote folder doesn't exist, it will be created.
  1910. If it exists but the first message in the folder isn't a remote pinerc
  1911. header message, the copy will be aborted.
  1912. This flag may be useful to users who already have a local pinerc file and
  1913. would like to convert it to a remote pinerc folder and use that instead.
  1914. This gives a way to bootstrap that conversion without having to manually
  1915. reset all of the variables in the remote pinerc folder.
  1916. <P>
  1917.  
  1918. <DT> -create_lu <EM>addrbook sort-order</EM>
  1919.  
  1920. <DD> Create auxiliary LookUp (index) file for <EM>addrbook</EM> and sort
  1921. <EM>addrbook</EM> in <EM>sort-order</EM>, which may be <EM>dont-sort</EM>,
  1922. <EM>nickname</EM>, <EM>fullname</EM>, <EM>nickname-with-lists-last</EM>,
  1923. or <EM>fullname-with-lists-last</EM>.
  1924. Only useful when creating global or shared address books.
  1925. <P>
  1926.  
  1927. <DT> -d <EM>debug-level</EM>
  1928.  
  1929. <DD> Debug Level:  Sets the level of debugging information written by
  1930. <EM>Pine</EM>.
  1931. <EM>debug-level</EM> can be set to any integer 0-9.
  1932. A debug level of 0 turns off debugging for the session.
  1933. (Actually there are some levels higher than 9, but you probably don't
  1934. want to see them.)
  1935. <P>
  1936.  
  1937. <DT> -d <EM>keywords</EM>
  1938.  
  1939. <DD> You may use a more detailed version of the debugging flag to set
  1940. the debug level in separate parts of <EM>Pine</EM>.
  1941. The possibilities are flush, timestamp, imap=0..4, numfiles=0..31, and
  1942. verbose=0..9.
  1943. <EM>Flush</EM> causes debugging information to be flushed immediately to
  1944. the debug file as it is written.
  1945. <EM>Verbose</EM> is the general debugging verbosity level.
  1946. <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
  1947. is useful when you are trying to figure out what is responsible for delays.
  1948. <EM>Numfiles</EM> sets the number of debug files saved.
  1949. <EM>Imap</EM> sets the debug level for the debugging statements related
  1950. to the conversation with the IMAP server, and more generally, for the
  1951. debugging related to <EM>Pine</EM>'s interaction with the C-Client library.
  1952. <P>
  1953.  
  1954. <DT> -f <EM>folder</EM>
  1955.  
  1956. <DD> Startup folder:  <EM>Pine</EM> will open this folder in place
  1957. of the standard INBOX.
  1958. <P>
  1959.  
  1960. <DT> -F <EM>file</EM>
  1961.  
  1962. <DD> Open named text file for viewing and forwarding.
  1963. <P>
  1964.  
  1965. <DT> -h
  1966.  
  1967. <DD> Help:  Prints the list of available command-line arguments to the
  1968. screen.
  1969. <P>
  1970.  
  1971. <DT> -i
  1972.  
  1973. <DD> <EM>Pine</EM> will start up in the FOLDER INDEX
  1974. screen instead of the MAIN MENU.
  1975. <P>
  1976.  
  1977. Configuration equivalent:  <EM>initial-keystroke-list=i</EM>.
  1978. <P>
  1979.  
  1980. <DT> -I <EM>a,b,c,...</EM>
  1981.  
  1982. <DD> Initial Keystrokes:  <EM>Pine</EM> will execute this comma-separated
  1983. sequence of commands upon startup.
  1984. This allows users to get <EM>Pine</EM> to start in any
  1985. of its menus/screens.
  1986. You cannot include any input to the composer in the initial keystrokes.
  1987. The key <Return> is represented by a ``CR'' in
  1988. the keystroke list; the spacebar is designated by the letters ``SPACE''.
  1989. Control keys are two character sequences beginning with ``^'', such as
  1990. ``^I''.
  1991. A tab character is ``TAB''.
  1992. Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
  1993. ``DOWN'', ``LEFT'', and ``RIGHT''.
  1994. A restriction is that you can't mix function keys and character keys in this
  1995. list even though you can, in some cases, mix them when running <EM>Pine</EM>.
  1996. A user can always use only <EM>character</EM> keys in the startup list even
  1997. if he or she is using <EM>function</EM> keys normally, or vice versa.
  1998. If an element in this list is a string of characters surrounded by double
  1999. quotes (") then it will be expanded into the individual characters in
  2000. the string, excluding the double quotes.
  2001. <P>
  2002.  
  2003. Configuration equivalent:  <EM>initial-keystroke-list</EM>
  2004. <P>
  2005.  
  2006. <DT> -k
  2007.  
  2008. <DD> Function-Key Mode:  When invoked in this way, <EM>Pine</EM> expects
  2009. the input of commands to be function-keys.
  2010. Otherwise, commands are linked to the regular character keys.
  2011. <P>
  2012.  
  2013. Configuration equivalent:  <EM>use-function-keys</EM> included in
  2014. <EM>feature-list</EM>.
  2015. <P>
  2016.  
  2017. <DT> -n <EM>n</EM>
  2018.  
  2019. <DD> Message-Number:  When specified, <EM>Pine</EM> starts up in the
  2020. FOLDER INDEX screen with the current message being the specified
  2021. message number.
  2022. <P>
  2023.  
  2024. <DT> -o <EM>folder</EM>
  2025.  
  2026. <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
  2027. <P>
  2028.  
  2029. <DT> -p <EM>pinerc</EM>
  2030.  
  2031. <DD> Uses the named file as the personal configuration file instead of
  2032. <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Pine</EM> uses.
  2033. Pinerc may be either a local file or a remote configuration folder.
  2034. <P>
  2035.  
  2036. <DT> -P <EM>pinerc</EM>
  2037.  
  2038. <DD> Uses the named file as the system wide configuration file instead of
  2039. <EM>/usr/local/lib/pine.conf</EM> on UNIX, or nothing on <EM>PC-Pine</EM>.
  2040. Pinerc may be either a local file or a remote configuration folder.
  2041. <P>
  2042.  
  2043. <DT> -pinerc <EM>file</EM>
  2044.  
  2045. <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
  2046. settings of variables that the user has made.
  2047. Use <EM>file</EM> set to ``-'' to make output go to standard out.
  2048. <P>
  2049.  
  2050. <DT> -r
  2051.  
  2052. <DD> Restricted Mode:  For UNIX <EM>Pine</EM> only.
  2053. <EM>Pine</EM> in restricted mode can only send email to itself.
  2054. Save and export are limited.
  2055. <P>
  2056.  
  2057. <DT> -registry <EM>cmd</EM>
  2058.  
  2059. <DD> For <EM>PC-Pine</EM> only, this option affects the values of 
  2060. <EM>Pine</EM>'s registry entries.
  2061. Possible values for <EM>cmd</EM> are set, clear, and dump.
  2062. <EM>Set</EM> will always reset <EM>Pine</EM>'s registry 
  2063. entries according to its current settings.
  2064. <EM>Clear</EM> will clear the registry values.
  2065. <EM>Dump</EM> will display the values of current registry settings.
  2066. Note that the dump command is currently disabled.
  2067. Without the -registry option, <EM>PC-Pine</EM> will write values into
  2068. the registry only if there currently aren't any values set.
  2069. <P>
  2070.  
  2071. <DT> -sort <EM>key</EM>
  2072.  
  2073. <DD> Sort-Key:  Specifies the order messages will be displayed in for the
  2074. FOLDER INDEX screen.
  2075. <EM>Key</EM> can have the following values: 
  2076. arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
  2077. arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
  2078. from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
  2079. The default value is "arrival".
  2080. The <EM>key</EM> value reverse is equivalent to arrival/reverse.
  2081. <P>
  2082.  
  2083. Configuration equivalent:  <EM>sort-key</EM>.
  2084. <P>
  2085.  
  2086. <DT> -url <EM>url</EM>
  2087.  
  2088. <DD> Open the given URL.
  2089. <P>
  2090.  
  2091. <DT> -v
  2092.  
  2093. <DD> Version:  Print version information to the screen.
  2094. <P>
  2095.  
  2096. <DT> -x <EM>exceptions_config</EM>
  2097.  
  2098. <DD> Configuration settings in the exceptions configuration override your normal
  2099. default settings.
  2100. <EM>Exceptions_config</EM> may be either a local file or a remote Pine configuration folder.
  2101. <P>
  2102.  
  2103. <DT> -z
  2104.  
  2105. <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
  2106. will suspend the <EM>Pine</EM> session.
  2107. <P>
  2108.  
  2109. Configuration equivalent:  <EM>enable-suspend</EM> included in
  2110. <EM>feature-list</EM>.
  2111. <P>
  2112.  
  2113. <DT> -<EM>option</EM>=<EM>value</EM>
  2114.  
  2115. <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
  2116. For example, <EM>-signature-file=sig1</EM> or
  2117. <EM>-feature-list=signature-at-bottom</EM>.
  2118. (Note:  feature-list values are
  2119. additive and features may be preceded with no- to turn them off).
  2120. <P>
  2121.  
  2122. </DL>
  2123. <P>
  2124. <End of help on this topic>
  2125. </BODY>
  2126. </HTML>
  2127. ===== h_configuring_news ======
  2128. <HTML>
  2129. <HEAD>
  2130. <TITLE>CONFIGURING NEWS</TITLE>
  2131. </HEAD>
  2132. <BODY>
  2133. <H1>CONFIGURING NEWS</H1>
  2134. Pine can access news folders in any one of three different ways:
  2135. <DL>
  2136. <DT>REMOTE NNTP</DT>
  2137. <DD>Using the Network News Transport Protocol (NNTP) to
  2138. access news on a remote news server.  In this case the newsrc file is
  2139. stored on the machine where Pine is running.
  2140.  
  2141. <P>
  2142. To specify a remote news-collection accessed via NNTP use the
  2143. SETUP/collectionList screen's "Add" command.  Set the
  2144. Server: value to the NNTP server's hostname appended with the
  2145. communication method "/service=NNTP", and set the Path:
  2146. value to the "#news." namespace (without the quotes).  See
  2147. the "<A HREF="h_composer_cntxt_server">Server:</A>" field's
  2148. help text for a more complete explanation of access method, and the
  2149. "<A HREF="h_composer_cntxt_path">Path:</A>" field's help
  2150. text for a more complete explanation of "namespace".
  2151.  
  2152. <DT>REMOTE IMAP</DT>
  2153. <DD>Using the Internet Message Access Protocol (IMAP) to
  2154. access news on a remote news server.  In this case, your newsrc file is
  2155. stored on the news server, in your home directory, so you must have an
  2156. account on the news server, but you would be running Pine on a different
  2157. machine.  The news server must be running an IMAPd server process. 
  2158.  
  2159. <P>
  2160. To specify a remote news-collection accessed via IMAP use the
  2161. SETUP/collectionList screen's "Add" command.  Set the
  2162. Server: value to the IMAP server's hostname, and set the Path: value
  2163. to the "#news." namespace (without the quotes).  See the
  2164. "<A HREF="h_composer_cntxt_path">Path:</A>" field's help
  2165. text for a more complete explanation of "namespace".
  2166.  
  2167. </DD>
  2168.  
  2169. <DT>LOCAL</DT>
  2170. <DD>Using local file access to the news database.  In this
  2171. case, your newsrc file is stored on the news server, in your home
  2172. directory, so you must have an account on the news server, and you would
  2173. be running Pine on the same machine.
  2174.  
  2175. <P>
  2176. To specify a local news-collection use the SETUP/collectionList
  2177. screen's "Add" command.  Leave the Server: value blank, and
  2178. set the Path: value to the "#news." namespace (without the
  2179. quotes).  See the "<A HREF="h_composer_cntxt_path">Path:</A>"
  2180. field's help text for a more complete explanation of "namespace".
  2181.  
  2182. </DD>
  2183. </DL>
  2184.  
  2185. <P>
  2186.  
  2187. NOTE: Should no news-collection be defined as above, Pine will
  2188. automatically create one using the Setup/Config screen's
  2189. "nntp-server" variable's value if defined.  The collection
  2190. will be created as a "Remote NNTP" as described above.
  2191.  
  2192. <P>
  2193.  
  2194. If you are a PC-Pine user, either option 1 (NNTP) or option 2 (IMAP) is
  2195. possible.  If you don't have an account on the news server, or if the news
  2196. server is not running an IMAP daemon, then you must use NNTP.  (If you are not
  2197. sure, ask your service provider, university, or company for help.)  In
  2198. this case, your Unix .newsrc file can be transferred to your PC.  A good
  2199. place to put it would be in the same directory as your PINERC file, under
  2200. the name \NEWSRC, but you can 
  2201. <A HREF="h_config_newsrc_path">specify a different location</A>
  2202. via Pine's Setup/Config screen.
  2203.  
  2204. <P>
  2205. A future version of PC-Pine will be able to access and update a .newsrc
  2206. file stored on a Unix host, so that it will be possible to alternate
  2207. between PC-Pine and Unix-based newsreaders.
  2208.  
  2209. <P>
  2210. <End of help on this topic>
  2211. </BODY>
  2212. </HTML>
  2213.  
  2214. ===== h_reading_news ======
  2215. <HTML>
  2216. <HEAD>
  2217. <TITLE>READING NEWS</TITLE>
  2218. </HEAD>
  2219. <BODY>
  2220. <H1>READING NEWS</H1>
  2221.  
  2222. Pine uses the almost same commands for manipulating news folders as for
  2223. mail folders.  This means, for example, that when you are done with a
  2224. message, you would use "D" to mark it as Deleted (or Dismissed,
  2225. if you prefer.)  This "mail-like" behavior differs from that of
  2226. most newsreaders, wherein a message is implicitly dismissed after you have
  2227. looked at it once. We strongly believe that Pine should offer as much
  2228. consistency as possible between mail and news, so the mail paradigm --
  2229. wherein a message does not magically disappear without explicit action by
  2230. the user -- is used for news as well. <P>
  2231.  
  2232. If you answer a message in a news folder, the index view will show the
  2233. "A" flag as usual; but the industry standard file Pine uses to
  2234. keep track of what news as been read has no way of storing this flag, so
  2235. it will not be preserved across sessions.  The Deleted flag is the only
  2236. one that is preserved when you leave and the return to a newsgroup.  As an
  2237. additional note on replies, when you Reply to a newsgroup message and say
  2238. you want to reply to all recipients, Pine will ask if you want to post the
  2239. message to all the newsgroups listed in the original message. <P>
  2240.  
  2241. If you would like Pine to mark more-or-less recent news messages as
  2242. "New", then set the
  2243. <A HREF="h_config_news_uses_recent">"news-approximates-new-status"</A>
  2244. feature.  This will cause messages after the last one you have marked as
  2245. Deleted to appear with "N" status in the MESSAGE INDEX.  The
  2246. "N" status often makes it easier to distinguish later news
  2247. articles from those you've previously seen, but not yet disposed of via
  2248. the "D" key.  Note that this is an approximation, not an exact
  2249. record of which messages you have not seen.
  2250. <P>
  2251.  
  2252. A frequent operation in news-reading is "catching up" -- that
  2253. is, getting rid of all the messages in the newsgroup so that you can
  2254. "start fresh."  The easiest way to do this in Pine is via the
  2255. Select command.  You would enter the following four keystrokes:
  2256. <tt>;aad</tt> to select all messaged, and then apply the delete (or
  2257. dismiss) command to all of them. Note that the <A
  2258. HREF="h_config_enable_agg_ops">"enable-aggregate-command-set"</A>
  2259. feature must be enabled before you can use the Select command.
  2260.  
  2261. <P>
  2262. <End of help on this topic>
  2263. </BODY>
  2264. </HTML>
  2265.  
  2266. ====== h_help_index ======
  2267. <HTML>
  2268. <HEAD>
  2269. <TITLE>Help Index</TITLE>
  2270. </HEAD>
  2271. <BODY>
  2272. <H1>Help Index</H1>
  2273. <ul>
  2274. <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
  2275. <li><a href="h_main_addrbook">Address Book Command</a>
  2276. <li><a href="h_abook_view">Address Book View Explained</a>
  2277. <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
  2278. <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
  2279. <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
  2280. <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
  2281. <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
  2282. <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
  2283. <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
  2284. <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
  2285. <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
  2286. <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
  2287. <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
  2288. <li><a href="h_compose_alted">Alt Editor Command</a>
  2289. <li><a href="h_index_cmd_apply">Apply Command</a>
  2290. <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
  2291. <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
  2292. <li><a href="h_composer_browse">BROWSER</a>
  2293. <li><a href="h_common_bounce">Bounce Command</a>
  2294. <li><a href="h_collection_screen">COLLECTION LIST screen</a>
  2295. <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
  2296. <li><a href="h_composer">COMPOSER COMMANDS</a>
  2297. <li><a href="h_composer_custom_addr">CUSTOMIZED HEADER FIELD</a>
  2298. <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
  2299. <li><a href="h_compose_cancel">Cancel Command</a>
  2300. <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
  2301. <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
  2302. <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
  2303. <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
  2304. <li><a href="h_common_compose">Compose Command</a>
  2305. <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
  2306. <li><a href="h_common_conditional_cmds">Conditional Commands</a>
  2307. <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for Reply-Leadin, Signatures, and Templates</a>
  2308. <li><a href="h_common_delete">Delete and Undelete Commands</a>
  2309. <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
  2310. <li><a href="h_special_list_commands">Email List Commands Explained</a>
  2311. <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
  2312. <li><a href="h_folder_open">Explanation of Folder Selection</a>
  2313. <li><a href="h_special_xon_xoff">Explanation of Pine's XOFF/XON Handling</a>
  2314. <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
  2315. <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
  2316. <li><a href="h_info_on_locking">FAQs on Pine Locking</a>
  2317. <li><a href="h_config_allow_chg_from">FEATURE: allow-changing-from</a>
  2318. <li><a href="h_config_auto_read_msgs">FEATURE: auto-move-read-msgs</a>
  2319. <li><a href="h_config_auto_open_unread">FEATURE: auto-open-next-unread</a>
  2320. <li><a href="h_config_combined_abook_display">FEATURE: combined-addrbook-display</a>
  2321. <li><a href="h_config_combined_folder_display">FEATURE: combined-folder-display</a>
  2322. <li><a href="h_config_combined_subdir_display">FEATURE: combined-subdirectory-display</a>
  2323. <li><a href="h_config_compose_rejects_unqual">FEATURE: compose-rejects-unqualified-addrs</a>
  2324. <li><a href="h_config_send_filter_dflt">FEATURE: compose-send-offers-first-filter</a>
  2325. <li><a href="h_config_confirm_role">FEATURE: confirm-role-even-for-default</a>
  2326. <li><a href="h_config_8bit_smtp">FEATURE: enable-8bit-to-smtp-server</a>
  2327. <li><a href="h_config_enable_agg_ops">FEATURE: enable-aggregate-command-set</a>
  2328. <li><a href="h_config_enable_alt_ed">FEATURE: enable-alternate-editor-cmd</a>
  2329. <li><a href="h_config_alt_ed_now">FEATURE: enable-alternate-editor-implicitly</a>
  2330. <li><a href="h_config_arrow_nav">FEATURE: enable-arrow-navigation</a>
  2331. <li><a href="h_config_relaxed_arrow_nav">FEATURE: enable-arrow-navigation-relaxed</a>
  2332. <li><a href="h_config_enable_color">FEATURE: enable-color</a>
  2333. <li><a href="h_config_cruise_mode">FEATURE: enable-cruise-mode</a>
  2334. <li><a href="h_config_cruise_mode_delete">FEATURE: enable-cruise-mode-delete</a>
  2335. <li><a href="h_config_fast_recent">FEATURE: enable-fast-recent-test</a>
  2336. <li><a href="h_config_enable_full_hdr">FEATURE: enable-full-header-cmd</a>
  2337. <li><a href="h_config_enable_incoming">FEATURE: enable-incoming-folders</a>
  2338. <li><a href="h_config_lame_list_mode">FEATURE: enable-lame-list-mode</a>
  2339. <li><a href="h_config_enable_view_addresses">FEATURE: enable-msg-view-addresses</a>
  2340. <li><a href="h_config_enable_view_url">FEATURE: enable-msg-view-urls</a>
  2341. <li><a href="h_config_enable_view_web_host">FEATURE: enable-msg-view-web-hostnames</a>
  2342. <li><a href="h_config_prefix_editing">FEATURE: enable-reply-indent-string-editing</a>
  2343. <li><a href="h_config_sigdashes">FEATURE: enable-sigdashes</a>
  2344. <!--chtml if pinemode="os_windows"-->
  2345. <li><a href="h_config_tray-icon">FEATURE: enable-tray-icon</a>
  2346. <!--chtml endif-->
  2347. <li><a href="h_config_can_suspend">FEATURE: enable-suspend</a>
  2348. <li><a href="h_config_enable_pipe">FEATURE: enable-unix-pipe-cmd</a>
  2349. <li><a href="h_config_verbose_post">FEATURE: enable-verbose-smtp-posting</a>
  2350. <li><a href="h_config_expanded_addrbooks">FEATURE: expanded-view-of-addressbooks</a>
  2351. <li><a href="h_config_expanded_folders">FEATURE: expanded-view-of-folders</a>
  2352. <li><a href="h_config_auto_expunge">FEATURE: expunge-without-confirm</a>
  2353. <li><a href="h_config_full_auto_expunge">FEATURE: expunge-without-confirm-everywhere</a>
  2354. <li><a href="h_config_auto_fcc_only">FEATURE: fcc-only-without-confirm</a>
  2355. <li><a href="h_config_no_fcc_attach">FEATURE: fcc-without-attachments</a>
  2356. <li><a href="h_config_add_ldap">FEATURE: ldap-result-to-addrbook-add</a>
  2357. <li><a href="h_config_news_cross_deletes">FEATURE: news-deletes-across-groups</a>
  2358. <li><a href="h_config_read_in_newsrc_order">FEATURE: news-read-in-newsrc-order</a>
  2359. <li><a href="h_config_quell_dead_letter">FEATURE: quell-dead-letter-on-cancel</a>
  2360. <li><a href="h_config_quell_empty_dirs">FEATURE: quell-empty-directories</a>
  2361. <li><a href="h_config_quell_folder_internal_msg">FEATURE: quell-folder-internal-msg</a>
  2362. <li><a href="h_config_quell_lock_failure_warnings">FEATURE: quell-lock-failure-warnings</a>
  2363. <li><a href="h_config_no_part_fetch">FEATURE: quell-partial-fetching</a>
  2364. <li><a href="h_config_quell_beeps">FEATURE: quell-status-message-beeping</a>
  2365. <li><a href="h_config_quell_local_lookup">FEATURE: quell-user-lookup-in-passwd-file</a>
  2366. <li><a href="h_config_separate_fold_dir_view">FEATURE: separate-folder-and-directory-display</a>
  2367. <li><a href="h_config_textplain_int">FEATURE: show-plain-text-internally</a>
  2368. <li><a href="h_config_select_in_bold">FEATURE: show-selected-in-boldface</a>
  2369. <li><a href="h_config_strip_sigdashes">FEATURE: strip-from-sigdashes-on-reply</a>
  2370. <li><a href="h_config_tcap_wins">FEATURE: termdef-takes-precedence</a>
  2371. <li><a href="h_config_alt_auth">FEATURE: try-alternative-authentication-driver-first</a>
  2372. <li><a href="h_config_use_current_dir">FEATURE: use-current-dir</a>
  2373. <li><a href="h_config_suspend_spawns">FEATURE: use-subshell-for-suspend</a>
  2374. <li><a href="h_finding_help">Finding more information and requesting help</a>
  2375. <li><a href="h_common_flag">Flag Command</a>
  2376. <li><a href="h_what_are_collections">Folder Collections Explained</a>
  2377. <li><a href="h_common_folders">Folder List Command</a>
  2378. <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
  2379. <li><a href="h_folder_save">Folder Select for Save Explained</a>
  2380. <li><a href="main_menu_tx">GENERAL INFORMATION ON THE PINE MESSAGE SYSTEM</a>
  2381. <li><a href="h_pine_for_windows">GETTING HELP IN PINE</a>
  2382. <li><a href="h_common_goto">Goto Command</a>
  2383. <li><a href="h_common_hdrmode">HdrMode Command</a>
  2384. <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
  2385. <li><a href="h_folder_maint">Help for Folder List</a>
  2386. <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
  2387. <li><a href="h_composer_ins">INSERT TEXT FILE</a>
  2388. <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
  2389. <li><a href="h_info_on_mbox">Information on mbox driver</a>
  2390. <li><a href="h_config_role_inick">Initialize Values From Role Explained</a>
  2391. <li><a href="h_main_journal">Journal Command</a>
  2392. <li><a href="h_common_jump">Jump Command</a>
  2393. <li><a href="h_compose_justify">Justify Command</a>
  2394. <li><a href="h_main_kblock">Keyboard Lock Command</a>
  2395. <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: disable-ad-hoc-space-substitution</a>
  2396. <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: lookup-addrbook-contents</a>
  2397. <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: save-search-criteria-not-result</a>
  2398. <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: use-implicitly-from-composer</a>
  2399. <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
  2400. <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
  2401. <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
  2402. <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
  2403. <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
  2404. <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
  2405. <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
  2406. <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
  2407. <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
  2408. <li><a href="h_config_ldap_server">LDAP OPTION: ldap-server</a>
  2409. <li><a href="h_config_ldap_nick">LDAP OPTION: nickname</a>
  2410. <li><a href="h_config_ldap_port">LDAP OPTION: port</a>
  2411. <li><a href="h_config_ldap_base">LDAP OPTION: search-base</a>
  2412. <li><a href="h_ldap_view">LDAP Response View Explained</a>
  2413. <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
  2414. <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
  2415. <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
  2416. <li><a href="h_common_index">Message Index Command</a>
  2417. <li><a href="new_user_greeting">NEW USER GREETING</a>
  2418. <li><a href="new_version_greeting">NEW VERSION GREETING</a>
  2419. <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
  2420. <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
  2421. <li><a href="h_common_nextnew">NextNew Command</a>
  2422. <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
  2423. <li><a href="h_config_ab_sort_rule">OPTION: Address-Book-Sort-Rule</a>
  2424. <li><a href="h_config_abook_formats">OPTION: Addressbook-Formats</a>
  2425. <li><a href="h_config_alt_addresses">OPTION: Alt-Addresses</a>
  2426. <li><a href="h_config_bold_slctbl">OPTION: Bold</a>
  2427. <li><a href="h_config_char_set">OPTION: Character-Set</a>
  2428. <li><a href="h_config_composer_wrap_column">OPTION: Composer-Wrap-Column</a>
  2429. <li><a href="h_config_custom_hdrs">OPTION: Customized-Headers</a>
  2430. <li><a href="h_config_dflt_color">OPTION: Default Color</a>
  2431. <li><a href="h_config_default_fcc">OPTION: Default-FCC (File Carbon Copy)</a>
  2432. <li><a href="h_config_def_save_folder">OPTION: Default-Saved-Msg-Folder</a>
  2433. <li><a href="h_config_display_filters">OPTION: Display-Filters</a>
  2434. <li><a href="h_config_download_cmd">OPTION: Download-command</a>
  2435. <li><a href="h_config_download_prefix">OPTION: Download-command-prefix</a>
  2436. <li><a href="h_config_editor">OPTION: Editor</a>
  2437. <li><a href="h_config_empty_hdr_msg">OPTION: Empty-Header-Message</a>
  2438. <li><a href="h_config_fcc_rule">OPTION: FCC-Name-Rule</a>
  2439. <li><a href="h_config_fld_sort_rule">OPTION: Folder-Sort-Rule</a>
  2440. <li><a href="h_config_form_folder">OPTION: Form-Letter-Folder</a>
  2441. <li><a href="h_config_inbox_path">OPTION: Inbox-Path</a>
  2442. <li><a href="h_config_archived_folders">OPTION: Incoming-Archive-Folders</a>
  2443. <li><a href="h_config_index_color">OPTION: Index Colors</a>
  2444. <li><a href="h_config_index_format">OPTION: Index-Format</a>
  2445. <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
  2446. <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
  2447. <li><a href="h_config_prune_date">OPTION: Last-Time-Prune Question</a>
  2448. <li><a href="h_config_nntp_server">OPTION: NNTP-Server</HEAD></a>
  2449. <li><a href="h_config_normal_color">OPTION: Normal Color</a>
  2450. <li><a href="h_config_postponed_folder">OPTION: Postponed-Folder</a>
  2451. <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
  2452. <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
  2453. <li><a href="h_config_read_message_folder">OPTION: Read-Message-Folder</a>
  2454. <li><a href="h_config_reply_indent_string">OPTION: Reply-Indent-String</a>
  2455. <li><a href="h_config_reply_intro">OPTION: Reply-Leadin</a>
  2456. <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
  2457. <li><a href="h_config_incol">OPTION: Index Line Color</a>
  2458. <li><a href="h_config_smtp_server">OPTION: SMTP-Server</a>
  2459. <li><a href="h_config_saved_msg_name_rule">OPTION: Saved-Msg-Name-Rule</a>
  2460. <li><a href="h_config_scroll_margin">OPTION: Scroll-margin</a>
  2461. <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
  2462. <li><a href="h_config_sending_filter">OPTION: Sending-Filters</a>
  2463. <li><a href="h_config_sort_key">OPTION: Sort-Key</a>
  2464. <li><a href="h_config_speller">OPTION: Speller</a>
  2465. <li><a href="h_config_status_color">OPTION: Status Color</a>
  2466. <li><a href="h_config_status_msg_delay">OPTION: Status-Message-Delay</a>
  2467. <li><a href="h_config_title_color">OPTION: Title Color</a>
  2468. <li><a href="h_config_upload_cmd">OPTION: Upload-command</a>
  2469. <li><a href="h_config_upload_prefix">OPTION: Upload-command-prefix</a>
  2470. <li><a href="h_config_domain_name">OPTION: Use-Only-Domain-Name</a>
  2471. <li><a href="h_config_user_dom">OPTION: User-Domain</a>
  2472. <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
  2473. <li><a href="h_config_customhdr_color">OPTION: Viewer Header Colors</a>
  2474. <li><a href="h_config_viewer_headers">OPTION: Viewer-Headers</a>
  2475. <li><a href="h_config_file_dir">OPTION: file-directory</a>
  2476. <li><a href="h_config_goto_default">OPTION: goto-default-rule</a>
  2477. <li><a href="h_config_inc_startup">OPTION: incoming-startup-rule</a>
  2478. <li><a href="h_config_mailcap_path">OPTION: mailcap-search-path</a>
  2479. <li><a href="h_config_newsrc_path">OPTION: newsrc-path</a>
  2480. <li><a href="h_config_signature_file">OPTION: signature-file</a>
  2481. <li><a href="h_config_browser">OPTION: url-viewers</a>
  2482. <li><a href="h_news_pcpine">PC-Pine Notes</a>
  2483. <li><a href="h_news_config">Pine Configuration</a>
  2484. <li><a href="h_news_legal">Pine Legal Notices</a>
  2485. <li><a href="h_pipe_command">Pipe Command SubOptions</a>
  2486. <li><a href="h_common_pipe">Pipe Command</a>
  2487. <li><a href="h_common_postpone">Postpone Command</a>
  2488. <li><a href="h_common_print">Print Command</a>
  2489. <li><a href="h_news">RELEASE NOTES for Pine</a>
  2490. <li><a href="h_role_select">ROLES SCREEN</a>
  2491. <li><a href="h_compose_readfile">Read File Command</a>
  2492. <li><a href="h_main_release_notes">Release Notes Command</a>
  2493. <li><a href="h_common_reply">Reply and Forward Commands</a>
  2494. <li><a href="h_compose_richhdr">Rich Header Command</a>
  2495. <li><a href="h_config_role_ccpat">Role Cc Pattern Explained</a>
  2496. <li><a href="h_common_role">Role Command</a>
  2497. <li><a href="h_config_role_composeuse">Role Compose Use Explained</a>
  2498. <li><a href="h_config_role_fldr_type">Role Current Folder Type Explained</a>
  2499. <li><a href="h_config_role_forwarduse">Role Forward Use Explained</a>
  2500. <li><a href="h_config_role_frompat">Role From Pattern Explained</a>
  2501. <li><a href="h_config_role_newspat">Role News Pattern Explained</a>
  2502. <li><a href="h_config_role_nick">Role Nickname Explained</a>
  2503. <li><a href="h_config_role_replyuse">Role Reply Use Explained</a>
  2504. <li><a href="h_config_role_senderpat">Role Sender Pattern Explained</a>
  2505. <li><a href="h_config_role_setfcc">Role Set Fcc Action Explained</a>
  2506. <li><a href="h_config_role_setfrom">Role Set From Action Explained</a>
  2507. <li><a href="h_config_role_setreplyto">Role Set Reply-To Action Explained</a>
  2508. <li><a href="h_config_role_setsig">Role Set Sig Action Explained</a>
  2509. <li><a href="h_config_role_settempl">Role Set Template Action Explained</a>
  2510. <li><a href="h_config_role_subjpat">Role Subject Pattern Explained</a>
  2511. <li><a href="h_config_role_topat">Role To Pattern Explained</a>
  2512. <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
  2513. <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
  2514. <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
  2515. <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
  2516. <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
  2517. <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
  2518. <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
  2519. <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
  2520. <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
  2521. <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
  2522. <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
  2523. <li><a href="h_common_save">Save and Export Commands</a>
  2524. <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
  2525. <li><a href="h_compose_send">Send Command</a>
  2526. <li><a href="h_main_setup">Setup Command</a>
  2527. <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
  2528. <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
  2529. <li><a href="h_index_cmd_sort">Sort Command</a>
  2530. <li><a href="h_compose_spell">Spell Check Command</a>
  2531. <li><a href="h_common_suspend">Suspend Command</a>
  2532. <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
  2533. <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
  2534. <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
  2535. <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
  2536. <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
  2537. <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
  2538. <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
  2539. <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
  2540. <li><a href="h_abook_opened">THE PINE ADDRESS BOOK</a>
  2541. <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
  2542. <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
  2543. <li><a href="h_common_take">TakeAddr Command</a>
  2544. <li><a href="h_index_tokens">Tokens for Index and Replying</a>
  2545. <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
  2546. <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
  2547. <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
  2548. <li><a href="h_index_cmd_whereis">WhereIs Command</a>
  2549. <li><a href="h_view_cmd_whereis">WhereIs Command</a>
  2550. <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
  2551. <li><a href="h_config_browser_xterm">url-viewers and X windows applications</a>
  2552. </UL>
  2553.  
  2554. <P>
  2555. <End of Help Index>
  2556. </BODY>
  2557. </HTML>
  2558.  
  2559.  
  2560. ============== h_config_remote_config =============
  2561. <HTML>
  2562. <HEAD>
  2563. <TITLE>Remote Configuration</TITLE>
  2564. </HEAD>
  2565. <BODY>
  2566. <H1>Remote Configuration</H1>
  2567.  
  2568. You may use the command line argument "-p pinerc" to tell
  2569. Pine to use a non-default configuration file.
  2570. There are two types of storage for configuration information.
  2571. <EM>Local</EM> configuration files are used by default.
  2572. These are just regular files on the UNIX system or on the PC.
  2573. The file "<CODE>.pinerc</CODE>" is the default for Unix Pine and the
  2574. file "<CODE>PINERC</CODE>" is the default for PC-Pine.
  2575. <EM>Remote</EM> configuration folders are stored on an IMAP server.
  2576. The advantage of using a remote configuration is that the same information
  2577. may be accessed from multiple platforms.
  2578. For example, if you use one computer at work and another at home, the same
  2579. configuration could be used from both places.
  2580. A configuration change from one place would be seen in both places.
  2581. To use a remote configuration you simply give a
  2582. <A HREF="h_valid_folder_names">remote folder name</A>
  2583. as the argument to the "-p" command line option.
  2584. The command line might look something like:
  2585. <P>
  2586. <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
  2587. <P>
  2588. If there are special characters in the command shell you use, you may need to
  2589. quote the last argument (to protect the braces from the shell).
  2590. The command might look like:
  2591. <P>
  2592. <CENTER><SAMP>pine -p "{my.imap.server}remote_pinerc"</SAMP></CENTER>
  2593. <P>
  2594. You should choose a folder name for a folder that does not yet exist.
  2595. It will be created containing an empty configuration.
  2596. Do not use a folder that you wish to store regular mail messages in.
  2597. <P>
  2598. The Setup/RemoteConfigSetup command will help you convert from a local
  2599. configuration to a remote configuration.
  2600. It will create a remote configuration for you and copy your current local
  2601. configuration to it.
  2602. It will also help you convert local address books into remote address books
  2603. and local signature files into literal signatures contained in the
  2604. remote configuration file.
  2605. <P>
  2606. If the Setup/RemoteConfigSetup command doesn't do what you want, you
  2607. may copy a local pinerc file to a remote configuration folder by hand
  2608. by using the command line option "-copy_pinerc".
  2609. <P>
  2610. Another command line option, which is somewhat related to remote
  2611. configuration, is the option "-x exceptions_config".
  2612. The configuration settings in the exceptions configuration override
  2613. your default settings.
  2614. It may be useful to store the default configuration (the -p argument) remotely
  2615. and to have the exceptions configuration stored in a local file.
  2616. You might put generic configuration information in the remote configuration
  2617. and platform-specific configuration on each platform in the exceptions
  2618. configuration.
  2619. The arguments to the "-p" and "-x" options
  2620. can be either remote folders or local files.
  2621. <P>
  2622. There is another command line argument which works only with PC-Pine and
  2623. which may prove useful when using a remote configuration.
  2624. The option "-aux local_directory" allows you to tell PC-Pine where
  2625. to store your local auxiliary files.
  2626. This only has an effect if your configuration file is remote.
  2627. Some examples of auxiliary files are debug files, address book files, and
  2628. signature files.
  2629. <P>
  2630. <End of help on this topic>
  2631. </BODY>
  2632. </HTML>
  2633. ============== h_config_exceptions =============
  2634. <HTML>
  2635. <HEAD>
  2636. <TITLE>Generic and Exceptional Configuration</TITLE>
  2637. </HEAD>
  2638. <BODY>
  2639. <H1>Generic and Exceptional Configuration</H1>
  2640.  
  2641. If you use Pine from more than one platform it may be convenient
  2642. to split your configuration information into two pieces, a generic piece
  2643. and exceptions which apply to a particular platform.
  2644. For example, suppose you use Pine from home and from work.
  2645. Most of your configuration settings are probably the
  2646. same in both locations, so those settings belong in the generic settings
  2647. configuration.
  2648. However, you may use a different SMTP server and INBOX
  2649. from home than you do from work.
  2650. The "smtp-server" and "inbox-path" options could be
  2651. part of your exceptional configuration so that they could be different in the
  2652. two places.
  2653. <P>
  2654. The command line option "-x exceptions_config"
  2655. may be used to split your configuration into generic and exceptional pieces.
  2656. "Exceptions_config" may be either local or remote.
  2657. The regular Pine configuration file will contain the generic data, and
  2658. "exceptions_config" will contain the exceptional data.
  2659. <P>
  2660. For Unix Pine, if you don't have a "-x" command line option,
  2661. Pine will look for the file "<CODE>.pinercex</CODE>"
  2662. in the same local directory that the regular config file is located in (usually
  2663. the Unix home directory).
  2664. If the regular config file is remote (because the command line option
  2665. "-p remote_config" was used) then Unix Pine looks in the Unix home
  2666. directory for "<CODE>.pinercex</CODE>".
  2667. If the file does not already exist then no exceptions will be used.
  2668. You can force exceptions to be used by using the "-x" option or
  2669. by creating an empty "<CODE>.pinercex</CODE>" file.
  2670. <P>
  2671. For PC-Pine, if you don't have a "-x" command line option,
  2672. PC-Pine will use the value of the
  2673. environment variable <CODE>$PINERCEX</CODE>.
  2674. If that is not set, PC-Pine will look for
  2675. the local file "<CODE>PINERCEX</CODE>"
  2676. in the same local directory that the regular config file is located in.
  2677. If the regular config file is remote (because the command line option
  2678. "-p remote_config" was used) then PC-Pine looks in the
  2679. local directory specified by the "-aux local_directory" command
  2680. line argument, or the directory <CODE>$HOME\PINE</CODE>, or
  2681. in the <CODE><PINE.EXE </CODE>directory<CODE>></CODE>.
  2682. <P>
  2683. When you have an exception configuration there is a new command
  2684. in the Pine Setup screen, Setup/eXceptions.
  2685. It toggles between exceptions and the regular configuration.
  2686. This is the usual way to make changes in your exceptional configuration data.
  2687. For example, you would type "S" for Setup, "X" for
  2688. eXception, then follow that with one of the Setup commands, like "C"
  2689. for Config or "K" for Kolor.
  2690. <P>
  2691. For most people, splitting the configuration information into two pieces is
  2692. going to be most useful if the generic information is accessed
  2693. <A HREF="h_config_remote_config">remotely</A>).
  2694. That data will be the same no matter where you access it from and if you
  2695. change it that change will show up everywhere.
  2696. The exceptional data will most commonly be in a local file, so that the
  2697. contents may easily be different on each computing platform used.
  2698. <P>
  2699. If you already have a local configuration file with settings you like
  2700. you may find that the command Setup/RemoteConfigSetup is useful
  2701. in helping you convert to a remote configuration.
  2702. The command line flag "-copy_pinerc"
  2703. may also be useful.
  2704. <P>
  2705. <End of help on this topic>
  2706. </BODY>
  2707. </HTML>
  2708. ============== h_config_inheritance =============
  2709. <HTML>
  2710. <HEAD>
  2711. <TITLE>Configuration Inheritance</TITLE>
  2712. </HEAD>
  2713. <BODY>
  2714. <H1>Configuration Inheritance</H1>
  2715.  
  2716. Configuration inheritance is a power user feature.
  2717. It is confusing and not completely supported by the configuration
  2718. user interface.
  2719. We start with an explanation of how configuration works in hopes of making
  2720. it easier to describe how inheritance works.
  2721. <P>
  2722. Pine uses a hierarchy of configuration values from different locations.
  2723. There are five ways in which each configuration option (configuration
  2724. variable) can be set.
  2725. In increasing order of precedence they are:
  2726. <P>
  2727. <OL>
  2728. <LI> the system-wide configuration file.
  2729.  
  2730. <LI> the personal configuration file
  2731.  
  2732. <LI> the personal exceptions file
  2733.  
  2734. <LI> a command line argument
  2735.  
  2736. <LI> the system-wide <EM>fixed</EM> configuration file (Unix Pine only)
  2737. </OL>
  2738. <P>
  2739. The fixed configuration file is normally
  2740. <CODE>/usr/local/lib/pine.conf.fixed</CODE>.
  2741. <P>
  2742. The system-wide configuration file is normally
  2743. <CODE>/usr/local/lib/pine.conf</CODE> for Unix Pine and is normally not
  2744. set for PC-Pine.
  2745. For PC-Pine, if the environment variable <EM>$PINECONF</EM> is set, that
  2746. is used for the system-wide configuration.
  2747. This location can be set or changed on the command line with the -P flag.
  2748. The system-wide configuration file can be either a local file or a
  2749. remote configuration folder.
  2750. <P>
  2751. For Unix Pine, the personal configuration file is normally the file
  2752. <CODE>.pinerc</CODE> in the user's home directory.
  2753. This can be changed with the -p command line flag.
  2754. For PC-Pine, the personal configuration file is in
  2755. <CODE>$PINERC</CODE> or <CODE><PineRC registry value></CODE> or 
  2756. <CODE>$HOME\PINE\PINERC</CODE> or
  2757. <CODE><PINE.EXE </CODE>dir<CODE>>\PINERC</CODE>.
  2758. This can be changed with the -p command line flag.
  2759. If -p is used, the configuration data may be in a local file or a remote config
  2760. folder.
  2761. <P>
  2762. For Unix Pine, the personal exceptions configuration file is named
  2763. <CODE>.pinercex</CODE> and is in the same directory as the personal
  2764. configuration file, if that configuration file is not remote, and is in
  2765. the home directory if the personal configuration file is remote.
  2766. If the file exists, then exceptions are turned on.
  2767. If it doesn't, then you are not using exceptions.
  2768. Alternatively, you may change the location of the exceptions configuration
  2769. by using the command line argument "-x <exceptions_config>".
  2770. Like the personal configuration data, exceptions_config may be
  2771. either local or remote.
  2772. <P>
  2773. For PC-Pine, the personal exceptions configuration file is named
  2774. <CODE>PINERCEX</CODE> and is in the same directory as the personal
  2775. configuration file unless the personal configuration file is remote.
  2776. In that case, it is in the local directory specfied by the
  2777. "-aux local_directory" command line argument.
  2778. (In the case that the personal configuration is remote and there is no
  2779. "-aux" command line argument, Pine searches for
  2780. a PINERCEX file in the directory <CODE>$HOME\PINE</CODE> and
  2781. the directory <CODE><PINE.EXE </CODE>dir<CODE>></CODE>.)
  2782. If the file exists, then exceptions are turned on.
  2783. If it doesn't, then you are not using exceptions.
  2784. You may change the location of the exceptions configuration
  2785. by using the command line argument "-x <exceptions_config>".
  2786. or with the
  2787. environment variable <CODE>$PINERCEX</CODE> (if there is no "-x"
  2788. option).
  2789. <P>
  2790. To reiterate, the value of a configuration option is taken from the
  2791. last location in the list above in which it is set.
  2792. Or, thinking about it slightly differently, a default value for an option
  2793. is established in the system-wide configuration file (or in the source
  2794. code if there is no value in the system-wide file).
  2795. That default remains in effect until and unless it is overridden by a value in a
  2796. location further down the list, in which case a new "default"
  2797. value is established.
  2798. As we continue down the list of locations we either retain the
  2799. value at each step or establish a new value.
  2800. The value that is still set after going through the whole list of
  2801. configuration locations is the one that is used.
  2802. <P>
  2803. So, for example, if an option is set in the system-wide configuration
  2804. file and in the personal configuration file, but is not set in the
  2805. exceptions, on the command line, or in the fixed file; then the value
  2806. from the personal configuration file is the one that is used.
  2807. Or, if it is set in the system-wide config, in the personal config, not
  2808. in the exceptions, but is set on the command line; then the value
  2809. on the command line is used.
  2810. <P>
  2811. Finally we get to inheritance.
  2812. For configuration options which are lists, like "smtp-server" or
  2813. "incoming-folders",
  2814. the inheritance mechanism makes it possible to <EM>combine</EM>
  2815. the values from different locations instead of <EM>replacing</EM> the value.
  2816. This is true of all configuration lists other than the "feature-list",
  2817. for which you may already set whatever you want at
  2818. any configuration location (by using the "no-" prefix if
  2819. necessary).
  2820. <P>
  2821. To use inheritance, set the first item in a configuration list to the
  2822. token "INHERIT", without the quotes.
  2823. If the first item is "INHERIT",
  2824. then instead of replacing the default value established so far, the rest of
  2825. the list is appended to the default value established so far and that is
  2826. the new value.
  2827. <P>
  2828. Here is an example which may make it clearer. Suppose we have:
  2829. <P>
  2830. <PRE>
  2831.  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
  2832.  Personal config    :   smtp-server = INHERIT, mysmtp.home
  2833.  Exceptions config  :   smtp-server = <No Value Set>
  2834.  Command line       :   smtp-server = <No Value Set>
  2835.  Fixed config       :   smtp-server = <No Value Set>
  2836. </PRE>
  2837. <P>
  2838.  
  2839. This would result in an effective smtp-server option of
  2840. <P>
  2841. <PRE>
  2842.  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
  2843. </PRE>
  2844. <P>
  2845. The "INHERIT" token can be used in any of the configuration files
  2846. and the effect cascades.
  2847. For example, if we change the above example to:
  2848. <P>
  2849. <PRE>
  2850.  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
  2851.  Personal config    :   smtp-server = INHERIT, mysmtp.home
  2852.  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
  2853.  Command line       :   smtp-server = <No Value Set>
  2854.  Fixed config       :   smtp-server = <No Value Set>
  2855. </PRE>
  2856. <P>
  2857.  
  2858. This would result in:
  2859. <P>
  2860. <PRE>
  2861.  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
  2862. </PRE>
  2863. <P>
  2864. Unset variables are skipped over (the default value is carried forward) so
  2865. that, for example:
  2866. <P>
  2867. <PRE>
  2868.  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
  2869.  Personal config    :   smtp-server = <No Value Set>
  2870.  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
  2871.  Command line       :   smtp-server = <No Value Set>
  2872.  Fixed config       :   smtp-server = <No Value Set>
  2873. </PRE>
  2874. <P>
  2875.  
  2876. produces:
  2877. <P>
  2878. <PRE>
  2879.  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
  2880. </PRE>
  2881. <P>
  2882.  
  2883. If any later configuration location has a value set (for a particular list
  2884. option) which does <EM>not</EM> begin with "INHERIT",
  2885. then that value replaces whatever value has been defined up to that point.
  2886. In other words, that cancels out any previous inheritance.
  2887. <P>
  2888. <PRE>
  2889.  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
  2890.  Personal config    :   smtp-server = INHERIT, mysmtp.org
  2891.  Exceptions config  :   smtp-server = yoursmtp.org
  2892.  Command line       :   smtp-server = <No Value Set>
  2893.  Fixed config       :   smtp-server = <No Value Set>
  2894. </PRE>
  2895. <P>
  2896.  
  2897. results in:
  2898. <P>
  2899. <PRE>
  2900.  smtp-server = yoursmtp.org
  2901. </PRE>
  2902. <P>
  2903.  
  2904. For some configuration options, like "viewer-hdr-colors" or
  2905. "patterns-roles", it is
  2906. difficult to insert the value "INHERIT" into the list of values
  2907. for the option using the normal Setup tools.
  2908. In other words, the color setting screen (for example) does not
  2909. provide a way to input the text "INHERIT" as the first
  2910. item in the viewer-hdr-colors option.
  2911. The way to do this is to either edit the pinerc file directly and manually
  2912. insert it, or turn
  2913. on the <A HREF="h_config_expose_hidden_config">expose-hidden-config</A>
  2914. feature and insert it using the Setup/Config screen.
  2915. <P>
  2916. <End of help on this topic>
  2917. </BODY>
  2918. </HTML>
  2919. ============== h_special_xon_xoff =============
  2920. <HTML>
  2921. <HEAD>
  2922. <TITLE>Explanation of Pine's XOFF/XON Handling</TITLE>
  2923. </HEAD>
  2924. <BODY>
  2925. <H1>XOFF/XON Handling within Pine</H1>
  2926.  
  2927. By default, Pine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
  2928. and XON) as normal characters, even though Pine does not use them.
  2929. However, the printer, modem, or communication software you are using may
  2930. be configured for "software flow control," which means that
  2931. XON/XOFF must be treated as special characters by the operating system.
  2932. If you see messages such as "^X not defined for this screen",
  2933. then your system is probably using software flow control. In this case
  2934. you will need to set the
  2935. <A HREF="h_config_preserve_start_stop">"preserve-start-stop-characters"</A>
  2936. feature.
  2937. <P>
  2938. If you <EM>do</EM> set this
  2939. feature, be advised that if you accidentally hit a Ctrl-S, Pine will
  2940. mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
  2941. and see if that puts things right.  Printing via the
  2942. "attached-to-ansi" option will automatically enable software
  2943. flow-control handling for the duration of the printing.
  2944. <P>
  2945. <End of help on this topic>
  2946. </BODY>
  2947. </HTML>
  2948. ============= h_special_help_nav =============
  2949. <HTML>
  2950. <HEAD>
  2951. <TITLE>Help Text Navigation Explained</TITLE>
  2952. </HEAD>
  2953. <BODY>
  2954. <H1>Help Text Navigation Explained</H1>
  2955.  
  2956. Pine contains extensive context-sensitive help text.   At any point, 
  2957. pressing the "?" key will bring up a page of help text
  2958. explaining the options available to you.  You can leave the help
  2959. text screen and return to normal Pine operation by pressing
  2960. the
  2961. <!--chtml if pinemode="function_key"-->
  2962. F3 function
  2963. <!--chtml else-->
  2964. "E"
  2965. <!--chtml endif-->
  2966. key to Exit Help at any time.
  2967.  
  2968. <P>
  2969. Within the help screen you might find a word or phrase displayed in 
  2970. inverse text and others displayed in bold typeface.  Such words and
  2971. phrases are used to tell you Pine has more information available on
  2972. the topic they describe.
  2973. The inverted text is the "selected" topic.  
  2974. Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
  2975. displayed in bold type
  2976. is "selected".
  2977. Hit the Return key to display the information Pine has available on that
  2978. topic.  While viewing such additional information, the 
  2979. <!--chtml if pinemode="function_key"-->
  2980. F3 function
  2981. <!--chtml else-->
  2982. "P"
  2983. <!--chtml endif-->
  2984. key will return you to the previous help screen, and the
  2985. <!--chtml if pinemode="function_key"-->
  2986. F2 function
  2987. <!--chtml else-->
  2988. "E"
  2989. <!--chtml endif-->
  2990. key will Exit the Help system altogether.
  2991.  
  2992. <P>
  2993. When you are finished reading this help text, you can press the
  2994. <!--chtml if pinemode="function_key"-->
  2995. F3 function
  2996. <!--chtml else-->
  2997. "P"
  2998. <!--chtml endif-->
  2999. key to return to the previously displayed help text.
  3000.  
  3001. <P>
  3002. <End of help on this topic>
  3003. </BODY>
  3004. </HTML>
  3005. ============= h_special_list_commands =============
  3006. <HTML>
  3007. <HEAD>
  3008. <TITLE>Email List Commands Explained</TITLE>
  3009. </HEAD>
  3010. <BODY>
  3011. <H1>Email List Commands Explained</H1>
  3012.  
  3013. Electonic mail lists provide a way for like-minded users to join in
  3014. discussions on topics of interest.  The email list itself is 
  3015. represented by a
  3016. single address that participants send messages to when they have
  3017. something of interest to share with other members of the list.  The
  3018. receiving computer then, either automatically or after review by the
  3019. list's owner (or moderator), sends a copy of that message to each
  3020. member of the list.
  3021.  
  3022. <P>
  3023. Usually, subscribing and unsubscribing is done by sending requests in
  3024. an email message to a special address setup to handle managing list
  3025. membership.  Often this is the name of the list followed by
  3026. <I>-request</I>.  This address is almost <EM>never</EM> the same as
  3027. the address used to send messages to the list.
  3028.  
  3029. <P>
  3030. Unfortunately, email list participation commands are more a matter
  3031. of convention than standard, and thus may vary from list to list.
  3032. Increasingly, list management software is adding information to
  3033. the copy of the postings as they're copied to the list members that
  3034. explains how to do the various list management functions.
  3035.  
  3036. <P>
  3037. Pine will recognize this information and offer the management commands
  3038. they represent in a simple display. One or more of the following
  3039. operations will be made available:
  3040.  
  3041. <DL>
  3042. <DT>Help</DT>
  3043. <DD>
  3044. A method to get help on subscribing, unsubscribing, 
  3045. an explanation of what the list is about, or special instructions
  3046. for participation.  This may be in the form of a reply in response
  3047. to an email message, or instructions on how to connect to a Web site.
  3048. </DD>
  3049.  
  3050. <DT>Unsubscribe</DT>
  3051. <DD>
  3052. A method to get your email addressed removed from the list of
  3053. recipients of the email list.
  3054. </DD>
  3055.  
  3056. <DT>Subscribe</DT>
  3057. <DD>
  3058. A method to get your email address added to the list of recipients
  3059. of the email list.  It may be in the form of a message sent to 
  3060. a special address or you may be connected to a web site.
  3061. <DD>
  3062. </DD>
  3063.  
  3064. <DT>Post</DT>
  3065. <DD>
  3066. A method used to post to the email list.  However, it might also 
  3067. indicate that no posting is allowed directly to the list.
  3068. </DD>
  3069.  
  3070. <DT>Owner</DT>
  3071. <DD>
  3072. A method to contact the list owner for special questions you might
  3073. have regarding the list.
  3074. </DD>
  3075.  
  3076. <DT>Archive</DT>
  3077. <DD>
  3078. A method to view an archive of previous messages posted to the list.
  3079. This may be in the form of a mail folder on a remote computer, an
  3080. IMAP mailbox or even a Web site.
  3081. </DD>
  3082. </DL>
  3083.  
  3084. <P>
  3085. <End of help on this topic>
  3086. </BODY>
  3087. </HTML>
  3088. ============= h_mail_index =============
  3089. <HTML>
  3090. <HEAD>
  3091. <TITLE>MESSAGE INDEX COMMANDS</TITLE>
  3092. </HEAD>
  3093. <BODY>                 
  3094. <H1>MESSAGE INDEX COMMANDS</H1>
  3095. <!--chtml if pinemode="function_key"-->
  3096. Available  Commands -- Group 1         Available Commands -- Group 2<BR>
  3097. -------------------------------        -----------------------------<BR>
  3098. F1  Show Help Text                     F1  Show Help Text<BR>
  3099. F2  Toggle to see more commands        F2  Toggle to see more commands<BR>
  3100. F3  <A HREF="h_common_folders">FOLDER LIST</A> Screen                 F3  MAIN MENU Screen<BR>
  3101. F4  View current message               F4  Quit Pine<BR>
  3102. F5  Move to previous message           F5  <A HREF="h_common_compose">Compose</A> a message<BR>
  3103. F6  Move to next message               F6  <A HREF="h_common_goto">Goto</A> a specified folder<BR>
  3104. F7  Show previous screen of messages   F7  <A HREF="h_common_nextnew">Next new</A> message<BR>
  3105. F8  Show next screen of messages       F8  <A HREF="h_index_cmd_whereis">Whereis</A><BR>
  3106. F9  <A HREF="h_common_delete">Mark message for deletion</A>          F9  <A HREF="h_common_print">Print</A> message<BR>
  3107. F10 <A HREF="h_common_delete">Undelete</A> (remove delete mark)      F10 <A HREF="h_common_take">Take Address</A> into address book<BR>
  3108. F11 <A HREF="h_common_reply">Reply</A> to message                   F11 <A HREF="h_common_save">Save</A> message into an email folder<BR>
  3109. F12 <A HREF="h_common_reply">Forward</A> message                    F12 <A HREF="h_common_save">Export</A> message into a plain file<BR>
  3110. <BR>
  3111. Available Commands -- Group 3<BR>
  3112. -----------------------------<BR>
  3113. F3  <A HREF="h_index_cmd_expunge">Expunge/Exclude</A>    F7 <A HREF="h_index_cmd_sort">Sort</A> order of index  F10 <A HREF="h_common_bounce">Bounce</A> (remail) msg<BR>
  3114. F5  <A HREF="h_index_cmd_select">Select</A>             F8 <A HREF="h_common_jump">Jump</A> to message      F11 <A HREF="h_common_flag">Flag</A> message as important<BR>
  3115. F6  <A HREF="h_index_cmd_apply">Apply</A>              F9 <A HREF="h_common_hdrmode">Full Header Mode</A>     F12 <A HREF="h_common_pipe">Pipe</A> to a Unix command<BR>
  3116. <BR>
  3117. Available Commands -- Group 4<BR>
  3118. -----------------------------<BR>
  3119. F3  Select Current     F4  <A HREF="h_index_cmd_zoom">Zoom</A>                F5  COLLECTION LIST Screen
  3120. F6  <A HREF="h_common_role">Compose using a role</A><BR>
  3121. <BR>
  3122. <!--chtml else-->
  3123. Navigating the List of Messages            Operations on the Current Message<BR>
  3124. -------------------------------            ---------------------------------<BR>
  3125.  P   Move to the previous message          >  View                 %  <A HREF="h_common_print">Print</A><BR>
  3126.  N   Move to the next message              R  <A HREF="h_common_reply">Reply</A> to message     F  <A HREF="h_common_reply">Forward</A><BR>
  3127.  -   Show previous screen of messages      D  <A HREF="h_common_delete">Mark for deletion</A><BR>
  3128. Spc  Show next screen of messages          U  <A HREF="h_common_delete">Undelete</A> (remove deletion mark)<BR>
  3129.  J   <A HREF="h_common_jump">Jump</A> to a specific message            T  <A HREF="h_common_take">Take Address</A> into Address Book<BR>
  3130.  W   <A HREF="h_index_cmd_whereis">Whereis</A> -- search for a               S  <A HREF="h_common_save">Save</A> into an email folder<BR>
  3131.      specific message                      E  <A HREF="h_common_save">Export</A> as a plain text file<BR>
  3132. Tab  <A HREF="h_common_nextnew">Next new</A> message                      B  <A HREF="h_common_bounce">Bounce</A>              *  <A HREF="h_common_flag">Flag</A><BR>
  3133.                                            |  <A HREF="h_common_pipe">Pipe</A> to a Unix Command<BR>
  3134. Miscellaneous Operations<BR>
  3135. ------------------------<BR>
  3136.  G   <A HREF="h_common_goto">Goto</A> a specified folder     General Pine Commands<BR>
  3137.  $   <A HREF="h_index_cmd_sort">Sort</A> order of index         ---------------------<BR>
  3138.  H   <A HREF="h_common_hdrmode">Full header mode</A>            O  Show all other available commands<BR>
  3139.  X   <A HREF="h_index_cmd_expunge">Expunge/Exclude</A>             ?  Show Help text     Q Quit Pine<BR>
  3140.  Z   <A HREF="h_index_cmd_zoom">Zoom</A>                        M  MAIN MENU Screen   < <A HREF="h_common_folders">FOLDER LIST</A> Screen<BR>
  3141.  ;   <A HREF="h_index_cmd_select">Select</A>     A <A HREF="h_index_cmd_apply">Apply</A>          C  <A HREF="h_common_compose">Compose</A> a new message<BR>
  3142.  :   Select Current              #  <A HREF="h_common_role">Compose using a role</A><BR>
  3143.                                  L  COLLECTION LIST Screen<BR>
  3144. <!--chtml endif-->
  3145. <P>
  3146.  
  3147. NOTE:
  3148. <OL>
  3149.  <LI>For help on a particular command, hilite the bold text associated
  3150. with it above and hit Return.
  3151.  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
  3152. </OL>
  3153.  
  3154. <H2>Description of the MESSAGE INDEX Screen</H2>
  3155.  
  3156. The MESSAGE INDEX displays summary information from each
  3157. message in the current folder.
  3158. This is useful if you want to quickly
  3159. scan new messages, or find a particular message without having to go
  3160. through the text of each message, or to quickly get rid of junk
  3161. messages, etc.
  3162. The current message is always highlighted.
  3163. Each line of the MESSAGE INDEX contains the following columns (by default -- 
  3164. you can change this with the 
  3165. "<A HREF="h_config_index_format">Index-Format</A>" option
  3166. in the SETUP CONFIGURATION screen): <P>
  3167. <DL>
  3168.  <DT>STATUS:</DT>
  3169.  <DD> The markings on the left side of the message tell you about its
  3170. status.  You may see one or more of the following codes on any given
  3171. message:
  3172. <UL>
  3173.   <LI> "D" for Deleted.  You have marked this message for deletion but not
  3174.      yet eXpunged the folder.
  3175.   <LI> "N" for New.  You have not looked at the text of the message yet.
  3176.   <LI> "A" for Answered.  Any time you reply to a message it is considered
  3177.      to be answered.
  3178.   <LI> "+" for direct-to-you.  The "+" indicates that a message was sent
  3179.     directly to your account, your copy is not part of a cc: or a
  3180.     mailing list.
  3181.   <LI> "-" for cc-to-you. The "-" indicates that a
  3182.     message was sent to you as a cc:. This symbol can only show up if
  3183.     you have turned on the feature
  3184.     "<A HREF="h_config_mark_for_cc">mark-for-cc</A>".
  3185.   <LI> "X" for selected.  You have selected the message by using the
  3186.     "select" command.  (Some systems may optionally allow selected
  3187.     messages to be denoted by the index line being displayed in bold
  3188.     type.)
  3189.   <LI> "*" for Important.  You have previously used the "Flag" command
  3190.       to mark this message as "important".
  3191. </UL></DD><P>
  3192.  
  3193.  <DT>MESSAGE NUMBER:</DT>
  3194.  <DD>Messages in a folder are numbered, from one through the number
  3195. of messages in the folder, to help you know where you are in the folder.
  3196. These numbers are always in increasing order, even if you sort the folder
  3197. in a different way.</DD><P>
  3198.  
  3199.  <DT>DATE SENT:</DT>
  3200.  <DD>The date the message was sent.  By default, messages are
  3201. ordered by arrival time, not by date sent.  Most of the time, arrival time
  3202. and date sent (effectively departure time) are similar.  Sometimes,
  3203. however, the index will appear to be out of order because a message took a
  3204. long time in delivery or because the sender is in a different time
  3205. zone than you are. This date is just the date from the Date header
  3206. field in the message.</DD><P>
  3207.  
  3208.  <DT>WHO SENT THE MESSAGE:</DT>
  3209.  <DD>This is usually the name of the sender of the message, taken from
  3210. the From header of the message.
  3211. If there is no personal name given in that
  3212. address, then the email address is used instead.
  3213. If the message is from you (or from one of your
  3214. <A HREF="h_config_alt_addresses">alternate addresses</A>),
  3215. then the recipient's name is shown here instead, with the characters
  3216. "To: " inserted before the name.
  3217. (The idea of this is that if you sent the mail you would rather see who
  3218. the mail was sent to instead of that the mail was from you.
  3219. This behavior may be changed by modifying the Index-Format option mentioned
  3220. above.
  3221. In particular, use the FROM token or the FROMORTONOTNEWS token
  3222. in place of the FROMORTO token.)
  3223. In Newsgroups, if you are
  3224. the sender and there are no email recipients, the newsgroup name will be
  3225. listed after the "To: ". </DD><P>
  3226.  
  3227.  <DT>SIZE:</DT>
  3228.  <DD>The number in parentheses is the number of characters in the message.</DD><P>
  3229.  
  3230.  <DT>SUBJECT:</DT>
  3231.  <DD>As much of the message's subject line as will fit on the screen.</DD>
  3232. </DL>
  3233.  
  3234. <P><UL>
  3235. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  3236. </UL>
  3237. <P>
  3238. <End of help on this topic>
  3239. </BODY>
  3240. </HTML>
  3241. ============= h_mail_view ========================
  3242. <HTML>
  3243. <HEAD>
  3244. <TITLE>MESSAGE TEXT SCREEN</TITLE>
  3245. </HEAD>
  3246. <BODY>
  3247. <H1>MESSAGE TEXT SCREEN</H1>
  3248. <!--chtml if pinemode="function_key"-->
  3249. Available  Commands -- Group  1        Available Commands -- Group 2<BR>
  3250. -------------------------------        ------------------------------<BR>
  3251. F1  Show Help Text                     F1  Show Help Text<BR>
  3252. F2  Toggle to see more commands        F2  Toggle to see more commands<BR>
  3253. F3  <A HREF="h_common_index">MESSAGE INDEX</A> Screen               F3  MAIN MENU Screen<BR>
  3254. F4  <A HREF="h_view_cmd_viewattch">View attachment</A>                    F4  Quit Pine<BR>
  3255. F5  Display previous message           F5  <A HREF="h_common_folders">FOLDER LIST</A> Screen<BR>
  3256. F6  Display next message               F6  <A HREF="h_common_goto">Goto</A> a specified folder<BR>
  3257. F7  Previous screen of this message    F7  <A HREF="h_common_compose">Compose</A> message<BR>
  3258. F8  Next screen of this message        F8  <A HREF="h_view_cmd_whereis">Whereis</A><BR>
  3259. F9  <A HREF="h_common_delete">Mark message for deletion</A>          F9  <A HREF="h_common_print">Print</A> message<BR>
  3260. F10 <A HREF="h_common_delete">Undelete</A> (remove delete mark)      F10 <A HREF="h_common_take">Take Address</A> into address book<BR>
  3261. F11 <A HREF="h_common_reply">Reply</A> to message                   F11 <A HREF="h_common_save">Save</A> message into an email folder<BR>
  3262. F12 <A HREF="h_common_reply">Forward</A>                            F12 <A HREF="h_common_save">Export</A> message into a plain file<BR>
  3263. <BR>
  3264. Available Commands -- Group 3<BR>
  3265. ------------------------------<BR>
  3266. F1  Show Help Text<BR>
  3267. F2  Toggle to see more commands<BR>
  3268. F3  <A HREF="h_view_cmd_hilite">View hilited</A><BR>
  3269. F4  Select current message<BR>
  3270. F5  Previous selectable item<BR>
  3271. F6  Next selectable item<BR>
  3272. F7  <A HREF="h_common_jump">Jump</A> to message number<BR>
  3273. F8  <A HREF="h_common_nextnew">Next new</A> message<BR>
  3274. F9  <A HREF="h_common_hdrmode">Display full headers</A><BR>
  3275. F10 <A HREF="h_common_bounce">Bounce</A> message<BR>
  3276. F11 <A HREF="h_common_flag">Flag</A> message<BR>
  3277. F12 <A HREF="h_common_pipe">Pipe</A> to a Unix command<BR>
  3278. Available Commands -- Group 4<BR>
  3279. F5  <A HREF="h_common_role">Compose using a role</A><BR>
  3280. <!--chtml else-->
  3281. Operations on the Current Message<BR>
  3282. ---------------------------------<BR>
  3283. <BR>
  3284.  -   Show previous page of this msg    S  <A HREF="h_common_save">Save</A> into an email folder<BR>
  3285. Spc  Show next page of this msg        E  <A HREF="h_common_save">Export</A> as a plain text file<BR>
  3286.  >   <A HREF="h_view_cmd_viewattch">View attachment</A>                   B  <A HREF="h_common_bounce">Bounce</A><BR>
  3287.  R   <A HREF="h_common_reply">Reply</A> to message                  F  <A HREF="h_common_reply">Forward</A> message<BR>
  3288.  D   <A HREF="h_common_delete">Mark for deletion</A>                Ret View <A HREF="h_view_cmd_hilite">hilited</A> item<BR>
  3289.  U   <A HREF="h_common_delete">Undelete</A> (remove deletion mark)  ^F  Select next <A HREF="h_view_cmd_hilite">hilited</A> item in message<BR>
  3290.  T   <A HREF="h_common_take">Take Address</A> into Address Book   ^B  Select previous <A HREF="h_view_cmd_hilite">hilited</A> item<BR>
  3291.  %   <A HREF="h_common_print">Print</A>                             *  <A HREF="h_common_flag">Flag</A> message<BR>
  3292.  W   <A HREF="h_view_cmd_whereis">Whereis</A>: search for text in msg   |  <A HREF="h_common_pipe">Pipe</A> to a Unix command<BR>
  3293. <BR>
  3294. Navigating the List of Messages      Other Commands<BR>
  3295. -------------------------------      ----------------------------<BR>
  3296.  P     Display previous message      G   <A HREF="h_common_goto">Goto</A> a specified folder<BR>
  3297.  N     Display next message          H   <A HREF="h_common_hdrmode">Full header mode</A> on/off<BR>
  3298.  J     <A HREF="h_common_jump">Jump</A> to a specific message    :   Select Current message<BR>
  3299. Tab    <A HREF="h_common_nextnew">Next new</A> message<BR>
  3300. <BR>
  3301. General Pine Commands<BR>
  3302. ---------------------<BR>
  3303.  O  Show all other available commands<BR>
  3304.  ?  Show Help text        Q Quit Pine<BR>
  3305.  M  MAIN MENU Screen      L <A HREF="h_common_folders">FOLDER LIST</A> Screen (or COLLECTION LIST Screen)<BR>
  3306.  <  <A HREF="h_common_index">MESSAGE INDEX</A> Screen  C <A HREF="h_common_compose">Compose</A> a new message<BR>
  3307.                           # <A HREF="h_common_role">Compose using a role</A><BR>
  3308. <!--chtml endif-->
  3309. <P>
  3310.  
  3311. NOTE:
  3312. <OL>
  3313.  <LI>For help on a particular command, hilite the bold text associated
  3314. with it above and hit Return.
  3315.  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
  3316. </OL>
  3317.  
  3318. <H2>Description of the MESSAGE TEXT Screen</H2>
  3319.  
  3320. The top line of the view message screen displays status
  3321. information about the currently open collection and folder and about the
  3322. current message.  It shows the name of the collection in angle brackets
  3323. and then the name of the folder.  The line also displays the number
  3324. of messages in the folder, the number of the current message and the
  3325. percentage of the current message that has been displayed on the screen.
  3326. If the message is marked for deletion "DEL" will appear in the upper
  3327. right corner.
  3328. If the message has been answered (but not deleted) "ANS" will show
  3329. in the corner.
  3330. <P>
  3331.  
  3332. NOTE: to rapidly move to the end of a message, hit the
  3333. <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
  3334. (or Ctrl-W) key followed
  3335. by Ctrl-V.  Similarly,
  3336. <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
  3337. followed by Ctrl-Y will take you to the beginning of
  3338. a message.
  3339.  
  3340. <H2>Explanation of Alternate Character Sets</H2>
  3341.  
  3342. Pine attempts to stay out of the way so that it won't prevent you from
  3343. viewing mail in any character set.  It will simply send the message to
  3344. your display device.  If the device is capable of displaying the
  3345. message as it was written it will do so.  If not, the display may be
  3346. partially or totally incorrect.  If the message is marked as being in
  3347. a character set other than "US-ASCII" and it is a character
  3348. set that is different from the set you have indicated with the
  3349. <A HREF="h_config_char_set">"character-set"</A>
  3350. variable in your configuration, then a warning message will be printed
  3351. to your screen at the beginning of the message display.<P>
  3352.  
  3353. In all cases Pine requires that the display device can handle the
  3354. character set.  For example, most X-terminals will display the ISO-8859-1
  3355. character set if the right font is selected.  VT220's and higher also
  3356. display ISO-8859-1.  Displays for other characters sets are less common.
  3357. <P>
  3358.  
  3359. Pine usually suppresses display of control characters in order to avoid
  3360. characters which may change terminal setup parameters.
  3361. If this is a problem for you, the
  3362. "<A HREF="h_config_pass_control">pass-control-characters-as-is</A>"
  3363. feature can be used to turn this behavior off.
  3364.  
  3365. <P><UL>
  3366. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  3367. </UL>
  3368. <P>
  3369. <End of help on this topic>
  3370. </BODY>
  3371. </HTML>
  3372. ======= h_index_cmd_select =======
  3373. <HTML>
  3374. <HEAD>
  3375. <TITLE>Selecting: Select and WhereIs/Select</TITLE>
  3376. </HEAD>
  3377. <BODY>
  3378. <H1>Selecting: Select and WhereIs/Select</H1>
  3379.  
  3380. Aggregate operations give you the ability to process a group of messages
  3381. at once.  Acting on multiple messages requires two steps: (1) selecting a
  3382. set of messages and then (2) applying a command to that set. The first
  3383. part is handled by the select command.  Select allows you to
  3384. select messages based on their status (read, answered, etc.), contents
  3385. (including fielded selections on header lines) or date.  You also get
  3386. certain quick options to select a specific message or range of messages,
  3387. to select the current message or to select all messages.
  3388. <P>
  3389.  
  3390. After you have an initial selection, the select command changes.  It gives
  3391. you selection "alteration" options: unselect all, unselect current,
  3392. broaden (implements a logical OR), and narrow (implements a logical AND).
  3393. You are allowed to use select as many times as you need to get the
  3394. selected set right.
  3395. <P>
  3396.  
  3397. Also, starting with Pine 4.00, the WhereIs command has a new feature 
  3398. (Ctrl-X) to
  3399. select all the messages which match the WhereIs search. WhereIs searches
  3400. through just the text which appears on the MESSAGE INDEX screen.
  3401. <P>
  3402.  
  3403. The availability of the aggregate operations commands is determined by the
  3404. <A HREF="h_config_enable_agg_ops">"enable-aggregate-command-set"</A>
  3405. feature-list option in your Pine
  3406. configuration.
  3407. The features
  3408. <A HREF="h_config_auto_zoom">"auto-zoom-after-select"</A>
  3409. and
  3410. <A HREF="h_config_select_wo_confirm">"select-without-confirm"</A>
  3411. affect the behavior of the Select command.
  3412.  
  3413. <P>
  3414. <End of help on this topic>
  3415. </BODY>
  3416. </HTML>
  3417. ======= h_index_cmd_apply =======
  3418. <HTML>
  3419. <HEAD>
  3420. <TITLE>Apply Command</TITLE>
  3421. </HEAD>
  3422. <BODY>
  3423. <H1>Apply Command</H1>
  3424.  
  3425. Apply
  3426. (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
  3427. is the second step of most aggregate operations.  Apply
  3428. becomes active any time there is a defined set of selected messages.  The
  3429. following commands can be applied to a selected message set: delete,
  3430. undelete, reply, forward,
  3431. <!--chtml if pinemode="os_windows"-->
  3432. <!--chtml else--> 
  3433. pipe,
  3434. <!--chtml endif-->
  3435. print, take address, save, export, bounce, and flag.
  3436. <P>
  3437.  
  3438. The behavior of some of these commands in an aggregate sense is not easy to
  3439. explain.  Try them out to see what they do.
  3440. The feature
  3441. <A HREF="h_config_auto_unzoom">"auto-unzoom-after-apply"</A>
  3442. affects the behavior of the Apply command.
  3443.  
  3444. <P>
  3445. <End of help on this topic>
  3446. </BODY>
  3447. </HTML>
  3448. ======= h_index_cmd_zoom =======
  3449. <HTML>
  3450. <HEAD>
  3451. <TITLE>ZoomMode Command</TITLE>
  3452. </HEAD>
  3453. <BODY>
  3454. <H1>ZoomMode Command</H1>
  3455.  
  3456. Another action you might want to take on a set of selected messages is to
  3457. zoom in on them.  Like apply, zoom only becomes active when messages have
  3458. been selected.
  3459. ZoomMode
  3460. (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
  3461. is a toggle command which allows you to
  3462. zoom-in (and only see the selected messages) and zoom-out (to see all
  3463. messages in the folder).  Neither apply nor zoom removes the markings which
  3464. define the selected set; you need to use a select command in order
  3465. to do that.
  3466.  
  3467. <P>
  3468. <End of help on this topic>
  3469. </BODY>
  3470. </HTML>
  3471. ======= h_index_cmd_sort =======
  3472. <HTML>
  3473. <HEAD>
  3474. <TITLE>Sort Command</TITLE>
  3475. </HEAD>
  3476. <BODY>
  3477. <H1>Sort Command</H1>
  3478.  
  3479. In Pine's generic configuration, messages are presented in the order in
  3480. which they arrive.  This default can be changed in the SETUP CONFIGURATION 
  3481. with the "<A HREF="h_config_sort_key">Sort-Key</A>" option.
  3482. You can also re-sort the folder on demand with the sort
  3483. (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
  3484. command.
  3485. Your sorting options are:
  3486. <P>
  3487. <UL>
  3488.  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
  3489.  <LI> <A HREF="h_index_sort_date">D</A>ate
  3490.  <LI> <A HREF="h_index_sort_subj">S</A>ubject
  3491.  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
  3492.  <LI> t<A HREF="h_index_sort_thread">H</A>read
  3493.  <LI> <A HREF="h_index_sort_from">F</A>rom
  3494.  <LI> si<A HREF="h_index_sort_size">Z</A>e
  3495.  <LI> scor<A HREF="h_index_sort_score">E</A>,
  3496.  <LI> <A HREF="h_index_sort_to">T</A>o
  3497.  <LI> <A HREF="h_index_sort_cc">C</A>c
  3498. </UL>
  3499.  
  3500. <P>
  3501. The Reverse option will toggle the order the index is currently
  3502. sorted by, but will not change the relative sort order.
  3503.  
  3504. <P>
  3505. Sorting a folder does not actually rearrange the way the folder is saved,
  3506. it just re-arranges how the messages are presented to you.  This means
  3507. that Pine has to do the work of sorting every time you change sort order.
  3508. Sometimes, especially with PC-Pine or with large folders, this could take
  3509. a while.
  3510.  
  3511. <P>
  3512. <End of help on this topic>
  3513. </BODY>
  3514. </HTML>
  3515. ======= h_index_sort_arrival =======
  3516. <HTML>
  3517. <HEAD>
  3518. <TITLE>SORT OPTION: Arrival</TITLE>
  3519. </HEAD>
  3520. <BODY>
  3521. <H1>SORT OPTION: Arrival</H1>
  3522.  
  3523. The <EM>Arrival</EM> sort option arranges messages in the MESSAGE INDEX
  3524. in the order that they exist in the folder.  This is usually the same as the
  3525. order in which they arrived.  This option is comparable to not sorting
  3526. the messages at all.
  3527.  
  3528. <P>
  3529. <End of help on this topic>
  3530. </BODY>
  3531. </HTML>
  3532. ======= h_index_sort_date =======
  3533. <HTML>
  3534. <HEAD>
  3535. <TITLE>SORT OPTION: Date</TITLE>
  3536. </HEAD>
  3537. <BODY>
  3538. <H1>SORT OPTION: Date</H1>
  3539.  
  3540. The <EM>Date</EM> sort option arranges messages in the MESSAGE INDEX
  3541. according to the date and time they were
  3542. sent.
  3543.  
  3544. <P>
  3545. On a folder like INBOX, sorting by "Date" should be almost
  3546. identical to sorting by "Arrival".
  3547.  
  3548. <P>
  3549. <End of help on this topic>
  3550. </BODY>
  3551. </HTML>
  3552. ======= h_index_sort_subj =======
  3553. <HTML>
  3554. <HEAD>
  3555. <TITLE>SORT OPTION: Subject</TITLE>
  3556. </HEAD>
  3557. <BODY>
  3558. <H1>SORT OPTION: Subject</H1>
  3559.  
  3560. The <EM>Subject</EM> sort option arranges messages in the MESSAGE INDEX
  3561. by subject. 
  3562.  
  3563. <P>
  3564. Messages with the same subject are
  3565. first grouped together, and then the groups of like-subject messages
  3566. are arranged alphabetically.
  3567.  
  3568. <P>
  3569. Pine ignores leading "Re:" and
  3570. "re:" and trailing "(fwd)" when determining the
  3571. likeness and alphabetical order of subject lines.
  3572.  
  3573. <P>
  3574. <End of help on this topic>
  3575. </BODY>
  3576. </HTML>
  3577. ======= h_index_sort_ordsubj =======
  3578. <HTML>
  3579. <HEAD>
  3580. <TITLE>SORT OPTION: OrderedSubject</TITLE>
  3581. </HEAD>
  3582. <BODY>
  3583. <H1>SORT OPTION: OrderedSubject</H1>
  3584.  
  3585. The <EM>OrderedSubject</EM> sort option arranges messages in the
  3586. MESSAGE INDEX by grouping all messages with the same subject
  3587. together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
  3588.  
  3589. <P>
  3590. However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
  3591. messages by the date of the oldest message in the group.
  3592.  
  3593. <P>
  3594. This sort method provides for pseudo threading of conversations within
  3595. a folder.
  3596. You may want to try sorting by Thread instead.
  3597.  
  3598. <P>
  3599. <End of help on this topic>
  3600. </BODY>
  3601. </HTML>
  3602. ======= h_index_sort_thread =======
  3603. <HTML>
  3604. <HEAD>
  3605. <TITLE>SORT OPTION: Thread</TITLE>
  3606. </HEAD>
  3607. <BODY>
  3608. <H1>SORT OPTION: Thread</H1>
  3609.  
  3610. The <EM>Thread</EM> sort option arranges messages in the
  3611. MESSAGE INDEX by grouping all messages that indicate
  3612. they are part of a conversation (discussion thread) taking
  3613. place within a mailbox or newsgroup.  This indication is
  3614. based on information in the message's header -- specifically
  3615. its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
  3616.  
  3617. <P>
  3618. <End of help on this topic>
  3619. </BODY>
  3620. </HTML>
  3621. ======= h_index_sort_from =======
  3622. <HTML>
  3623. <HEAD>
  3624. <TITLE>SORT OPTION: From</TITLE>
  3625. </HEAD>
  3626. <BODY>
  3627. <H1>SORT OPTION: From</H1>
  3628.  
  3629. The <EM>From</EM> sort option arranges messages in the MESSAGE INDEX
  3630. by the name of the author of the message.
  3631.  
  3632. <P>
  3633. Messages with the same author are grouped together. Groups of
  3634. messages are then put into alphabetical order according to message
  3635. author.
  3636.  
  3637. <P>
  3638. <End of help on this topic>
  3639. </BODY>
  3640. </HTML>
  3641. ======= h_index_sort_size =======
  3642. <HTML>
  3643. <HEAD>
  3644. <TITLE>SORT OPTION: Size</TITLE>
  3645. </HEAD>
  3646. <BODY>
  3647. <H1>SORT OPTION: Size</H1>
  3648.  
  3649. The <EM>Size</EM> sort option arranges messages in the MESSAGE INDEX
  3650. by their relative sizes.
  3651.  
  3652. <P>
  3653. <End of help on this topic>
  3654. </BODY>
  3655. </HTML>
  3656. ======= h_index_sort_score =======
  3657. <HTML>
  3658. <HEAD>
  3659. <TITLE>SORT OPTION: Score</TITLE>
  3660. </HEAD>
  3661. <BODY>
  3662. <H1>SORT OPTION: Score</H1>
  3663.  
  3664. The <EM>Score</EM> sort option arranges messages in the MESSAGE INDEX
  3665. by their scores.
  3666.  
  3667. <P>
  3668. Messages with the same score are sorted in arrival order.
  3669. Scores are something you create using the
  3670. <A HREF="h_rules_score">"SETUP SCORING"</A> screen.
  3671.  
  3672. <P>
  3673. <End of help on this topic>
  3674. </BODY>
  3675. </HTML>
  3676. ======= h_index_sort_to =======
  3677. <HTML>
  3678. <HEAD>
  3679. <TITLE>SORT OPTION: To</TITLE>
  3680. </HEAD>
  3681. <BODY>
  3682. <H1>SORT OPTION: To</H1>
  3683.  
  3684. The <EM>To</EM> sort option arranges messages in the MESSAGE INDEX 
  3685. by the names of the recipients of the message.
  3686.  
  3687. <P>
  3688. Messages with the same recipients are grouped together. Groups of
  3689. messages are then put into alphabetical order according to message
  3690. recipients.
  3691.  
  3692. <P>
  3693. <End of help on this topic>
  3694. </BODY>
  3695. </HTML>
  3696. ======= h_index_sort_cc =======
  3697. <HTML>
  3698. <HEAD>
  3699. <TITLE>SORT OPTION: Cc</TITLE>
  3700. </HEAD>
  3701. <BODY>
  3702. <H1>SORT OPTION: Cc</H1>
  3703.  
  3704. The <EM>Cc</EM> sort option arranges messages in the MESSAGE INDEX by
  3705. the names of the carbon copy addresses of the message.
  3706.  
  3707. <P>
  3708. <End of help on this topic>
  3709. </BODY>
  3710. </HTML>
  3711. ======= h_index_cmd_whereis =======
  3712. <HTML>
  3713. <HEAD>
  3714. <TITLE>WhereIs Command</TITLE>
  3715. </HEAD>
  3716. <BODY>
  3717. <H1>WhereIs Command</H1>
  3718.  
  3719. The WhereIs
  3720. (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
  3721. command lets you search the MESSAGE INDEX for a word.  It scans
  3722. through whatever you see, usually the name of the author and the subject
  3723. line.  WhereIs has special features to let you "find" the beginning of the
  3724. index (Ctrl-Y -- first message) or the end of the index (Ctrl-V -- last
  3725. message).  WhereIs can also be used as a quick way to select messages; see
  3726. below for more information on this.  Note that WhereIs does not see the 
  3727. "X" in column one of Index entries for "selected" messages
  3728. so it can't be used to search for selected messages (use "Zoom").
  3729.  
  3730. <P>
  3731. <End of help on this topic>
  3732. </BODY>
  3733. </HTML>
  3734. ======= h_view_cmd_whereis =======
  3735. <HTML>
  3736. <HEAD>
  3737. <TITLE>WhereIs Command</TITLE>
  3738. </HEAD>
  3739. <BODY>
  3740. <H1>WhereIs Command</H1>
  3741.  
  3742. The WhereIs
  3743. (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
  3744. command does a "find in current message" operation.  You
  3745. type in text and Pine will try to find it in the message you are
  3746. reading.  You can also use WhereIs to jump to the beginning (Ctrl-Y)
  3747. or end (Ctrl-V) of the message.
  3748. That is, to rapidly move to the end of a message, hit the 
  3749. <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
  3750. (or Ctrl-W) key followed
  3751. by Ctrl-V.  Similarly,
  3752. <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
  3753. followed by Ctrl-Y will take you to the beginning of a message.
  3754.  
  3755. <P>
  3756. <End of help on this topic>
  3757. </BODY>
  3758. </HTML>
  3759. ======= h_view_cmd_hilite =======
  3760. <HTML>
  3761. <HEAD>
  3762. <TITLE>View Hilite and Next item/Previous item</TITLE>
  3763. </HEAD>
  3764. <BODY>
  3765. <H1>View Hilite and Next item/Previous item</H1>
  3766.  
  3767. Sometimes messages may be in the form of formatted HTML text
  3768. or they may contain URLs or Web server hostnames.
  3769. When any of the features
  3770. <A HREF="h_config_enable_view_url">"enable-msg-view-urls"</A>,
  3771. <A HREF="h_config_enable_view_web_host">"enable-msg-view-web-hostnames"</A>,
  3772. <A HREF="h_config_enable_view_attach">"enable-msg-view-attachments"</A>,
  3773. or
  3774. <A HREF="h_config_enable_view_addresses">"enable-msg-view-addresses"</A>
  3775. are enabled, Pine will represent such selectable items in the text
  3776. in bold typeface.  One of the selectable items will be displayed in
  3777. inverse video (hilited).  This is the "currently selected" item.
  3778. Press the Return key to view the currently selected item.
  3779. <P>
  3780.  
  3781. The Up and Down Arrows keys can be used to change the selected item
  3782. (also see the feature
  3783. <A HREF="h_config_enable_view_arrows">"enable-msg-view-forced-arrows"</A>).
  3784. If there are no selectable items in the direction of the arrow you
  3785. pressed, Pine will scroll the display in that direction until one
  3786. becomes visible.  To "jump" forwards/backwards among selectable 
  3787. items in the message text, use the Previous and Next item commands,
  3788. <!--chtml if pinemode="function_key"-->F5 and F6
  3789. <!--chtml else-->^B and Ctrl-F<!--chtml endif-->.
  3790.  
  3791. <P>
  3792. <End of help on this topic>
  3793. </BODY>
  3794. </HTML>
  3795. ======= h_view_cmd_viewattch =======
  3796. <HTML>
  3797. <HEAD>
  3798. <TITLE>ViewAttch Command</TITLE>
  3799. </HEAD>
  3800. <BODY>
  3801. <H1>ViewAttch Command</H1>
  3802.  
  3803.  
  3804. The View/Save Attachment
  3805. (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
  3806. command allows you to handle MIME attachments to a message you have
  3807. received.  Pine shows you a list of the message attachments -- you just
  3808. choose the attachment you want.  You may either view or save the
  3809. selected attachment.
  3810.  
  3811. <P>
  3812. Because many attachments require external programs for display, there
  3813. is some system configuration that has to happen before you can
  3814. actually display attachments.  Hopefully much of that will have been
  3815. done already by your system administrator.  MIME configuration is
  3816. handled with the "mailcap" configuration file.  (See the section 
  3817. on configuration in the
  3818. <A HREF="h_news">release notes</A> for more information.)
  3819.  
  3820. <P>
  3821. <End of help on this topic>
  3822. </BODY>
  3823. </HTML>
  3824. ======= h_index_cmd_expunge =======
  3825. <HTML>
  3826. <HEAD>
  3827. <TITLE>Expunge/Exclude Command</TITLE>
  3828. </HEAD>
  3829. <BODY>
  3830. <H1>Expunge/Exclude Command</H1>
  3831.  
  3832. Expunge/Exclude
  3833. (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
  3834. is the command Pine uses to actually remove all messages
  3835. marked for deletion.  With regular email files, expunge literally deletes
  3836. the text from the current folder.  With newsgroups or shared mailboxes,
  3837. you don't have permission to actually remove the message, so it is an
  3838. exclude -- Pine removes the message from your view of the folder even
  3839. though it is not technically gone.
  3840. <P>
  3841.  
  3842. The configuration features
  3843. <A HREF="h_config_auto_expunge">"expunge-without-confirm"</A>
  3844. and
  3845. <A HREF="h_config_full_auto_expunge">"expunge-without-confirm-everywhere"</A>
  3846. affect the behavior of the Expunge command.
  3847.  
  3848. <P>
  3849. <End of help on this topic>
  3850. </BODY>
  3851. </HTML>
  3852. ======= h_common_compose =======
  3853. <HTML>
  3854. <HEAD>
  3855. <TITLE>Compose Command</TITLE>
  3856. </HEAD>
  3857. <BODY>
  3858. <H1>Compose Command</H1>
  3859.  
  3860. The Compose command takes you into the Pine message composer where you
  3861. can start a new message for sending.  This is where you type in the
  3862. message's text and specify its recipient list (the "To:"
  3863. address), where copies should be directed (e.g., "Fcc",
  3864. "Cc:" or "Bcc:"), and which files, if any, should
  3865. be attached to the message.
  3866.  
  3867. <P>
  3868. When you type this command, Pine will also automatically check for any
  3869. interrupted (i.e., a message that was being composed when your modem
  3870. or network connection was broken) or previously postponed messages and
  3871. offer you a chance to continue working on those.
  3872.  
  3873. <P>
  3874. <UL>   
  3875. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  3876. </UL><P>
  3877. <End of help on this topic>
  3878. </BODY>
  3879. </HTML>
  3880. ======= h_common_index =======
  3881. <HTML>
  3882. <HEAD>
  3883. <TITLE>Message Index Command</TITLE>
  3884. </HEAD>
  3885. <BODY>
  3886. <H1>Message Index Command</H1>
  3887.  
  3888. The Index command takes you to the MESSAGE INDEX screen which displays a
  3889. summary caption for each message in the currently-open folder. One
  3890. message will be highlighted; this is the "Current" message.
  3891. The message commands available from this screen (e.g. View, Reply,
  3892. Forward, Delete, Print, Save, etc) apply to the current message.
  3893.  
  3894. <P>
  3895. <End of help on this topic>
  3896. </BODY>
  3897. </HTML>
  3898. ======= h_common_folders =======
  3899. <HTML>
  3900. <HEAD>
  3901. <TITLE>Folder List Command</TITLE>
  3902. </HEAD>
  3903. <BODY>
  3904. <H1>Folder List Command</H1>
  3905.  
  3906. This Folder List command takes you to the FOLDER LIST screen which displays
  3907. the names of all your message folders and allows you to view, rename,
  3908. delete, and add folders.  You can open (view) a different folder than the
  3909. one currently open by highlighting the desired one (using the arrow keys
  3910. or their control-key equivalents) and pressing RETURN.
  3911.  
  3912. <P>
  3913. If you have multiple folder collections defined (see the Help text for
  3914. the FOLDER LIST screen to learn more about Collections), you may need
  3915. to press Return to expand the collection and display all of the
  3916. folders in it.
  3917.  
  3918. <P>
  3919. <End of help on this topic>
  3920. </BODY>
  3921. </HTML>
  3922. ======= h_main_addrbook =======
  3923. <HTML>
  3924. <HEAD>
  3925. <TITLE>Address Book Command</TITLE>
  3926. </HEAD>
  3927. <BODY>
  3928. <H1>Address Book Command</H1>
  3929.  
  3930. This command, available only from the MAIN MENU, takes you
  3931. to the ADDRESS BOOK management screen.  From here, your personal address
  3932. book(s) may be updated.
  3933.  
  3934. <P>
  3935. <End of help on this topic>
  3936. </BODY>
  3937. </HTML>
  3938. ======= h_main_setup =======
  3939. <HTML>
  3940. <HEAD>
  3941. <TITLE>Setup Command</TITLE>
  3942. </HEAD>
  3943. <BODY>
  3944. <H1>Setup Command</H1>
  3945.  
  3946. The Setup command, available only from the MAIN MENU, prompts you for
  3947. one of several configuration screens, including the SETUP CONFIGURATION 
  3948. screen, by which you may activate optional Pine features.
  3949.  
  3950. <P>
  3951. <End of help on this topic>
  3952. </BODY>
  3953. </HTML>
  3954. ======= h_main_release_notes =======
  3955. <HTML>
  3956. <HEAD>
  3957. <TITLE>Release Notes Command</TITLE>
  3958. </HEAD>
  3959. <BODY>
  3960. <H1>Release Notes Command</H1>
  3961.  
  3962. This command displays information about Pine <!--#echo var="PINE_VERSION"-->,
  3963. as well as pointers to further information such as history and legal notes.
  3964.  
  3965. <P>
  3966. <End of help on this topic>
  3967. </BODY>
  3968. </HTML>
  3969. ======= h_main_kblock =======
  3970. <HTML>
  3971. <HEAD>
  3972. <TITLE>Keyboard Lock Command</TITLE>
  3973. </HEAD>
  3974. <BODY>
  3975. <H1>Keyboard Lock Command</H1>
  3976.  
  3977. This command allows your Pine session to be protected
  3978. during a temporary absence from your terminal.
  3979.  
  3980. <P>
  3981. <End of help on this topic>
  3982. </BODY>
  3983. </HTML>
  3984. ======= h_main_journal =======
  3985. <HTML>
  3986. <HEAD>
  3987. <TITLE>Journal Command</TITLE>
  3988. </HEAD>
  3989. <BODY>
  3990. <H1>Journal Command</H1>
  3991.  
  3992. This command displays a list of all the status messages Pine has
  3993. displayed (on the third line from the bottom of the screen). This may
  3994. be useful if a message disappeared before you had a chance to read it.
  3995.  
  3996. <P>
  3997. <End of help on this topic>
  3998. </BODY>
  3999. </HTML>
  4000. ======= h_common_role =======
  4001. <HTML>
  4002. <HEAD>
  4003. <TITLE>Role Command</TITLE>
  4004. </HEAD>
  4005. <BODY>
  4006. <H1>Role Command</H1>
  4007.  
  4008. The Role command is similar to the Compose command except that it starts
  4009. off by letting you select a <A HREF="h_rules_roles">role</A>
  4010. to be used for the composition.
  4011. You may set up alternate roles by using the Setup command.
  4012.  
  4013. <P>
  4014. <End of help on this topic>
  4015. </BODY>
  4016. </HTML>
  4017. ======= h_common_conditional_cmds =======
  4018. <HTML>
  4019. <HEAD>
  4020. <TITLE>Conditional Commands</TITLE>
  4021. </HEAD>
  4022. <BODY>
  4023. <H1>Conditional Commands</H1>
  4024.  
  4025. The presence or absence of certain commands, particularly in the
  4026. MESSAGE INDEX and MESSAGE TEXT screens, is determined by
  4027. whether or not specific features are set in your Pine configuration.  
  4028. (You can access the SETUP CONFIGURATION screen, where they are found, from 
  4029. Pine's MAIN MENU.)  To see if a desired command's availability is
  4030. conditioned on a feature setting, see the command's help text (hilite
  4031. the phrase associated with the command and hit Return).
  4032.  
  4033. <P>
  4034. Also note that some
  4035. commands may be administratively disabled by your system manager;
  4036. if they don't work, please check with your local help desk.
  4037.  
  4038. <P>
  4039. <UL>   
  4040. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  4041. </UL><P>
  4042. <End of help on this topic>
  4043. </BODY>
  4044. </HTML>
  4045. ======= h_common_pipe =======
  4046. <HTML>
  4047. <HEAD>
  4048. <TITLE>Pipe Command</TITLE>
  4049. </HEAD>
  4050. <BODY>
  4051. <H1>Pipe Command</H1>
  4052.  
  4053. Pipe
  4054. (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
  4055. allows you to send a message to a specified Unix command for external
  4056. processing.
  4057. This command's availability is controlled by the
  4058. <A HREF="h_config_enable_pipe">"enable-unix-pipe-cmd"</A> 
  4059. feature.
  4060. By default, the processed text of the message is sent to the command
  4061. you specify and the output is captured by Pine and shown to you.
  4062. When you run the pipe command, there are some sub-commands which may be
  4063. used to alter this behavior.
  4064. These sub-commands are described <A HREF="h_pipe_command">here</A>.
  4065.  
  4066. <P>
  4067. <End of help on this topic>
  4068. </BODY>
  4069. </HTML>
  4070. ======= h_common_goto =======
  4071. <HTML>
  4072. <HEAD>
  4073. <TITLE>Goto Command</TITLE>
  4074. </HEAD>
  4075. <BODY>
  4076. <H1>Goto Command</H1>
  4077.  
  4078. Goto
  4079. (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
  4080. is the command which lets you bypass Pine's folder selection screens
  4081. and jump directly to a new folder.  You can select any folder in the
  4082. world: one in your current collection, one in a different collection or
  4083. one in a collection you've never even used before.
  4084. <P>
  4085.  
  4086. Pine will help you as much as possible to narrow in on the folder you want.
  4087. However, if the folder is outside of your defined collections, you are
  4088. going to have to enter the exact folder location using the correct
  4089. <A HREF="h_valid_folder_names">syntax</A>
  4090. for a remote folder and/or fully-qualified path name.
  4091.  
  4092. <P>
  4093. <End of help on this topic>
  4094. </BODY>
  4095. </HTML>
  4096. ======= h_common_nextnew =======
  4097. <HTML>
  4098. <HEAD>
  4099. <TITLE>NextNew Command</TITLE>
  4100. </HEAD>
  4101. <BODY>
  4102. <H1>NextNew Command</H1>
  4103.  
  4104. When you press the TAB key, Pine advances to the next
  4105. "interesting" message.  When you are using Pine to read
  4106. email, that message is the next message in the current folder which you have
  4107. not read before or which you have previously marked
  4108. "Important" via the Flag command.  When reading news
  4109. folders, the next "interesting" message is the next one
  4110. which you have not yet deleted.
  4111. <P>
  4112.  
  4113. The NextNew command's behavior is affected by the configuration features
  4114. <A HREF="h_config_auto_open_unread">"auto-open-next-unread"</A>,
  4115. <A HREF="h_config_tab_new_only">"tab-visits-next-new-message-only"</A>, and
  4116. <A HREF="h_config_tab_no_prompt">"continue-tab-without-confirm"</A>.
  4117.  
  4118. <P>
  4119. <End of help on this topic>
  4120. </BODY>
  4121. </HTML>
  4122. ======= h_common_jump =======
  4123. <HTML>
  4124. <HEAD>
  4125. <TITLE>Jump Command</TITLE>
  4126. </HEAD>
  4127. <BODY>
  4128. <H1>Jump Command</H1>
  4129.  
  4130. This is Pine's way of allowing you to go straight to a specific message.
  4131. Just press "J" and then enter the message number.  Pine can also be
  4132. configured such that typing in any number automatically jumps you to that
  4133. message 
  4134. (<A HREF="h_config_enable_jump">"enable-jump-shortcut"</A> 
  4135. in the SETUP CONFIGURATION).
  4136.  
  4137. <P>
  4138. <End of help on this topic>
  4139. </BODY>
  4140. </HTML>
  4141. ======= h_common_flag =======
  4142. <HTML>
  4143. <HEAD>
  4144. <TITLE>Flag Command</TITLE>
  4145. </HEAD>
  4146. <BODY>
  4147. <H1>Flag Command</H1>
  4148.  
  4149. Flag
  4150. (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
  4151. is the command which allows users to manipulate the status flags which
  4152. appear on the left side of the MESSAGE INDEX screen.  The most common
  4153. use of this is to mark a message as important. This is something of a
  4154. note to yourself to get back to that message.  You can also use the
  4155. flag command to set (or unset) the flags which indicate that a message
  4156. is new, answered, or deleted.<P>
  4157.  
  4158. The availability of the flag command is determined by the
  4159. <A HREF="h_config_enable_flag">"enable-flag-cmd"</A>
  4160. feature in your Pine configuration. Also, it is possible that Flag could be
  4161. administratively disabled by your system manager; if it doesn't work,
  4162. please check with your local help desk before reporting a bug.
  4163.  
  4164. <P>
  4165. <End of help on this topic>
  4166. </BODY>
  4167. </HTML>
  4168. ======= h_common_hdrmode =======
  4169. <HTML>
  4170. <HEAD>
  4171. <TITLE>HdrMode Command</TITLE>
  4172. </HEAD>
  4173. <BODY>
  4174. <H1>HdrMode Command</H1>
  4175.  
  4176. Every email message comes with some header lines that you normally
  4177. don't see (and don't want to see).
  4178. These include anywhere from 3-20 lines (or more) added by the
  4179. Internet mail transport system to record the route your message took,
  4180. for diagnostic purposes.
  4181. These are normally of no import and simply
  4182. add clutter, so Pine suppresses them in the MESSAGE TEXT display.
  4183. This also includes other non-standard headers the message may contain.
  4184. If you want to see these headers, there is a way to reveal them.
  4185. <P>
  4186.  
  4187. The Header Mode
  4188. (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
  4189. command is a toggle which controls Pine's handling of these header
  4190. lines.  Normally, full headers is "off" and you only see a
  4191. few lines about who a message is to and who it is from.  When you
  4192. press
  4193. (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
  4194. to turn full headers on, Pine will show you
  4195. the normal header lines as well as delivery headers, comment headers,
  4196. MIME headers, and any other headers present.
  4197. <P>
  4198.  
  4199. Several different Pine commands honor the header mode -- it affects how
  4200. messages are displayed, how they appear in forward and reply email, how
  4201. they are printed, how they are saved, and how they are exported.
  4202. <!--chtml if pinemode="os_windows"-->
  4203. <!--chtml else--> 
  4204. The pipe command is also affected.
  4205. <!--chtml endif-->
  4206. <P>
  4207.  
  4208. The presence or absence of the Header Mode command is determined by the
  4209. <A HREF="h_config_enable_full_hdr">"enable-full-header-cmd"</A>
  4210. feature-list option in your Pine configuration.
  4211.  
  4212. <P>
  4213. <UL>   
  4214. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  4215. </UL><P>
  4216. <End of help on this topic>
  4217. </BODY>
  4218. </HTML>
  4219. ======= h_common_print =======
  4220. <HTML>
  4221. <HEAD>
  4222. <TITLE>Print Command</TITLE>
  4223. </HEAD>
  4224. <BODY>
  4225. <H1>Print Command</H1>
  4226.  
  4227. The Print
  4228. (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
  4229. command allows you to print a copy of a message.
  4230. There are many SETUP CONFIGURATION features which affect the
  4231. Print command, including
  4232. <A HREF="h_config_enable_y_print">"enable-print-via-y-command"</A>,
  4233. <A HREF="h_config_print_index">"print-index-enabled"</A>,
  4234. <A HREF="h_config_custom_print">"print-offers-custom-cmd-prompt"</A>,
  4235. <A HREF="h_config_print_from">"print-includes-from-line"</A>, and
  4236. <A HREF="h_config_ff_between_msgs">"print-formfeed-between-messages"</A>.
  4237. You set up for printing by using the Printer option of the Setup command
  4238. on the MAIN MENU.
  4239. <P>
  4240.  
  4241. <P>
  4242. <End of help on this topic>
  4243. </BODY>
  4244. </HTML>
  4245. ======= h_common_take =======
  4246. <HTML>
  4247. <HEAD>
  4248. <TITLE>TakeAddr Command</TITLE>
  4249. </HEAD>
  4250. <BODY>
  4251. <H1>TakeAddr Command</H1>
  4252.  
  4253.  
  4254. With the Take Address
  4255. (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
  4256. command, you can extract email addresses from an
  4257. incoming message and save them in an address book.  This is an easy way
  4258. to add to your address book and avoid having to remember the email
  4259. addresses of the people who write to you.
  4260. <P>
  4261.  
  4262. If the message is just to you individually, then you will only need to
  4263. provide a nickname.  If the message contains more than one email address,
  4264. then you will see an address
  4265. selection screen which lets you choose the address you want to save into
  4266. your address book, or lets you choose several of them add to a
  4267. personal distribution list.
  4268. <P>
  4269.  
  4270. Once you've added an entry to your address book, you can use it from the
  4271. message composer by typing the nickname of the entry into one of the
  4272. header fields (for example, into the To: field), or you can use ^T from
  4273. the header field to select the entry from your address book.
  4274. <P>
  4275.  
  4276. If the configuration feature
  4277. <A HREF="h_config_enable_role_take">"enable-rules-under-take"</A>
  4278. is set, the behavior of the Take command is altered slightly.
  4279.  
  4280. <P>
  4281. <End of help on this topic>
  4282. </BODY>
  4283. </HTML>
  4284. ======= h_common_save =======
  4285. <HTML>
  4286. <HEAD>
  4287. <TITLE>Save and Export Commands</TITLE>
  4288. </HEAD>
  4289. <BODY>
  4290. <H1>Save and Export Commands</H1>
  4291.  
  4292. Save
  4293. (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
  4294. and Export
  4295. (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
  4296. are the two alternatives Pine gives you to keep a copy of the message
  4297. you are reading. If you want to keep the message within Pine's email
  4298. world, use "save"; if you want to use the message in another
  4299. program, use "export".
  4300. <P>
  4301.  
  4302. When you save a message, it is put into an existing folder or into a new
  4303. folder in one of your existing folder collections.  The message stays in
  4304. email format and can be read by Pine again.  Pine may use a special format
  4305. for its mail folders -- never edit a Pine folder by hand or with any
  4306. program other than Pine.  The exact behavior of the save command can be
  4307. configured with the
  4308. <A HREF="h_config_quote_all_froms">"save-will-quote-leading-froms"</A>,
  4309. <A HREF="h_config_save_wont_delete">"save-will-not-delete"</A>,
  4310. and 
  4311. <A HREF="h_config_save_advances">"save-will-advance"</A>
  4312. feature list settings.
  4313. <P>
  4314.  
  4315. When you use export, the message is placed in a plain text file in your
  4316. home directory 
  4317. <!--chtml if pinemode="running"-->
  4318. (which, in the present configuration of your system, is
  4319.  "<!--#echo var="HOME_DIR"-->") 
  4320. <!--chtml endif-->
  4321. or current working directory
  4322. <!--chtml if pinemode="running"-->
  4323. (which, at least for your current Pine "session," 
  4324. is "<!--#echo var="CURRENT_DIR"-->") 
  4325. <!--chtml endif-->, depending on the
  4326. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  4327. configuration setting.  In the normal case, only minimal
  4328. headers are exported with the message; however, if the full header mode 
  4329. (whose availability must be enabled  by setting the feature 
  4330. <A HREF="h_config_enable_full_hdr">"enable-full-header-cmd"</A>
  4331. in SETUP CONFIGURATION) is
  4332. toggled on, then complete headers are exported along with the message
  4333. text. (If you have any <A HREF="h_config_display_filters">Display-Filters</A>
  4334. defined, they may affect the contents of the exported file.)
  4335.  
  4336. <P>
  4337. <End of help on this topic>
  4338. </BODY>
  4339. </HTML>
  4340. ======= h_common_bounce =======
  4341. <HTML>
  4342. <HEAD>
  4343. <TITLE>Bounce Command</TITLE>
  4344. </HEAD>
  4345. <BODY>
  4346. <H1>Bounce Command</H1>
  4347.  
  4348. The Bounce 
  4349. (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
  4350. command allows you to re-send, or "remail", a
  4351. message, as if you were never in the loop.  It is analogous to crossing
  4352. out your address on a postal letter, writing a different address on the
  4353. envelope, and putting it into the mailbox. Bounce is used primarily to
  4354. redirect email which was sent to you in error.
  4355. Also, some owners of email
  4356. lists need the bounce command to handle list traffic.
  4357. Bounce is not anonymous.
  4358. A ReSent-From header is added to the message so that the recipient may
  4359. tell that you Bounced it to them.
  4360. <P>
  4361.  
  4362. The presence or absence of the Bounce command is determined by the
  4363. <A HREF="h_config_enable_bounce">"enable-bounce-cmd"</A>
  4364. feature in your Pine configuration.
  4365. The feature
  4366. <A HREF="h_config_fcc_on_bounce">"fcc-on-bounce"</A>
  4367. affects the behavior of the Bounce command.
  4368. Also, it is possible that Bounce could be
  4369. administratively disabled by your system manager; if it doesn't work,
  4370. please check with your local help desk before reporting a bug.
  4371.  
  4372. <P>
  4373. <End of help on this topic>
  4374. </BODY>
  4375. </HTML>
  4376. ======= h_common_reply =======
  4377. <HTML>
  4378. <HEAD>
  4379. <TITLE>Reply and Forward Commands</TITLE>
  4380. </HEAD>
  4381. <BODY>
  4382.  
  4383. <H1>Reply and Forward Commands</H1>
  4384.  
  4385. Replying 
  4386. (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
  4387. and Forwarding 
  4388. (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
  4389. are your two alternatives for following up on the
  4390. message you are reading.  You would use reply if you want to get email
  4391. back to the author of the message and/or the other people who have
  4392. already seen it.  You use forward if you want somebody new to see the
  4393. message.
  4394. <P>
  4395.  
  4396. In the normal case, the only thing that you must supply when forwarding a
  4397. message is the name/email address of the new recipient.
  4398. Pine will include the text of the forwarded message.
  4399. Pine will also include any attachments to the message.
  4400. There is space above the forwarded text for you to include additional comments.
  4401. <P>
  4402.  
  4403. When replying, you usually have to answer some questions.
  4404. If the message is to multiple people and/or specified with a Reply-To: header,
  4405. then you will have to decide who should get the reply.
  4406. You also need to decide whether or not to include the previous
  4407. message in your reply.
  4408. Some of this is configurable.
  4409. Specifically, see the
  4410. <A HREF="h_config_include_header">"include-header-in-reply"</A>,
  4411. <A HREF="h_config_auto_include_reply">"include-text-in-reply"</A>,
  4412. <A HREF="h_config_attach_in_reply">"include-attachments-in-reply"</A>,
  4413. and
  4414. <A HREF="h_config_auto_reply_to">"reply-always-uses-reply-to"</A>
  4415. configuration features.
  4416. <P>
  4417.  
  4418. Both the Reply and Forward commands react to the full header mode toggle.
  4419. If the full header mode is on, then all the header and delivery lines are
  4420. included with the text of the message in your reply/forward.
  4421. <P>
  4422.  
  4423. Other configuration features which affect the Reply command are
  4424. <A HREF="h_config_sig_at_bottom">"signature-at-bottom"</A>,
  4425. <A HREF="h_config_sigdashes">"enable-sigdashes"</A>, and
  4426. <A HREF="h_config_strip_sigdashes">"strip-from-sigdashes-on-reply"</A>.
  4427.  
  4428. <P>
  4429. <End of help on this topic>
  4430. </BODY>
  4431. </HTML>
  4432. ======= h_common_delete =======
  4433. <HTML>
  4434. <HEAD>
  4435. <TITLE>Delete and Undelete Commands</TITLE>
  4436. </HEAD>
  4437. <BODY>
  4438. <H1>Delete and Undelete Commands</H1>
  4439.  
  4440. Delete 
  4441. (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
  4442. and Undelete 
  4443. (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
  4444. allow you to change the Deleted flag for the current message.
  4445. Delete marks a message Deleted (turns on the Deleted flag) and Undelete
  4446. removes the mark.
  4447. In the MESSAGE INDEX, deleted messages have a "D" in the status field
  4448. at the left hand edge of the index line.
  4449. When viewing a deleted message, the letters "DEL" will be present
  4450. in the upper right hand corner of the screen.
  4451. Delete simply <EM>marks</EM> a message Deleted, it does not actually
  4452. get rid of the message.
  4453. The eXpunge command (available from the MESSAGE INDEX screen) actually
  4454. removes all of the deleted messages in a folder.
  4455. Once a message is eXpunged, it can't be retrieved.
  4456. <P>
  4457.  
  4458. The Delete command is affected by the setting of the configuration feature
  4459. <A HREF="h_config_del_skips_del">"delete-skips-deleted"</A>.
  4460.  
  4461. <P>
  4462. <End of help on this topic>
  4463. </BODY>
  4464. </HTML>
  4465. ======= h_common_postpone =======
  4466. <HTML>
  4467. <HEAD>
  4468. <TITLE>Postpone Command</TITLE>
  4469. </HEAD>
  4470. <BODY>
  4471. <H1>Postpone Command</H1>
  4472.  
  4473. The postpone
  4474. <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
  4475. command allows you to temporarily stop working on the current
  4476. message so you may read
  4477. other messages or compose another message.  When you want to resume a
  4478. message later, start to compose and answer "yes" to the
  4479. "Continue postponed composition?" question.  You may
  4480. postpone as many messages as you like.
  4481.  
  4482. <P>
  4483. Note: If a <A HREF="h_config_form_folder">form-letter-folder</A> is defined
  4484. in the Setup/Config screen, then the Postpone command will prompt you for
  4485. the folder in which to store your outgoing message.
  4486.  
  4487. <P>
  4488. <End of help on this topic>
  4489. </BODY>
  4490. </HTML>
  4491. ======= h_compose_cancel =======
  4492. <HTML>
  4493. <HEAD>
  4494. <TITLE>Cancel Command</TITLE>
  4495. </HEAD>
  4496. <BODY>
  4497. <H1>Cancel Command</H1>
  4498.  
  4499. Cancel
  4500. <!--chtml if pinemode="function_key"-->
  4501. (F2)
  4502. <!--chtml else-->
  4503. (^C) 
  4504. <!--chtml endif-->
  4505.  
  4506. The Cancel command returns you to Pine's normal mail processing and
  4507. causes the message currently under composition to be thrown out.
  4508. The message text <EM>will be lost</EM>.
  4509.  
  4510. <P>
  4511. Note: Unless the <A HREF="h_config_quell_dead_letter">quell-dead-letter-on-cancel</A> has been set, the text of the most recent composition cancelled
  4512. will be preserved in the file named
  4513. <!--chtml if pinemode="os_windows"-->
  4514. "DEADLETR".
  4515. <!--chtml else-->
  4516. "dead.letter" in your home directory.
  4517. <!--chtml endif-->
  4518. If you unintentionally cancel a message, look there for its text.
  4519.  
  4520. <P>
  4521. <End of help on this topic>
  4522. </BODY>
  4523. </HTML>
  4524. ======= h_compose_richhdr =======
  4525. <HTML>
  4526. <HEAD>
  4527. <TITLE>Rich Header Command</TITLE>
  4528. </HEAD>
  4529. <BODY>
  4530. <H1>Rich Header Command</H1>
  4531.  
  4532. The Rich Header command allows you to toggle between the list of 
  4533. all message headers available for editing and those that are most
  4534. common.
  4535.  
  4536. <P>
  4537. You would use this toggle to expose, for example, the "Bcc:" or
  4538. "Fcc:" header which aren't usually necessary to set (and thus
  4539. not displayed by default), but are sometimes helpful.
  4540.  
  4541. <P>
  4542. <End of help on this topic>
  4543. </BODY>
  4544. </HTML>
  4545. ======= h_compose_send =======
  4546. <HTML>
  4547. <HEAD>
  4548. <TITLE>Send Command</TITLE>
  4549. </HEAD>
  4550. <BODY>
  4551. <H1>Send Command</H1>
  4552.  
  4553. The Send command
  4554. <!--chtml if pinemode="function_key"-->
  4555. (F3)
  4556. <!--chtml else-->
  4557. (^X) 
  4558. <!--chtml endif-->
  4559. tells Pine you are finished composing.
  4560. Before actually sending it, though, Pine will ask you to confirm 
  4561. your intention, and, at the same time, redisplayed the message text
  4562. with the recipients at the top of the screen to give you the opportunity
  4563. to review and verify that the message is addressed to the people
  4564. you intended.
  4565.  
  4566. <P>
  4567. This confirmation prompt may also offer, depending
  4568. on your particular Setup/Config, options allowing you to set
  4569. <A HREF="h_config_compose_dsn">delivery status notifications</A>,
  4570. include attachments in the "Fcc" (if you had previously
  4571. specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
  4572. observe details of the
  4573. <A HREF="h_config_verbose_post">message submission process</A>,
  4574. or choose the utility though which the
  4575. <A HREF="h_config_sending_filter">outgoing text should first pass</A>.
  4576.  
  4577. <P>
  4578. <End of help on this topic>
  4579. </BODY>
  4580. </HTML>
  4581. ======= h_compose_markcutpaste =======
  4582. <HTML>
  4583. <HEAD>
  4584. <TITLE>Mark, Cut and Paste Commands</TITLE>
  4585. </HEAD>
  4586. <BODY>
  4587. <H1>Mark, Cut and Paste Commands</H1>
  4588.  
  4589. You can define a "block" of text, which can subsequently
  4590.  be deleted or
  4591. copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
  4592. then moving the cursor to the end of the desired text block.  You can then
  4593. "cut" the block out 
  4594. <!--chtml if pinemode="function_key"-->
  4595. "F9",
  4596. <!--chtml else-->
  4597. "Ctrl-K",
  4598. <!--chtml endif-->
  4599. move the cursor, and "paste" it
  4600. <!--chtml if pinemode="function_key"-->
  4601. "F10",
  4602. <!--chtml else-->
  4603. "Ctrl-U",
  4604. <!--chtml endif-->
  4605. in the new location.  Also, you can paste more than once, allowing you
  4606. to use this feature to copy a block of text.<P>
  4607.  
  4608. If you press 
  4609. <!--chtml if pinemode="function_key"-->
  4610. "F9"
  4611. <!--chtml else-->
  4612. "^K"
  4613. <!--chtml endif-->
  4614. without having marked anything, Pine will delete
  4615. a single line.  If you delete a group of lines together, Pine keeps them
  4616. in the same buffer, so 
  4617. <!--chtml if pinemode="function_key"-->
  4618. F10
  4619. <!--chtml else-->
  4620. ^U
  4621. <!--chtml endif-->
  4622. will restore them as a block.  About
  4623. terminology:  Mark is shown as "^^".  The first "^" means you should
  4624. hold down the "Control" key on your keyboard.  The second "^" means
  4625. "type the character ^".
  4626.  
  4627. <P>
  4628. <End of help on this topic>
  4629. </BODY>
  4630. </HTML>
  4631. ======= h_compose_justify =======
  4632. <HTML>
  4633. <HEAD>
  4634. <TITLE>Justify Command</TITLE>
  4635. </HEAD>
  4636. <BODY>
  4637. <H1>Justify Command</H1>
  4638.  
  4639. The Justify
  4640. <!--chtml if pinemode="function_key"-->
  4641. (F4)
  4642. <!--chtml else-->
  4643. (^J) 
  4644. <!--chtml endif-->
  4645. command reformats the text in the paragraph the cursor is in.
  4646. Paragraphs are separated by one blank line or a line beginning with a space.
  4647. This is useful when you have been editing a paragraph and the lines become
  4648. uneven.  The text is left aligned or justified and the right is ragged.  If
  4649. the text is already justified as typed with auto-wrap, no justification will
  4650. be done.
  4651.  
  4652. <P>
  4653. When composing a reply containing included text, the justify command
  4654. will reformat text to the right of the 
  4655. "<A HREF="h_config_reply_indent_string">reply-indent-string</A>",
  4656. adding or removing indented lines as needed.  Paragraphs are separated
  4657. by a blank line, a line containing only the reply-indent-string, or a
  4658. line containing the indent string and one or more blank spaces.
  4659. Included text that was previously indented (or "quoted") is
  4660. not preserved.
  4661.  
  4662. <P>
  4663. <End of help on this topic>
  4664. </BODY>
  4665. </HTML>
  4666. ======= h_compose_spell =======
  4667. <HTML>
  4668. <HEAD>
  4669. <TITLE>Spell Check Command</TITLE>
  4670. </HEAD>
  4671. <BODY>
  4672. <H1>Spell Check Command</H1>
  4673.  
  4674. The "To Spell"
  4675. <!--chtml if pinemode="function_key"-->
  4676. (F12)
  4677. <!--chtml else-->
  4678. (^T) 
  4679. <!--chtml endif-->
  4680. command calls an external spell checking program to look over the
  4681. message you are composing.  By default, Pine uses the simple Unix
  4682. spell checker.
  4683.  
  4684. <P>
  4685. Under the default configuration, there are no suggested alternative
  4686. spellings, but Pine
  4687. will show you the "incorrect" word and let you fix it or
  4688. move on.  If a word is misspelled more than once, then you will be
  4689. prompted to confirm the correction of each occurrence of it.  Lines
  4690. beginning with "> " (included messages) will not be checked.
  4691.  
  4692. <P>
  4693. If your system has a spell checking utility that does offer alternatives
  4694. or otherwise improves on the default, the Setup/Config Menu's
  4695. "<A HREF="h_config_speller">speller</A>" option will tell
  4696. Pine to use it instead.
  4697.  
  4698. <P>
  4699. <End of help on this topic>
  4700. </BODY>
  4701. </HTML>
  4702. ======= h_compose_alted =======
  4703. <HTML>
  4704. <HEAD>
  4705. <TITLE>Alt Editor Command</TITLE>
  4706. </HEAD>
  4707. <BODY>
  4708. <H1>Alt Editor Command</H1>
  4709.  
  4710. The "Alt Editor" command's availability depends on the
  4711. Setup/Config variable "<A HREF="h_config_editor">editor</A>".
  4712.  
  4713. <P>
  4714. When the variable specifies a valid editor on your system, this
  4715. command will launch it with the current text of your message
  4716. already filled in.
  4717.  
  4718. <P>
  4719. <End of help on this topic>
  4720. </BODY>
  4721. </HTML>
  4722. ======= h_compose_readfile =======
  4723. <HTML>
  4724. <HEAD>
  4725. <TITLE>Read File Command</TITLE>
  4726. </HEAD>
  4727. <BODY>
  4728. <H1>Read File Command</H1>
  4729.  
  4730. The "Read File"
  4731. <!--chtml if pinemode="function_key"-->
  4732. (F5)
  4733. <!--chtml else-->
  4734. (^R) 
  4735. <!--chtml endif-->
  4736. command allows you to copy in text from an existing file. You will be
  4737. prompted for the name of a file to be inserted into the message.  The file
  4738. name is relative to your home directory 
  4739. <!--chtml if pinemode="running"-->
  4740. (which, in the present configuration of your system, is
  4741.  "<!--#echo var="HOME_DIR"-->") 
  4742. <!--chtml endif-->
  4743. or current working directory
  4744. <!--chtml if pinemode="running"-->
  4745. (which, at least for your current Pine "session," 
  4746. is "<!--#echo var="CURRENT_DIR"-->") 
  4747. <!--chtml endif-->, depending on the
  4748. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  4749. configuration setting; or, the file name must be specified as a full path name 
  4750. <!--chtml if pinemode="os_windows"-->
  4751. -- for example: "A:\PAPER.TXT"
  4752. <!--chtml else-->
  4753. -- for example: "/tmp/wisdom-of-the-day"
  4754. <!--chtml endif-->
  4755. (without the quotation marks).
  4756.  
  4757. <P>
  4758. The file will be inserted where the cursor is located.  <B>The
  4759. file to be read must be on the same system as Pine.</B> If you use Pine on a
  4760. Unix machine but have files on a PC or Mac, the files must be transferred
  4761. to the system Pine is running on before they can be read.  Please ask your
  4762. local computer support people about the correct way to transfer a file to 
  4763. your Pine system.
  4764.  
  4765. <P>
  4766. <End of help on this topic>
  4767. </BODY>
  4768. </HTML>
  4769. ======= h_config_tray_icon =======
  4770. <HTML>
  4771. <HEAD>
  4772. <TITLE>OPTION: enable-tray-icon</TITLE>
  4773. </HEAD>
  4774. <BODY>
  4775. <H1>OPTION: enable-tray-icon</H1>
  4776.  
  4777. This option restores a behavior of previous versions of PC-Pine.
  4778. These
  4779. versions, when started, installed a PC-Pine icon in the notification 
  4780. tray of Window's Taskbar.  The primary use of this icon was to indicate
  4781. new mail arrival by turning red (while the Taskbar icon remained green).
  4782.  
  4783. <P>
  4784. Rather than add another icon to the Taskbar, this version of PC-Pine will 
  4785. color its Taskbar entry's icon red (as well as the icon in the Window
  4786. Title).  This feature is only provided for backwards compatibility.
  4787.  
  4788. <P>
  4789. <End of help on this topic>
  4790. </BODY>
  4791. </HTML>
  4792. ======= h_common_suspend =======
  4793. <HTML>
  4794. <HEAD>
  4795. <TITLE>Suspend Command</TITLE>
  4796. </HEAD>
  4797. <BODY>
  4798. <H1>Suspend Command</H1>
  4799.  
  4800. With the <A HREF="h_config_can_suspend">enable-suspend</A> feature
  4801. enabled, you can, at almost any time, temporarily halt your Pine session,
  4802. <!--chtml if pinemode="os_windows"-->
  4803. minimizing it into an icon.
  4804. <!--chtml else-->
  4805. and return to your system prompt.
  4806. <!--chtml endif-->
  4807.  
  4808. <P>
  4809. <End of help on this topic>
  4810. </BODY>
  4811. </HTML>
  4812. ======= h_pipe_command =======
  4813. <HTML>
  4814. <HEAD>
  4815. <TITLE>Pipe Command SubOptions</TITLE>
  4816. </HEAD>
  4817. <BODY>
  4818. <H1>Pipe Command SubOptions</H1>
  4819.  
  4820. By default, when you use the Pipe command, the processed text of the
  4821. message is sent to the Unix command
  4822. you specify and the output is captured by Pine and shown to you.
  4823. There are some sub-commands which may be used to alter this behavior.
  4824. These are toggles which switch the behavior between two possibilities.
  4825. They can be combined in any way you wish.
  4826. They are:
  4827. <DL>
  4828.    <DT>Shown Text or Raw Text</DT>
  4829.    <DD>This option toggles between sending the shown (processed) text
  4830. of the message to the Unix command, and sending the
  4831. raw (unprocessed) text of the message to the Unix command.
  4832. The default is to send the shown text.
  4833. The raw version of the message will contain all of the headers and any
  4834. MIME encoding that the message contains.
  4835. You can experiment with this option by piping to something simple like the
  4836. Unix "cat" command.
  4837.    </DD>
  4838.    <DT>Captured Output or Free Output</DT>
  4839.    <DD>This option toggles between having Pine capture the output of
  4840. the Unix pipe command for display, and not capturing it.
  4841. If the command you are piping to is a filter which will produce output
  4842. you want to view, then you want to capture that output
  4843. for display (the default).
  4844. If the Unix command doesn't produce output or handles the display itself,
  4845. then you want free output.
  4846.    </DD>
  4847.    <DT>No Delimiter or With Delimiter</DT>
  4848.    <DD>This option controls whether or not a Unix mailbox style delimiter
  4849. will come before the text of the message.
  4850. This is the delmiter used in the common Unix mailbox format.
  4851. It's the single line which begins with the five characters
  4852. "From" followed by a <SPACE> character.
  4853. You'll usually only want to include this if the Unix command requires
  4854. input in the format of a traditional Unix mailbox file.
  4855.    </DD>
  4856.    <DT>To Same Pipe or To Individual Pipes</DT>
  4857.    <DD>This option only shows up if you are running an aggregate
  4858. pipe command.
  4859. That is, the command was Apply Pipe, not just Pipe.
  4860. You have the option of piping all of the selected messages through a
  4861. single pipe to a single instance of the Unix command,
  4862. or piping each individual message through a separate pipe to separate
  4863. instances of the Unix command.
  4864. The default is that all of the output will go through a single pipe
  4865. to a single instance of the command.
  4866. You can try this option with a command like "less", with Free
  4867. Output enabled.
  4868.    </DD>
  4869. </DL>
  4870.  
  4871. <P>
  4872. <End of help on this topic>
  4873. </BODY>
  4874. </HTML>
  4875. ============= h_simple_index ========================
  4876. <HTML>
  4877. <HEAD>
  4878. <TITLE>SELECT POSTPONED MESSAGE</TITLE>
  4879. </HEAD>
  4880. <BODY>
  4881. <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
  4882. <!--chtml if pinemode="function_key"-->
  4883. <PRE>
  4884. Navigating the List of Messages               General Pine Commands
  4885. -------------------------------               ---------------------
  4886.  F5   Move to previous message                 F1   Show this help text
  4887.  F6   Move to next message
  4888.  F7   Show previous screen of messages
  4889.  F8   Show next screen of messages
  4890.  
  4891. Message Selection Commands
  4892. --------------------------
  4893.  F3   Exit the Message Select menu (canceling Send command)
  4894.  F4   Select the currently highlighted message
  4895.  F9   Mark the currently highlighted message as deleted
  4896.  F10  Undelete (remove deletion mark from) the highlighted message
  4897. </PRE>
  4898. <!--chtml else-->
  4899. <PRE>
  4900. Navigating the List of Messages               General Pine Commands
  4901. -------------------------------               ---------------------
  4902.   P  Move to previous message                  ?  Show this help text
  4903.   N  Move to next message
  4904.   -  Show previous screen of messages
  4905.  Spc Show next screen of messages
  4906.  
  4907. Message Selection Commands
  4908. --------------------------
  4909.   E  Exit the Message Select menu (canceling Send command)
  4910.   S  Select the currently highlighted message
  4911.   D  Mark the currently highlighted message as deleted
  4912.   U  Undelete (remove deletion mark from) the highlighted message
  4913. </PRE>
  4914. <!--chtml endif-->
  4915. <P>
  4916. <H2>Description of the Select Postponed Message Screen</H2>
  4917.  
  4918. This screen allows you to select one of several previously postponed
  4919. messages in order to continue composition.  Your options are very limited
  4920. -- the screen is not meant to let you manipulate these messages.  However,
  4921. you may now delete messages from this list.  Once you choose a message,
  4922. Pine reads it in and puts you into the regular message composer.
  4923. <P>
  4924.  
  4925. Messages do not stay in this postponed state automatically.  If you select
  4926. a message and then want to postpone it again, use the normal postpone
  4927. (Ctrl-O) command in the composer.
  4928. <P>
  4929.  
  4930. If you exit this screen without selecting a message, the Compose command
  4931. which got you here is canceled.  Other than messages explicitly marked
  4932. "Deleted", no messages will be removed.
  4933.  
  4934. <P>
  4935. <End of help on this topic>
  4936. </BODY>
  4937. </HTML>
  4938. ============= h_collection_screen ========================
  4939. <HTML>
  4940. <HEAD>
  4941. <TITLE>COLLECTION LIST screen</TITLE>
  4942. </HEAD>
  4943. <BODY>
  4944. <H1>COLLECTION LIST screen</H1>
  4945.  
  4946. The COLLECTION LIST screen is used to select one of your  
  4947. collection definitions to display the folders they contain.  See
  4948. <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
  4949. detailed explanation of collections.<P>
  4950.  
  4951. To manage your collection definitions (Add, Change, Delete, etc.), use
  4952. the <A HREF="h_collection_maint">Setup/collectionList</A> command on Pine's
  4953. MAIN MENU.
  4954.  
  4955. <P>
  4956. <End of help on this topic>
  4957. </BODY>
  4958. </HTML>
  4959. ============= h_collection_maint ========================
  4960. <HTML>
  4961. <HEAD>
  4962. <TITLE>SETUP COLLECTION LIST screen</TITLE>
  4963. </HEAD>
  4964. <BODY>
  4965. <H1>SETUP COLLECTION LIST screen</H1>
  4966.  
  4967. The SETUP COLLECTION LIST screen lets you manage your collection
  4968. definitions.  See 
  4969. <A HREF="h_what_are_collections">Folder Collections Explained</A> 
  4970. for detailed explanation of collections.<P>
  4971.  
  4972. Maintenance commands include:
  4973. <DL>
  4974. <DT>Change
  4975. <!--chtml if pinemode="function_key"-->
  4976. (F4)
  4977. <!--chtml else-->
  4978. (C)
  4979. <!--chtml endif-->
  4980. </DT>
  4981.  
  4982. <DD>Modify attributes of the selected collection definition.
  4983.  
  4984. <DT>Add Cltn
  4985. <!--chtml if pinemode="function_key"-->
  4986. (F9)
  4987. <!--chtml else-->
  4988. (A)
  4989. <!--chtml endif-->
  4990. </DT>
  4991.  
  4992. <DD>Create a new collection definition.
  4993. </DD>
  4994.  
  4995. <DT>Del Cltn
  4996. <!--chtml if pinemode="function_key"-->
  4997. (F10)
  4998. <!--chtml else-->
  4999. (D)
  5000. <!--chtml endif-->
  5001. </DT>
  5002.  
  5003. <DD>Delete the selected collection definition.<BR>
  5004. NOTE: The folders and directories referred to by the
  5005. collection definition are <EM>NOT</EM> deleted.  Folders must
  5006. be deleted, if that's what you wish to do, from the 
  5007. <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
  5008. individual folders in a collection.
  5009. </DD>
  5010.  
  5011. <DT>Shuffle
  5012. <!--chtml if pinemode="function_key"-->
  5013. (F11)
  5014. <!--chtml else-->
  5015. ($)
  5016. <!--chtml endif-->
  5017. </DT>
  5018.  
  5019. <DD>Change the order of the displayed collections.  Pine will offer
  5020. to move the currently selected collection one position UP
  5021. or DOWN.
  5022. </DD>
  5023. </DL>
  5024.  
  5025. <P>
  5026. <End of help on this topic>
  5027. </BODY>
  5028. </HTML>
  5029. ============ h_what_are_collections ==========
  5030. <HTML>
  5031. <HEAD>
  5032. <TITLE>Folder Collections Explained</TITLE>
  5033. </HEAD>
  5034. <BODY>
  5035. <H1>Folder Collections Explained</H1>
  5036.  
  5037.  
  5038. Those of you with simple mail configurations will just see a list of all the
  5039. folders you have when choosing FOLDER LIST from Pine's MAIN MENU.  
  5040. The special folders for INBOX, sent mail and saved messages
  5041. will appear at the top of the list.  All others are in alphabetical order.
  5042. <P>
  5043. If you
  5044. or your system administrator have defined more than one collection or if
  5045. you have a collection (for newsgroups or email folders) defined on your 
  5046. system, then you will see the COLLECTION LIST screen first when choosing 
  5047. FOLDER LIST from Pine's MAIN MENU.  (This selection level is new in Pine 4.00; 
  5048. previous versions showed all folder 
  5049. collections on the FOLDER LIST screen, with a "Select Here to See
  5050. Expanded List" button to reveal the folders in them.)
  5051. <P>
  5052. <H2>Why have multiple folder collections?</H2>
  5053. <P>
  5054. For Pine users who only maintain email folders (and not too many) on one host, 
  5055. a single folder collection is probably sufficient.<P>
  5056.  
  5057. However, people who have more than one email account - for example, one 
  5058. at their university, and one with their personal Internet Service Provider - 
  5059. will have different sets of folders on different hosts, and they may want to
  5060. access them all from the same installation of Pine, rather than use different 
  5061. software and/or log into other hosts to manipulate messages in different 
  5062. accounts.  (If in doubt whether one of your email accounts can be accessed 
  5063. with Pine, contact the technical support people for that account.)  Even people
  5064. who have only one email account on one host, but have dozens or
  5065. hundreds of email folders, may want to arrange these folders together in a 
  5066. meaningful way.<BR>
  5067. That is where multiple collections come in.
  5068.  
  5069. <H2>Types of Collections</H2>
  5070. <DL>
  5071. <DT>INCOMING FOLDERS</DT>
  5072. <DD>"Incoming Message Folders" 
  5073. is a special collection typically used to supplement your single INBOX.  
  5074. All the folders here are meant to be ones that receive incoming messages, 
  5075. which you intend to check more or less frequently.  
  5076. You may have multiple folders like this because you or your systems 
  5077. administrator have set up an external program (because this is not a 
  5078. function of Pine!) to filter incoming 
  5079. email messages into different folders, based on certain criteria such as 
  5080. sender, recipient, or subject; or because you have multiple accounts and 
  5081. wish to check their INBOXes easily.  This collection is established by 
  5082. setting the 
  5083. <A HREF="h_config_enable_incoming">"enable-incoming-folders"</A>
  5084. feature in the SETUP CONFIGURATION screen, which is accessed from the 
  5085. MAIN MENU.
  5086. </DD>
  5087.  
  5088. <DT>NEWS</DT>
  5089. <DD>You can also define a collection specifically for
  5090. newsgroups.  Pine does this for you implicitly when you 
  5091. <A HREF="h_config_nntp_server">define an NNTP Server</A>
  5092. in your Pine configuration.  The news collection appears last in the 
  5093. COLLECTION LIST (though you can shuffle it up in the order of presentation),
  5094. and Pine knows not to save messages there.
  5095. </DD>
  5096.  
  5097. <DT>DEFAULT COLLECTION</DT>
  5098. <DD>This is the default collection for your saved and sent messages folders.
  5099. </DD>
  5100. </DL>
  5101.  
  5102. <P>
  5103.  
  5104. <H2>Defining Collections</H2>
  5105. <P>
  5106. In the absence of any folder-collection definitions, Pine will assume a
  5107. single default folder collection.
  5108. <!--chtml if pinemode="os_windows"-->
  5109. <!--chtml else-->
  5110. If necessary, Pine will create the directory
  5111. "mail" in your Unix home directory 
  5112. to hold your folders.
  5113. <!--chtml endif-->
  5114. <P>
  5115. You can use the 
  5116. <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
  5117. the MAIN MENU, to manage your collection list.  
  5118. <P>
  5119. <End of help on this topic>
  5120. </BODY>
  5121. </HTML>
  5122. ===== h_role_select =====
  5123. <HTML>
  5124. <HEAD>
  5125. <TITLE>ROLES SCREEN</TITLE>
  5126. </HEAD>
  5127. <BODY>
  5128. <H1>ROLES SCREEN</H1>
  5129. <H2>ROLES COMMANDS</H2>
  5130. <!--chtml if pinemode="function_key"-->
  5131. <PRE>
  5132. Available  Commands                        
  5133. -------------------------------            
  5134. F1  Show Help Text
  5135. F3  Back to MAIN Pine menu
  5136. F4  Select a role to use in composition
  5137. F5  Move to previous role
  5138. F6  Move to next role
  5139. F7  Previous page of roles
  5140. F8  Next page of roles
  5141. F12 Whereis (search role nicknames)
  5142. </PRE>
  5143. <!--chtml else-->
  5144. <PRE>
  5145. Navigation                     General Pine Commands
  5146. -----------------------        ---------------------
  5147.  P  Prev Role                     ?  Display this help text
  5148.  N  Next Role                     E  Back to MAIN Pine menu
  5149.  -  Previous page
  5150. Spc Next page
  5151.  W  WhereIs (search for word in role nicknames)
  5152.  
  5153. Select Role Commands
  5154. ------------------------------------------------
  5155.  C  Compose using highlighted role
  5156. </PRE>
  5157. <!--chtml endif-->
  5158.  
  5159. <H2>Description of the Roles Screen</H2>
  5160.  
  5161. With this screen you select a role to be used in the composition of a
  5162. message.
  5163. Use the Previous and Next commands to highlight the role you wish to
  5164. use.
  5165. When you type C you will be placed in the composer using the highlighted role.
  5166. <P>
  5167. You don't have any non-default <A HREF="h_rules_roles">roles</A>
  5168. available unless you set them up.
  5169. You may do so by using the Setup/Rules command on the main menu.
  5170. <P><UL>
  5171. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  5172. </UL>
  5173. <P>
  5174. <End of help on this topic>
  5175. </BODY>
  5176. </HTML>
  5177. ===== h_role_nick_select =====
  5178. <HTML>
  5179. <HEAD>
  5180. <TITLE>ROLE NICKNAME SCREEN</TITLE>
  5181. </HEAD>
  5182. <BODY>
  5183. <H1>ROLE NICKNAME SCREEN</H1>
  5184. <H2>COMMANDS</H2>
  5185. <!--chtml if pinemode="function_key"-->
  5186. <PRE>
  5187. Available  Commands                        
  5188. -------------------------------            
  5189. F1  Show Help Text
  5190. F3  Back to MAIN Pine menu
  5191. F4  Select highlighted role
  5192. F5  Move to previous role
  5193. F6  Move to next role
  5194. F7  Previous page of roles
  5195. F8  Next page of roles
  5196. F12 Whereis (search role nicknames)
  5197. </PRE>
  5198. <!--chtml else-->
  5199. <PRE>
  5200. Navigation                     General Pine Commands
  5201. -----------------------        ---------------------
  5202.  P  Prev Role                     ?  Display this help text
  5203.  N  Next Role                     E  Back to MAIN Pine menu
  5204.  -  Previous page
  5205. Spc Next page
  5206.  W  WhereIs (search for word in role nicknames)
  5207.  
  5208. Select Role Commands
  5209. ------------------------------------------------
  5210.  S  Select highlighted role
  5211. </PRE>
  5212. <!--chtml endif-->
  5213.  
  5214. <H2>Description of the Role Nicknames Screen</H2>
  5215.  
  5216. This screen helps you select one of your role nicknames.
  5217. Use the Previous and Next commands to highlight the role you wish to
  5218. use.
  5219. <P>
  5220. You don't have any non-default <A HREF="h_rules_roles">roles</A>
  5221. available unless you set them up.
  5222. You may do so by using the Setup/Rules command on the main menu.
  5223. <P><UL>
  5224. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  5225. </UL>
  5226. <P>
  5227. <End of help on this topic>
  5228. </BODY>
  5229. </HTML>
  5230. ======== h_rule_patterns =============
  5231. <HTML>
  5232. <HEAD>
  5233. <TITLE>PATTERNS</TITLE>
  5234. </HEAD>
  5235. <BODY>
  5236. <H1>PATTERNS</H1>
  5237. Patterns are used with Roles, Filtering, Index Coloring,
  5238. and Scoring.
  5239. Patterns are compared with a message to see if there is a match.
  5240. For Filtering, the messages being checked are all the messages in the
  5241. folder, one at a time.
  5242. For Index Line Coloring, each message which is visible on the screen is
  5243. checked for matches with the Index Coloring Patterns.
  5244. Roles are used with the Reply, Forward, and Compose commands.
  5245. For Reply, the message used to compare the Pattern with is the message
  5246. being replied to;
  5247. for Forward, the message used to compare the Pattern with is the message
  5248. being forwarded;
  5249. and for Compose, there is no message, so the parts of the Pattern which depend
  5250. on a message (everything other than Current Folder Type)
  5251. are not used.
  5252. Only the Current Folder Type matters for Compose.
  5253. For Scoring, the message being scored is compared with all of the Score
  5254. Patterns, and the Score Values from the ones that match are added together to 
  5255. get the message's score.
  5256. <P>
  5257. Each Pattern has several possible pieces, all of which are optional.
  5258. In order for there to be a match, <EM>ALL</EM> of the
  5259. defined parts of the Pattern must match the message.
  5260. There are six predefined header patterns called the To, From, Sender, Cc, News,
  5261. and Subject patterns.
  5262. Besides those six predefined header patterns, you may add
  5263. additional header patterns with header fieldnames of your choosing.
  5264. You add an extra header pattern by placing the cursor on one of the
  5265. patterns while in the role editor and using the "eXtraHdr" command.
  5266. The Recip pattern is a header pattern which stands for Recipient (To OR Cc)
  5267. and the Partic pattern is a header pattern which stands for
  5268. Participant (From OR To OR Cc).
  5269. (Defining the Recip pattern does not have the same effect as defining both
  5270. the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
  5271. Similar to the header patterns is the AllText pattern.
  5272. Instead of comparing this pattern's text against only the contents of
  5273. a particular header field, the text for the AllText pattern is compared
  5274. with text anywhere in the message's header or body.
  5275. <P>
  5276. The "Current Folder Type" and the "Score Interval" are
  5277. also part of the Pattern, although the "Score Interval" is not used
  5278. when checking for matches for Scoring.
  5279. There are also four similar settings which relate to the status of the message.
  5280. These settings rely on the message being New or not, Deleted or not,
  5281. Answered or not, and Important or not.
  5282.  
  5283. <H2>Parts of a Pattern</H2>
  5284.  
  5285. <H3>Header patterns</H3>
  5286.  
  5287. A header pattern is simply text which is searched for in the corresponding
  5288. header field.
  5289. For example, if a Pattern has a From header pattern with the value
  5290. "@company.com", then only messages which have a From header
  5291. which contains the text "@company.com" will be possible
  5292. matches.
  5293. Matches don't have to be exact.
  5294. For example, if the relevant field of a message contains the text
  5295. "mailbox@domain" somewhere
  5296. in it, then header patterns of "box", or "x@d", or
  5297. "mailbox@domain" are all matches.
  5298. <P>
  5299. All parts of the Pattern must match so, for example,
  5300. if a message matches a defined
  5301. From pattern, it still must be checked against the other parts of the
  5302. Pattern which have been defined.
  5303. The To header pattern is a slightly special case.
  5304. If the message being checked has a Resent-To header, the addresses
  5305. there are used in place of the addresses in the To header.
  5306. This is only true for the To header.
  5307. Resent-cc and Resent-From headers are never used unless you add them
  5308. with the eXtraHdrs command.
  5309. <P>
  5310. If you want to check for the presence of a header field but don't care
  5311. about its value, then
  5312. the empty pattern which you get by entering a pair of
  5313. double quotes ("") should match any message which
  5314. has the corresponding header field.
  5315.  
  5316. <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
  5317.  
  5318. AllText patterns are just like header patterns except that the text is
  5319. searched for anywhere in the message's headers or body, not just in the
  5320. contents of a particular header field.
  5321. <P>
  5322. If there is more than one header pattern or AllText pattern
  5323. for which you want to take the
  5324. same action there is a shorthand notation which may be used.
  5325. Any of these patterns may be a comma-separated list of patterns instead of
  5326. just a single pattern.
  5327. If any one of the patterns in the list matches the message
  5328. then it is considered a match.
  5329. For example, if "company1" and "company2" both required
  5330. you to use the same role when replying to messages, you might have
  5331. a To pattern which looks like
  5332. <P>
  5333. <CENTER><SAMP>company1.com,company2.com</SAMP></CENTER>
  5334. <P>
  5335. This means that if the mail you are replying to was addressed to
  5336. either "anything@company1.com" or "anything@company2.com",
  5337. then this Pattern is a match and the same actions will be taken.
  5338. <P>
  5339. A technicality: Since comma is the character used to separate multiple values
  5340. in a header or AllText pattern field, you have to escape comma with a
  5341. backslash (\) if you want to include a literal comma in one of those fields.
  5342. The same is true for the backslash character itself, which must be escaped
  5343. with another backslash to make it literal.
  5344. It's unlikely you'll ever need to enter a literal comma or backslash in
  5345. any of the patterns.
  5346.  
  5347. <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
  5348.  
  5349. The "Current Folder Type" may be set to one of four different
  5350. values: "Any", "News", "Email", or
  5351. "Specific".
  5352. If the value is set to "News", then the
  5353. Pattern will only match if the currently open folder is a newsgroup.
  5354. The value "Email" only matches if the current folder is not news and
  5355. the value "Any" causes any folder to match.
  5356. If the value of "Current Folder Type" is set to "Specific",
  5357. then you must fill in a value for "Folder", which is on the line
  5358. below the "Specific" line.
  5359. In this case you will only get a match if the currently open folder is
  5360. the specific folder you list.
  5361. You may give a comma-separated list of folders instead of just a single
  5362. folder name, in which case the Pattern will match if the open folder is
  5363. any one of the folders in the list.
  5364. The name of each folder in the list may be either "INBOX",
  5365. the technical specification
  5366. of the folder (like what appears in your configuration file) or, if the
  5367. folder is one of your incoming folders, it may be the nickname you've given
  5368. the folder.
  5369. Here are a couple samples of specific folder names:
  5370. <P>
  5371. <CENTER><SAMP>{monet.art.nowhere.edu}mail/art-class</SAMP></CENTER>
  5372. <P>
  5373. <CENTER><SAMP>{news.myisp.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
  5374. <P>
  5375. <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
  5376. <P>
  5377. When reading a newsgroup, there may be a performance penalty
  5378. incurred when collecting the information necessary to check whether
  5379. or not a Pattern matches a message.
  5380. For this reason, the default Current Folder Type is set to "Email".
  5381. If you have Patterns with a Current Folder Type of either
  5382. "Any" or "News" and those Patterns are used for
  5383. Index Line Coloring or Scoring, you may experience
  5384. slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
  5385.  
  5386. <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
  5387.  
  5388. The "Score Interval" may be set to an interval of message
  5389. scores which should be considered a match.
  5390. Like the other parts of the Pattern, if it is unset it will be ignored.
  5391. The Score Interval looks like
  5392. <P>
  5393. <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
  5394. <P>
  5395. where "min_score" and "max_score" are integers between
  5396. -32000 and 32000.
  5397. The special values "-INF" and "INF" may be used for
  5398. the min and max values to represent negative and positive infinity.
  5399. <P>
  5400. When there is a Score Interval defined, it is a match if the score for
  5401. the message is contained in the interval.
  5402. The interval includes both endpoints.
  5403. The score for a message is calculated by looking at every Score rule defined and
  5404. adding up the Score Values for the ones which match the message.
  5405. When deciding whether or not a Pattern matches a message for purposes of
  5406. calculating the score, the Score Interval is ignored.
  5407.  
  5408. <H3><A NAME="pattern_message_status">Message Status</A></H3>
  5409.  
  5410. There are four separate message status settings.
  5411. By default, all four are set to the value "Don't care", which
  5412. will match any message.
  5413. The value "Yes" means that the particular status must be true
  5414. for a match, and the value "No" means that the particular
  5415. status must not be true for a match.
  5416. For example, one of the four Message Status settings is whether a message
  5417. is New or not.
  5418. A "Yes" means that the message must be New (Unseen) to be
  5419. considered a match and "No" means that the message must not be
  5420. New to be considered a match.
  5421. The same is true of the other three message status settings which depend
  5422. on whether or not the message is marked Important; whether the message has 
  5423. been answered or not; and whether the message has been deleted or not. 
  5424.  
  5425. <P>
  5426. <End of help on this topic>
  5427. </BODY>
  5428. </HTML>
  5429. ===== h_rules_roles =====
  5430. <HTML>
  5431. <HEAD>
  5432. <TITLE>SETUP ROLES SCREEN</TITLE>
  5433. </HEAD>
  5434. <BODY>
  5435. <H1>SETUP ROLES SCREEN</H1>
  5436. <H2>SETUP ROLES COMMANDS</H2>
  5437. <!--chtml if pinemode="function_key"-->
  5438. <PRE>
  5439. Available  Commands -- Group 1         Available Commands -- Group 2   
  5440. -------------------------------        ------------------------------  
  5441. F1  Show Help Text                      F1  Show Help Text             
  5442. F2  See commands in next group          F2  See commands in next group
  5443. F3  Back to MAIN Pine menu
  5444. F4  Change configuration for role
  5445. F5  Move to previous role               F5  Include file in role config
  5446. F6  Move to next role                   F6  Exclude file from config
  5447. F7  Previous page of roles
  5448. F8  Next page of roles
  5449. F9  Add new role
  5450. F10 Delete existing role
  5451. F11 Shuffle the order of roles
  5452. F12 Whereis (search role nicknames)
  5453. </PRE>
  5454. <!--chtml else-->
  5455. <PRE>
  5456. Navigation                     General Pine Commands
  5457. -----------------------        ---------------------
  5458.  P  Prev Role                     ?  Display this help text
  5459.  N  Next Role                     E  Back to MAIN Pine menu
  5460.  -  Previous page
  5461. Spc Next page
  5462.  W  WhereIs (search for word in role nicknames)
  5463.  
  5464. Setup Roles Commands
  5465. ------------------------------------------------
  5466.  A  Add new role                  $  Shuffle the order of roles
  5467.  D  Delete existing role          C  Change configuration for hilited role
  5468.  I  Include file in role config   X  Exclude file from role config
  5469. </PRE>
  5470. <!--chtml endif-->
  5471.  
  5472. <H2>Description of the Setup Roles Screen</H2>
  5473.  
  5474. This screen lets you add, delete, modify, or change the order of the rules
  5475. which determine the role you are playing when composing
  5476. a message.
  5477. <P>
  5478. You may play different roles depending on who you are replying to.
  5479. For example, if you are replying to a message addressed to help-desk you
  5480. may be acting as a Help Desk Worker.
  5481. That role may require that you use a different return address and/or
  5482. a different signature.
  5483. <P>
  5484. Roles are optional.
  5485. If you set up roles they work like this:  Each role has a set of
  5486. "Uses", which indicate whether or not a role is eligible to be
  5487. considered for a particular use; a "Pattern",
  5488. which is used to decide which of the eligible roles is used; and a set
  5489. of "Actions", which are taken when that role is used.
  5490. When you reply to a message, the message you are replying to is compared
  5491. with the Patterns of the roles marked as eligible for use when replying.
  5492. The comparisons start with the first eligible role and keep going until there
  5493. is a match.
  5494. If a match is found, the matching role's Actions are taken.
  5495.  
  5496. <H2>Role Uses</H2>
  5497.  
  5498. There are three types of use to be configured;
  5499. one for Replying, one for Forwarding, and one for Composing.
  5500. These indicate whether or not you want a role to be considered when you
  5501. type the Reply, Forward, or Compose commands.
  5502. (The Role command is an alternate form of the Compose command, and it is
  5503. not affected by these settings.)
  5504. Each of these Use types has three possible values.
  5505. The value "Never"
  5506. means that the role will never be considered as a candidate for use with
  5507. the corresponding command.
  5508. For example, if you set a role's Reply Use to Never, then when you Reply to
  5509. a message, that role won't even be considered.
  5510. (That isn't quite true. If the message you are replying to matches some other
  5511. role which requires confirmation,
  5512. then there will be a ^T command available which allows you to select a role
  5513. from all of your roles, not just the reply-eligible roles.)
  5514. <P>
  5515.  
  5516. The options "With confirmation" and "Without confirmation"
  5517. both mean that you do want to consider this role when using the corresponding
  5518. command.
  5519. For either of these settings the role's Pattern will
  5520. be checked to see if it matches the message.
  5521. For Reply Use, the message used to compare the Pattern with is the message
  5522. being replied to.
  5523. For Forward Use, the message used to compare the Pattern with is the message
  5524. being forwarded.
  5525. For Compose Use, there is no message, so the parts of the Pattern which depend
  5526. on a message (everything other than Current Folder Type) are ignored.
  5527. In all cases, the Current Folder Type is checked if defined, and the
  5528. Score Interval is checked if defined.
  5529. If there is a match then this role will either be used without confirmation
  5530. or will be the default when confirmation is asked for, depending on
  5531. which of the two options is selected.
  5532. If confirmation is requested, you will have a chance to
  5533. choose No Role instead of the offered role, or to
  5534. change the role to any one of your other roles (with the ^T command).
  5535.  
  5536. <H2>Role Patterns</H2>
  5537.  
  5538. In order to determine whether or not a message matches a role the message is
  5539. compared with the Role's Pattern.
  5540. These Patterns are the same for use with Roles, Filtering, Index Coloring,
  5541. and Scoring, so are described in only one place,
  5542. "<A HREF="h_rule_patterns">here</A>".
  5543. <P>
  5544. Since header patterns and AllText patterns which are unset are ignored,
  5545. a role which has all header patterns unset, the AllText pattern unset,
  5546. the Score Interval unset, and the Current Folder Type set to
  5547. "Any" may be used as a default role.
  5548. It should be put last in the list of roles since the matching
  5549. starts at the beginning and proceeds until one of the roles is a match.
  5550. If no roles at all match, then Pine will
  5551. use its regular methods of defining the role.
  5552. If you wanted to, you could define a different "default" role
  5553. for Replying, Forwarding, and Composing by setting the
  5554. "Use" fields appropriately.
  5555.  
  5556. <H2>Role Actions</H2>
  5557.  
  5558. Once a role match is found, the role's Actions are taken.
  5559. For each role there are several possible actions that may be defined.
  5560. They are actions to set the From address, the Reply-To address,
  5561. the Fcc, the Signature file, the Template file, and Other Headers.
  5562.  
  5563. <H3>Set From</H3>
  5564.  
  5565. The From address is the address used on the From line of the message
  5566. you are sending.
  5567.  
  5568. <H3>Set Reply-To</H3>
  5569.  
  5570. The Reply-To address is the address used on the Reply-To line of the message
  5571. you are sending.
  5572. You don't need a Reply-To address unless it is different from the From address.
  5573.  
  5574. <H3>Set Other Headers</H3>
  5575.  
  5576. If you want to set the value of the From or Reply-To headers, use
  5577. the specific fields "Set From" or "Set Reply-To".
  5578. If you want to set the values of other headers, use this field.
  5579. This field is similar to the
  5580. <A HREF="h_config_custom_hdrs">Customized-Headers</A> configuration option.
  5581. Each header you specify here must include the header tag
  5582. ("To:", "Approved:", etc.)
  5583. and may optionally include a value for that header.
  5584. It is different from the Customized-Headers in that the value you give
  5585. for a header here will replace any value that already exists.
  5586. For example, if you are Replying to a message there will be at least one
  5587. address in the To header (the address you are Replying to).
  5588. However, if you Reply using a role which sets the To header, that role's
  5589. To header value will be used instead.
  5590.  
  5591. <H3>Set Fcc</H3>
  5592.  
  5593. The Fcc is used as the Fcc for the message you are sending.
  5594.  
  5595. <H3>Set Signature</H3>
  5596.  
  5597. The Signature is the name of a file to be used as the signature file when
  5598. this role is being used.
  5599. If the name of the file has a vertical bar following it (|)
  5600. then it is assumed that the file is a program that should be run to
  5601. produce the signature.
  5602.  
  5603. <H3>Set Template</H3>
  5604.  
  5605. A Template is the name of a file to be included in the message when this
  5606. role is being used.
  5607. If the name of the file has a vertical bar following it (|)
  5608. then it is assumed that the file is a program that should be run to
  5609. produce the template.
  5610.  
  5611. <P>
  5612. Both signature files and template files may be stored remotely on an IMAP
  5613. server.
  5614. In order to do that you just give the file a remote name.
  5615. This works just like the regular
  5616. <A HREF="h_config_signature_file">signature-file</A>
  5617. option which is configured from the Setup/Configuration screen.
  5618. A remote signature file name might look like:
  5619. <P>
  5620. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
  5621. <P>
  5622. or, if you have an SSL-capable version of Pine, you might try
  5623. <P>
  5624. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us/user=loginname/ssl}mail/sig3</SAMP></CENTER>
  5625. <P>
  5626. Once you have named the remote signature or template file you create its
  5627. contents by using the "F" "editFile" command when the
  5628. cursor is on the "Set Signature" or "Set Template"
  5629. line of the role editor.
  5630.  
  5631. <P>
  5632. Both signature files and template files (or the output of signature programs
  5633. and template file programs) may contain special tokens
  5634. which are replaced with contents
  5635. which depend on the message being replied to or forwarded.
  5636. See the help for the individual fields inside the role editor for more
  5637. information on tokens.
  5638.  
  5639. <P>
  5640. If any of the actions are left unset, then the action depends on what
  5641. is present in the "Initialize settings using role" field.
  5642. If you've listed the nickname of another one of your roles there, then the
  5643. corresponding action from that role will be used here.
  5644. If that action is also blank, or if there is no nickname specified,
  5645. then Pine will do whatever it normally does to set these actions.
  5646. This depends on other configuration options and features you've set.
  5647.  
  5648. <H2>Command Descriptions</H2>
  5649.  
  5650. <H3>Add</H3>
  5651.  
  5652. The Add command is used to add a new role definition to your set of
  5653. roles.
  5654. The new role will be added before the highlighted role.
  5655.  
  5656. <H3>Delete</H3>
  5657.  
  5658. The Delete command deletes the currently highlighted role.
  5659.  
  5660. <H3>Change</H3>
  5661.  
  5662. The Change command lets you edit the nickname, Uses, Pattern,
  5663. and Actions of the currently highlighted role.
  5664.  
  5665. <H3>Shuffle</H3>
  5666.  
  5667. The Shuffle command allows you to change the order of the roles.
  5668. You may move the currently highlighted role up or down in the list.
  5669. The order of the roles is important since the roles are tested for a
  5670. match starting with the first role and continuing until a match is found.
  5671. You should place the roles with more specific Patterns near the beginning
  5672. of the list, and those with more general Patterns near the end so that
  5673. the more specific matches will happen when appropriate.
  5674.  
  5675. <H3>IncludeFile</H3>
  5676.  
  5677. The IncludeFile command allows you to add a roles file to your configuration.
  5678. Usually, your roles will be contained in your Pine configuration file.
  5679. If you wish, some or all of your roles may be stored in a separate file.
  5680. If a roles file already exists (maybe it was made by somebody else using
  5681. Pine), you may insert it before the currently highlighted role.
  5682. You may also insert an empty file or a file which does not yet exist.
  5683. Once you have an empty roles file in your configuration, you may use
  5684. the Shuffle command to move roles into it.
  5685. In fact, that's the only way to get the initial role into the file.
  5686.  
  5687. <H3>eXcludeFile</H3>
  5688.  
  5689. The eXcludeFile command removes a roles file from your roles configuration.
  5690. A limitation of the program is that in order to exclude a roles file
  5691. that file must have at least one role
  5692. in it, otherwise you won't be able to highlight a line in the file.
  5693. So you may have to add a dummy role to the file in order to exclude the file.
  5694. <P><UL>
  5695. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  5696. </UL>
  5697. <P>
  5698. <End of help on this topic>
  5699. </BODY>
  5700. </HTML>
  5701. ===== h_rules_incols =====
  5702. <HTML>
  5703. <HEAD>
  5704. <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
  5705. </HEAD>
  5706. <BODY>
  5707. <H1>SETUP INDEX LINE COLORS SCREEN</H1>
  5708. <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
  5709. <!--chtml if pinemode="function_key"-->
  5710. <PRE>
  5711. Available  Commands -- Group 1         Available Commands -- Group 2   
  5712. -------------------------------        ------------------------------  
  5713. F1  Show Help Text                      F1  Show Help Text             
  5714. F2  See commands in next group          F2  See commands in next group
  5715. F3  Back to MAIN Pine menu
  5716. F4  Change configuration for rule
  5717. F5  Move to previous rule               F5  Include file in rule config
  5718. F6  Move to next rule                   F6  Exclude file from config
  5719. F7  Previous page of rules
  5720. F8  Next page of rules
  5721. F9  Add new rule
  5722. F10 Delete existing rule
  5723. F11 Shuffle the order of rules
  5724. F12 Whereis (search rule nicknames)
  5725. </PRE>
  5726. <!--chtml else-->
  5727. <PRE>
  5728. Navigation                     General Pine Commands
  5729. -----------------------        ---------------------
  5730.  P  Prev rule                     ?  Display this help text
  5731.  N  Next rule                     E  Back to MAIN Pine menu
  5732.  -  Previous page
  5733. Spc Next page
  5734.  W  WhereIs (search for word in rule nicknames)
  5735.  
  5736. Setup Index Color Commands
  5737. ------------------------------------------------
  5738.  A  Add new rule                  $  Shuffle the order of rules
  5739.  D  Delete existing rule          C  Change configuration for hilited rule
  5740.  I  Include file in rule config   X  Exclude file from rule config
  5741. </PRE>
  5742. <!--chtml endif-->
  5743.  
  5744. <H2>Description of the Setup Index Line Colors Screen</H2>
  5745.  
  5746. Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
  5747. This action is only available if your terminal is capable of displaying
  5748. color and color display has been enabled with the
  5749. <A HREF="h_config_color_style">Color-Style</A> option within the
  5750. Setup Color screen.
  5751. (In PC-Pine, color is always enabled so there is no option to turn on.)
  5752. This screen lets you add, delete, modify, or change the order of the rules
  5753. which cause the lines in the MESSAGE INDEX to be displayed in different
  5754. colors.
  5755. <P>
  5756. Each rule has a "Pattern",
  5757. which is used to decide which of the rules is used; and the color which
  5758. is used if the Pattern matches a particular message.
  5759.  
  5760. <H2>Index Color Patterns</H2>
  5761.  
  5762. In order to determine whether or not a message matches an Index Color Rule
  5763. the message is compared with the rule's Pattern.
  5764. These Patterns are the same for use with Roles, Filtering, Index Coloring,
  5765. and Scoring, so are described in only one place,
  5766. "<A HREF="h_rule_patterns">here</A>".
  5767.  
  5768. <P>
  5769. If none of the Index Color rules is a match for a particular index line,
  5770. then the color used is set using
  5771. the <A HREF="h_color_setup">Setup Kolor</A> screen.
  5772.  
  5773. <H2>Index Line Color</H2>
  5774.  
  5775. This is the color that index lines are colored when there is a matching
  5776. Pattern.
  5777. This colors the whole index line, except possibly the status letters
  5778. which may be colored separately using
  5779. the <A HREF="h_color_setup">Setup Kolor</A> screen.
  5780.  
  5781. <H2>Command Descriptions</H2>
  5782.  
  5783. <H3>Add</H3>
  5784.  
  5785. The Add command is used to add a new rule definition to your set of
  5786. rules.
  5787. The new rule will be added before the highlighted rule.
  5788.  
  5789. <H3>Delete</H3>
  5790.  
  5791. The Delete command deletes the currently highlighted rule.
  5792.  
  5793. <H3>Change</H3>
  5794.  
  5795. The Change command lets you edit the nickname, Pattern,
  5796. and Index Line Color of the currently highlighted rule.
  5797.  
  5798. <H3>Shuffle</H3>
  5799.  
  5800. The Shuffle command allows you to change the order of the rules.
  5801. You may move the currently highlighted rule up or down in the list.
  5802. The order of the rules is important since the rules are tested for a
  5803. match starting with the first rule and continuing until a match is found.
  5804. You should place the rules with more specific Patterns near the beginning
  5805. of the list, and those with more general Patterns near the end so that
  5806. the more specific matches will happen when appropriate.
  5807.  
  5808. <H3>IncludeFile</H3>
  5809.  
  5810. The IncludeFile command allows you to add a rules file to your configuration.
  5811. Usually, your rules will be contained in your Pine configuration file.
  5812. If you wish, some or all of your rules may be stored in a separate file.
  5813. If a rules file already exists (maybe it was made by somebody else using
  5814. Pine), you may insert it before the currently highlighted rule.
  5815. You may also insert an empty file or a file which does not yet exist.
  5816. Once you have an empty rules file in your configuration, you may use
  5817. the Shuffle command to move rules into it.
  5818. In fact, that's the only way to get the initial rule into the file.
  5819.  
  5820. <H3>eXcludeFile</H3>
  5821.  
  5822. The eXcludeFile command removes a rules file from your rules configuration.
  5823. A limitation of the program is that in order to exclude a rules file
  5824. that file must have at least one rule
  5825. in it, otherwise you won't be able to highlight a line in the file.
  5826. So you may have to add a dummy rule to the file in order to exclude the file.
  5827. <P><UL>
  5828. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  5829. </UL>
  5830. <P>
  5831. <End of help on this topic>
  5832. </BODY>
  5833. </HTML>
  5834. ===== h_rules_filter =====
  5835. <HTML>
  5836. <HEAD>
  5837. <TITLE>SETUP FILTERING SCREEN</TITLE>
  5838. </HEAD>
  5839. <BODY>
  5840. <H1>SETUP FILTERING SCREEN</H1>
  5841. <H2>SETUP FILTERING COMMANDS</H2>
  5842. <!--chtml if pinemode="function_key"-->
  5843. <PRE>
  5844. Available  Commands -- Group 1         Available Commands -- Group 2   
  5845. -------------------------------        ------------------------------  
  5846. F1  Show Help Text                      F1  Show Help Text             
  5847. F2  See commands in next group          F2  See commands in next group
  5848. F3  Back to MAIN Pine menu
  5849. F4  Change configuration for filter
  5850. F5  Move to previous filter             F5  Include file in filter config
  5851. F6  Move to next filter                 F6  Exclude file from config
  5852. F7  Previous page of filters
  5853. F8  Next page of filters
  5854. F9  Add new filter
  5855. F10 Delete existing filter
  5856. F11 Shuffle the order of filters
  5857. F12 Whereis (search filter nicknames)
  5858. </PRE>
  5859. <!--chtml else-->
  5860. <PRE>
  5861. Navigation                     General Pine Commands
  5862. -----------------------        ---------------------
  5863.  P  Prev Filter                   ?  Display this help text
  5864.  N  Next Filter                   E  Back to MAIN Pine menu
  5865.  -  Previous page
  5866. Spc Next page
  5867.  W  WhereIs (search for word in filter nicknames)
  5868.  
  5869. Setup Filters Commands
  5870. ------------------------------------------------
  5871.  A  Add new filter                $  Shuffle the order of filters
  5872.  D  Delete existing filter        C  Change configuration for hilited filter
  5873.  I  Include file in filter config X  Exclude file from filter config
  5874. </PRE>
  5875. <!--chtml endif-->
  5876.  
  5877. <H2>Description of the Setup Filtering Screen</H2>
  5878.  
  5879. This screen lets you add, delete, modify, or change the order of the rules
  5880. which determine the filtering Pine does on folders you view.
  5881. <P>
  5882. The software which actually delivers mail (the stuff that happens
  5883. before Pine is involved) for you is in a better position to do mail filtering
  5884. than Pine itself.
  5885. If possible, you may want to look into using that sort of mail filtering to
  5886. deliver mail to different folders, delete it, or forward it.
  5887. However, if you'd like Pine to help with this, Pine's filtering is for you.
  5888. <P>
  5889. Filtering is a way to automatically move certain messages from one folder
  5890. to another or to delete messages.
  5891. Pine doesn't have the ability to forward mail to another address.
  5892. <P>
  5893. Each filtering rule has a "Pattern" and a "Filter Action".
  5894. When a folder is opened, or when new mail arrives in an open folder, each
  5895. message is compared with the Patterns of your filtering rules.
  5896. The comparisons start with the first rule and keep going until there
  5897. is a match.
  5898. If a match is found, the message is either deleted or moved, depending on
  5899. the setting of the Filter Action.
  5900.  
  5901. <P>
  5902. <EM>NOTE:</EM>
  5903. When setting up a Pattern used to only delete messages,
  5904. it is recommended that you test the Pattern first with a "Move"
  5905. folder specified in
  5906. case unintended matches occur.  Messages that are deleted will be removed 
  5907. from the folder and <EM>unrecoverable</EM> from within Pine after the
  5908. next Expunge command or once the folder being filtered has been closed.
  5909.  
  5910. <H2>Filter Patterns</H2>
  5911.  
  5912. In order to determine whether or not a message matches a filter the message is
  5913. compared with the Filter's Pattern.
  5914. These Patterns are the same for use with Roles, Filtering, Index Coloring,
  5915. and Scoring, so are described in only one place,
  5916. "<A HREF="h_rule_patterns">here</A>".
  5917. <P>
  5918. Since filtering is a potentially destructive action, if you have a filtering
  5919. Pattern with nothing other than Current Folder Type set, that filtering
  5920. rule is ignored.
  5921.  
  5922. <H2>Filter Action</H2>
  5923.  
  5924. Once a filter match is found for a particular message, that message is
  5925. either deleted or moved into the folders listed.
  5926. In the case of "Move", Folder may be set to
  5927. more than one folder name by listing the folders separated with commas.
  5928. The message will be saved to each of the folders listed and then deleted
  5929. from the current folder.
  5930.  
  5931. <H2>Command Descriptions</H2>
  5932.  
  5933. <H3>Add</H3>
  5934.  
  5935. The Add command is used to add a new filter definition to your set of
  5936. filters.
  5937. The new filter will be added before the highlighted filter.
  5938.  
  5939. <H3>Delete</H3>
  5940.  
  5941. The Delete command deletes the currently highlighted filter.
  5942.  
  5943. <H3>Change</H3>
  5944.  
  5945. The Change command lets you edit the nickname, Pattern,
  5946. and Folder of the currently highlighted filter.
  5947.  
  5948. <H3>Shuffle</H3>
  5949.  
  5950. The Shuffle command allows you to change the order of the filters.
  5951. You may move the currently highlighted filter up or down in the list.
  5952. The order of the filters is important since the filters are tested for a
  5953. match starting with the first filter and continuing until a match is found.
  5954. You should place the filters with more specific Patterns near the beginning
  5955. of the list, and those with more general Patterns near the end so that
  5956. the more specific matches will happen when appropriate.
  5957.  
  5958. <H3>IncludeFile</H3>
  5959.  
  5960. The IncludeFile command allows you to add a filters file to your configuration.
  5961. Usually, your filters will be contained in your Pine configuration file.
  5962. If you wish, some or all of your filters may be stored in a separate file.
  5963. If a filters file already exists (maybe it was made by somebody else using
  5964. Pine), you may insert it before the currently highlighted filter.
  5965. You may also insert an empty file or a file which does not yet exist.
  5966. Once you have an empty filters file in your configuration, you may use
  5967. the Shuffle command to move filters into it.
  5968. In fact, that's the only way to get the initial filter into the file.
  5969.  
  5970. <H3>eXcludeFile</H3>
  5971.  
  5972. The eXcludeFile command removes a filters file from your filters configuration.
  5973. A limitation of the program is that in order to exclude a filters file
  5974. that file must have at least one filter
  5975. in it, otherwise you won't be able to highlight a line in the file.
  5976. So you may have to add a dummy filter to the file in order to exclude the file.
  5977. <P><UL>
  5978. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  5979. </UL>
  5980. <P>
  5981. <H3>Performance Considerations</H3>
  5982. The number and type of patterns being tested can 
  5983. adversely effect performance.  Issues to be aware
  5984. of include:
  5985. <P>
  5986. <UL>
  5987.   <LI> The more filters you have defined the longer it will take to run down
  5988. the list.  Deleting unused filters is a good idea.
  5989.   <LI>Filtering in newsgroups served by an NNTP server will be slow
  5990. if your patterns include tests other than "From:"
  5991. or "Subject:".
  5992.   <LI> Filtering a folder served by an IMAP server
  5993. based on protocol versions prior to 4.
  5994. </UL>
  5995. <P>
  5996. <End of help on this topic>
  5997. </BODY>
  5998. </HTML>
  5999. ===== h_rules_score =====
  6000. <HTML>
  6001. <HEAD>
  6002. <TITLE>SETUP SCORING SCREEN</TITLE>
  6003. </HEAD>
  6004. <BODY>
  6005. <H1>SETUP SCORING SCREEN</H1>
  6006. <H2>SETUP SCORING COMMANDS</H2>
  6007. <!--chtml if pinemode="function_key"-->
  6008. <PRE>
  6009. Available  Commands -- Group 1         Available Commands -- Group 2   
  6010. -------------------------------        ------------------------------  
  6011. F1  Show Help Text                      F1  Show Help Text             
  6012. F2  See commands in next group          F2  See commands in next group
  6013. F3  Back to MAIN Pine menu
  6014. F4  Change configuration for rule
  6015. F5  Move to previous rule               F5  Include file in rule config
  6016. F6  Move to next rule                   F6  Exclude file from config
  6017. F7  Previous page of rules
  6018. F8  Next page of rules
  6019. F9  Add new rule
  6020. F10 Delete existing rule
  6021. F11 Shuffle the order of rules
  6022. F12 Whereis (search rule nicknames)
  6023. </PRE>
  6024. <!--chtml else-->
  6025. <PRE>
  6026. Navigation                     General Pine Commands
  6027. -----------------------        ---------------------
  6028.  P  Prev rule                     ?  Display this help text
  6029.  N  Next rule                     E  Back to MAIN Pine menu
  6030.  -  Previous page
  6031. Spc Next page
  6032.  W  WhereIs (search for word in rule nicknames)
  6033.  
  6034. Setup Scoring Commands
  6035. ------------------------------------------------
  6036.  A  Add new rule                  $  Shuffle the order of rules
  6037.  D  Delete existing rule          C  Change configuration for hilited rule
  6038.  I  Include file in rule config   X  Exclude file from rule config
  6039. </PRE>
  6040. <!--chtml endif-->
  6041.  
  6042. <H2>Description of the Setup Scoring Screen</H2>
  6043.  
  6044. Most people will not use scores at all, but if you do use them, here's how
  6045. they work in Pine.
  6046. Using this screen, you may define Scoring rules.
  6047. The score for a message is calculated by looking at every Score rule defined
  6048. and adding up the Score Values for the ones which match the message.
  6049. If there are no matches for a message, it has a score of zero.
  6050. Message scores may be used a couple of ways in Pine.
  6051.  
  6052. <H3>Sorting by Score</H3>
  6053.  
  6054. One of the methods you may use to sort message indexes is to sort by
  6055. score.
  6056. The scores of all the messages in a folder will be calculated and then
  6057. the index will be ordered by placing the messages in order of ascending or
  6058. descending score.
  6059.  
  6060. <H3>Scores for use in Patterns</H3>
  6061.  
  6062. The Patterns used for Roles, Index Line Coloring, and Filtering have a
  6063. category labeled "Score Interval".
  6064. When a message is being compared with a Pattern to check for a match, if
  6065. the Score Interval is set only messages which have a score somewhere in
  6066. the interval are a match.
  6067.  
  6068. <H2>Scoring Rule Patterns</H2>
  6069.  
  6070. In order to determine whether or not a message matches a scoring rule
  6071. the message is compared with the rule's Pattern.
  6072. These Patterns are the same for use with Roles, Filtering, Index Coloring,
  6073. and Scoring, so are described in only one place,
  6074. "<A HREF="h_rule_patterns">here</A>".
  6075.  
  6076. <P>
  6077. Actually, Scoring rule Patterns are slightly different from the other types of
  6078. Patterns because Scoring rule Patterns don't contain a Score Interval.
  6079. In other words, when calculating the score for a message, which is done
  6080. by looking at the Scoring rule Patterns, scores aren't used.
  6081.  
  6082. <H2>Score Value</H2>
  6083.  
  6084. This is the value that will be added to the score for a message if the
  6085. rule's Pattern is a match.
  6086. Each individual Score Value is an integer between -100 and 100, and the
  6087. values from matching rules are added together to get a message's score.
  6088.  
  6089. <H2>Command Descriptions</H2>
  6090.  
  6091. <H3>Add</H3>
  6092.  
  6093. The Add command is used to add a new scoring rule definition.
  6094. The new rule will be added before the highlighted rule.
  6095.  
  6096. <H3>Delete</H3>
  6097.  
  6098. The Delete command deletes the currently highlighted scoring rule.
  6099.  
  6100. <H3>Change</H3>
  6101.  
  6102. The Change command lets you edit the nickname, Pattern,
  6103. and Score Value of the currently highlighted scoring rule.
  6104.  
  6105. <H3>Shuffle</H3>
  6106.  
  6107. The Shuffle command allows you to change the order of the scoring rules.
  6108. You may move the currently highlighted rule up or down in the list.
  6109. The order of the rules is important since the rules are tested for a
  6110. match starting with the first rule and continuing until a match is found.
  6111. You should place the rules with more specific Patterns near the beginning
  6112. of the list, and those with more general Patterns near the end so that
  6113. the more specific matches will happen when appropriate.
  6114.  
  6115. <H3>IncludeFile</H3>
  6116.  
  6117. The IncludeFile command allows you to add a rules file to your configuration.
  6118. Usually, your rules will be contained in your Pine configuration file.
  6119. If you wish, some or all of your rules may be stored in a separate file.
  6120. If a rules file already exists (maybe it was made by somebody else using
  6121. Pine), you may insert it before the currently highlighted rule.
  6122. You may also insert an empty file or a file which does not yet exist.
  6123. Once you have an empty rules file in your configuration, you may use
  6124. the Shuffle command to move rules into it.
  6125. In fact, that's the only way to get the initial rule into the file.
  6126.  
  6127. <H3>eXcludeFile</H3>
  6128.  
  6129. The eXcludeFile command removes a rules file from your rules configuration.
  6130. A limitation of the program is that in order to exclude a rules file
  6131. that file must have at least one rule
  6132. in it, otherwise you won't be able to highlight a line in the file.
  6133. So you may have to add a dummy rule to the file in order to exclude the file.
  6134. <P><UL>
  6135. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  6136. </UL>
  6137. <P>
  6138. <End of help on this topic>
  6139. </BODY>
  6140. </HTML>
  6141. ===== h_direct_config =====
  6142. <HTML>
  6143. <HEAD>
  6144. <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
  6145. </HEAD>
  6146. <BODY>
  6147. <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
  6148. <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
  6149. <!--chtml if pinemode="function_key"-->
  6150. <PRE>
  6151. Available  Commands                        
  6152. -------------------------------            
  6153. F1  Show Help Text                         
  6154. F3  Back to MAIN Pine menu                 
  6155. F4  Change configuration for directory server  
  6156. F5  Move to previous directory server          
  6157. F6  Move to next directory server              
  6158. F7  Previous page of directory servers         
  6159. F8  Next page of directory servers
  6160. F9  Add new directory server
  6161. F10 Delete existing directory server
  6162. F11 Shuffle the order of directory servers
  6163. F12 Whereis (search directory server titles)   
  6164. </PRE>
  6165. <!--chtml else-->
  6166. <PRE>
  6167. Navigation                     General Pine Commands
  6168. -----------------------        ---------------------
  6169.  P  Prev Directory Server         ?  Display this help text
  6170.  N  Next Directory Server         E  Back to MAIN Pine menu
  6171.  -  Previous page
  6172. Spc Next page
  6173.  W  WhereIs (search for word in directory server titles)
  6174.  
  6175. Setup LDAP Directory Server Commands
  6176. ------------------------------------------------
  6177.  A  Add new directory server      $  Shuffle the order of directory servers
  6178.  D  Delete existing dir server    C  Change configuration for hilited server
  6179. </PRE>
  6180. <!--chtml endif-->
  6181.  
  6182. <H2>Description of the Setup LDAP Directory Servers Screen</H2>
  6183.  
  6184. This screen lets you add, delete, modify, or change the order of your
  6185. directory servers. You may also set some optional behavior for each server.
  6186. The "Add Dir" command brings up a blank form to 
  6187. fill in. You will have to supply at least the name of the LDAP server.
  6188. You will often have to supply a search base to be used with that server,
  6189. as well. Once the form has been brought up on your screen, there is help
  6190. available for each of the options you may set.
  6191. <P>
  6192. The "Del Dir" command allows you to remove a directory server
  6193. from your configuration.
  6194. <P>
  6195. The "Change" command is similar to the "Add Dir" command.
  6196. The difference is that instead of bringing up a form for a new server
  6197. configuration, you are changing the configuration of an existing entry.
  6198. For example, you might want to correct a typing error, change a
  6199. nickname, or change one of the options set for that server.
  6200. <P>
  6201. The "Shuffle" command is used to change the order of directory
  6202. servers.
  6203. <P><UL>
  6204. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  6205. </UL>
  6206. <P>
  6207. <End of help on this topic>
  6208. </BODY>
  6209. </HTML>
  6210. ============= h_address_display ========================
  6211. <HTML>
  6212. <HEAD>
  6213. <TITLE>SEARCH RESULTS INDEX</TITLE>
  6214. </HEAD>
  6215. <BODY>
  6216. <H1>SEARCH RESULTS INDEX</H1>
  6217. This screen shows the results, if any, of your Directory Server search.  
  6218. Commands (besides those for screen navigation) are:
  6219. <DL>
  6220. <DT>View
  6221. <!--chtml if pinemode="function_key"-->
  6222. (F4)
  6223. <!--chtml else-->
  6224. (V)
  6225. <!--chtml endif-->
  6226. </DT>
  6227. <DD>See the full information for the selected entry.
  6228.  
  6229. <DT>Compose
  6230. <!--chtml if pinemode="function_key"-->
  6231. (F9)
  6232. <!--chtml else-->
  6233. (C)
  6234. <!--chtml endif--></DT>
  6235. <DD>Compose a message with the selected entry as the recipient.
  6236.  
  6237. <DT>Role
  6238. <!--chtml if pinemode="function_key"-->
  6239. (F2)
  6240. <!--chtml else-->
  6241. (#)
  6242. <!--chtml endif--></DT>
  6243. <DD>Compose a message with the selected entry as the recipient. This differs
  6244. from Compose in that you may select a role before beginning your composition.
  6245.  
  6246. <DT>Forward
  6247. <!--chtml if pinemode="function_key"-->
  6248. (F10)
  6249. <!--chtml else-->
  6250. (F)
  6251. <!--chtml endif--></DT>
  6252. <DD>Send the full information for the selected entry as an 
  6253. email message to someone else.
  6254.  
  6255. <DT>Save
  6256. <!--chtml if pinemode="function_key"-->
  6257. (F11)
  6258. <!--chtml else-->
  6259. (S)
  6260. <!--chtml endif-->
  6261. </DT>
  6262. <DD>Save to your address book:
  6263. <UL>
  6264. <LI>the result of the search (as just found through your query) for the 
  6265. selected entry; or 
  6266. <LI>the selected entry for repeated Directory Server searching when used 
  6267. in the future.
  6268. </UL>
  6269. or<BR>
  6270. Export to a file (external to Pine):
  6271. <UL>
  6272. <LI>the full information for the selected entry; or
  6273. <LI>the email address from the selected entry; or
  6274. <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
  6275. </UL>
  6276. <DT>WhereIs
  6277. <!--chtml if pinemode="function_key"-->
  6278. (F12)
  6279. <!--chtml else-->
  6280. (W)
  6281. <!--chtml endif-->
  6282. </DT>
  6283. <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
  6284. displayed text, not the full records for each entry.)  
  6285. </DL>
  6286. <End of help on this topic>
  6287. </BODY>
  6288. </HTML>
  6289. ============= h_address_select ========================
  6290. <HTML>
  6291. <HEAD>
  6292. <TITLE>SEARCH RESULTS INDEX</TITLE>
  6293. </HEAD>
  6294. <BODY>
  6295. <H1>SEARCH RESULTS INDEX</H1>
  6296. This screen shows the results, if any, of your Directory Server search.  
  6297. Commands (besides those for screen navigation) are:
  6298. <DL>
  6299. <DT>Select
  6300. </DT>
  6301. <DD>Select this entry for use.
  6302.  
  6303. <DT>ExitSelect
  6304. <DD>Exit without selecting any of the entries.
  6305.  
  6306. <DT>WhereIs
  6307. </DT>
  6308. <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
  6309. displayed text, not the full records for each entry.)  
  6310. </DL>
  6311. <End of help on this topic>
  6312. </BODY>
  6313. </HTML>
  6314. ===== h_folder_maint =====
  6315. <HTML>
  6316. <HEAD>
  6317. <TITLE>Help for Folder List</TITLE>
  6318. </HEAD>
  6319. <BODY>
  6320. <H1>FOLDER LIST COMMANDS</H1>
  6321. <!--chtml if pinemode="function_key"-->
  6322. <PRE>
  6323. Available Commands -- Group 1        Available Commands -- Group 2
  6324. -------------------------------      ------------------------------
  6325. F1  Show Help Text                    F1  Show Help Text               
  6326. F2  See commands in next group        F2  See commands in next group  
  6327. F3  MAIN MENU Screen                  F3  Quit Pine                    
  6328. F4  Select folder and view it         F4  MAIN MENU Screen
  6329. F5  Move to previous folder
  6330. F6  Move to next folder               F6  Specify a folder to go to
  6331. F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
  6332. F8  Show next screen of listing       F8  Compose a message
  6333. F9  Add a new folder                  F9  Print folder listing
  6334. F10 Delete selected folder
  6335. F11 Rename selected folder
  6336. F12 Whereis (search folder names)
  6337.  
  6338. Available Commands -- Group 3
  6339. F8  Compose a message using roles
  6340. </PRE>
  6341. <!--chtml else-->
  6342. <PRE>
  6343. Navigating the Folder Screen            Operations on the Selected Folder
  6344. ----------------------------            ---------------------------------
  6345.  P   Move to previous folder              V  View Index of selected folder
  6346.  N   Move to next folder                  D  Delete
  6347.  -   Show previous page of listing        R  Rename
  6348. Spc  Show next page of listing
  6349.  
  6350. FOLDER LIST Screen Commands              General Pine Command
  6351. ---------------------------              ---------------------
  6352.  A  Add a folder                          O  Show all other available commands
  6353.  G  Specify a folder to go to             ?  Show Help text
  6354.  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
  6355.  W  Whereis (search folder names)         Q  Quit Pine
  6356.  %  Print folder listing                  C  Compose a message
  6357.                                           #  Compose a message using roles
  6358. </PRE>
  6359. <!--chtml endif-->
  6360. These commands are only available in the FOLDER LIST screen if the 
  6361. <A HREF="h_config_enable_agg_ops">"enable-aggregate-command-set" 
  6362. feature</A> is set in the SETUP CONFIGURATION screen:<DL>
  6363. <DT>Select:</DT>
  6364. <DD>Select folders by certain criteria:<UL>
  6365. <LI>All: of limited use, since there is no Apply command.
  6366. <LI>by Property: <UL>
  6367.     <LI>folder contains messages not yet seen 
  6368.     <LI>folder contains new messages
  6369.     <LI>folder contains exactly as many, more, or fewer messages 
  6370. than a given number
  6371.     </UL>
  6372. <LI>by Text: <UL>
  6373.     <LI>contained in name of folder (Name Select)
  6374.     <LI>contained in messages in folder (Content Select)
  6375.     </UL>
  6376. </UL></DD>
  6377.  
  6378. <DT>Select current:</DT>
  6379. <DD>Select the folder the cursor is on.  (Can be used to "manually" 
  6380. add one or more folders to a set created with the Select command described 
  6381. above.)</DD>
  6382. <DT>Zoom mode:</DT>
  6383. <DD>Toggles display of only selected folders or all folders on and off.</DD>
  6384. </DL>
  6385. <!-- In all folder collections except Incoming-Folders:
  6386. However, once you go to a folder's MESSAGE INDEX screen, the selection you 
  6387. made in the FOLDER LIST screen is no longer retained.  -->
  6388. <P>
  6389. <CENTER>Description of the FOLDER LIST Screen</CENTER>
  6390.  
  6391. The purpose of the FOLDER LIST screen is to help you browse and manage
  6392. the folders and directories (also known as "hierarchy")
  6393. contained within a collection.
  6394.  
  6395. <P>
  6396. Folders and directories are arranged alphabetically across lines of
  6397. the screen.  Directories, if present, are denoted by a special
  6398. character at the end of the name known as the hierarchy delimiter
  6399. (typically, "/").  By default, folders and directories are
  6400. mixed together.  The
  6401. "<A HREF="h_config_fld_sort_rule">Folder-Sort-Rule</A>"
  6402. configuration option can be used to group directories toward the 
  6403. beginning or end of the list.
  6404.  
  6405. <P>
  6406. The Next/Prev Page commands help browse the list, the Next/Prev Fldr
  6407. commands change the "selected" (i.e., highlighted) folder or
  6408. directory, and the View Fldr/Dir commands will "open" the
  6409. selected item.  Folder and directory management is provided via the
  6410. Rename, Delete and Add commands.
  6411.  
  6412. <P><CENTER>About Folders</CENTER>
  6413. What are Folders?<P>
  6414.  
  6415. Folders are simply files where messages are kept.  Every message has to be
  6416. in a folder.  Most every Pine user starts out with 3 folders: an INBOX, a
  6417. folder for sent mail and a folder for saved messages.<P>
  6418.  
  6419. You may create as many other folders as you wish.  They must be given
  6420. names that can be filenames on the filesystem.  
  6421. <!--chtml if pinemode="os_windows"-->
  6422. Normally PC-Pine folders are
  6423. automatically given the filename extension ".MTX" (which stands
  6424. for Mailbox-text).  The extension is suppressed from FOLDER LIST
  6425. displays, and should not be entered when typing a folder name at a
  6426. Save or Goto prompt.  The use of the MTX extension can be overridden
  6427. by the Setup/Configuration option 
  6428. <A HREF="h_config_folder_extension">folder-extension</A>, 
  6429. which may be useful when accessing
  6430. saved-message folders on a Unix host via SMB or NFS.  PC-Pine can
  6431. understand the normal Unix mail folder format, but can only open those
  6432. folders READ-ONLY.
  6433. <!--chtml else-->
  6434. <!--chtml endif-->
  6435. <P>
  6436.  
  6437. You can move messages from one folder to another by opening the original
  6438. folder and saving messages into the other folder just as you can save
  6439. message from your INBOX to any other folder.<P>
  6440.  
  6441. Folders are typically just files in the filesystem.  However, the files
  6442. which are
  6443. folders have some special formatting in them (so that Pine knows where one
  6444. message ends and another begins) and should <EM>not</EM> be edited outside of
  6445. Pine.  If you want copies of your messages in text files that you can edit
  6446. or otherwise manipulate, use the Export command to copy them from Pine into
  6447. your regular file area.
  6448.  
  6449. <P>
  6450. FOR MORE INFORMATION: See the section on
  6451. <A HREF="h_valid_folder_names">Valid Folder Names</A>.
  6452. <P>
  6453. <CENTER>About Directories</CENTER>
  6454. <P>
  6455. A directory is simply a container used to group folders within a
  6456. folder list.  You can create as many directories as you like.  And 
  6457. directories can even contain directories themselves.
  6458.  
  6459. <P>
  6460. SPECIAL NOTES: When accessing folders on an IMAP server, it is important
  6461. to note that not all IMAP servers support directories.  If you find that
  6462. the Add command fails to offer the "Create Directory" subcommand,
  6463. then it's likely that directories are not supported by the server serving
  6464. in that collection.
  6465.  
  6466. <P>
  6467. Similarly, servers that do provide for directories may not do so in
  6468. the same way.  On some servers, for example, each folder name you
  6469. create is at the same time capable of being a directory.  When this
  6470. happens, Pine will display both the folder name and the name of the
  6471. directory (with trailing hierarchy delimiter) in the folder list.
  6472.  
  6473. <P>
  6474. Another issue with IMAP access, though with a much smaller set of servers,
  6475. is that not all servers accept the request to list out the available
  6476. folders and directories in the same way.  If you find yourself having
  6477. trouble viewing folders on your server, you might investigate the
  6478. "<A HREF="h_config_lame_list_mode">enable-lame-list-mode</A>"
  6479. feature.
  6480. <P>
  6481. <UL>
  6482. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  6483. </UL>
  6484. <P>
  6485. <End of help on this topic>
  6486. </BODY>
  6487. </HTML>
  6488. ========= h_valid_folder_names ========
  6489. <HTML>
  6490. <HEAD>
  6491. <TITLE>Explanation of Valid Folder Names</TITLE>
  6492. </HEAD>
  6493. <BODY>
  6494. <H1>Folder Name Syntax Explained</H1>
  6495.  
  6496. Once your folder collections are defined, you can usually refer to
  6497. folders by their simple (unqualified) name, or pick from a FOLDER LIST
  6498. display.  However, understanding the complete syntax for folder names,
  6499. both local and remote, is handy when using the Goto command and when
  6500. you are adding new folder collections via the Setups/collectionList screen.
  6501.  
  6502. <P>
  6503. Local folder names depend on the operating system used by the computer 
  6504. running Pine, as well as the configuration of that system.  For example,
  6505. "C:\PINE\FOLDERS\OCT-94" might exist on a PC, and
  6506. "~/mail/september-1994" might be a reasonable folder name on Unix.
  6507. <!--chtml endif-->
  6508.  
  6509. <P>
  6510. Pine users have the option of using folders which are stored on some other
  6511. computer.  Pine accesses remote folders via IMAP (the Internet Message
  6512. Access Protocol), or in the case of news, via NNTP (the Network News
  6513. Transport Protocol).  To be able to access remote folders in Pine, the
  6514. remote host must be running the appropriate server software (imapd or
  6515. nntpd) and you must correctly specify the name of the folder to Pine,
  6516. including the domain name of the remote machine. For example,
  6517. <P>
  6518. <CENTER><SAMP>{monet.art.nowhere.edu}INBOX</SAMP></CENTER>
  6519. <P>
  6520. could be a remote folder specification, and so could
  6521. <P>
  6522. <CENTER><SAMP>{unixhost.art.nowhere.edu}~/mail/september-1994</SAMP></CENTER>
  6523. and
  6524. <P>
  6525. <CENTER><SAMP>{winhost.art.nowhere.edu}\mymail\SEP-94</SAMP></CENTER>
  6526. <P>
  6527. Note that in the case of remote folders, the directory/file path in the specification is 
  6528. determined by the operating system of the remote computer, <B>not</B> by
  6529. the operating system of the computer on which you are running Pine.
  6530. <P>
  6531. As you can tell, the name of the computer is in {} brackets
  6532. followed immediately by the name of the folder.  If, as in these
  6533. examples, there is no remote access protocol specified, then IMAP is
  6534. assumed.  See the Setup/collectionList Add or Change command's
  6535. <A HREF="h_composer_cntxt_server">Server:</A>
  6536. help text for a more detailed look at what options can be placed
  6537. between the brackets.
  6538.  
  6539. <P>
  6540. To the right of the brackets when a server name is present, or at the
  6541. start of the foldername if no server is present, the sharp sign,
  6542. "#", holds special meaning.  It indicates a folder name
  6543. outside the area reserved for your personal folders.  In fact, it's
  6544. used indicate that both the name of the folder, and a special phrase
  6545. telling Pine how to interpret the name follows.
  6546.  
  6547. <P>
  6548. So, for example, Pine can be used to access a newsgroup that might be 
  6549. available on your computer using:
  6550. <P>
  6551. <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
  6552. <P>
  6553. The sharp sign indicates the folder name is outside your personal
  6554. folder area.  The "news." phrase after it tells Pine to 
  6555. interpret the remainder of the name as a newsgroup.
  6556.  
  6557. <P>
  6558. Similarly, to access a newsgroup on your IMAP server, you might
  6559. use something like:
  6560. <P>
  6561. <CENTER><SAMP>{wharhol.art.nowhere.edu}#news.comp.mail.misc</SAMP></CENTER>
  6562.  
  6563. <P>
  6564. There are a number of such special phrases (or "namespaces")
  6565. available.  For a more detailed explanation see the Setup/collectionList
  6566. Add or Change command's <A HREF="h_composer_cntxt_path">Path:</A> help text.
  6567.  
  6568. <P>
  6569. Note that "INBOX" has special meaning in both local and remote folder
  6570. names.  The name INBOX refers to your "principal incoming
  6571. message folder" and will be mapped to the actual file name used for your
  6572. INBOX on any given host.  Therefore, a name like
  6573. "{xxx.art.nowhere.edu}INBOX" refers to whatever file is used to
  6574. store incoming mail for you on that particular host.
  6575.  
  6576. <P>
  6577. <End of help on this topic>
  6578. </BODY>
  6579. </HTML>
  6580. ============= h_whatis_vcard ========================
  6581. <HTML>
  6582. <HEAD>
  6583. <TITLE>VCARD EXPLAINED</TITLE>
  6584. </HEAD>
  6585. <BODY>
  6586. <H1>What is the vCard format?</H1>
  6587. A "vCard" is a sort of electronic business card, for exchanging 
  6588. information about and among people and organizations electronically.  
  6589. More information about vCard can be found (as of May 1998) on the WWW site 
  6590. of the Internet Mail Consortium at the URL:
  6591. <P>
  6592. <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
  6593. <P>
  6594. <End of help on this topic>
  6595. </BODY>
  6596. </HTML>
  6597. ===== h_folder_open =====
  6598. <HTML>
  6599. <HEAD>
  6600. <TITLE>Explanation of Folder Selection</TITLE>
  6601. </HEAD>
  6602. <BODY>
  6603. <BR>
  6604. <BR>
  6605. This screen is designed to allow you to quickly and easily survey your
  6606. folders and select one to open.
  6607. <!--chtml if pinemode="function_key"-->
  6608. <PRE>
  6609. Navigating the List of Folders             General Pine Commands
  6610. ------------------------------             ---------------------
  6611.  P   Move to previous folder               ?   Show this help text
  6612.  N   Move to next folder
  6613.  -   Show previous screen of folders
  6614. Spc  Show next screen of folders
  6615.  W   WhereIs (search folder names)
  6616.  
  6617. Folder Selection Commands
  6618. -------------------------
  6619.  E   Exit the Folder Select menu (without selecting a folder)
  6620.  S   Select the currently highlighted folder
  6621. </PRE>
  6622. <!--chtml else-->
  6623. <PRE>
  6624. Navigating the List of Folders             General Pine Commands
  6625. ------------------------------             ---------------------
  6626. F5   Move to previous folder               F1  Show this help text
  6627. F6   Move to next folder
  6628. F7   Show previous screen of folders
  6629. F8   Show next screen of folders
  6630. F12  WhereIs (search folder names)
  6631.  
  6632. Folder Selection Commands
  6633. -------------------------
  6634. F3   Exit the Folder Select menu (without selecting a folder)
  6635. F4   Select the currently highlighted folder
  6636. </PRE>
  6637. <!--chtml endif-->
  6638. <P>
  6639. FOR MORE INFORMATION: See the section on
  6640. <A HREF="h_valid_folder_names">Valid Folder Names</A>.
  6641. <P>
  6642. <End of help on this topic>
  6643. </BODY>
  6644. </HTML>
  6645. ===== h_folder_subscribe =====
  6646. <HTML>
  6647. <HEAD>
  6648. <TITLE>Newsgroup Subcribe Screen explained</TITLE>
  6649. </HEAD>
  6650. <BODY>
  6651. <H1>FOLDER SUBSCRIBE HELP</H1>
  6652.  
  6653. This screen is designed to help you subscribe to newsgroups you are
  6654. not currently subscribed to.  The screen display is a list of all
  6655. available newsgroups (or possibly a partial list if you specified a
  6656. partial name when entering the screen).  Groups you have already
  6657. subscribed to have the letters "SUB" next to them.  You may
  6658. select a single new group to subscribe to by moving the cursor to that
  6659. group and pressing "S" or carriage return.  Alternatively,
  6660. you may change into ListMode with the "ListMode" command.
  6661. The display will change slightly so that each group has a checkbox in
  6662. front of it.  Use the cursor and the Set/Unset command to place an
  6663. "X" in front of each newsgroup you wish to subscribe to.
  6664. <P>
  6665.  
  6666. When you are finished marking groups, the "Subscribe"
  6667. command will subscribe you to those groups you have marked.  Note, you
  6668. may not unsubscribe to groups with this command.  Instead of the
  6669. "A" "Subscribe" command, use the "D"
  6670. UnSbscrbe command.
  6671. <P>
  6672.  
  6673. <!--chtml if pinemode="function_key"-->
  6674. <PRE>
  6675. Navigating the List of Newsgroups          General Pine Commands
  6676. ---------------------------------          ---------------------
  6677. F5   Move to previous group                F1   Show this help text
  6678. F6   Move to next group
  6679. F7   Show previous screen of groups
  6680. F8   Show next screen of groups
  6681. F12  WhereIs (search group names)
  6682. F9   Use ListMode
  6683.  
  6684. Group Selection Commands
  6685. -------------------------
  6686. F3  Exit the News Subscribe menu (without selecting any groups)
  6687. F4  Subscribe to the currently highlighted newsgroup
  6688. </PRE>
  6689. <!--chtml else-->
  6690. <PRE>
  6691. Navigating the List of Newsgroups          General Pine Commands
  6692. ---------------------------------          ---------------------
  6693.  P   Move to previous group                ?   Show this help text
  6694.  N   Move to next group
  6695.  -   Show previous screen of groups
  6696. Spc  Show next screen of groups
  6697.  W   WhereIs (search group names)
  6698.  L   Use ListMode
  6699.  
  6700. Group Selection Commands
  6701. -------------------------
  6702.  E   Exit the News Subscribe menu (without selecting any groups)
  6703.  S   Subscribe to the currently highlighted newsgroup
  6704. </PRE>
  6705. <!--chtml endif-->
  6706. <P>
  6707. When in ListMode, there is an additional command for marking groups to
  6708. subscribe to:
  6709. <P>
  6710. <!--chtml if pinemode="function_key"-->
  6711. <PRE>
  6712. ListMode Commands
  6713. -------------------------
  6714. F9  Set or unset the highlighted group
  6715. </PRE>
  6716. <!--chtml else-->
  6717. <PRE>
  6718. ListMode Commands
  6719. -------------------------
  6720. X   Set or unset the highlighted group
  6721. </PRE>
  6722. <!--chtml endif-->
  6723. <P>
  6724. <End of help on this topic>
  6725. </BODY>
  6726. </HTML>
  6727. ===== h_folder_postnews =====
  6728. <HTML>
  6729. <HEAD>
  6730. <TITLE>Newsgroup selecting for Posting explained</TITLE>
  6731. </HEAD>
  6732. <BODY>
  6733. This screen is designed to allow you to quickly and easily survey
  6734. the available newsgroups and select one to post news to.
  6735. <P>
  6736. <!--chtml if pinemode="function_key"-->
  6737. <PRE>
  6738. Navigating the List of Newsgroups          General Pine Commands
  6739. ---------------------------------          ---------------------
  6740. F5   Move to previous group                F1  Show this help text
  6741. F6   Move to next group
  6742. F7   Show previous screen of groups
  6743. F8   Show next screen of groups
  6744. F12  WhereIs (search group names)
  6745.  
  6746. Group Selection Commands
  6747. -------------------------
  6748. F3   Exit the Selection menu (without selecting a group)
  6749. F4   Select the currently highlighted newsgroup
  6750. </PRE>
  6751. <!--chtml else-->
  6752. <PRE>
  6753. Navigating the List of Newsgroups          General Pine Commands
  6754. ---------------------------------          ---------------------
  6755.  P   Move to previous group                ?  Show this help text
  6756.  N   Move to next group
  6757.  -   Show previous screen of groups
  6758. Spc  Show next screen of groups
  6759.  W   WhereIs (search group names)
  6760.  
  6761. Group Selection Commands
  6762. -------------------------
  6763.  E   Exit the Selection menu (without selecting a group)
  6764.  S   Select the currently highlighted newsgroup
  6765. </PRE>
  6766. <!--chtml endif-->
  6767. <P>
  6768. <End of help on this topic>
  6769. </BODY>
  6770. </HTML>
  6771. ===== h_folder_save =====
  6772. <HTML>
  6773. <HEAD>
  6774. <TITLE>Folder Select for Save Explained</TITLE>
  6775. </HEAD>
  6776. <BODY>
  6777. This screen is designed to allow you to quickly and easily survey your
  6778. folders and select one to use for saving the current message.
  6779. <P>
  6780.  
  6781. <!--chtml if pinemode="function_key"-->
  6782. <PRE>
  6783. Navigating the List of Folders             General Pine Commands
  6784. ------------------------------             ---------------------
  6785. F5   Move to previous folder               F1  Show this help text
  6786. F6   Move to next folder
  6787. F7   Show previous screen of folders
  6788. F8   Show next screen of folders
  6789. F12  WhereIs (search folder names)
  6790.  
  6791. Folder Selection Commands
  6792. -------------------------
  6793. F3   Exit the Folder Select menu (without selecting a folder)
  6794. F4   Select the currently highlighted folder
  6795. </PRE>
  6796. <!--chtml else-->
  6797. <PRE>
  6798. Navigating the List of Folders             General Pine Commands
  6799. ------------------------------             ---------------------
  6800.  P   Move to previous folder               ?  Show this help text
  6801.  N   Move to next folder
  6802.  -   Show previous screen of folders
  6803. Spc  Show next screen of folders
  6804.  W   WhereIs (search folder names)
  6805.  
  6806. Folder Selection Commands
  6807. -------------------------
  6808.  E   Exit the Folder Select menu (without selecting a folder)
  6809.  S   Select the currently highlighted folder
  6810. </PRE>
  6811. <!--chtml endif-->
  6812. <P>
  6813. FOR MORE INFORMATION: See the section on
  6814. <A HREF="h_valid_folder_names">Valid Folder Names</A>.
  6815. <P>
  6816. <End of help on this topic>
  6817. </BODY>
  6818. </HTML>
  6819. ===== h_folder_fcc =====
  6820. <HTML>
  6821. <HEAD>
  6822. <TITLE>Folder Select for Fcc Explained</TITLE>
  6823. </HEAD>
  6824. <BODY>
  6825. This screen is designed to allow you to quickly and easily survey your
  6826. folders and select one to use as the file carbon copy (fcc) for the
  6827. current message.
  6828. <P>
  6829.  
  6830. <!--chtml if pinemode="function_key"-->
  6831. <PRE>
  6832. Navigating the List of Folders             General Pine Commands
  6833. ------------------------------             ---------------------
  6834. F5   Move to previous folder               F1  Show this help text
  6835. F6   Move to next folder
  6836. F7   Show previous screen of folders
  6837. F8   Show next screen of folders
  6838. F12  WhereIs (search folder names)
  6839.  
  6840. Folder Selection Commands
  6841. -------------------------
  6842. F3   Exit the Folder Select menu (without selecting a folder)
  6843. F4   Select the currently highlighted folder
  6844. </PRE>
  6845. <!--chtml else-->
  6846. <PRE>
  6847. Navigating the List of Folders             General Pine Commands
  6848. ------------------------------             ---------------------
  6849.  P   Move to previous folder               ?  Show this help text
  6850.  N   Move to next folder
  6851.  -   Show previous screen of folders
  6852. Spc  Show next screen of folders
  6853.  W   WhereIs (search folder names)
  6854.  
  6855. Folder Selection Commands
  6856. -------------------------
  6857.  E   Exit the Folder Select menu (without selecting a folder)
  6858.  S   Select the currently highlighted folder
  6859. </PRE>
  6860. <!--chtml endif-->
  6861. <P>
  6862. FOR MORE INFORMATION: See the section on
  6863. <A HREF="h_valid_folder_names">Valid Folder Names</A>.
  6864. <P>
  6865. <End of help on this topic>
  6866. </BODY>
  6867. </HTML>
  6868. ===== h_folder_pattern_roles =====
  6869. <HTML>
  6870. <HEAD>
  6871. <TITLE>Folder Select for Current Folder Explained</TITLE>
  6872. </HEAD>
  6873. <BODY>
  6874. This screen is designed to allow you to quickly and easily survey your
  6875. folders and select one to use as the specific Current Folder
  6876. in a Pattern.
  6877. <P>
  6878.  
  6879. <!--chtml if pinemode="function_key"-->
  6880. <PRE>
  6881. Navigating the List of Folders             General Pine Commands
  6882. ------------------------------             ---------------------
  6883. F5   Move to previous folder               F1  Show this help text
  6884. F6   Move to next folder
  6885. F7   Show previous screen of folders
  6886. F8   Show next screen of folders
  6887. F12  WhereIs (search folder names)
  6888.  
  6889. Folder Selection Commands
  6890. -------------------------
  6891. F3   Exit the Folder Select menu (without selecting a folder)
  6892. F4   Select the currently highlighted folder
  6893. </PRE>
  6894. <!--chtml else-->
  6895. <PRE>
  6896. Navigating the List of Folders             General Pine Commands
  6897. ------------------------------             ---------------------
  6898.  P   Move to previous folder               ?  Show this help text
  6899.  N   Move to next folder
  6900.  -   Show previous screen of folders
  6901. Spc  Show next screen of folders
  6902.  W   WhereIs (search folder names)
  6903.  
  6904. Folder Selection Commands
  6905. -------------------------
  6906.  E   Exit the Folder Select menu (without selecting a folder)
  6907.  S   Select the currently highlighted folder
  6908. </PRE>
  6909. <!--chtml endif-->
  6910. <P>
  6911. FOR MORE INFORMATION: See the section on
  6912. <A HREF="h_valid_folder_names">Valid Folder Names</A>.
  6913. <P>
  6914. <End of help on this topic>
  6915. </BODY>
  6916. </HTML>
  6917. ===== h_folder_action_roles =====
  6918. <HTML>
  6919. <HEAD>
  6920. <TITLE>Folder Select Explained</TITLE>
  6921. </HEAD>
  6922. <BODY>
  6923. This screen is designed to allow you to quickly and easily survey your
  6924. folders and select one to use as the folder into which messages
  6925. matching this filter will be moved.
  6926. <P>
  6927.  
  6928. <!--chtml if pinemode="function_key"-->
  6929. <PRE>
  6930. Navigating the List of Folders             General Pine Commands
  6931. ------------------------------             ---------------------
  6932. F5   Move to previous folder               F1  Show this help text
  6933. F6   Move to next folder
  6934. F7   Show previous screen of folders
  6935. F8   Show next screen of folders
  6936. F12  WhereIs (search folder names)
  6937.  
  6938. Folder Selection Commands
  6939. -------------------------
  6940. F3   Exit the Folder Select menu (without selecting a folder)
  6941. F4   Select the currently highlighted folder
  6942. </PRE>
  6943. <!--chtml else-->
  6944. <PRE>
  6945. Navigating the List of Folders             General Pine Commands
  6946. ------------------------------             ---------------------
  6947.  P   Move to previous folder               ?  Show this help text
  6948.  N   Move to next folder
  6949.  -   Show previous screen of folders
  6950. Spc  Show next screen of folders
  6951.  W   WhereIs (search folder names)
  6952.  
  6953. Folder Selection Commands
  6954. -------------------------
  6955.  E   Exit the Folder Select menu (without selecting a folder)
  6956.  S   Select the currently highlighted folder
  6957. </PRE>
  6958. <!--chtml endif-->
  6959. <P>
  6960. FOR MORE INFORMATION: See the section on
  6961. <A HREF="h_valid_folder_names">Valid Folder Names</A>.
  6962. <P>
  6963. <End of help on this topic>
  6964. </BODY>
  6965. </HTML>
  6966. ===== h_abook_config =====
  6967. <HTML>
  6968. <HEAD>
  6969. <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
  6970. </HEAD>
  6971. <BODY>
  6972. <H1>SETUP ADDRESS BOOKS SCREEN</H1>
  6973. <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
  6974. <!--chtml if pinemode="function_key"-->
  6975. <PRE>
  6976. Available  Commands                        
  6977. -------------------------------            
  6978. F1  Show Help Text                         
  6979. F3  Back to MAIN Pine menu                 
  6980. F4  Change configuration for address book  
  6981. F5  Move to previous address book          
  6982. F6  Move to next address book              
  6983. F7  Previous page of address books         
  6984. F8  Next page of address books             
  6985. F9  Add new address book                   
  6986. F10 Delete existing address book           
  6987. F11 Shuffle the order of address books     
  6988. F12 Whereis (search address book titles)   
  6989. </PRE>
  6990. <!--chtml else-->
  6991. <PRE>
  6992. Navigation                     General Pine Commands
  6993. -----------------------        ---------------------
  6994.  P  Prev Address Book             ?  Display this help text
  6995.  N  Next Address Book             E  Back to MAIN Pine menu
  6996.  -  Previous page
  6997. Spc Next page
  6998.  W  WhereIs (search for word in address book titles)
  6999.  
  7000. Setup Address Books Commands
  7001. ------------------------------------------------
  7002.  A  Add new address book          $  Shuffle the order of address books
  7003.  D  Delete existing address book  C  Change configuration for address book
  7004. </PRE>
  7005. <!--chtml endif-->
  7006.  
  7007. <H2>Description of the Setup Address Books Screen</H2>
  7008.  
  7009. This screen lets you add, delete, modify, or change the order of your
  7010. address books.  The "Add Abook" command brings up a blank form to 
  7011. fill in.  If you are adding a remote address book on an IMAP server
  7012. you should fill in the name of the IMAP server.  Otherwise, leave
  7013. that field blank.  (Note that remote IMAP address books are a Pine
  7014. concept and are unlikely to interoperate with other mail clients.)
  7015. For a remote address book, fill in the name of the remote folder
  7016. in the Folder field.  This should be a folder which is used only for
  7017. this one purpose, not a general purpose folder you expect to store
  7018. messages in.
  7019. <P>If you are adding a local address book, fill in the
  7020. Folder Name field with a local file name (e.g., .addressbook).
  7021. <P>
  7022. <B>Please note:</B> Remote address books stored on an IMAP server are 
  7023. of an entirely different format (namely, a special-purpose 
  7024. "mail folder") than that of the local addressbook familiar 
  7025. to Pine users.  Therefore, 
  7026. you cannot use "add a remote address book" to make an existing 
  7027. Pine .addressbook file you may have on a remote IMAP server accessible to 
  7028. Pine running on a different host.  
  7029. <P>
  7030.  
  7031. The "Del Abook" command allows you to remove an address book
  7032. from your configuration.  It will also ask you if you wish to remove
  7033. the data for that address book, which would erase all traces of the
  7034. address book if you answer Yes.
  7035. <P>
  7036.  
  7037. The "Change" command is similar to the "Add Abook" command.
  7038. The difference is that instead of adding a new address book to your
  7039. configuration, you are changing the configuration of an existing entry.
  7040. For example, you might want to correct a typing error or change a
  7041. nickname.  The "Change" command is not a move command.  If you
  7042. change the folder name or server name the data will not be moved for you.
  7043. <P>
  7044.  
  7045. The "Shuffle" command is used for two purposes.  If you shuffle
  7046. an address book toward another address book in the same group then
  7047. the order of those two address books will be swapped.  If you shuffle
  7048. the last Personal address book down towards the Global address book
  7049. section, it will become a Global address book.  If you shuffle
  7050. the first Global address book up it will become a Personal address
  7051. book.  The main difference between Personal and Global address
  7052. books is that Global address books are forced read-only.
  7053. <P><UL>
  7054. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  7055. </UL>
  7056. <P>
  7057. <End of help on this topic>
  7058. </BODY>
  7059. </HTML>
  7060. ===== h_abook_top =====
  7061. <HTML>
  7062. <HEAD>
  7063. <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
  7064. </HEAD>
  7065. <BODY>
  7066. <H1>ADDRESS BOOK LIST COMMANDS</H1>
  7067. <!--chtml if pinemode="function_key"-->
  7068. <PRE>
  7069. Available  Commands -- Group 1         Available Commands -- Group 2
  7070. -------------------------------        ------------------------------
  7071. F1  Show Help Text                      F1  Show Help Text
  7072. F2  See commands in next group          F2  See commands in next group
  7073. F3  Exit to Main Menu                   F3  Quit Pine
  7074. F4  View/Edit selected address book
  7075. F5  Move to previous address book       F5  FOLDER LIST screen
  7076. F6  Move to next address book           F6  Specify a folder to go to
  7077. F7  Previous page                       F7  MESSAGE INDEX screen
  7078. F8  Next page                           F9  Print list of address books
  7079. F12 Whereis (search for word)
  7080. </PRE>
  7081. <!--chtml else-->
  7082. <PRE>
  7083. Navigation                       General Pine Commands
  7084. -----------------------          ---------------------
  7085.  P  Previous Entry                ?  Display this help text
  7086.  N  Next Entry                    O  Show all other available commands
  7087.  -  Previous page                 <  Back to MAIN Pine menu
  7088. Spc Next page                     Q  Quit Pine
  7089.  W  WhereIs (search for word)     L  FOLDER LIST screen
  7090.                   G  Specify a folder to go to
  7091. Address Book Commands             I  MESSAGE INDEX screen
  7092. ------------------------------------------------
  7093.  >  View/Edit selected address book
  7094.           or
  7095.  >  Search on selected directory server
  7096.  
  7097.  %  Print list of address books and directory servers
  7098. </PRE>
  7099. <!--chtml endif-->
  7100.  
  7101. <H2>Description of the Address Book List Screen</H2>
  7102.  
  7103. From this screen you may choose which address book you wish to view
  7104. or edit. For more information on address books, view one of your
  7105. address books (with
  7106. <!--chtml if pinemode="function_key"-->
  7107. F4
  7108. <!--chtml else-->
  7109. ">"
  7110. <!--chtml endif-->)
  7111. and see the Help Text there.<P>
  7112.  
  7113. You may also choose a directory server on which to search for entries.
  7114. You do that by highlighting the directory server line and using
  7115. <!--chtml if pinemode="function_key"-->
  7116. F4
  7117. <!--chtml else-->
  7118. ">"
  7119. <!--chtml endif-->.<P>
  7120.  
  7121. If you wish to define new address books or directory servers go to the Main
  7122. menu and choose Setup. You may then either choose to setup AddressBooks or
  7123. Directory (among other things). It's possible that the Directory option
  7124. will not be there if the Pine you are using does not contain LDAP directory
  7125. lookup functionality.
  7126.  
  7127. <P><UL>
  7128. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  7129. </UL><P>
  7130. <End of help on this topic>
  7131. </BODY>
  7132. </HTML>
  7133. ===== h_abook_opened =====
  7134. <HTML>
  7135. <HEAD>
  7136. <TITLE>THE PINE ADDRESS BOOK</TITLE>
  7137. </HEAD>
  7138. <BODY>
  7139. <H1>THE PINE ADDRESS BOOK</H1>
  7140. <H2>ADDRESS BOOK COMMANDS</H2>
  7141. <PRE>
  7142. <!--chtml if pinemode="function_key"-->
  7143. Available  Commands -- Group 1         Available Commands -- Group 2   
  7144. -------------------------------        ------------------------------  
  7145. F1  Show Help Text                      F1  Show Help Text             
  7146. F2  See commands in next group          F2  See commands in next group
  7147. F3  Exit this screen                    F3  Quit Pine                  
  7148. F4  View/Edit selected entry            F4  Go to MAIN menu screen     
  7149. F5  Move to previous entry              F5  FOLDER LIST screen         
  7150. F6  Move to next entry                  F6  Specify a folder to go to  
  7151. F7  Previous page of address book       F7  MESSAGE INDEX screen        
  7152. F8  Next page of address book           F8  Compose to entry using roles
  7153. F9  Add new entry to address book       F9  Print address book         
  7154. F10 Delete selected entry               F10 TakeAddr to another addrbook
  7155. F11 Compose to selected entry           F11 Save or Export addrbook selections
  7156. F12 Whereis (search address book)       F12 Forward entry by mail       
  7157.  
  7158. Available Commands -- Group 3                                           
  7159. ------------------------------                                          
  7160. F3  Select                              F6  Zoom (or unZoom)            
  7161. F5  Select Current                      F7  Apply Command to Selection  
  7162. <!--chtml else-->
  7163. Address Book Navigation        General Pine Commands
  7164. -----------------------        ---------------------
  7165.  P  Prev Address                  ?  Display this help text
  7166.  N  Next Address                  O  Show all other available commands
  7167.  -  Previous page of address book M  Back to MAIN menu
  7168. Spc Next page of address book     Q  Quit Pine
  7169.  W  WhereIs (search for word      C  Compose message to selected addr
  7170.      or name in address book)     #  Compose to addr using roles
  7171.  <  To List of Address Books if   L  FOLDER LIST screen
  7172.      more than one, else to MAIN  G  Specify a folder to go to
  7173.                                   I  MESSAGE INDEX screen
  7174.  
  7175. Address Book Commands
  7176. ----------------------------------------------------
  7177.  >  View/Update selected entry    D  Delete selected entries
  7178.  %  Print address book            S  Save or Export address book selections
  7179.  F  Forward entries by mail       @  Add new entry to address book
  7180.  
  7181.  ;  Select command                Z  Toggle Zoom Mode
  7182.  :  Select highlighted entry      A  Apply command to selected entries
  7183.  
  7184. <!--chtml endif-->
  7185. </PRE>
  7186. Note:  The presence or absence of the final four commands above is
  7187. controlled by the option 
  7188. <A HREF="h_config_enable_agg_ops">"enable-aggregate-command-set"</A>
  7189. which you may turn on in the SETUP CONFIGURATION screen.
  7190. <P>
  7191.  
  7192. <H2>Description of the Address Book Screen</H2>
  7193.  
  7194. This screen lets you edit and manage entries in your address book.  It
  7195. also acts as a short-cut for composing messages to people in the address
  7196. book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->"C"<!--chtml endif--> for ComposeTo, the
  7197. message starts "pre-addressed" to whatever address book entry is
  7198. currently selected.  If you use the <!--chtml if pinemode="function_key"-->F8<!--chtml else-->"#"<!--chtml endif--> for Role, you may first select a
  7199. role to use in your composition.
  7200. <P>
  7201. Pine's address book helps you keep a list of addresses you send email to so
  7202. you do not have to remember addresses that are often complex.  Each entry
  7203. in the address book has five fields, all of them optional.  The three
  7204. elements which are usually visible on the ADDRESS BOOK display, are: <DL>
  7205.  
  7206.     <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
  7207.     This is what you type in as you are addressing the message in the
  7208.     composer.  If there is a matching entry in your address book(s),
  7209.     Pine will extract the corresponding FullName and Address fields to
  7210.     generate the actual address for your message.
  7211.  
  7212.     <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
  7213. of the
  7214.     person or organization.  Usually the full names are put in last
  7215.     name first so they sort nicely in alphabetical order.  Whatever
  7216.     you put as the name here will appear on the message when it is
  7217.     finally delivered.  Examples:<PRE>
  7218.        Garcia Marquez, Gabriel
  7219.        Henscheid, Eckhard
  7220.        Pine-Info mailing list
  7221.        Library materials renewal requests
  7222.        Kim An-guk
  7223.        "George III, King of Great Britain, 1738-1820"
  7224. </PRE>
  7225. (In the second-to-last example, no comma is used in the name so that 
  7226. the family name appears first in the address book and when the entry is 
  7227. used in the composer.
  7228. In the last example, retaining the commas is intended; 
  7229. double-quotation marks surround the name to 
  7230. prevent the transposition of its parts when the entry is used in 
  7231. the composer.)
  7232.  
  7233.     <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
  7234.     a valid Internet address that conforms to the Internet message
  7235.     header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
  7236.  
  7237. The two fields which aren't usually visible are:<DL>
  7238.  
  7239.   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
  7240.     message to this address to be saved in.  If this field is set, and
  7241.     this address is the first one in the message's To: header, then
  7242.     Pine will use this folder name for the FCC in lieu of the normal
  7243.     FCC folder name.
  7244.  
  7245.   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
  7246.     </DL>
  7247. <P>
  7248. Due to screen width limitations, these last two fields do not show up in
  7249. the normal ADDRESS BOOK display.  You may select the 
  7250. "View/Update" command to
  7251. view or modify them.  You may use the configuration variable
  7252. <A HREF="h_config_abook_formats">"addressbook-formats"</A>
  7253. to add these fields to your ADDRESS BOOK 
  7254. display, or to modify the format of the display.
  7255.  
  7256. <H2>Sorting the Address book</H2>
  7257.  
  7258. By default, address book entries are sorted alphabetically on the full
  7259. name with distribution lists sorted to the end.  Sorting can be changed by
  7260. resetting the address book sort rule in the Pine SETUP CONFIGURATION screen
  7261. --assuming you have "write" permission for the address book file.
  7262. <P>
  7263. Unlike the sorting of folders (which only changes presentation), sorting an
  7264. address book actually changes the file as it is kept on the computer.  For
  7265. this reason you won't be able to sort a shared or system-wide address
  7266. book.
  7267.  
  7268. <H2>Adding New Entries</H2>
  7269.  
  7270. The easiest way to add new entries to your address book is to use the
  7271. "TakeAddr" command when viewing a message.
  7272. This command allows you to take addresses from the header and body of the
  7273. message and put them into your address book, without having to type
  7274. them in.
  7275. <P>
  7276.  
  7277. To add a new entry from within the address book screen, use the AddNew
  7278. (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->"@"<!--chtml endif-->) command.
  7279. Use this command both for adding a simple alias and for adding a
  7280. distribution list.
  7281.  
  7282. <H2>Distribution Lists</H2>
  7283.  
  7284. Address book entries can be simple cases of aliases (a single nickname is linked
  7285. to a single email address) or distribution lists (a single nickname
  7286. pointing at more than one email address).  Each distribution list has a
  7287. nickname, a full name and a list of addresses.  The addresses may be
  7288. actual addresses or they may be other nicknames in your address book.
  7289. They may even refer to other distribution lists.
  7290. There's really no difference between a simple alias and a distribution list,
  7291. other than the number of addresses.
  7292. Therefore, you can turn a simple alias with one address into a distribution
  7293. list simply by adding more addresses.
  7294. To add entries to an existing list or alias
  7295. use the View/Update (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->">"<!--chtml endif-->) command.  Delete (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->"D"<!--chtml endif-->) will delete
  7296. a single address from the list if the cursor is placed on the address;
  7297. it will delete the entire distribution list if the cursor is on the
  7298. nickname/fullname line.  View/Update may also be used to delete addresses
  7299. from a list.
  7300. <P>
  7301. Address field entries in distribution lists may take any one of three
  7302. forms: a nickname existing in any of the defined address books, a normal
  7303. address of the form "jsmith@art.nowhere.edu", or a complete
  7304. fullname/address combination, e.g. "John Smith
  7305. <jsmith@art.nowhere.edu>".
  7306. <P>
  7307. Distribution lists in Pine address books can only be used by the person or
  7308. people who have access to that address book.  They are not usually used to
  7309. implement discussion groups, but can be used to facilitate small
  7310. discussion groups if all the participants have access to the same shared
  7311. address book.
  7312.  
  7313. <H2>FCC and Comments</H2>
  7314.  
  7315. As mentioned above, each entry in the address book also has two other optional
  7316. fields, fcc and comments.  The command to look at or change either of these
  7317. is the same View/Update command used for all of the fields (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->">"<!--chtml endif-->).  The
  7318. comments field is just for your own use.  The fcc field overrides the
  7319. default fcc if this address is the first one on the To line.  The WhereIs
  7320. command may be used to search for particular strings in the address book,
  7321. including fields which are not visible (like comment and fcc by default).
  7322.  
  7323. <H2>Aggregate Operations</H2>
  7324.  
  7325. If the feature
  7326. <A HREF="h_config_enable_agg_ops">"enable-aggregate-command-set"</A>
  7327. is turned on, then the four commands "Select",
  7328. "Select Current", "Zoom", and "Apply"
  7329. are available.  The two selection commands allow you to mark a set of
  7330. address book entries as being selected.  If you have more than one address
  7331. book, the selections may be in more than one of those address books.
  7332. The "Zoom" command will toggle between displaying only the selected
  7333. messages and all the messages.  The "Apply" command allows you to
  7334. apply one of the regular address book commands to all of the selected
  7335. entries.  Usually the address book commands apply to only the entry
  7336. highlighted by the cursor.  The "Apply" command works with the
  7337. commands "ComposeTo", "Delete", "Print", 
  7338. "Save", "Forward", and "Role".
  7339.  
  7340. <H2>Exporting and Forwarding Address book entries</H2>
  7341.  
  7342. Under the save option, when you use the Export (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->"X"<!--chtml endif-->) command, the currently highlighted
  7343. address book entry is placed in a plain text file in your home directory
  7344. <!--chtml if pinemode="running"-->
  7345. (which, in the present configuration of your system, is
  7346.  "<!--#echo var="HOME_DIR"-->") 
  7347. <!--chtml endif-->
  7348. or current working directory
  7349. <!--chtml if pinemode="running"-->
  7350. (which, at least for your current Pine "session," 
  7351. is "<!--#echo var="CURRENT_DIR"-->") 
  7352. <!--chtml endif-->, depending on the 
  7353. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  7354. configuration setting.  If you have some entries selected and use the
  7355. Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->"A"<!--chtml endif-->) Export command, all of the selected addresses will be
  7356. placed in the text file.
  7357. <P>
  7358. When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->"F"<!--chtml endif-->) command, the currently highlighted
  7359. address book entry is placed in a special attachment and you are put into
  7360. the composer.  You can fill in some comments in the body of the message,
  7361. if you'd like, and send it to somebody else who uses Pine.  The recipient
  7362. may use the TakeAddr command on that message to insert the address book
  7363. entry you sent in their own address book.  If you have some entries
  7364. selected and use the Apply Forward command all of the selected entries
  7365. will be forwarded in a single message.  In Pine 4.00 or later you may
  7366. use Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->"A"<!--chtml endif-->) Forward to forward a copy of an entire address book.
  7367. The recipient must be using Pine 4 in order to receive this correctly.
  7368. One way for the recipient to handle this might be to create an empty
  7369. address book and then "Take" your forwarded address book entries into
  7370. that empty address book.
  7371.  
  7372. <H2>Multiple and/or Site-Wide Address books</H2>
  7373.  
  7374. You may have more than one personal address book.  In addition, there may
  7375. be one or more global address books.  This capability allows you to have
  7376. multiple personal address books (some of which may be shared) and it also
  7377. allows system administrators to implement site-wide address books that
  7378. contain entries for users on multiple machines within the organization.
  7379. <P><DL>
  7380. <DT>Searching. 
  7381.   <DD> If you enter a nickname when composing a message, your
  7382.   personal address books will be searched through in order, and then the
  7383.   global address book(s) searched. If more than one address book has an entry
  7384.   for the nickname, Pine uses the first one that it finds, so an entry in
  7385.   your personal address book would override a global address book entry. If
  7386.   after searching all the address books there is still no match, (Unix) Pine
  7387.   then searches the local host password file on the assumption that you have
  7388.   entered a local user name rather than an address book nickname.
  7389.   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
  7390.   command, but global address books are always searched after personal
  7391.   address books.
  7392.  
  7393.   <P><DT>Defining. 
  7394.   <DD> You define multiple personal address books in the 
  7395.   <A HREF="h_abook_config">SETUP AddressBooks</A> screen.  
  7396.   You can add as many as you like.  Global address books are usually
  7397.   site-wide address books defined by the System administrator, but
  7398.   you may define global address books of your own just like you define
  7399.   personal address books.
  7400.  
  7401.   <P><DT>Creating and updating. 
  7402.   <DD> Personal address books are normally created empty
  7403.   and populated by explicit additions from within Pine, e.g. via the
  7404.   TakeAddr command.  Unlike personal address books, global address books may
  7405.   not be modified/updated from within Pine; that is, they are Read-Only.
  7406.   Thus, global address books are created, populated and updated outside of
  7407.   Pine. They might be hand-edited, generated by a program from another
  7408.   database, or by copying an existing address book.  They might also be
  7409.   some other user's personal address book, and so be modified normally by
  7410.   that user but accessed Read-Only by you.  See the Pine Technical
  7411.   Notes document (included in the Pine distribution) for more information on
  7412.   this.
  7413.  
  7414.   <P><DT>Accessing.  
  7415.   <DD>There are two different types of address books in Pine.
  7416.   A local address book is stored in a regular file and the normal file
  7417.   access permissions apply.  A remote address book is stored on an IMAP
  7418.   server in a special folder which contains only messages pertaining to
  7419.   that address book.  The last message in the remote folder contains a
  7420.   copy of the address book data, and that data is copied to a local cache
  7421.   file in your home directory.  From there it is accessed just like a local
  7422.   address book.  The name of the cache file is kept track of in a special
  7423.   file called the "remote-abook-metafile", the name of which is stored in
  7424.   your Pine configuration file the first time you use a remote address book.
  7425.   Just as local Pine address books use a format that only Pine understands,
  7426.   remote Pine address books do the same and other mail reading programs
  7427.   are unlikely to be able to understand them.<P>
  7428.   While global address books are explicitly intended to be shared, there is
  7429.   nothing to prevent you from sharing a personal address book with other
  7430.   Pine users. This might be useful in the case of a small workgroup.
  7431.   However, it is recommended that updates to shared personal address books
  7432.   be done when other Pine users are not accessing the address book. Pine
  7433.   does not do any file-locking to manage concurrent updates to the
  7434.   addressbook, but it does check to see if the file has been modified before
  7435.   making any changes.  Consequently, inadvertent concurrent updates will
  7436.   only cause other Pine users to have to restart their address book
  7437.   operation, which will cause Pine to re-open the updated file.
  7438.  
  7439.   <P><DT>Converting to Remote.  
  7440.   <DD>The easiest way to convert an existing local
  7441.   address book into a remote address book is to create an empty new remote
  7442.   address book with the "Add Abook" command in the SETUP Addressbook screen.
  7443.   After you have added the empty
  7444.   remote address book, go into the screen for the address book you wish
  7445.   to copy and "Select" "All".  This selects every entry in that
  7446.   address book.  Then type the command "Apply Save".
  7447.   You will be asked for the address book to save to.  You may use ^P and ^N
  7448.   to get to the new empty address book, then hit RETURN and the addresses
  7449.   will be copied.
  7450.   At this point you'll probably want to unselect all the entries in the local
  7451.   address book before proceeding. You do that with
  7452.   "Select" "unselect All".
  7453.  
  7454. </DL>
  7455. <UL>
  7456. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  7457. </UL>
  7458. <P><UL>
  7459. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  7460. </UL>
  7461. <P>
  7462. <End of help on this topic>
  7463. </BODY>
  7464. </HTML>
  7465. ===== h_abook_select_addr =====
  7466. <HTML>
  7467. <HEAD>
  7468. <TITLE>Addressbook Selection Explained</TITLE>
  7469. </HEAD>
  7470. <BODY>
  7471. <H1>SELECT ADDRESS</H1>
  7472. <!--chtml if pinemode="function_key"-->
  7473. <PRE>
  7474. Navigating the List of Messages               General Pine Commands
  7475. -------------------------------               ---------------------
  7476. F5   Move to previous entry                   F1  Show this help text
  7477. F6   Move to next entry
  7478. F7   Show previous screen of address book
  7479. F8   Show next screen of address book
  7480. F12  WhereIs (search through address book)
  7481.  
  7482. Address Selection Commands
  7483. --------------------------
  7484. F3   Exit the Address Select screen (without selecting an address)
  7485. F4   Select the currently highlighted entry
  7486. </PRE>
  7487. <!--chtml else-->
  7488. <PRE>
  7489. Navigating the List of Messages               General Pine Commands
  7490. -------------------------------               ---------------------
  7491.  P   Move to previous entry                   ?  Show this help text
  7492.  N   Move to next entry
  7493.  -   Show previous screen of address book
  7494. Spc  Show next screen of address book
  7495.  W   WhereIs (search through address book)
  7496.  
  7497. Address Selection Commands
  7498. --------------------------
  7499.  E   Exit the Address Select screen (without selecting an address)
  7500.  S   Select the currently highlighted entry
  7501. </PRE>
  7502. <!--chtml endif-->
  7503. <P>
  7504.  
  7505. This screen is designed to let you easily scan your address book(s) in
  7506. order to select an entry for the message you are composing.  You cannot
  7507. edit your address book in any way at this time, for address book
  7508. maintenance, select the address book command when not composing a message.
  7509. <P>
  7510.  
  7511. If you are composing a message and know the nickname of the person/list you
  7512. want, you can bypass this screen by simply typing in the nickname on the
  7513. appropriate header line (To:, Cc:, etc.)  Exiting this screen without
  7514. selecting an entry does not cancel your message.
  7515. <P>
  7516.  
  7517. FOR MORE INFORMATION on addressing see
  7518. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7519. <A HREF="h_abook_opened">Address Book Screen's</A>
  7520. help text.
  7521. <P>
  7522. <End of help on this topic>
  7523. </BODY>
  7524. </HTML>
  7525. ===== h_abook_select_top =====
  7526. <HTML>
  7527. <HEAD>
  7528. <TITLE>Addressbook Selection Navigation Explained</TITLE>
  7529. </HEAD>
  7530. <BODY>
  7531. <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
  7532. <!--chtml if pinemode="function_key"-->
  7533. <PRE>
  7534. Navigating the List of Address Books       General Pine Commands
  7535. -------------------------------            ---------------------
  7536. F4   View the highlighted address book
  7537. F5   Move to previous address book         F1  Show this help text
  7538. F6   Move to next address book
  7539. F7   Show previous screen of address books
  7540. F8   Show next screen of address books
  7541. F12  WhereIs (search through address books)
  7542.  
  7543. Address Selection Commands
  7544. --------------------------
  7545. F3   Exit the Address Select screen (without selecting an address)
  7546. F4   Select the currently selected entries (if using ListMode)
  7547. F9   Change to ListMode
  7548. </PRE>
  7549. <!--chtml else-->
  7550. <PRE>
  7551. Navigating the List of Address Books       General Pine Commands
  7552. -------------------------------            ---------------------
  7553.  >   View the highlighted address book
  7554.  P   Move to previous address book         ?  Show this help text
  7555.  N   Move to next address book
  7556.  -   Show previous screen of address books
  7557. Spc  Show next screen of address books
  7558.  W   WhereIs (search through address books)
  7559.  
  7560. Address Selection Commands
  7561. --------------------------
  7562.  E   Exit the Address Select screen (without selecting an address)
  7563.  S   Select the currently selected entries (if using ListMode)
  7564.  L   Change to ListMode
  7565. </PRE>
  7566. <!--chtml endif-->
  7567. <P>
  7568.  
  7569. This screen is designed to let you easily scan your address book(s) in
  7570. order to select entries for the message you are composing.  You cannot
  7571. edit your address book in any way at this time.  For address book
  7572. maintenance, select the address book command when not composing a message.
  7573. <P>
  7574.  
  7575. If you are composing a message and know the nickname of the person/list you
  7576. want, you can bypass this screen by simply typing in the nickname on the
  7577. appropriate header line (To:, Cc:, etc.)  Exiting this screen without
  7578. selecting an entry does not cancel your message.
  7579. <P>
  7580.  
  7581. The ListMode command will add a column at the left edge of the screen.
  7582. You mark the entries which you wish to select with the "X" command.
  7583. This allows you to choose more than one entry at a time.
  7584. <P>
  7585.  
  7586. An alternative method of composing a message to entries in your
  7587. address book(s) is to first use the "Select" command from
  7588. the address book maintenance screen and then the "Apply"
  7589. "ComposeTo" command to start the composer composing to the
  7590. selected entries.
  7591. <P>
  7592.  
  7593. FOR MORE INFORMATION on addressing see
  7594. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7595. <A HREF="h_abook_opened">Address Book Screen's</A>
  7596. help text.
  7597. <P>
  7598. <End of help on this topic>
  7599. </BODY>
  7600. </HTML>
  7601. ===== h_abook_select_listmode =====
  7602. <HTML>
  7603. <HEAD>
  7604. <TITLE>Address Listmode Selection from Composer Explained</TITLE>
  7605. </HEAD>
  7606. <BODY>
  7607. <H1>COMPOSER: SELECT ADDRESSES</H1>
  7608. <!--chtml if pinemode="function_key"-->
  7609. <PRE>
  7610. Navigating the List of Messages                 General Pine Commands
  7611. -------------------------------                 ---------------------
  7612. F5   Move to previous entry                     F1  Show this help text
  7613. F6   Move to next entry
  7614. F7   Show previous screen of address book
  7615. F8   Show next screen of address book
  7616. F12  WhereIs (search through address book)
  7617.  
  7618. Address Selection Commands
  7619. --------------------------
  7620. F3   Exit the Address Select screen (without selecting an address)
  7621. F4   Select the currently highlighted entry
  7622. F9   Change to ListMode
  7623. </PRE>
  7624. <!--chtml else-->
  7625. <PRE>
  7626. Navigating the List of Messages                 General Pine Commands
  7627. -------------------------------                 ---------------------
  7628.  P   Move to previous entry                     ?  Show this help text
  7629.  N   Move to next entry
  7630.  -   Show previous screen of address book
  7631. Spc  Show next screen of address book
  7632.  W   WhereIs (search through address book)
  7633.  
  7634. Address Selection Commands
  7635. --------------------------
  7636.  E   Exit the Address Select screen (without selecting an address)
  7637.  S   Select the currently highlighted entry
  7638.  L   Change to ListMode
  7639. </PRE>
  7640. <!--chtml endif-->
  7641. <P>
  7642.  
  7643. This screen is designed to let you easily scan your address book(s) in
  7644. order to select entries for the message you are composing.  You cannot
  7645. edit your address book in any way at this time, for address book
  7646. maintenance, select the address book command when not composing a message.
  7647. <P>
  7648.  
  7649. If you are composing a message and know the nickname of the person/list you
  7650. want, you can bypass this screen by simply typing in the nickname on the
  7651. appropriate header line (To:, Cc:, etc.)  Exiting this screen without
  7652. selecting an entry does not cancel your message.
  7653. <P>
  7654.  
  7655. The ListMode command will add a column at the left edge of the screen.
  7656. You mark the entries which you wish to select with the "X" command.
  7657. This allows you to choose more than one entry at a time.
  7658. <P>
  7659.  
  7660. An alternative method of composing a message to entries in your
  7661. address book(s) is to first use the "Select" command from
  7662. the address book maintenance screen and then the "Apply"
  7663. "ComposeTo" command to start the composer composing to the
  7664. selected entries.
  7665. <P>
  7666.  
  7667. FOR MORE INFORMATION on addressing see
  7668. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7669. <A HREF="h_abook_opened">Address Book Screen's</A>
  7670. help text.
  7671. <P>
  7672. <End of help on this topic>
  7673. </BODY>
  7674. </HTML>
  7675. ===== h_abook_select_checks =====
  7676. <HTML>
  7677. <HEAD>
  7678. <TITLE>Address Selection from Composer Explained</TITLE>
  7679. </HEAD>
  7680. <BODY>
  7681. <H1>COMPOSER: SELECT ADDRESSES</H1>
  7682. <!--chtml if pinemode="function_key"-->
  7683. <PRE>
  7684. Navigating the List of Messages                 General Pine Commands
  7685. -------------------------------                 ---------------------
  7686. F5   Move to previous entry                     F1  Show this help text
  7687. F6   Move to next entry
  7688. F7   Show previous screen of address book
  7689. F8   Show next screen of address book
  7690. F12  WhereIs (search through address book)
  7691.  
  7692. Address Selection Commands
  7693. --------------------------
  7694. F3   Exit the Address Select screen (without selecting an address)
  7695. F4   Select the currently highlighted entry
  7696. F8   Either Sets or Unsets all entries in this address book
  7697. F9   Set or Unset the highlighted entry
  7698. </PRE>
  7699. <!--chtml else-->
  7700. <PRE>
  7701. Navigating the List of Messages                 General Pine Commands
  7702. -------------------------------                 ---------------------
  7703.  P   Move to previous entry                     ?  Show this help text
  7704.  N   Move to next entry
  7705.  -   Show previous screen of address book
  7706. Spc  Show next screen of address book
  7707.  W   WhereIs (search through address book)
  7708.  
  7709. Address Selection Commands
  7710. --------------------------
  7711.  E   Exit the Address Select screen (without selecting an address)
  7712.  S   Select the currently highlighted entry
  7713.  X   Set or Unset the highlighted entry
  7714.  A   Either Sets or Unsets all entries in this address book
  7715. </PRE>
  7716. <!--chtml endif-->
  7717. <P>
  7718.  
  7719. Mark the entries you wish to select with the "X Set/Unset"
  7720. command.  Type "S Select" to select all of the entries you
  7721. have marked, just as if you had typed them in by hand.
  7722. <P>
  7723.  
  7724. An alternative method of composing a message to entries in your
  7725. address book(s) is to first use the "Select" command from
  7726. the address book maintenance screen and then the "Apply"
  7727. "ComposeTo" command to start the composer composing to the
  7728. selected entries.
  7729. <P>
  7730.  
  7731. FOR MORE INFORMATION on addressing see
  7732. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7733. <A HREF="h_abook_opened">Address Book Screen's</A>
  7734. help text.
  7735. <P>
  7736. <End of help on this topic>
  7737. </BODY>
  7738. </HTML>
  7739. ===== h_abook_select_nicks_take =====
  7740. <HTML>
  7741. <HEAD>
  7742. <TITLE>Take Address Nickname Selection Explained</TITLE>
  7743. </HEAD>
  7744. <BODY>
  7745. <H1>TAKEADDR: SELECT NICKNAME</H1>
  7746. <!--chtml if pinemode="function_key"-->
  7747. <PRE>
  7748. Navigating the List of Messages                 General Pine Commands
  7749. -------------------------------                 ---------------------
  7750. F5   Move to previous entry                     F1  Show this help text
  7751. F6   Move to next entry
  7752. F7   Show previous screen of address book
  7753. F8   Show next screen of address book
  7754. F12  WhereIs (search through address book)
  7755.  
  7756. Message Selection Commands
  7757. --------------------------
  7758. F3   Exit the Nickname Select screen (without selecting an address)
  7759. F4   Select the currently highlighted entry
  7760. </PRE>
  7761. <!--chtml else-->
  7762. <PRE>
  7763. Navigating the List of Messages                 General Pine Commands
  7764. -------------------------------                 ---------------------
  7765.  P   Move to previous entry                     ?  Show this help text
  7766.  N   Move to next entry
  7767.  -   Show previous screen of address book
  7768. Spc  Show next screen of address book
  7769.  W   WhereIs (search through address book)
  7770.  
  7771. Message Selection Commands
  7772. --------------------------
  7773.  E   Exit the Nickname Select screen (without selecting an address)
  7774.  S   Select the currently highlighted entry
  7775. </PRE>
  7776. <!--chtml endif-->
  7777. <P>
  7778.  
  7779. This screen is designed to let you modify or add to an existing
  7780. address book entry.  You have already selected the name(s) and
  7781. address(es) through "Take Address".  This screen simply lets
  7782. you scan your address books and select the nickname to be
  7783. changed/augmented.  If you want to add a new entry, then you are in
  7784. the wrong place-- Select "Exit" command.
  7785. <P>
  7786.  
  7787. FOR MORE INFORMATION on addressing see
  7788. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7789. <A HREF="h_abook_opened">Address Book Screen's</A>
  7790. help text.
  7791. <P>
  7792. <End of help on this topic>
  7793. </BODY>
  7794. </HTML>
  7795. ===== h_abook_select_nick =====
  7796. <HTML>
  7797. <HEAD>
  7798. <TITLE>Nickname Selection Explained</TITLE>
  7799. </HEAD>
  7800. <BODY>
  7801. <H1>SELECT NICKNAME</H1>
  7802. <!--chtml if pinemode="function_key"-->
  7803. <PRE>
  7804. Navigating the List of Messages                 General Pine Commands
  7805. -------------------------------                 ---------------------
  7806. F5   Move to previous entry                     F1  Show this help text
  7807. F6   Move to next entry
  7808. F7   Show previous screen of address book
  7809. F8   Show next screen of address book
  7810. F12  WhereIs (search through address book)
  7811.  
  7812. Message Selection Commands
  7813. --------------------------
  7814. F3   Exit the Nickname Select screen (without selecting an address)
  7815. F4   Select the currently highlighted entry
  7816. </PRE>
  7817. <!--chtml else-->
  7818. <PRE>
  7819. Navigating the List of Messages                 General Pine Commands
  7820. -------------------------------                 ---------------------
  7821.  P   Move to previous entry                     ?  Show this help text
  7822.  N   Move to next entry
  7823.  -   Show previous screen of address book
  7824. Spc  Show next screen of address book
  7825.  W   WhereIs (search through address book)
  7826.  
  7827. Message Selection Commands
  7828. --------------------------
  7829.  E   Exit the Nickname Select screen (without selecting an address)
  7830.  S   Select the currently highlighted entry
  7831. </PRE>
  7832. <!--chtml endif-->
  7833. <P>
  7834.  
  7835. This screen is designed to let you look at the nicknames in your address
  7836. books before choosing a new one.
  7837. <P>
  7838.  
  7839. FOR MORE INFORMATION on addressing see
  7840. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7841. <A HREF="h_abook_opened">Address Book Screen's</A>
  7842. help text.
  7843. <P>
  7844. <End of help on this topic>
  7845. </BODY>
  7846. </HTML>
  7847. ===== h_takeaddr_screen =====
  7848. <HTML>
  7849. <HEAD>
  7850. <TITLE>Take Address Screen Explained</TITLE>
  7851. </HEAD>
  7852. <BODY>
  7853. <H1>TAKE ADDRESS COMMANDS</H1>
  7854. <!--chtml if pinemode="function_key"-->
  7855. <PRE>
  7856. Navigating the List of Addresses       Address Selection Commands        
  7857. --------------------------------       --------------------------        
  7858.  F5  Move to previous entry            F3  Exit without taking address
  7859.  F6  Move to next entry                F4  Take current address(es)
  7860.  F7  Show previous page of address list
  7861.  F8  Show next page of address list
  7862.  F2  WhereIs (search list)
  7863.                    --------------
  7864. Mode Toggle            F9  Set/Unset current address
  7865. -----------            F10 Set all
  7866.  F12 Toggle between List and single mode       F11 Unset all
  7867. </PRE>
  7868. <!--chtml else-->
  7869. <PRE>
  7870. Navigating the List of Addresses       Address Selection Commands
  7871. --------------------------------       --------------------------
  7872.  P  Move to previous entry              <  Exit without taking address
  7873.  N  Move to next entry                  T  Take address
  7874.  -  Show previous page of address list
  7875. Spc Show next page of address list
  7876.  W  WhereIs (search list)              List Mode
  7877.                        ---------
  7878. Single Mode                             X  Set/Unset current address
  7879. -----------                             A  Set all addresses
  7880.  L  Switch to list mode                 U  Unset all addresses
  7881.                     S  Switch to single mode
  7882. </PRE>
  7883. <!--chtml endif-->
  7884.  
  7885. <H2>Description of the Take Address Screen</H2>
  7886.  
  7887. This screen is designed to let you select one or more address/name
  7888. combinations from the current message into your address book.  The
  7889. cursor is initially placed on the line with the message author.  Other
  7890. lines include the names of people and/or mailing lists who also
  7891. received the message.  Other people "involved" in the
  7892. message (e.g. the person named as Reply-To:) are also listed here.
  7893. <P>
  7894.  
  7895. The simple case is adding a new, single entry into your address book. To
  7896. do this, simply highlight the correct line and press 
  7897. <!--chtml if pinemode="function_key"-->
  7898. F4.
  7899. <!--chtml else-->
  7900. "T".
  7901. <!--chtml endif-->
  7902. To create a new list or add to an existing list, switch the screen display
  7903. into List Mode by pressing
  7904. <!--chtml if pinemode="function_key"-->
  7905. F12.
  7906. <!--chtml else-->
  7907. "L".
  7908. <!--chtml endif-->
  7909. In List Mode, you select the
  7910. group of addresses you wish to manipulate by marking them with an
  7911. "X".
  7912. The Set/Unset
  7913. <!--chtml if pinemode="function_key"-->
  7914. (F9)
  7915. <!--chtml else-->
  7916. ("X")
  7917. <!--chtml endif-->
  7918. command will turn the "X" on for the
  7919. highlighted address if it was off or turn it off if it was previously on.
  7920. The SetAll command will select all of the addresses, and the UnSetAll
  7921. command will turn off all the selections.  Once you've gotten the
  7922. selection the way you want it, you may create a new list by pressing
  7923. <!--chtml if pinemode="function_key"-->
  7924. F4.
  7925. <!--chtml else-->
  7926. "T".
  7927. <!--chtml endif-->
  7928. <P>
  7929.  
  7930. In both the simple and list cases, after choosing to take the address,
  7931. you will be asked for the nickname of the entry.  Typing in a new name
  7932. creates the new entry/list.  Entering an existing nickname will replace
  7933. the entry (simple case) or add to the list (list case).  Alternatively,
  7934. you can press Ctrl-T at the nickname prompt and select an existing
  7935. nickname from your address book.
  7936. <P>
  7937.  
  7938. You will normally start in Single Mode, unless you used the Apply command
  7939. to startup the TakeAddr screen, in which case you will start in List Mode.
  7940. You may switch between the two modes at any time.  If you've already
  7941. selected several addresses in List Mode, those will be remembered when you
  7942. switch to Single Mode and then back to List Mode.  The set of addresses
  7943. that are pre-selected when you start in List Mode are the From addresses
  7944. of all of the messages you are operating on.  You may, of course, easily
  7945. erase those selections with the UnSetAll command.
  7946. <P>
  7947.  
  7948. If you have more than one writable address book, you will be prompted for
  7949. the name of the address book you wish to add the new entry to before
  7950. anything else. You can use ^N and ^P to choose among the defined address
  7951. books, or type in the address book name.
  7952. <P>
  7953.  
  7954. FOR MORE INFORMATION on addressing see
  7955. <A HREF="h_address_format">Explanation of Address formats</A>, and the
  7956. <A HREF="h_abook_opened">Address Book Screen's</A>
  7957. help text.
  7958. <P>
  7959. <End of help on this topic>
  7960. </BODY>
  7961. </HTML>
  7962. ============= h_abook_view ========================
  7963. <HTML>
  7964. <HEAD>
  7965. <TITLE>Address Book View Explained</TITLE>
  7966. </HEAD>
  7967. <BODY>
  7968. This function allows you to view the contents of an address book entry. You
  7969. can only view one entry at a time.
  7970. <P>
  7971. <DL>
  7972. <DT>Help
  7973. <!--chtml if pinemode="function_key"-->
  7974. (F1)
  7975. <!--chtml else-->
  7976. (?)
  7977. <!--chtml endif-->
  7978. </DT>
  7979. <DD>
  7980. Display this help text.
  7981.  
  7982. <DT>Abook
  7983. <!--chtml if pinemode="function_key"-->
  7984. (F3)
  7985. <!--chtml else-->
  7986. (<)
  7987. <!--chtml endif-->
  7988. </DT>
  7989. <DD>
  7990. Go back to index of address book entries.
  7991.  
  7992. <DT>Update
  7993. <!--chtml if pinemode="function_key"-->
  7994. (F4)
  7995. <!--chtml else-->
  7996. (U)
  7997. <!--chtml endif-->
  7998. </DT>
  7999. <DD>
  8000. Update (modify) this entry.
  8001.  
  8002. <DT>ComposeTo
  8003. <!--chtml if pinemode="function_key"-->
  8004. (F5)
  8005. <!--chtml else-->
  8006. (C)
  8007. <!--chtml endif-->
  8008. </DT>
  8009. <DD>Compose a message to the address(es) in this entry.
  8010.  
  8011. <DT>Role
  8012. <!--chtml if pinemode="function_key"-->
  8013. (F6)
  8014. <!--chtml else-->
  8015. (#)
  8016. <!--chtml endif-->
  8017. </DT>
  8018. <DD>Compose a message to the address(es) in this entry using roles.
  8019.  
  8020. <DT>Prev Page
  8021. <!--chtml if pinemode="function_key"-->
  8022. (F7)
  8023. <!--chtml else-->
  8024. (-)
  8025. <!--chtml endif-->
  8026. </DT>
  8027. <DD>
  8028. Show the previous page of the current entry.
  8029.  
  8030. <DT>Next Page
  8031. <!--chtml if pinemode="function_key"-->
  8032. (F8)
  8033. <!--chtml else-->
  8034. (Space)
  8035. <!--chtml endif-->
  8036. </DT>
  8037. <DD>
  8038. Show the next page of the current entry.
  8039.  
  8040. <DT>Print
  8041. <!--chtml if pinemode="function_key"-->
  8042. (F9)
  8043. <!--chtml else-->
  8044. (%)
  8045. <!--chtml endif-->
  8046. </DT>
  8047. <DD>Print the current entry.  You can select the
  8048. printer or the print command via the "Setup" command
  8049. on the Main menu.
  8050.  
  8051. <DT>WhereIs
  8052. <!--chtml if pinemode="function_key"-->
  8053. (F10)
  8054. <!--chtml else-->
  8055. (W)
  8056. <!--chtml endif-->
  8057. </DT>
  8058. <DD>Search the entry for a string of letters.  If it is
  8059. found, move to it.  The string can be one word or a phrase.
  8060. If there are multiple occurrences, the cursor moves to the
  8061. first occurrence beyond the current cursor position.
  8062.  
  8063. <DT>Fwd Email
  8064. <!--chtml if pinemode="function_key"-->
  8065. (F11)
  8066. <!--chtml else-->
  8067. (F)
  8068. <!--chtml endif-->
  8069. </DT>
  8070. <DD>Begin composition of a new mail message with the displayed
  8071. text already inserted in the message body.
  8072.  
  8073. </DL>
  8074. <P>
  8075. <End of help on this topic>
  8076. </BODY>
  8077. </HTML>
  8078. ============= h_ldap_view ========================
  8079. <HTML>
  8080. <HEAD>
  8081. <TITLE>LDAP Response View Explained</TITLE>
  8082. </HEAD>
  8083. <BODY>
  8084. This function allows you to view the contents of a directory entry. You
  8085. can only view one entry at a time.
  8086. <P>
  8087. <DL>
  8088. <DT>Help
  8089. <!--chtml if pinemode="function_key"-->
  8090. (F1)
  8091. <!--chtml else-->
  8092. (?)
  8093. <!--chtml endif-->
  8094. </DT>
  8095. <DD>
  8096. Display this help text.
  8097.  
  8098. <DT>Results Index
  8099. <!--chtml if pinemode="function_key"-->
  8100. (F3)
  8101. <!--chtml else-->
  8102. (<)
  8103. <!--chtml endif-->
  8104. </DT>
  8105. <DD>Go back to index of search results.
  8106.  
  8107. <DT>ComposeTo
  8108. <!--chtml if pinemode="function_key"-->
  8109. (F5)
  8110. <!--chtml else-->
  8111. (C)
  8112. <!--chtml endif-->
  8113. </DT>
  8114. <DD>Compose a message to the address(es) in this entry.
  8115.  
  8116. <DT>Role
  8117. <!--chtml if pinemode="function_key"-->
  8118. (F6)
  8119. <!--chtml else-->
  8120. (#)
  8121. <!--chtml endif-->
  8122. </DT>
  8123. <DD>Compose a message to the address(es) in this entry using roles.
  8124.  
  8125. <DT>Prev Page
  8126. <!--chtml if pinemode="function_key"-->
  8127. (F7)
  8128. <!--chtml else-->
  8129. (-)
  8130. <!--chtml endif-->
  8131. </DT>
  8132. <DD>
  8133. Show the previous page of the current entry.
  8134.  
  8135. <DT>Next Page
  8136. <!--chtml if pinemode="function_key"-->
  8137. (F8)
  8138. <!--chtml else-->
  8139. (Space)
  8140. <!--chtml endif-->
  8141. </DT>
  8142. <DD>
  8143. Show the next page of the current entry.
  8144.  
  8145. <DT>Print
  8146. <!--chtml if pinemode="function_key"-->
  8147. (F9)
  8148. <!--chtml else-->
  8149. (%)
  8150. <!--chtml endif-->
  8151. </DT>
  8152. <DD>Print the current entry on paper.  You can select the
  8153. printer or the print command via the "Setup" command
  8154. on the Main menu.
  8155.  
  8156. <DT>WhereIs
  8157. <!--chtml if pinemode="function_key"-->
  8158. (F10)
  8159. <!--chtml else-->
  8160. (W)
  8161. <!--chtml endif-->
  8162. </DT>
  8163. <DD>Search the entry for a string of letters.  If it is
  8164. found, move to it.  The string can be one word or a phrase.
  8165. If there are multiple occurrences, the cursor moves to the
  8166. first occurrence beyond the current cursor position.
  8167.  
  8168. <DT>Fwd Email
  8169. <!--chtml if pinemode="function_key"-->
  8170. (F11)
  8171. <!--chtml else-->
  8172. (F)
  8173. <!--chtml endif-->
  8174. </DT>
  8175. <DD>Begin composition of a new mail message with the displayed
  8176. text already inserted in the message body.
  8177.  
  8178. <DT>Save
  8179. <!--chtml if pinemode="function_key"-->
  8180. (F12)
  8181. <!--chtml else-->
  8182. (S)
  8183. <!--chtml endif-->
  8184. </DT>
  8185. <DD>Save the displayed entry to one of your address books or export
  8186. it to a file.
  8187. </DL>
  8188. <P>
  8189. <End of help on this topic>
  8190. </BODY>
  8191. </HTML>
  8192. ===== h_attachment_screen =====
  8193. <HTML>
  8194. <HEAD>
  8195. <TITLE>Attachment Index Screen Explained</TITLE>
  8196. </HEAD>
  8197. <BODY>
  8198. The "ATTACHMENT INDEX" displays a list of the current
  8199. message's attachments, and allows various operations on them.  The
  8200. first attachment is usually the message text, but does not include the
  8201. header portion of the message.
  8202. <P>
  8203. Available commands include:
  8204. <P>
  8205. <DL>
  8206.  
  8207. <DT>Help</DT>
  8208. <DD>Show this help text.
  8209.  
  8210. <DT>Msg #<I>num</I></DT>
  8211. <DD>Leave this screen without displaying or saving any attachments.
  8212.  
  8213. <DT>View</DT>
  8214. <DD>View the currently selected attachment.
  8215.  
  8216. <DT>Prev Attach</DT>
  8217. <DD>Move to previous attachment.
  8218.  
  8219. <DT>Next Attach</DT>
  8220. <DD>Move to next attachment.
  8221.  
  8222. <DT>Prev Page</DT>
  8223. <DD>Previous page of the listed attachments.
  8224.  
  8225. <DT>Next Page</DT>
  8226. <DD>Next page of the listed attachments.
  8227.  
  8228. <DT>Delete</DT>
  8229. <DD>Mark the currently selected attachment for Deletion.  The delete
  8230. flag <EM>only</EM> has effect when saving the message to a folder.
  8231. Attachments marked for deletion are exluded from the messsage when
  8232. it is saved.  In addition, the delete mark <EM>only</EM> applies to
  8233. this Pine session.
  8234.  
  8235. <DT>Undelete</DT>
  8236. <DD>Turn off the Delete flag for the selected attachment.
  8237.  
  8238. <DT>Save</DT>
  8239. <DD>Save the selected attachment to a file.  If the attachment is of
  8240. type "RFC822/Message", then the attachment will be saved to
  8241. the specified mail folder.
  8242.  
  8243. <DT>Export</DT>
  8244. <DD>If the attachment is of
  8245. type "RFC822/Message", then "Export" is used to
  8246. copy the message to a file in the same way this command works on 
  8247. messages in the MESSAGE INDEX and MESSAGE TEXT screens.
  8248.  
  8249. <DT>Pipe</DT>
  8250. <DD>Pipe the attachment contents into a UNIX command (if enabled).
  8251. A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
  8252.  
  8253. <DT>WhereIs</DT>
  8254. <DD>Find a matching string in the attachment list.
  8255.  
  8256. <DT>AboutAttch</DT>
  8257. <DD>Examine various aspects of the selected attachment.
  8258.  
  8259. <DT>Print</DT>
  8260. <DD>Print the selected attachment.
  8261.  
  8262. <DT>Forward</DT>
  8263. <DD>Forward the selected attachment as an attachment.
  8264. </DL>
  8265.  
  8266. <P>
  8267.  
  8268. All attachments can be saved or piped into a UNIX command, but some may
  8269. not be readily displayed by either Pine or an external tool.  In such
  8270. cases, the reason why the message cannot be displayed is displayed on
  8271. Pine's message line.
  8272. <P>
  8273. <End of help on this topic>
  8274. </BODY>
  8275. </HTML>
  8276. ============= h_mail_text_att_view ========================
  8277. <HTML>
  8278. <HEAD>
  8279. <TITLE>Attachment View Screen Explained</TITLE>
  8280. </HEAD>
  8281. <BODY>
  8282. This function allows you to view the contents of a text attachment. You
  8283. can only view one attachment at a time.
  8284. <P>
  8285. Available commands include:
  8286. <P>
  8287. <DL>
  8288.  
  8289. <DT>Help</DT>
  8290. <DD>Display this help text
  8291.  
  8292. <DT>AttchIndex</DT>
  8293. <DD>Leave viewer and return to the "ATTACHMENT INDEX" screen
  8294.  
  8295. <DT>Prev Page</DT>
  8296. <DD>Show the previous page of the current attachment.
  8297.  
  8298. <DT>Next Page</DT>
  8299. <DD>Show the next page of the current attachment by pressing the space bar.
  8300.  
  8301. <DT>Delete</DT>
  8302. <DD>Mark the viewed attachment for Deletion.  The delete
  8303. flag <EM>only</EM> has affect when saving the message to a folder.
  8304. Attachments marked for deletion are exluded from the messsage when
  8305. it is saved.  In addition, the delete mark <EM>only</EM> applies to
  8306. this Pine session.
  8307.  
  8308. <DT>Undelete</DT>
  8309. <DD>Turn off the Delete flag for the selected attachment.
  8310.  
  8311. <DT>Save</DT>
  8312. <DD>Copy the current attachment to a file.  If you just enter
  8313. a filename, the attachment will be saved with that name in
  8314. your home directory 
  8315. <!--chtml if pinemode="running"-->
  8316. (which, in the present configuration of your system, is
  8317.  "<!--#echo var="HOME_DIR"-->") 
  8318. <!--chtml endif-->
  8319. or current working directory
  8320. <!--chtml if pinemode="running"-->
  8321. (which, at least for your current Pine "session," 
  8322. is "<!--#echo var="CURRENT_DIR"-->") 
  8323. <!--chtml endif-->, depending on the
  8324. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  8325. configuration setting.  You may enter the full
  8326. path and filename to save it in another directory instead.
  8327.  
  8328. <DT>Export</DT>
  8329. <DD>If the attachment is of
  8330. type "RFC822/Message", then "Export" is used to
  8331. copy the message to a file in the same way this command works on 
  8332. messages in the MESSAGE INDEX and MESSAGE TEXT screens.
  8333. (If you have any <A HREF="h_config_display_filters">Display-Filters</A>
  8334. defined, they may affect the contents of the exported file.)
  8335.  
  8336. <DT>Pipe</DT>
  8337. <DD>Pipe the attachment contents into a UNIX command (if enabled)
  8338.  
  8339. <DT>WhereIs</DT>
  8340. <DD>Search the attachment for a string of letters.  If it is
  8341. found, move to it.  The string can be one word or a phrase.
  8342. If there are multiple occurrences, the cursor moves to the
  8343. first occurrence beyond the current cursor position.
  8344.  
  8345. <DT>Print</DT>
  8346. <DD>Print the current attachment on paper.  You can select the
  8347. printer or the print command via the "Setup" command
  8348. on the Main menu.
  8349.  
  8350. <DT>Forward</DT>
  8351. <DD>Forward the selected attachment as an attachment.
  8352. </DL>
  8353. <P>
  8354. <End of help on this topic>
  8355. </BODY>
  8356. </HTML>
  8357. ============= h_simple_text_view ==============
  8358. <HTML>
  8359. <HEAD>
  8360. <TITLE>Simple Text View Screen Explained</TITLE>
  8361. </HEAD>
  8362. <BODY>
  8363.  
  8364. The following commands are available on this screen:
  8365. <P>
  8366. <DL>
  8367. <DT>Help</DT>
  8368. <DD>Show this help text
  8369.  
  8370. <DT>Exit</DT>
  8371. <DD>Exit Viewer, and go back to mail processing
  8372.  
  8373. <DT>Prev Page</DT>
  8374. <DD>Show the previous page text
  8375.  
  8376. <DT>Next Page</DT>
  8377. <DD>Show the next page of text by pressing the space bar
  8378.  
  8379. <DT>Print</DT>
  8380. <DD>Print the displayed text on paper.  You can select the
  8381. printer or the print command via the "Setup" command
  8382. on the Main menu.
  8383.  
  8384. <DT>Fwd Email</DT>
  8385. <DD>Begin composition of a new mail message with the displayed
  8386. text already inserted in the message body.
  8387.  
  8388. <DT>Save</DT>
  8389. <DD>Copy the displayed text to a file.  If you just enter
  8390. a filename, the attachment will be saved with that name in
  8391. your 
  8392. home directory 
  8393. <!--chtml if pinemode="running"-->
  8394. (which, in the present configuration of your system, is
  8395.  "<!--#echo var="HOME_DIR"-->") 
  8396. <!--chtml endif-->
  8397. or current working directory
  8398. <!--chtml if pinemode="running"-->
  8399. (which, at least for your current Pine "session," 
  8400. is "<!--#echo var="CURRENT_DIR"-->") 
  8401. <!--chtml endif-->, depending on the
  8402. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  8403. configuration setting.   You may enter the full
  8404. path and filename to save it in another directory instead.
  8405.  
  8406. <DT>WhereIs</DT>
  8407. <DD>Search the attachment for a string of letters.  If it is
  8408. found, move to it.  The string can be one word or a phrase.
  8409. If there are multiple occurrences, the cursor moves to the
  8410. first occurrence beyond the current cursor position.
  8411. </DL>
  8412. <P>
  8413. <End of help on this topic>
  8414. </BODY>
  8415. </HTML>
  8416. ======= h_pine_for_windows ========
  8417. <HTML>
  8418. <HEAD>
  8419. <TITLE>GETTING HELP IN PC-PINE</TITLE>
  8420. </HEAD>
  8421. <BODY>
  8422. <H1>Getting Help In PC-Pine</H1>
  8423.  
  8424. <P>
  8425. PC-Pine offers general and specific help text. From the <A
  8426. HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
  8427. MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
  8428. specific help for that screen is available from the toolbar Help menu or
  8429. with the 
  8430. <!--chtml if pinemode="function_key"-->
  8431. "F1" key.
  8432. <!--chtml else-->
  8433. "?" or "Ctrl-G" keys. "Ctrl-G" is used where
  8434. typing "?" would be mistaken as entering text.
  8435. <!--chtml endif-->
  8436.  
  8437. <P>
  8438. Although this version of Pine is for Microsoft Windows, it is not
  8439. considered a full "Graphical User Interface" application. 
  8440. Yet, many of the controls that Windows users are accustomed to seeing, 
  8441. such as scrollbars and toolbars, are available.
  8442.  
  8443. <P>
  8444. PC-Pine offers considerable mouse support.  You can view what is
  8445. "click-able" by dragging your mouse over any screen; when the
  8446. arrow cursor changes into a hand, you found something. Mouse-click
  8447. possibilities include navigating between screens and folders and
  8448. double-clicking on hyperlinks to open your Web browser.
  8449. Context-sensitive pop-up menus appear with a right-click on your PC-Pine
  8450. screen.  Examples of right-click options include "copy" after
  8451. selecting text to copy and "View in New Window" when you click
  8452. on a particular message in the Message Index. The menu choices available
  8453. to you will vary based upon what screen is open, where on the screen your
  8454. cursor is located, and even what action you have already taken.
  8455.  
  8456. <P>
  8457. <End of help on this topic>
  8458. </BODY>
  8459. </HTML>
  8460. ===== h_composer =====
  8461. <HTML>
  8462. <HEAD>
  8463. <TITLE>COMPOSER COMMANDS</TITLE>
  8464. </HEAD>
  8465. <BODY>
  8466. <H1>COMPOSER COMMANDS</H1>
  8467.  
  8468. CURSOR MOTION KEYS                     |EDITING KEYS<BR>
  8469.   ^B (Left Arrow)   Back character     | ^D       Delete current character<BR>
  8470.   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character<BR>
  8471.   ^P (Up Arrow)     Previous line      | ^^       Set a <A HREF="h_compose_markcutpaste">mark</A><BR>
  8472.   ^N (Down Arrow)   Next line          | <!--chtml if pinemode="function_key"-->F9<!--chtml else-->^K<!--chtml endif-->       <A HREF="h_compose_markcutpaste">Cut</A> marked text or<BR>
  8473.   ^A                Beginning of line  |           delete current line<BR>
  8474.   ^E                End of line        | <!--chtml if pinemode="function_key"-->F10<!--chtml else-->^U<!--chtml endif-->       <A HREF="h_compose_markcutpaste">Paste</A> text, undelete lines<BR>
  8475.   ^Y                Previous page      |           cut with ^K, or unjustify<BR>
  8476.   ^V                Next page          |-------------------------------------<BR>
  8477.   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS<BR>
  8478. ---------------------------------------| <!--chtml if pinemode="function_key"-->F6<!--chtml else-->^W<!--chtml endif-->       <A HREF="h_composer_search">Whereis</A> (search for string)<BR>
  8479. MESSAGE COMMANDS | GENERAL COMMANDS    | <!--chtml if pinemode="function_key"-->F12<!--chtml else-->^T <!--chtml endif-->      <A HREF="h_compose_spell">Spell checker</A><BR>
  8480.  <!--chtml if pinemode="function_key"-->F3<!--chtml else-->^C<!--chtml endif-->   <A HREF="h_compose_cancel">Cancel</A>     |  <!--chtml if pinemode="function_key"-->F1<!--chtml else-->^G<!--chtml endif-->    Get help     | <!--chtml if pinemode="function_key"-->F4<!--chtml else-->^J<!--chtml endif-->       <A HREF="h_compose_justify">Justify</A> paragraph<BR>
  8481.  <!--chtml if pinemode="function_key"-->F11<!--chtml else-->^O <!--chtml endif-->  <A HREF="h_common_postpone">Postpone</A>   |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen<BR>
  8482.  <!--chtml if pinemode="function_key"-->F2<!--chtml else-->^X<!--chtml endif-->   <A HREF="h_compose_send">Send</A>       |  <!--chtml if pinemode="function_key"-->F6<!--chtml else-->^_<!--chtml endif-->    <A HREF="h_compose_alted">Alt. editor</A>  | <!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->       <A HREF="h_compose_readfile">Read in a file</A><BR>
  8483.  
  8484. <P>
  8485. NOTE:
  8486. <OL>
  8487.  <LI>For help on a particular command, hilite the bold text associated
  8488. with it above and hit Return.
  8489.  <LI> The availability of certain commands
  8490. is determined by Pine configuration files and system capabilities.
  8491. At some sites, certain commands may not be available due to security or
  8492. support concerns.
  8493.  <LI>Pine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
  8494. Ctrl-\, ESC.
  8495.  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
  8496. <A HREF="h_special_xon_xoff">"XOFF/XON"</A>.
  8497. </OL>
  8498.  
  8499. <P>
  8500. HINT: To move rapidly to the bottom of a message you are composing,
  8501. enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
  8502. with the Mark and Cut commands to eliminate large amounts of unwanted
  8503. text in a Reply.
  8504.  
  8505. <H2>Description of Composer</H2>
  8506.  
  8507. Pine has a built-in editing program which allows you to compose messages
  8508. without having to leave Pine.  The editor is designed to be very simple to
  8509. use so that you can get started writing email right away.
  8510.  
  8511. <P>
  8512. Messages are usually just text, about 80 columns wide.  Using upper and
  8513. lower case is encouraged.  On some systems the size limit of the message
  8514. is about 100,000 characters, which is about 2,000 lines.  You can include
  8515. punctuation and special characters found on most keyboards, but you can't
  8516. include characters with diacritical marks and certain special symbols.
  8517.  
  8518. <P>
  8519. Text automatically wraps as you type past the end of a line so you do not
  8520. have to hit return.  Using the
  8521. "<A HREF="h_compose_justify">Justify</A>" command,
  8522. you can also reformat text explicitly, perhaps after you have
  8523. deleted some text.
  8524.  
  8525. <P>
  8526. You can include other text files with the 
  8527. "<A HREF="h_compose_readfile">Read File</A>" command
  8528. which will prompt you for the name of the file to insert at the
  8529. current cursor postion.
  8530.  
  8531. <P>
  8532. <UL>
  8533. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8534. </UL>
  8535. <P>
  8536. <End of help on this topic>
  8537. </BODY>
  8538. </HTML>
  8539. ====== h_composer_browse =====
  8540. <HTML>
  8541. <HEAD>
  8542. <TITLE>BROWSER</TITLE>
  8543. </HEAD>
  8544. <BODY>
  8545. <H1>BROWSER</H1>
  8546. This screen lets you browse your files and directories.  To go to another 
  8547. directory (identified by "(dir)"), move the cursor to it and 
  8548. choose "Select" (the default choice on the menu); 
  8549. or choose "Goto" and enter the name of the directory.
  8550. <!--chtml if pinemode="os_windows"-->
  8551. <!--chtml else--> 
  8552. In Unix Pine, you may use 
  8553. "~" to refer to your home directory or "~user" to refer 
  8554. to another's home directory.  
  8555. <!--chtml endif--><P>
  8556. To select a file, move the cursor to it and 
  8557. choose "Select" (the default choice on the menu).  
  8558. <P>
  8559. <UL>
  8560. <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
  8561. inclusion in the 
  8562. message body (that is, you chose "Read File" with the cursor under 
  8563. the 
  8564. "----- Message Text -----" line
  8565. while composing, then "To Files"):  Since the file 
  8566. selected will become part of the message text, it must be in a format 
  8567. suitable for that (Pine does not check!), such as a plain text file.
  8568. Files of other formats (for example, graphics, databases, software 
  8569. programs) should be 
  8570. <B>attached</B> to the message instead --
  8571. by moving the cursor in the COMPOSE MESSAGE screen into the 
  8572. message header area and pressing 
  8573. <!--chtml if pinemode="function_key"-->
  8574. F6.
  8575. <!--chtml else-->
  8576. Ctrl-J.
  8577. <!--chtml endif--> 
  8578.  
  8579. <P><LI>
  8580. Note <B>if</B> you are currently using the BROWSER for saving a message 
  8581. attachment, or exporting a message, to a file: You can use the Add command to 
  8582. provide the name for a new file to save/export to, and then select that name 
  8583. to use it for the save/export operation.  Back at the prompt 
  8584. "EXPORT: Copy message to file in ..." hit Enter, then choose 
  8585. either Overwrite or Append (it doesn't make a difference, since the file is 
  8586. so far empty).  Note: If you cancel the 
  8587. operation at that point, the file created with the Add command will remain 
  8588. 0 bytes in size.
  8589.  
  8590. </UL>
  8591. <P><UL>
  8592. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8593. </UL>
  8594. <P>
  8595. <End of help on this topic>
  8596. </BODY>
  8597. </HTML>
  8598. ====== h_composer_ins =====
  8599. <HTML>
  8600. <HEAD>
  8601. <TITLE>INSERT TEXT FILE</TITLE>
  8602. </HEAD>
  8603. <BODY>
  8604. <H1>INSERT TEXT FILE</H1>
  8605.  
  8606. Use this function to insert a text file. The file name
  8607. given can be an absolute file path name for your system
  8608. <!--chtml if pinemode="os_windows"-->
  8609. (for example, "H:\SIGFILES\FULLINFO.TXT"), a file
  8610. with a relative pathname, or simply a file name without
  8611. drive or directory specification.  
  8612. <!--chtml else-->
  8613. (for example, "/tmp/exported.earlier" on Unix hosts), 
  8614. a file in your home directory, or a file path relative to your 
  8615. home directory.  In Unix Pine, you may use "~" to refer to 
  8616. your home directory or "~user" to refer to another
  8617. account's home directory.
  8618. <!--chtml endif-->
  8619. <P>
  8620. No wild card characters may be used.  
  8621. The file must reside on the system running Pine.
  8622. <P>
  8623. If the 
  8624. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  8625. feature is set, names are relative to your current working directory 
  8626. <!--chtml if pinemode="running"-->
  8627. (which, at least for your current Pine "session," 
  8628. is "<!--#echo var="CURRENT_DIR"-->") 
  8629. <!--chtml endif-->
  8630. rather than your home directory
  8631. <!--chtml if pinemode="running"-->
  8632. (which, in the present configuration of your system, is
  8633.  "<!--#echo var="HOME_DIR"-->") 
  8634. <!--chtml endif-->
  8635. .
  8636. <P><UL>
  8637. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8638. </UL>
  8639. <P>
  8640. <End of help on this topic>
  8641. </BODY>
  8642. </HTML>
  8643. ====== h_composer_ins_m =====
  8644. <HTML>
  8645. <HEAD>
  8646. <TITLE>INSERT MESSAGE</TITLE>
  8647. </HEAD>
  8648. <BODY>
  8649. <H1>INSERT MESSAGE</H1>
  8650.  
  8651. Type in the number of a message in the currently open folder to insert it
  8652. into your message.
  8653. <P><UL>
  8654. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8655. </UL>
  8656. <P>
  8657. <End of help on this topic>
  8658. </BODY>
  8659. </HTML>
  8660. ====== h_composer_search =====
  8661. <HTML>
  8662. <HEAD>
  8663. <TITLE>Explanation of Composer Whereis Command </TITLE>
  8664. </HEAD>
  8665. <BODY>
  8666. <H1>Help For Whereis Command</H1>
  8667.  
  8668. Whereis is used to search the message for a word or part of a word.
  8669. When searching in the composer, only the message part of your mail is
  8670. searched, and the cursor is put on the first occurrence appearing
  8671. after the location of the cursor.  The search will wrap to the
  8672. beginning of the message when it no longer finds matches in the
  8673. remainder of the message.
  8674.  
  8675. To search for the same string a second time, press 
  8676. <!--chtml if pinemode="function_key"-->
  8677. "F6"
  8678. <!--chtml else-->
  8679. "^W"
  8680. <!--chtml endif-->
  8681. to begin search and then just press RETURN to accept the previous
  8682. search string shown in square brackets rather than entering a new
  8683. search string.<P>
  8684.  
  8685. The "Search" prompt has several sub-command available:
  8686.  
  8687. <DL>
  8688. <DT>Get Help</DT>
  8689. <DD> Takes you to this help page.
  8690.  
  8691. <DT>Cancel</DT>
  8692. <DD> Cancels the prompt.  No search takes place.
  8693.  
  8694. <DT>First Line</DT>
  8695. <DD> Takes you back to the composer with the cursor on the first character
  8696. of the first line of text.
  8697.  
  8698. <DT>Last Line</DT>
  8699. <DD> Takes you back to the composer with the cursor on the last character
  8700. of the last line of text.
  8701.  
  8702. <DT>Replace (Optional)</DT>
  8703. <DD> This sub-command is enabled by the 
  8704. <A HREF="h_config_enable_search_and_repl">"enable-search-and-replace"</A>
  8705. feature; see its help screen for details on how replacing works.
  8706.  
  8707. </DL>
  8708.  
  8709. <End of help on this topic>
  8710. </BODY>
  8711. </HTML>
  8712. ====== h_sigedit_search =====
  8713. <HTML>
  8714. <HEAD>
  8715. <TITLE>Explanation of Whereis Command </TITLE>
  8716. </HEAD>
  8717. <BODY>
  8718. <H1>Help For Whereis Command</H1>
  8719.  
  8720. Whereis is used to search for a word or part of a word.
  8721. When searching the cursor is put on the first occurrence appearing
  8722. after the location of the cursor.  The search will wrap to the
  8723. beginning of the signature when it no longer finds matches in the
  8724. remainder of the signature.
  8725.  
  8726. To search for the same string a second time, press 
  8727. <!--chtml if pinemode="function_key"-->
  8728. "F6"
  8729. <!--chtml else-->
  8730. "^W"
  8731. <!--chtml endif-->
  8732. to begin search and then just press RETURN to accept the previous
  8733. search string shown in square brackets rather than entering a new
  8734. search string.<P>
  8735.  
  8736. The "Search" prompt has several sub-command available:
  8737.  
  8738. <DL>
  8739. <DT>Get Help</DT>
  8740. <DD> Takes you to this help page.
  8741.  
  8742. <DT>Cancel</DT>
  8743. <DD> Cancels the prompt.  No search takes place.
  8744.  
  8745. <DT>First Line</DT>
  8746. <DD> Takes you back to the composer with the cursor on the first character
  8747. of the first line of text.
  8748.  
  8749. <DT>Last Line</DT>
  8750. <DD> Takes you back to the composer with the cursor on the last character
  8751. of the last line of text.
  8752.  
  8753. <DT>Replace (Optional)</DT>
  8754. <DD> This sub-command is enabled by the 
  8755. <A HREF="h_config_enable_search_and_repl">"enable-search-and-replace"</A>
  8756. feature; see its help screen for details on how replacing works.
  8757.  
  8758. </DL>
  8759.  
  8760. <End of help on this topic>
  8761. </BODY>
  8762. </HTML>
  8763. ======= h_composer_to ====
  8764. <HTML>
  8765. <HEAD>
  8766. <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
  8767. </HEAD>
  8768. <BODY>
  8769. <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
  8770.  
  8771. <H2>The "To:" field</H2>
  8772. The address you enter here must be a valid email address which is reachable
  8773. from your site. 
  8774.  
  8775. <H2>Email Address Format</H2>
  8776. You may enter a full name and email address, 
  8777. <!--chtml if pinemode="os_windows"-->
  8778. <!--chtml else-->
  8779. a local (meaning, on the same 
  8780. host as the one you are running Pine on) username that Pine will
  8781. complete for you, 
  8782. <!--chtml endif-->
  8783. the nickname of someone in a 
  8784. <A HREF="h_abook_opened">Pine Address Book</A>, or a local
  8785. mail alias defined by your system administrator.  When you move the cursor
  8786. out of this field, the nicknames will be expanded to the addresses in your
  8787. address book, and the local usernames will be expanded to include the 
  8788. persons' actual names.  You may enter as many addresses as you wish, but they 
  8789. must be separated by commas.  You can move around this and other header fields
  8790. with the arrow keys and use many of the usual composer editing keys.
  8791. <P>
  8792. <UL>
  8793. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  8794. </UL>
  8795.  
  8796. <P>
  8797. <H2>MESSAGE HEADER COMMANDS</H2>
  8798. <!--chtml if pinemode="function_key"-->
  8799. CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------<BR>
  8800. ^B (Left Arrow)    Back character       | ^D       Delete current character<BR>
  8801. ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character<BR>
  8802. ^P (Up Arrow)      Previous line        |<BR>
  8803. ^N (Down Arrow)    Next line            | F9       Cut marked text or<BR>
  8804. ^A                 Beginning of line    |            delete current line<BR>
  8805. ^E                 End of line          | F10      Undelete line(s)<BR>
  8806. F7                 Previous page        | ^W       <A HREF="h_composer_search">Whereis</A> (search text)<BR>
  8807. F8                 Next page            |-------------------------------------<BR>
  8808. ^@ (Ctrl-SPACE)    Next word            |SCREEN/COMPOSITION COMMANDS<BR>
  8809. ----------------------------------------|<BR>
  8810. MESSAGE COMMANDS  | GENERAL COMMANDS    | F12    To Addressbook/Browser<BR>
  8811. F3   <A HREF="h_compose_cancel">Cancel</A>       |  F1    Get help     | F4     Attach File<BR>
  8812. F11  <A HREF="h_common_postpone">Postpone</A>     |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L     Redraw Screen<BR>
  8813. F2   <A HREF="h_compose_send">Send</A>         |                     | F5     <A HREF="h_compose_richhdr">Rich Headers</A><BR>
  8814. <!--chtml else-->
  8815. CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------<BR>
  8816. ^B (Left Arrow)    Back character       | ^D       Delete current character<BR>
  8817. ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character<BR>
  8818. ^P (Up Arrow)      Previous line        | <BR>
  8819. ^N (Down Arrow)    Next line            | ^K       Cut marked text or<BR>
  8820. ^A                 Beginning of line    |            delete current line<BR>
  8821. ^E                 End of line          | ^U       Undelete line(s)<BR>
  8822. ^Y                 Previous page        |<BR>
  8823. ^V                 Next page            |-------------------------------------<BR>
  8824. ^@ (Ctrl-SPACE)    Next word            |SCREEN/COMPOSITION COMMANDS<BR>
  8825. ----------------------------------------|<BR>
  8826. MESSAGE COMMANDS  | GENERAL COMMANDS    | ^T     To Addressbook/Browser<BR>
  8827. ^C   <A HREF="h_compose_cancel">Cancel</A>       |  ^G    Get help     | ^J     Attach File<BR>
  8828. ^O   <A HREF="h_common_postpone">Postpone</A>     |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L     Redraw Screen<BR>
  8829. ^X   <A HREF="h_compose_send">Send</A>         |                     | ^R     <A HREF="h_compose_richhdr">Rich Headers</A><BR>
  8830. <!--chtml endif-->
  8831.  
  8832. <P>
  8833. NOTE:
  8834. <OL>
  8835.  <LI>For help on a particular command, hilite the bold text associated
  8836. with it above and hit Return.
  8837.  <LI> The availability of certain commands 
  8838. is determined by Pine configuration files and system capabilities.
  8839. At some sites, certain commands may not be available due to security or
  8840. support concerns.
  8841. </OL>
  8842.  
  8843. <P>
  8844. <UL>   
  8845. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8846. </UL><P>
  8847. <End of help on this topic>
  8848. </BODY>
  8849. </HTML>
  8850. ======= h_composer_cc ====
  8851. <HTML>
  8852. <HEAD>
  8853. <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
  8854. </HEAD>
  8855. <BODY>
  8856. <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
  8857. The Cc: field is just like the To: field, except it is used for addressees
  8858. that you wish to send a "carbon" copy to.  That is, the message is 
  8859. not directly meant directly "for" these recipients, but you wanted 
  8860. them to see the message.  The only difference the recipients see is that their 
  8861. name is in the Cc: field, rather than the To: field.
  8862. <P>
  8863. For help with Cc: field editing
  8864. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  8865. <P>
  8866. <UL>
  8867. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  8868. </UL>
  8869. <P>
  8870. <UL>   
  8871. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8872. </UL><P>
  8873. <End of help on this topic>
  8874. </BODY>
  8875. </HTML>
  8876. ======= h_composer_bcc ====
  8877. <HTML>
  8878. <HEAD>
  8879. <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
  8880. </HEAD>
  8881. <BODY>
  8882. <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
  8883. The "Bcc:" (Blind carbon copy) header is used when you wish to send 
  8884. a copy of the message to one or more people whose addresses you do not
  8885. wish disclosed, either to reduce clutter or for confidentiality.
  8886. <P>
  8887. The format of the Bcc: field is just the same as the To: and Cc: fields in
  8888. the way the addresses are entered.  The recipients listed here will
  8889. receive a copy of the message, but --assuming your site's mail transport
  8890. software is properly configured-- their addresses will not show up in the
  8891. headers of the message, as delivered to all of the recipients.  The To:
  8892. and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
  8893. <P>
  8894. Note: if there is no To: or Cc: or Lcc: address in the message, Pine
  8895. will automatically generate and place in the To: field a pseudo-address of 
  8896.   "Undisclosed recipients: ;"
  8897. or whatever string has been specified in the 
  8898. <A HREF="h_config_empty_hdr_msg">"empty-header-message"</A>
  8899. variable.
  8900. <P>
  8901. The reason for this is to avoid embarrassment caused by some Internet
  8902. mail transfer software that interprets a "missing" To: header as 
  8903. an error and replaces it with an Apparently-to: header that may contain
  8904. the addresses you entered on the Bcc: line.  In addition, it may be
  8905. less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
  8906. <P>
  8907. You can manipulate what text ends up on the (originally) empty To:
  8908. field.  Just remember to put a colon and semicolon at the end of the
  8909. field, which is a special notation denoting that it is not a real address.
  8910. <P>
  8911. For information on message header editing
  8912. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  8913. <P>
  8914. <UL>
  8915. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  8916. </UL>
  8917. <P>
  8918. <UL>   
  8919. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8920. </UL><P>
  8921. <End of help on this topic>
  8922. </BODY>
  8923. </HTML>
  8924. ======= h_composer_lcc ====
  8925. <HTML>
  8926. <HEAD>
  8927. <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
  8928. </HEAD>
  8929. <BODY>
  8930. <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
  8931. The "Lcc:" (List carbon copy) header is intended to be used when
  8932. you wish to send a message to a list of people but avoid having all
  8933. of their addresses visible, in order to reduce clutter when the
  8934. message is received.
  8935. <P>
  8936. It is similar to the 
  8937. <A HREF="h_composer_bcc">"Bcc" (Blind carbon copy) header</A> 
  8938. in that individual
  8939. addressees are hidden, but Lcc is designed to work specifically with
  8940. distribution lists you have created in your 
  8941. <A HREF="h_abook_opened">Pine Address Book</A>.  Placing
  8942. the nickname of the list on the Lcc line will result in the full name of
  8943. your Pine Address Book list being placed on the To: line of the message,
  8944. using a special notation that distinguishes it from a real address. You
  8945. must leave the To: line blank for your list name to appear there.
  8946. <P>
  8947. For example, if you have this list entered in your Address Book:<PRE>
  8948.  
  8949.     largo         Key Largo List       DISTRIBUTION LIST:
  8950.                        bogie@mgm.com
  8951.                        lauren@mgm.com
  8952.                        walter@mgm.com</PRE>
  8953.  
  8954.  
  8955. and you enter "largo" on the Lcc: line while composing a message, 
  8956. the result is:<PRE>
  8957.  
  8958.     To      : Key Largo List: ;
  8959.     Cc      :
  8960.     Bcc     :
  8961.     Fcc     : sent-mail
  8962.     Lcc     : Key Largo List <bogie@mgm.com>,
  8963.           lauren@mgm.com,
  8964.           walter@mgm.com
  8965.     Subject :</PRE>
  8966.  
  8967. Each recipient listed on the Lcc: line receives a copy of the message
  8968. without their address being visible (as though they were listed on the
  8969. Bcc: line). The colon-semicolon notation used to put the full-name of the
  8970. list on the To: line is a special address format that doesn't specify any
  8971. actual addressees, but does give some information to the recipients of the
  8972. message.
  8973. <P>
  8974. Note: if after entering an LCC, you delete the list name that is placed
  8975. on the To: line, then recipients will see <PRE>
  8976.        To: Undisclosed recipients: ;</PRE>
  8977.  
  8978. (or whatever string is defined in the 
  8979. <A HREF="h_config_empty_hdr_msg">"empty-header-message"</A>
  8980. variable) just as in the BCC case. 
  8981. <P>
  8982. For help with Lcc: field editing
  8983. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  8984. <P>
  8985. <UL>
  8986. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  8987. </UL>
  8988. <P>
  8989. <UL>   
  8990. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  8991. </UL><P>
  8992. <End of help on this topic>
  8993. </BODY>
  8994. </HTML>
  8995. ======= h_composer_from =======
  8996. <HTML>
  8997. <HEAD>
  8998. <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
  8999. </HEAD>
  9000. <BODY>
  9001. <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
  9002.  
  9003. This header carries your return address.  It is the address toward which
  9004. replies (and often, future unrelated correspondence) will be directed,
  9005. unless you have <A HREF="h_config_custom_hdrs">defined an optional 
  9006. "Reply-To:" header</A> in the SETUP CONFIGURATION screen.  Make 
  9007. sure this address is correct.
  9008. <P>
  9009. For help with message header editing
  9010. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9011. <P>
  9012. <UL>
  9013. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  9014. </UL>
  9015. <P>
  9016. <UL>   
  9017. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9018. </UL><P>
  9019. <End of help on this topic>
  9020. </BODY>
  9021. </HTML>
  9022. ======= h_composer_reply_to =======
  9023. <HTML>
  9024. <HEAD>
  9025. <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
  9026. </HEAD>
  9027. <BODY>
  9028. <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
  9029.  
  9030. Most people should not need this header. The Reply-To: header is used in
  9031. cases where you would like replies to your messages to be directed to an
  9032. address other than your normal "From:" address.  This is atypical, 
  9033. but can happen when you use multiple machines and do not have the same account
  9034. name on each one, or when you wish to direct certain replies to accounts
  9035. or folders designated for specific classes of correspondence.
  9036. <P>
  9037. For help with message header editing
  9038. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9039. <P>
  9040. <UL>
  9041. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  9042. </UL>
  9043.  
  9044. <P>
  9045. <UL>   
  9046. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9047. </UL><P>
  9048. <End of help on this topic>
  9049. </BODY>
  9050. </HTML>
  9051. ======= h_composer_custom_addr ====
  9052. <HTML>
  9053. <HEAD>
  9054. <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
  9055. </HEAD>
  9056. <BODY>
  9057. <H1>CUSTOMIZED HEADER FIELD</H1>
  9058. This is a customized header, i.e. not one that is part of Pine's normal
  9059. set of Compose headers.
  9060. <P>
  9061. For help with message header editing
  9062. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9063. <P>
  9064. <UL>
  9065. <LI><A HREF="h_address_format">Explanation of Address formats</A>
  9066. </UL>
  9067. <P>
  9068. <UL>   
  9069. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9070. </UL><P>
  9071. <End of help on this topic>
  9072. </BODY>
  9073. </HTML>
  9074. ======= h_composer_custom_free ====
  9075. <HTML>
  9076. <HEAD>
  9077. <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
  9078. </HEAD>
  9079. <BODY>
  9080. <H1>CUSTOMIZED HEADER FIELD</H1>
  9081. This is a customized header, i.e. not one that is part of Pine's normal
  9082. set of Compose headers.
  9083. <P>
  9084. This field consists of arbitrary text.
  9085. <P>
  9086. For help with message header editing
  9087. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9088. <P>
  9089. <UL>   
  9090. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9091. </UL><P>
  9092. <End of help on this topic>
  9093. </BODY>
  9094. </HTML>
  9095. ====== h_composer_news =====
  9096. <HTML>
  9097. <HEAD>
  9098. <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
  9099. </HEAD>
  9100. <BODY>
  9101. <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
  9102. Use the newsgroups line to specify any and all USENET newsgroups to which
  9103. your message should be posted.  When composing a message from scratch, this
  9104. line may be hidden.  If so, just press the rich headers command
  9105. (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
  9106. to make it visible.
  9107. <P>
  9108. <EM>Be aware</EM> that when you post to a newsgroup thousands of
  9109. people will be reading your message.  Also, you or your system manager
  9110. must have defined a "nntp-server" in your Pine configuration
  9111. in order for you to be able to post.
  9112. <P>
  9113. For help with message header editing
  9114. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9115. <P><UL>
  9116. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9117. </UL>
  9118. <P>
  9119. <End of help on this topic>
  9120. </BODY>
  9121. </HTML>
  9122. ======= h_composer_fcc ====
  9123. <HTML>
  9124. <HEADER>
  9125. <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
  9126. </HEADER>
  9127. <BODY>
  9128. <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
  9129. The FCC (File Carbon Copy) specifies the folder used to keep a copy of
  9130. each outgoing message.  The default value can be configured with the
  9131. "default-fcc" and "fcc-name-rule" options.  You can change or remove
  9132. the file carbon copy on any message you send by editing the FCC header.<p>
  9133.  
  9134. You may type ^T to get a list of all your folders and select one to use as
  9135. the FCC for this message.<P>
  9136.  
  9137. For help with message header editing
  9138. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9139. <P>
  9140. <UL>   
  9141. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9142. </UL><P>
  9143. <End of help on this topic>
  9144. </BODY>
  9145. </HTML>
  9146. ======= h_composer_subject ====
  9147. <HTML>
  9148. <HEADER>
  9149. <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
  9150. </HEADER>
  9151. <BODY>
  9152. <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
  9153.  
  9154. The subject header provides a place to enter a few words that summarize
  9155. the topic of the message you are sending.  You may leave this line blank,
  9156. but it is considered a courtesy to use a meaningful subject.<p>
  9157.  
  9158. For help with message header editing
  9159. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9160. <P>
  9161. <UL>   
  9162. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9163. </UL><P>
  9164. <End of help on this topic>
  9165. </BODY>
  9166. </HTML>
  9167. ======= h_composer_attachment ====
  9168. <HTML>
  9169. <HEAD>
  9170. <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
  9171. </HEAD>
  9172. <BODY>
  9173. <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
  9174.  
  9175. The "Attchmnt:" field is where you specify what file or
  9176. files you'd like attached to
  9177. the message you are composing.  Those files must reside on the machine
  9178. running Pine. If your file is on a PC or Mac and you run Pine with an
  9179. account on a Unix machine, you'll have to transfer it before attaching it.
  9180. Contact local computer support people for assistance with transferring.
  9181.  
  9182. <P>
  9183. The file name
  9184. given can be an absolute file path name for your system
  9185. <!--chtml if pinemode="os_windows"-->
  9186. (for example, "H:\SIGFILES\FULLINFO.TXT"), a file
  9187. with a relative pathname, or simply a file name without
  9188. drive or directory specification.  
  9189. <!--chtml else-->
  9190. (for example, "/tmp/exported.earlier" on Unix hosts), 
  9191. a file in your home directory, or a file path relative to your 
  9192. home directory.  In Unix Pine, you may use "~" to refer to 
  9193. your home directory or "~user" to refer to another
  9194. account's home directory.
  9195. <!--chtml endif--><P>
  9196. No wild card characters may be used.
  9197. <P>If the 
  9198. <A HREF="h_config_use_current_dir">"use-current-dir"</A>
  9199. feature is set, names are relative to your current working directory 
  9200. <!--chtml if pinemode="running"-->
  9201. (which, at least for your current Pine "session," 
  9202. is "<!--#echo var="CURRENT_DIR"-->") 
  9203. <!--chtml endif-->
  9204. rather than your home directory
  9205. <!--chtml if pinemode="running"-->
  9206. (which, in the present configuration of your system, is
  9207.  "<!--#echo var="HOME_DIR"-->") 
  9208. <!--chtml endif-->
  9209. .
  9210. <P>
  9211. Pine uses MIME encoding for attachments, so binaries and files of any
  9212. length can safely be delivered to any MIME-capable mail reading program.
  9213. If you send an attachment to someone who does not have a MIME-capable mail
  9214. reading program yet, then the main message text will be readable, but
  9215. attachments (even attachments which are just plain text) are not.
  9216. <P>
  9217.  
  9218. Typing the filename on the Attchmnt: line achieves the same
  9219. result as using the 
  9220. <!--chtml if pinemode="function_key"-->
  9221. F6
  9222. <!--chtml else-->
  9223. Ctrl-J
  9224. <!--chtml endif--> command.
  9225. <P>
  9226.  
  9227. If you Forward a message with attachments, you may delete them from your
  9228. Forwarded message by editing the Attchmnt header line.
  9229. <P>
  9230.  
  9231. For help with message header editing
  9232. commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
  9233. <P>
  9234. <UL>   
  9235. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9236. </UL><P>
  9237. <End of help on this topic>
  9238. </BODY>
  9239. </HTML>
  9240. ======= h_composer_ctrl_j ====
  9241. <HTML>
  9242. <HEAD>
  9243. <TITLE>COMPOSER ATTACH</TITLE>
  9244. </HEAD>
  9245. <BODY>
  9246. After the
  9247. <!--chtml if pinemode="function_key"-->
  9248. F6
  9249. <!--chtml else-->
  9250. Ctrl-J
  9251. <!--chtml endif--> command:
  9252. At the "File to attach:" prompt, enter the name of the 
  9253. existing file to attach to your message.  
  9254. If the 
  9255. <A HREF="h_config_enable_tab_complete">"enable-tab-completion"</A>
  9256. feature is set in SETUP CONFIGURATION, 
  9257. you need only enter the beginning of the filename (enough of it to uniquely 
  9258. identify the file) and press TAB to complete it.
  9259.  
  9260. Or, press ^T to use the BROWSER screen for 
  9261. selecting the file.  <P>
  9262. For more information on attaching files, see the help screen for the 
  9263. composer's 
  9264. <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
  9265. but can be revealed using the 
  9266. <!--chtml if pinemode="function_key"-->
  9267. F5
  9268. <!--chtml else-->
  9269. Ctrl-R
  9270. <!--chtml endif--> 
  9271. command with the cursor positioned above the
  9272. "----- Message Text -----" line in the COMPOSE MESSAGE screen.
  9273. <P>
  9274. <End of help on this topic>
  9275. </BODY>
  9276. </HTML>
  9277. ======= h_edit_nav_cmds =========
  9278. <HTML>
  9279. <HEAD>
  9280. <TITLE>Composer Editing Commands Explained</TITLE>
  9281. </HEAD>
  9282. <BODY>
  9283. <H1>EDITING and NAVIGATION COMMANDS</H1>
  9284. <!--chtml if pinemode="function_key"-->
  9285. <PRE>
  9286. CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
  9287. ^B (Left Arrow)    Back character       | ^D       Delete current character
  9288. ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
  9289. ^P (Up Arrow)      Previous line        |
  9290. ^N (Down Arrow)    Next line            | F9       Cut marked text or
  9291. ^A                 Beginning of line    |            delete current line
  9292. ^E                 End of line          | F10      Undelete line(s)
  9293. F7                 Previous page        |
  9294. F8                 Next page            |-------------------------------------
  9295. ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
  9296. ----------------------------------------|
  9297. EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
  9298. F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
  9299. F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
  9300. </PRE>
  9301. <!--chtml else-->
  9302. <PRE>
  9303. CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
  9304. ^B (Left Arrow)    Back character       | ^D       Delete current character
  9305. ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
  9306. ^P (Up Arrow)      Previous line        |
  9307. ^N (Down Arrow)    Next line            | ^K       Cut marked text or
  9308. ^A                 Beginning of line    |            delete current line
  9309. ^E                 End of line          | ^U       Undelete line(s)
  9310. ^Y                 Previous page        |
  9311. ^V                 Next page            |-------------------------------------
  9312. ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
  9313. ----------------------------------------|
  9314. EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
  9315. ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
  9316. ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
  9317. </PRE>
  9318. <!--chtml endif-->
  9319. <End of help on this topic>
  9320. </BODY>
  9321. </HTML>
  9322. ===== h_composer_sigedit =====
  9323. <HTML>
  9324. <HEAD>
  9325. <TITLE>Signature Editor Commands Explained</TITLE>
  9326. </HEAD>
  9327. <BODY>
  9328. <H1>SIGNATURE EDITOR COMMANDS</H1>
  9329. <!--chtml if pinemode="function_key"-->
  9330. <PRE>
  9331. CURSOR MOTION KEYS                     |EDITING KEYS
  9332.   ^B (Left Arrow)   Back character     | ^D       Delete current character
  9333.   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
  9334.   ^P (Up Arrow)     Previous line      | ^^       Set a mark
  9335.   ^N (Down Arrow)   Next line          | F9       Cut marked text or
  9336.   ^A                Beginning of line  |           delete current line
  9337.   ^E                End of line        | F10       Paste text, undelete lines
  9338.   F7                Previous page      |           cut with ^K, or unjustify
  9339.   F8                Next page          |-------------------------------------
  9340.   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
  9341. ---------------------------------------| F6       Whereis (search for string)
  9342. MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
  9343.  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
  9344.                  |  ^Z    Suspend      | ^L       Redraw Screen
  9345.  F2   Send       |  F6    Alt. editor  | F5       Read in a file
  9346. </PRE>
  9347. <!--chtml else-->
  9348. <PRE>
  9349. CURSOR MOTION KEYS                     |EDITING KEYS
  9350.   ^B (Left Arrow)   Back character     | ^D       Delete current character
  9351.   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
  9352.   ^P (Up Arrow)     Previous line      | ^^       Set a mark
  9353.   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
  9354.   ^A                Beginning of line  |           delete current line
  9355.   ^E                End of line        | ^U        Paste text, undelete lines
  9356.   ^Y                Previous page      |           cut with ^K, or unjustify
  9357.   ^V                Next page          |-------------------------------------
  9358.   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
  9359. ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
  9360. MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
  9361.  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
  9362.                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
  9363.  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
  9364. </PRE>
  9365. <!--chtml endif-->
  9366.  
  9367. NOTE: The presence or absence of the following commands is determined
  9368. by "feature-list" options in your Pine configuration.  Also,
  9369. some of these commands may be administratively disabled by your system
  9370. manager; if they don't work, please check with your local help desk
  9371. before reporting a bug.
  9372. <P>
  9373. <UL>
  9374.  <LI>Suspend (suspends Pine and gives a system prompt)
  9375.  <LI>Alternate editor (allows you to compose with your own editor)
  9376. </UL>
  9377. <P>
  9378.  
  9379. Pine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
  9380. Ctrl-\, ESC
  9381. <P>
  9382.  
  9383. NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
  9384. <A HREF="h_special_xon_xoff">"XOFF/XON"</A>.
  9385. <P>
  9386. <End of help on this topic>
  9387. </BODY>
  9388. </HTML>
  9389. ======= h_composer_abook_nick =======
  9390. <HTML>
  9391. <HEAD>
  9392. <TITLE>Addressbook Nickname Explained</TITLE>
  9393. </HEAD>
  9394. <BODY>
  9395. This is a short nickname for this address book entry.  If it is used in
  9396. place of an address from the composer, the composer will fill in the
  9397. address(es) for the entry that matches the nickname. 
  9398. <P>
  9399.  
  9400. Look <A HREF="h_edit_nav_cmds">here</A>
  9401. to see the available Editing and Navigation commands.
  9402. <P>
  9403. <End of help on this topic>
  9404. </BODY>
  9405. </HTML>
  9406. ======= h_composer_abook_full =======
  9407. <HTML>
  9408. <HEAD>
  9409. <TITLE>Addressbook Fullname Explained</TITLE>
  9410. </HEAD>
  9411. <BODY>
  9412. This is the full name field for this entry.  If this is going to be a
  9413. distribution list (more than one address), it should be a descriptive
  9414. phrase describing the list.  It will be included in the mail header if you
  9415. put the list in the To: or CC: field, or in the To: line if you put the
  9416. list in the Lcc: field.  It's OK to leave this field blank (and OK to
  9417. leave any of the other fields blank, too). If this address book entry is
  9418. going to be a simple entry with just one address, then this field is the
  9419. person's name. When you send mail to this entry, this is the field to the
  9420. left of the brackets. That is, it is the most readable part of the 
  9421. address. For example, in the sample address:
  9422. <PRE>
  9423.        John Doe <jdoe@some.domain>
  9424. </PRE>
  9425. "John Doe" is the full name field. If you are sorting your address book
  9426. with one of the options that uses full names, then it might be useful to
  9427. enter the full name as "Last, First", for example:
  9428. <PRE>
  9429.        Doe, John
  9430. </PRE>
  9431. so that it will be sorted using Doe instead of John. This will be changed
  9432. back into John Doe when you use it.
  9433. <P>
  9434. Look <A HREF="h_edit_nav_cmds">here</A>
  9435. to see the available Editing and Navigation commands.
  9436. <P>
  9437. <End of help on this topic>
  9438. </BODY>
  9439. </HTML>
  9440. ======= h_composer_abook_fcc =======
  9441. <HTML>
  9442. <HEAD>
  9443. <TITLE>Addressbook Fcc Explained</TITLE>
  9444. </HEAD>
  9445. <BODY>
  9446. If this entry is the first one in the To: line of an outgoing message,
  9447. this field will be used for the Fcc (File Carbon Copy) instead of whatever
  9448. you would normally get (which depends on which
  9449. <A HREF="h_config_saved_msg_name_rule">"saved-msg-name-rule"</A>
  9450. you've chosen). 
  9451. <P>
  9452. If this field consists of two double quotes ("") that tells Pine
  9453. that you don't want any Fcc associated with this entry.
  9454. <P>
  9455. Look <A HREF="h_edit_nav_cmds">here</A>
  9456. to see the available Editing and Navigation commands.
  9457. <P>
  9458. <End of help on this topic>
  9459. </BODY>
  9460. </HTML>
  9461. ====== h_config_combined_abook_display =====
  9462. <HTML>
  9463. <HEAD>
  9464. <TITLE>FEATURE: combined-addrbook-display</TITLE>
  9465. </HEAD>
  9466. <BODY>
  9467. <H1>FEATURE: combined-addrbook-display</H1>
  9468.  
  9469. This feature affects the address book display screens.
  9470. Normally, expanding an address book from the ADDRESS BOOK LIST screen
  9471. will cause the remaining address books and directory servers to disappear
  9472. from the screen, leaving only the entries of the expanded address book.
  9473. If this feature is set, then the other address books will remain on the screen,
  9474. so that all of the address books can be present at once.
  9475.  
  9476. <P>
  9477. The way that commands work won't be changed.
  9478. For example, the Select All command will select all of the entries in the
  9479. current address book, not all of the entries in all of the address books.
  9480. The WhereIs command will change a little.
  9481. It will search through all of the text on the screen plus all of the entries
  9482. from expanded address books.
  9483.  
  9484. <P>
  9485. When this feature is set, the setting of the feature
  9486. <A HREF="h_config_expanded_addrbooks">"expanded-view-of-addressbooks"</A>
  9487. has an effect.
  9488. <P>
  9489. <End of help on this topic>
  9490. </BODY>
  9491. </HTML>
  9492. ====== h_config_expanded_addrbooks =====
  9493. <HTML>
  9494. <HEAD>
  9495. <TITLE>FEATURE: expanded-view-of-addressbooks</TITLE>
  9496. </HEAD>
  9497. <BODY>
  9498. <H1>FEATURE: expanded-view-of-addressbooks</H1>
  9499.  
  9500. If multiple address books (either personal or global) are defined, and you
  9501. wish to have them all expanded implicitly upon entering the ADDRESS BOOK
  9502. screen, then set this feature. This feature will have no effect unless the
  9503. feature
  9504. <A HREF="h_config_combined_abook_display">"combined-addrbook-display"</A>
  9505. is also set.
  9506. <P>
  9507. <End of help on this topic>
  9508. </BODY>
  9509. </HTML>
  9510. ====== h_config_combined_folder_display =====
  9511. <HTML>
  9512. <HEAD>
  9513. <TITLE>FEATURE: combined-folder-display</TITLE>
  9514. </HEAD>
  9515. <BODY>
  9516. <H1>FEATURE: combined-folder-display</H1>
  9517.  
  9518. This feature affects the folder list display screens.
  9519. Normally, each folder list is viewed within its collection only.  This
  9520. command allows folder lists to be viewed within a single screen that
  9521. combines the contents of all collections.
  9522.  
  9523. <P>
  9524. The way that commands work won't be changed.
  9525. For example, the Select All command will select all of the folders in the
  9526. current collection, not all of the entries in all of the collections.
  9527. The WhereIs command will change a little.
  9528. It will search through all of the folders in the current collection as well
  9529. as all the folder in any other expanded collection.
  9530.  
  9531. <P>
  9532. When this feature is set, the setting of the feature
  9533. <A HREF="h_config_expanded_folders">"expanded-view-of-folders"</A>
  9534. has an effect.
  9535. <P>
  9536. <End of help on this topic>
  9537. </BODY>
  9538. </HTML>
  9539. ====== h_config_combined_subdir_display =====
  9540. <HTML>
  9541. <HEAD>
  9542. <TITLE>FEATURE: combined-subdirectory-display</TITLE>
  9543. </HEAD>
  9544. <BODY>
  9545. <H1>FEATURE: combined-subdirectory-display</H1>
  9546.  
  9547. This feature affects the Folder List screen when
  9548. the
  9549. <A HREF="h_config_combined_folder_display">"combined-folder-display"</A>
  9550. feature is enabled.  Normally, selecting a directory from the Folder
  9551. List takes you into a new screen displaying only the contents of
  9552. that directory.
  9553.  
  9554. <P>
  9555. Enabling this feature will cause the contents of the selected
  9556. directory to be
  9557. displayed within the boundaries of the "Collection" it
  9558. is a part of.  All previously displayed collections will remain
  9559. in the screen.
  9560.  
  9561. <P>
  9562. The way that commands work won't be changed.
  9563. For example, the Select All command will select all of the folders in the
  9564. directory, as opposed to all of the entries in all of the collections.
  9565. The WhereIs command will change a little.
  9566. It will search through all of the folders in the current collection as well
  9567. as all the folder in any other expanded collection.
  9568.  
  9569. <P>
  9570. <End of help on this topic>
  9571. </BODY>
  9572. </HTML>
  9573. ====== h_config_separate_fold_dir_view =====
  9574. <HTML>
  9575. <HEAD>
  9576. <TITLE>FEATURE: separate-folder-and-directory-display</TITLE>
  9577. </HEAD>
  9578. <BODY>
  9579. <H1>FEATURE: separate-folder-and-directory-display</H1>
  9580.  
  9581. This feature affects folder collections wherein a folder
  9582. and directory can have the same name.  By default, Pine displays them
  9583. only once, denoting that it is both a folder and directory by appending
  9584. the folder name with the hierarchy character enclosed
  9585. in square brackets.
  9586.  
  9587.  
  9588. <P>
  9589. Enabling this feature will cause Pine to display such names
  9590. separately marking the name representing a directory with a trailing
  9591. hierarchy delimiter (typically the slash, "/", character).
  9592.  
  9593. <P>
  9594. The feature also alters the command set slightly.  By default, the
  9595. right-arrow descends into the directory, while hitting the Return key will
  9596. cause the folder by that name to be opened.
  9597.  
  9598. <P>
  9599. With this feature set, the Return key will open the hilited folder, or
  9600. enter the hilited directory.
  9601.  
  9602. <P>
  9603. <End of help on this topic>
  9604. </BODY>
  9605. </HTML>
  9606. ====== h_config_expanded_folders =====
  9607. <HTML>
  9608. <HEAD>
  9609. <TITLE>FEATURE: expanded-view-of-folders</TITLE>
  9610. </HEAD>
  9611. <BODY>
  9612. <H1>FEATURE: expanded-view-of-folders</H1>
  9613.  
  9614. If multiple folder collections are defined, and you
  9615. wish to have them all expanded implicitly upon entering the FOLDER LIST
  9616. screen, then set this feature. This feature will have no effect unless the
  9617. feature
  9618. <A HREF="h_config_combined_folder_display">"combined-folder-display"</A>
  9619. is also set.
  9620. <P>
  9621. <End of help on this topic>
  9622. </BODY>
  9623. </HTML>
  9624. ======= h_config_ldap_server =======
  9625. <HTML>
  9626. <HEAD>
  9627. <TITLE>LDAP OPTION: ldap-server</TITLE>
  9628. </HEAD>
  9629. <BODY>
  9630. <H1>LDAP OPTION: ldap-server</H1>
  9631. This is the name of the host where an LDAP server is running.
  9632. For redundancy, this may be a space-delimited set of server names, in which
  9633. case the first server which answers is used.
  9634. Each of the server names may be optionally followed by
  9635. a colon and a port number.
  9636. If this form is used then the port number configured below in the
  9637. <EM>port</EM> field is not used.
  9638. <P>
  9639. To find out whether your organization has its own LDAP server, 
  9640. contact its computing support staff.
  9641. <P><UL>
  9642. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9643. </UL>
  9644. <P>
  9645. <End of help on this topic>
  9646. </BODY>
  9647. </HTML>
  9648. ======= h_config_ldap_base =======
  9649. <HTML>
  9650. <HEAD>
  9651. <TITLE>LDAP OPTION: search-base</TITLE>
  9652. </HEAD>
  9653. <BODY>
  9654. <H1>LDAP OPTION: search-base</H1>
  9655.  
  9656. This is the search base to be used on this server.  It functions as a filter 
  9657. by restricting your searches in the LDAP server database
  9658. to the specified contents of the specified fields.  Without it, searches 
  9659. submitted to this directory server may fail.  It might be something
  9660. like:
  9661.  
  9662. <PRE>
  9663.       O = <Your Organization Name>, C = US
  9664. </PRE>
  9665. or it might be blank.  
  9666. (Some LDAP servers actually ignore anything specified here.)
  9667. <P>
  9668. If in doubt what parameters you should specify here, 
  9669. contact the maintainers of the LDAP server.
  9670. <P><UL>
  9671. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  9672. </UL>
  9673. <P>
  9674. <End of help on this topic>
  9675. </BODY>
  9676. </HTML>
  9677. ======= h_config_ldap_port =======
  9678. <HTML>
  9679. <HEAD>
  9680. <TITLE>LDAP OPTION: port</TITLE>
  9681. </HEAD>
  9682. <BODY>
  9683. <H1>LDAP OPTION: port</H1>
  9684.  
  9685. This is the TCP port number to be used with this LDAP server. If you leave
  9686. this blank port 389 will be used.
  9687. <P>
  9688. <End of help on this topic>
  9689. </BODY>
  9690. </HTML>
  9691. ======= h_config_ldap_nick =======
  9692. <HTML>
  9693. <HEAD>
  9694. <TITLE>LDAP OPTION: nickname</TITLE>
  9695. </HEAD>
  9696. <BODY>
  9697. <H1>LDAP OPTION: nickname</H1>
  9698.  
  9699. This is a nickname to be used in displays. If you don't supply a
  9700. nickname the server name
  9701. (<A HREF="h_config_ldap_server">"ldap-server"</A>)
  9702. will be used instead.  This option is strictly for your convenience.
  9703. <P>
  9704. <End of help on this topic>
  9705. </BODY>
  9706. </HTML>
  9707. ======= h_config_ldap_opts_impl =======
  9708. <HTML>
  9709. <HEAD>
  9710. <TITLE>LDAP FEATURE: use-implicitly-from-composer</TITLE>
  9711. </HEAD>
  9712. <BODY>
  9713. <H1>LDAP FEATURE: use-implicitly-from-composer</H1>
  9714.  
  9715. Set this to have lookups done to this server implicitly from the composer.
  9716. If an address doesn't look like a fully-qualified address, it will be looked
  9717. up in your address books, and if it doesn't match a nickname there, then it
  9718. will be looked up on the LDAP servers which have this feature set.
  9719. Also see the LDAP feature
  9720. <A HREF="h_config_ldap_opts_rhs">"lookup-addrbook-contents"</A>
  9721. and the Setup/Config feature
  9722. <A HREF="h_config_add_ldap">"ldap-result-to-addrbook-add"</A>.
  9723. <P>
  9724. <End of help on this topic>
  9725. </BODY>
  9726. </HTML>
  9727. ====== h_config_ldap_opts_rhs =====
  9728. <HTML>
  9729. <HEAD>
  9730. <TITLE>LDAP FEATURE: lookup-addrbook-contents</TITLE>
  9731. </HEAD>
  9732. <BODY>
  9733. <H1>LDAP FEATURE: lookup-addrbook-contents</H1>
  9734.  
  9735. Normally implicit LDAP lookups from the composer are done only for the
  9736. strings you type in from the composer screen. In other words, you type in
  9737. something in the To or CC field and press return, then the string is looked up.
  9738. First that string is looked up in your address books. If a match is found
  9739. there, then the results of that match are looked up again. If you place
  9740. a string in your address book that you want to have looked up on the LDAP
  9741. directory server, you need to turn on this feature. If you set this feature
  9742. for a server, you almost always will also want to set the
  9743. <A HREF="h_config_ldap_opts_impl">"use-implicitly-from-composer"</A>
  9744. feature. An example might serve to best illustrate this feature.
  9745. <P>
  9746. If an LDAP lookup of "William Clinton" normally returns an
  9747. entry with an
  9748. address of pres@whitehouse.gov, then you might put an entry in your address
  9749. book that looks like:
  9750. <PRE>
  9751.     Nickname     Address
  9752.     bill         "William Clinton"
  9753. </PRE>
  9754. Now, when you type "bill" into an
  9755. address field in the composer Pine will
  9756. find the "bill" entry in your address book.
  9757. It will replace "bill" with
  9758. "William Clinton".
  9759. It will then search for an entry with that nickname
  9760. in your address book and not find one. If this feature
  9761. is set, Pine will then attempt to lookup
  9762. "William Clinton" on the LDAP server and find the entry with address
  9763. pres@whitehouse.gov.
  9764. <P>
  9765. A better way to accomplish the same thing is probably to use the feature
  9766. <A HREF="h_config_ldap_opts_ref">"save-search-criteria-not-result"</A>.
  9767. <P>
  9768. <End of help on this topic>
  9769. </BODY>
  9770. </HTML>
  9771. ====== h_config_ldap_opts_ref =====
  9772. <HTML>
  9773. <HEAD>
  9774. <TITLE>LDAP FEATURE: save-search-criteria-not-result</TITLE>
  9775. </HEAD>
  9776. <BODY>
  9777. <H1>LDAP FEATURE: save-search-criteria-not-result</H1>
  9778.  
  9779. Normally when you save the results of an LDAP directory lookup to your
  9780. address book the results of the lookup are saved. If this feature is set
  9781. and the entry being saved was found on this directory server, then the
  9782. search criteria is saved instead of the results of the search. When this
  9783. address book entry is used in the future, instead of copying the results
  9784. from the address book the directory lookup will be done again. This could
  9785. be useful if the copied result might become stale because the data on
  9786. the directory server changes (for example, the entry's email address changes).
  9787. You probably don't want to set this feature if the server is at all slow or
  9788. unreliable.
  9789. <P>
  9790. The way this actually works is that instead of saving the email address
  9791. in your address book, Pine saves enough information to look up the same
  9792. directory entry again. In particular, it saves the server name and the
  9793. distinguished name of the entry. It's possible that the server administrators
  9794. might change the format of distinguished names on the server, or that the
  9795. entry might be removed from the server. If Pine notices this, you will be warned
  9796. and a backup copy of the email address will be used. You may want to create
  9797. a new entry in this case, since you will get the annoying warning every
  9798. time you use the old entry. You may do that by Saving the entry to a new
  9799. nickname in the same address book. You will be asked whether or not you
  9800. want to use the backup email address.
  9801. <P>
  9802. A related feature in the Setup/Config screen is
  9803. <A HREF="h_config_add_ldap">"ldap-result-to-addrbook-add"</A>.
  9804. <P>
  9805. <End of help on this topic>
  9806. </BODY>
  9807. </HTML>
  9808. ======= h_config_ldap_opts_nosub =======
  9809. <HTML>
  9810. <HEAD>
  9811. <TITLE>LDAP FEATURE: disable-ad-hoc-space-substitution</TITLE>
  9812. </HEAD>
  9813. <BODY>
  9814. <H1>LDAP FEATURE: disable-ad-hoc-space-substitution</H1>
  9815.  
  9816. Spaces in your input are normally handled specially.
  9817. Each space character is replaced
  9818. by
  9819. <PRE>
  9820.      * <SPACE>
  9821. </PRE>
  9822. in the search query (but not by "* <SPACE> *").
  9823. The reason this is done is so the input string
  9824. <PRE>
  9825.      Greg Donald
  9826. </PRE>
  9827. (which is converted to "Greg* Donald") will match
  9828. the names "Greg Donald",
  9829. "Gregory Donald", "Greg F. Donald", and
  9830. "Gregory F Donald"; but it won't match "Greg McDonald".
  9831. If the "Search-Rule" you were using was "begins-with",
  9832. then it would also match the name "Greg Donaldson".
  9833. <P>
  9834. Turning on this feature will disable this substitution.
  9835. <P>
  9836. <End of help on this topic>
  9837. </BODY>
  9838. </HTML>
  9839. ====== h_config_ldap_searchtypes =======
  9840. <HTML>
  9841. <HEAD>
  9842. <TITLE>LDAP OPTION: Search-Type</TITLE>
  9843. </HEAD>
  9844. <BODY>
  9845. <H1>LDAP OPTION: Search-Type</H1>
  9846.  
  9847. This affects the way that LDAP searches are done.
  9848. In particular, this tells the server where to look for the string to be matched.
  9849. If set to "name" then the string that is being searched for will
  9850. be compared with the string in the
  9851. "Name" field on the server
  9852. (technically, it is the "commonname" field on the server).
  9853. "Surname" means we're looking for a
  9854. match in the "Surname" field on the
  9855. server (actually the "sn" field).
  9856. "Givenname" really is "givenname"
  9857. and "email" is the electronic mail address (this is actually the field
  9858. called "mail" or "electronicmail" on the server).
  9859. The other three types are combinations of
  9860. the types listed so far. "Name-or-email"
  9861. means the string should appear
  9862. in either the "name" field OR the "email" field.
  9863. Likewise, "surname-or-givenname"
  9864. means "surname" OR "givenname"
  9865. and "sur-or-given-or-name-or-email" means the obvious thing.
  9866. <P>
  9867. This search TYPE is combined with the
  9868. search <A HREF="h_config_ldap_searchrules">RULE</A>
  9869. to form the actual search query.
  9870. <P>
  9871. The usual default value for this
  9872. option is "sur-or-given-or-name-or-email".
  9873. This type of search may be slow on some servers.
  9874. Try "name-or-email", which is often
  9875. faster, or just "name" if the performance seems to be a problem.
  9876. <P>
  9877. Some servers have been configured with different attribute names for
  9878. these four fields.
  9879. In other words, instead of using the attribute name "mail"
  9880. for the email address field, the server might be configured to use something
  9881. else, for example, "rfc822mail" or "internetemailaddress".
  9882. Pine can be configured to use these different attribute names by using
  9883. the four configuration options:
  9884. <P><UL>
  9885. <LI><A HREF="h_config_ldap_email_attr">"EmailAttribute"</A>
  9886. </UL>
  9887. <P><UL>
  9888. <LI><A HREF="h_config_ldap_cn_attr">"NameAttribute"</A>
  9889. </UL>
  9890. <P><UL>
  9891. <LI><A HREF="h_config_ldap_sn_attr">"SurnameAttribute"</A>
  9892. </UL>
  9893. <P><UL>
  9894. <LI><A HREF="h_config_ldap_gn_attr">"GivennameAttribute"</A>
  9895. </UL>
  9896. <P>
  9897. <End of help on this topic>
  9898. </BODY>
  9899. </HTML>
  9900. ====== h_config_ldap_searchrules =======
  9901. <HTML>
  9902. <HEAD>
  9903. <TITLE>LDAP OPTION: Search-Rule</TITLE>
  9904. </HEAD>
  9905. <BODY>
  9906. <H1>LDAP OPTION: Search-Rule</H1>
  9907.  
  9908. This affects the way that LDAP searches are done.
  9909. If set to "equals" then
  9910. only exact matches count.
  9911. "Contains" means that the string you type in
  9912. is a substring of what you are matching against.
  9913. "Begins-with" and "ends-with"
  9914. mean that the string starts or ends with the string you type in.
  9915. <P>
  9916. Spaces in your input are normally handled specially, but you can turn that
  9917. special handling off with the
  9918. <A HREF="h_config_ldap_opts_nosub">"disable-ad-hoc-space-substitution"</A>
  9919. feature.
  9920. <P>
  9921. The usual default value for this option is "begins-with".
  9922. <P>
  9923. <End of help on this topic>
  9924. </BODY>
  9925. </HTML>
  9926. ======= h_config_ldap_email_attr =======
  9927. <HTML>
  9928. <HEAD>
  9929. <TITLE>LDAP OPTION: EmailAttribute</TITLE>
  9930. </HEAD>
  9931. <BODY>
  9932. <H1>LDAP OPTION: EmailAttribute</H1>
  9933.  
  9934. This is the name of the attribute which is searched for when looking for
  9935. an email address. The default value for this option is "mail" or
  9936. "electronicmail".
  9937. If the server you are using uses a different attribute name for the email
  9938. address, put that attribute name here.
  9939. <P>
  9940. This will affect the search filter used if your Search-Type is one that
  9941. contains a search for "email".
  9942. It will also cause the attribute value matching this attribute name to be used
  9943. as the email address when you look up an entry from the composer.
  9944. <P>
  9945. <End of help on this topic>
  9946. </BODY>
  9947. </HTML>
  9948. ======= h_config_ldap_sn_attr =======
  9949. <HTML>
  9950. <HEAD>
  9951. <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
  9952. </HEAD>
  9953. <BODY>
  9954. <H1>LDAP OPTION: SurnameAttribute</H1>
  9955.  
  9956. This is the name of the attribute which is searched for when looking for
  9957. the surname of the entry. The default value for this option is "sn".
  9958. If the server you are using uses a different attribute name for the surname,
  9959. put that attribute name here.
  9960. This will affect the search filter used if your Search-Type is one that
  9961. contains a search for "surname".
  9962. <P>
  9963. <End of help on this topic>
  9964. </BODY>
  9965. </HTML>
  9966. ======= h_config_ldap_gn_attr =======
  9967. <HTML>
  9968. <HEAD>
  9969. <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
  9970. </HEAD>
  9971. <BODY>
  9972. <H1>LDAP OPTION: GivennameAttribute</H1>
  9973.  
  9974. This is the name of the attribute which is searched for when looking for
  9975. the given name of the entry. The default value for this option is "givenname".
  9976. If the server you are using uses a different attribute name for the given name,
  9977. put that attribute name here.
  9978. This will affect the search filter used if your Search-Type is one that
  9979. contains a search for "givenname".
  9980. <P>
  9981. <End of help on this topic>
  9982. </BODY>
  9983. </HTML>
  9984. ======= h_config_ldap_cn_attr =======
  9985. <HTML>
  9986. <HEAD>
  9987. <TITLE>LDAP OPTION: NameAttribute</TITLE>
  9988. </HEAD>
  9989. <BODY>
  9990. <H1>LDAP OPTION: NameAttribute</H1>
  9991.  
  9992. This is the name of the attribute which is searched for when looking for
  9993. the name of the entry. The default value for this option is "cn", which
  9994. stands for common name.
  9995. If the server you are using uses a different attribute name for the name,
  9996. put that attribute name here.
  9997. This will affect the search filter used if your Search-Type is one that
  9998. contains a search for "name".
  9999. <P>
  10000. <End of help on this topic>
  10001. </BODY>
  10002. </HTML>
  10003. ======= h_config_ldap_time =======
  10004. <HTML>
  10005. <HEAD>
  10006. <TITLE>LDAP OPTION: Timelimit</TITLE>
  10007. </HEAD>
  10008. <BODY>
  10009. <H1>LDAP OPTION: Timelimit</H1>
  10010.  
  10011. This places a limit on the number of seconds the LDAP search will continue.
  10012. The default is 30 seconds. A value of 0 means no limit. Note that some servers
  10013. may place limits of their own on searches.
  10014. <P>
  10015. <End of help on this topic>
  10016. </BODY>
  10017. </HTML>
  10018. ======= h_config_ldap_size =======
  10019. <HTML>
  10020. <HEAD>
  10021. <TITLE>LDAP OPTION: Sizelimit</TITLE>
  10022. </HEAD>
  10023. <BODY>
  10024. <H1>LDAP OPTION: Sizelimit</H1>
  10025.  
  10026. This places a limit on the number of entries returned by the LDAP server.
  10027. A value of 0 means no limit. The default is 0. Note that some servers
  10028. may place limits of their own on searches.
  10029. <P>
  10030. <End of help on this topic>
  10031. </BODY>
  10032. </HTML>
  10033. ======= h_config_ldap_cust =======
  10034. <HTML>
  10035. <HEAD>
  10036. <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
  10037. </HEAD>
  10038. <BODY>
  10039. <H1>LDAP OPTION: Custom-Search-Filter</H1>
  10040.  
  10041. This one is for advanced users only! If you define this, then the
  10042. "Search-Type" and "Search-Rule" defined are both ignored.
  10043. However, the feature
  10044. <A HREF="h_config_ldap_opts_nosub">"disable-ad-hoc-space-substitution"</A>
  10045. is still in effect.
  10046. That is, the space substitution will take place even in a custom filter unless
  10047. you disable it.
  10048. <P>
  10049. If your LDAP service stops working and you suspect it might be because
  10050. of your custom filter, just delete this filter and try using the
  10051. "Search-Type" and "Search-Rule" instead.
  10052. Another option that sometimes causes trouble is the
  10053. <A HREF="h_config_ldap_base">"search-base"</A> option.
  10054. <P>
  10055. This variable may be set to the string representation of an LDAP search
  10056. filter (see RFC1960). In the places where you want the address string to be
  10057. substituted in, put a '%s' in this filter string. Here are some examples:
  10058. <P>
  10059. A "Search-Type" of "name" with "Search-Rule" of "begins-with"
  10060. is equivalent to the "custom-search-filter"
  10061. <PRE>
  10062.      (cn=%s*)
  10063. </PRE>
  10064. When you try to match against the string "string" the program replaces
  10065. the "%s" with "string" (without the quotes). You may have multiple "%s"'s and
  10066. they will all be replaced with the string. There is a limit of 10 "%s"'s.
  10067. <P>
  10068. A "Search-Type" of "name-or-email" with "Search-Rule"
  10069. of "contains" is equivalent to
  10070. <PRE>
  10071.      (|(cn=*%s*)(mail=*%s*))
  10072. </PRE>
  10073. <P>
  10074. If your server uses a different attribute <EM>name</EM> than
  10075. Pine uses by default,
  10076. (for example, it uses "rfc822mail" instead of "mail"),
  10077. then you may be able to use one or more of the four attribute configuration
  10078. options instead of defining a custom filter:
  10079. <P><UL>
  10080. <LI><A HREF="h_config_ldap_email_attr">"EmailAttribute"</A>
  10081. </UL>
  10082. <P><UL>
  10083. <LI><A HREF="h_config_ldap_cn_attr">"NameAttribute"</A>
  10084. </UL>
  10085. <P><UL>
  10086. <LI><A HREF="h_config_ldap_sn_attr">"SurnameAttribute"</A>
  10087. </UL>
  10088. <P><UL>
  10089. <LI><A HREF="h_config_ldap_gn_attr">"GivennameAttribute"</A>
  10090. </UL>
  10091. <P>
  10092. <End of help on this topic>
  10093. </BODY>
  10094. </HTML>
  10095. ======= h_composer_abook_comment =======
  10096. <HTML>
  10097. <HEAD>
  10098. <TITLE>Addressbook Comment Explained</TITLE>
  10099. </HEAD>
  10100. <BODY>
  10101. This is a comment to help you remember what this entry is. The WhereIs
  10102. command searches comments so that it is easier to find an entry with a comment
  10103. you know about attached to it. This field is not used in the outgoing message.
  10104. <P>
  10105. Look <A HREF="h_edit_nav_cmds">here</A>
  10106. to see the available Editing and Navigation commands.
  10107. <P>
  10108. <End of help on this topic>
  10109. </BODY>
  10110. </HTML>
  10111. ======= h_composer_abook_addrs =======
  10112. <HTML>
  10113. <HEAD>
  10114. <TITLE>Addressbook Lists</TITLE>
  10115. </HEAD>
  10116. <BODY>
  10117. <H1>Addressbook Lists</H1>
  10118.  
  10119. This is a list of addresses to send to when sending to this address book
  10120. entry.  Each member of the list may be an address or another nickname from
  10121. any of your address books.  If it is an address, it is OK to include the
  10122. full name field as well as the electronic address portion of that address.
  10123. For example, the following are all legitimate entries in this field:
  10124.  
  10125. <DL><DT> </DT>
  10126. <DD>john    (a nickname in your address book)
  10127. <DD>jdoe@some.domain
  10128. <DD>John Doe <jdoe@some.domain>
  10129. </DL>
  10130.  
  10131. The addresses should be listed separated by commas, just like you would
  10132. enter them from the composer.
  10133.  
  10134. <P>
  10135.  
  10136. The only difference between a distribution list and a simple entry with a
  10137. single address, is that a distribution list has more than one address   
  10138. listed in the Addresses: field, whereas a simple personal entry has just  
  10139. one address.
  10140.  
  10141. <P>
  10142.  
  10143. For individual address book entries, if there is a full name in the
  10144. Fullname: field (filling in the Fullname: field is not required), it is
  10145. used.  If the full name is specified in the Address: field and not in the
  10146. Fullname: field, then the full name from the Address: field is used.
  10147.  
  10148. <P>
  10149.  
  10150. If you type the nickname of a distribution list from one of your address 
  10151. books in the Lcc: field, then the full name of that list is used in the  
  10152. To: field.  If you put a list in the To: or Cc: fields, that list will be
  10153. expanded into all of its addresses.  If the list has a full name, then
  10154. that will appear at the beginning of the addresses.
  10155.  
  10156. <DL><DT> </DT>
  10157. <DD>Sewing Club <john@somewhere>, nancy@something.else, Sal
  10158. <sal@here.there>
  10159. </DL>
  10160.  
  10161. If the first address in the distribution list also has a full name, then
  10162. the list full name and that full name are combined into something like the
  10163. following:
  10164.  
  10165. <DL><DT> </DT>
  10166. <DD>Sewing Club -- John Smith <john@somewhere>
  10167. </DL>
  10168.  
  10169.  
  10170. If you specify a list via Lcc, the full name is used in the To: line.  If
  10171. you specify a list in the To: or Cc: fields, then it uses the same method
  10172. as for individual entries for filling in the full name.
  10173.  
  10174. <P>
  10175.  
  10176. For help with editing and navigation commands, check the Help for the
  10177. Nickname: field.
  10178.  
  10179. <P>
  10180. <End of help on this topic>
  10181. </BODY>
  10182. </HTML>
  10183. ======= h_config_role_nick =======
  10184. <HTML>
  10185. <HEAD>
  10186. <TITLE>Nickname Explained</TITLE>
  10187. </HEAD>
  10188. <BODY>
  10189. <H1>Nickname Explained</H1>
  10190.  
  10191. This is a nickname to help you.
  10192. You should have a different nickname for each role you define.
  10193. The nickname will be used in the SETUP ROLE RULES screen to allow you to
  10194. pick a role to edit.
  10195. It will also be used when you send a message to let you know you are
  10196. sending with a different role than you use by default, and
  10197. it will be useful for choosing a role when composing with the Role command
  10198. or when composing with one of the Role Uses set to With Confirmation.
  10199. This field is not used in the outgoing message.
  10200. <P>
  10201. Look <A HREF="h_edit_nav_cmds">here</A>
  10202. to see the available Editing and Navigation commands.
  10203. <P>
  10204. <End of help on this topic>
  10205. </BODY>
  10206. </HTML>
  10207. ======= h_config_score_nick =======
  10208. <HTML>
  10209. <HEAD>
  10210. <TITLE>Nickname Explained</TITLE>
  10211. </HEAD>
  10212. <BODY>
  10213. <H1>Nickname Explained</H1>
  10214.  
  10215. This is a nickname to help you.
  10216. You should have a different nickname for each scoring rule you define.
  10217. The nickname will be used in the SETUP SCORING RULES screen to allow you to
  10218. pick a rule to edit.
  10219. <P>
  10220. Look <A HREF="h_edit_nav_cmds">here</A>
  10221. to see the available Editing and Navigation commands.
  10222. <P>
  10223. <End of help on this topic>
  10224. </BODY>
  10225. </HTML>
  10226. ======= h_config_incol_nick =======
  10227. <HTML>
  10228. <HEAD>
  10229. <TITLE>Nickname Explained</TITLE>
  10230. </HEAD>
  10231. <BODY>
  10232. <H1>Nickname Explained</H1>
  10233.  
  10234. This is a nickname to help you.
  10235. You should have a different nickname for each color rule you define.
  10236. The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
  10237. pick a rule to edit.
  10238. <P>
  10239. Look <A HREF="h_edit_nav_cmds">here</A>
  10240. to see the available Editing and Navigation commands.
  10241. <P>
  10242. <End of help on this topic>
  10243. </BODY>
  10244. </HTML>
  10245. ======= h_config_filt_nick =======
  10246. <HTML>
  10247. <HEAD>
  10248. <TITLE>Nickname Explained</TITLE>
  10249. </HEAD>
  10250. <BODY>
  10251. <H1>Nickname Explained</H1>
  10252.  
  10253. This is a nickname to help you.
  10254. You should have a different nickname for each filtering rule you define.
  10255. The nickname will be used in the SETUP FILTERING RULES screen to allow you to
  10256. pick a rule to edit.
  10257. <P>
  10258. Look <A HREF="h_edit_nav_cmds">here</A>
  10259. to see the available Editing and Navigation commands.
  10260. <P>
  10261. <End of help on this topic>
  10262. </BODY>
  10263. </HTML>
  10264. ======= h_config_score_topat =======
  10265. <HTML>
  10266. <HEAD>
  10267. <TITLE>"To:" Pattern Explained</TITLE>
  10268. </HEAD>
  10269. <BODY>
  10270. <H1>"To:" Pattern Explained</H1>
  10271.  
  10272. Any text you enter as the "To pattern"
  10273. will be compared to the recipients from the To: line of
  10274. the message being scored.
  10275. When the text you entered matches
  10276. all or part of the To: line of a message, then the Score Value
  10277. you have specified will be added to the score for the message.
  10278. (Any other non-blank parts of the Pattern must match, too.)
  10279. <P>
  10280.  
  10281. You may enter a complete email address, part of an address, or a
  10282. comma-separated list of addresses or partial addresses.
  10283. For example:
  10284. <P>
  10285.  
  10286. <PRE>
  10287.  To pattern = friend@public.com
  10288.  To pattern = rated.net
  10289.  To pattern = xxx@adults.com, admin@msn.com, fool@motleyfool.com
  10290. </PRE>
  10291.  
  10292. <P>
  10293. Each of those are valid To patterns.
  10294. <P>
  10295.  
  10296. Messages match those patterns if any of the
  10297. addresses in the To: line of the message contains the pattern.
  10298. If the pattern is a comma-separated list of patterns
  10299. (like the last example above) then it is a match if any of the patterns in
  10300. the list match any of the addresses in the To: line.
  10301. (It is not possible to specify two addresses which must <EM>BOTH</EM> be
  10302. present for a match.
  10303. It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
  10304. address2 must be present.
  10305. That is exactly what the comma-separated list does.)
  10306. <P>
  10307.  
  10308. Some messages may be "bounced" to you, and will
  10309. have a "Resent-To:" header line.
  10310. If the message contains a Resent-To: line, Pine will look for
  10311. matches to your "To patterns" there, and <EM>NOT</EM> in
  10312. the original To: line.
  10313. <P>
  10314.  
  10315. When entering a pattern, you may choose an address from your address book
  10316. with the "T" command.
  10317. <P>
  10318.  
  10319. You are not limited to using the six standard header patterns which are
  10320. normally shown (To, From, Sender, Cc, News, and Subject).
  10321. You may add any other header to a Pattern by
  10322. using the "eXtraHdr" command to specify a different
  10323. message header line; and then the Add or Change command to fill in
  10324. a pattern for the new header line, just like you would for a standard header.
  10325. <P>
  10326. Look "<A HREF="h_rule_patterns">here</A>"
  10327. for more information on Patterns.
  10328. <P>
  10329. Look <A HREF="h_edit_nav_cmds">here</A>
  10330. to see the available Editing and Navigation commands.
  10331. <P>
  10332. <End of help on this topic>
  10333. </BODY>
  10334. </HTML>
  10335. ======= h_config_incol_topat =======
  10336. <HTML>
  10337. <HEAD>
  10338. <TITLE>"To:" Pattern Explained</TITLE>
  10339. </HEAD>
  10340. <BODY>
  10341. <H1>"To:" Pattern Explained</H1>
  10342.  
  10343. Any text you enter as the "To pattern"
  10344. will be compared to the recipients from the To: lines of
  10345. the messages in the index.
  10346. When the text you entered matches
  10347. all or part of the To: line of a message, then the Index Line Color you have
  10348. specified will be used for that line in the index.
  10349. (Any other non-blank parts of the Pattern must match, too.)
  10350. <P>
  10351.  
  10352. You may enter a complete email address, part of an address, or a
  10353. comma-separated list of addresses or partial addresses.
  10354. For example:
  10355. <P>
  10356.  
  10357. <PRE>
  10358.  To pattern = friend@public.com
  10359.  To pattern = rated.net
  10360.  To pattern = xxx@adults.com, admin@msn.com, fool@motleyfool.com
  10361. </PRE>
  10362.  
  10363. <P>
  10364. Each of those are valid To patterns.
  10365. <P>
  10366.  
  10367. Messages match those patterns if any of the
  10368. addresses in the To: line of the message contains the pattern.
  10369. If the pattern is a comma-separated list of patterns
  10370. (like the last example above) then it is a match if any of the patterns in
  10371. the list match any of the addresses in the To: line.
  10372. (It is not possible to specify two addresses which must <EM>BOTH</EM> be
  10373. present for a match.
  10374. It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
  10375. address2 must be present.
  10376. That is exactly what the comma-separated list does.)
  10377. <P>
  10378.  
  10379. Some messages may be "bounced" to you, and will
  10380. have a "Resent-To:" header line.
  10381. If the message contains a Resent-To: line, Pine will look for
  10382. matches to your "To patterns" there, and <EM>NOT</EM> in
  10383. the original To: line.
  10384. <P>
  10385.  
  10386. When entering a pattern, you may choose an address from your address book
  10387. with the "T" command.
  10388. <P>
  10389.  
  10390. You are not limited to using the six standard header patterns which are
  10391. normally shown (To, From, Sender, Cc, News, and Subject).
  10392. You may add any other header to a Pattern by
  10393. using the "eXtraHdr" command to specify a different
  10394. message header line; and then the Add or Change command to fill in
  10395. a pattern for the new header line, just like you would for a standard header.
  10396. <P>
  10397. Look "<A HREF="h_rule_patterns">here</A>"
  10398. for more information on Patterns.
  10399. <P>
  10400. Look <A HREF="h_edit_nav_cmds">here</A>
  10401. to see the available Editing and Navigation commands.
  10402. <P>
  10403. <End of help on this topic>
  10404. </BODY>
  10405. </HTML>
  10406. ======= h_config_filt_topat =======
  10407. <HTML>
  10408. <HEAD>
  10409. <TITLE>"To:" Pattern Explained</TITLE>
  10410. </HEAD>
  10411. <BODY>
  10412. <H1>"To:" Pattern Explained</H1>
  10413.  
  10414. Any text you enter as the "To pattern"
  10415. will be compared to the recipients from the To: line of
  10416. messages when Pine opens folders.
  10417. When the text you entered matches
  10418. all or part of the To: line of a message, then the Filter Action you have
  10419. specified will be carried out.
  10420. (Any other non-blank parts of the Pattern must match, too.)
  10421. <P>
  10422.  
  10423. You may enter a complete email address, part of an address, or a
  10424. comma-separated list of addresses or partial addresses.
  10425. For example:
  10426. <P>
  10427.  
  10428. <PRE>
  10429.  To pattern = friend@public.com
  10430.  To pattern = rated.net
  10431.  To pattern = xxx@adults.com, admin@msn.com, fool@motleyfool.com
  10432. </PRE>
  10433.  
  10434. <P>
  10435. Each of those are valid To patterns.
  10436. <P>
  10437.  
  10438. Messages match those patterns if any of the
  10439. addresses in the To: line of the message contains the pattern.
  10440. If the pattern is a comma-separated list of patterns
  10441. (like the last example above) then it is a match if any of the patterns in
  10442. the list match any of the addresses in the To: line.
  10443. (It is not possible to specify two addresses which must <EM>BOTH</EM> be
  10444. present for a match.
  10445. It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
  10446. address2 must be present.
  10447. That is exactly what the comma-separated list does.)
  10448. <P>
  10449.  
  10450. Some messages may be "bounced" to you, and will
  10451. have a "Resent-To:" header line.
  10452. If the message contains a Resent-To: line, Pine will look for
  10453. matches to your "To patterns" there, and <EM>NOT</EM> in
  10454. the original To: line.
  10455. <P>
  10456.  
  10457. When entering a pattern, you may choose an address from your address book
  10458. with the "T" command.
  10459. <P>
  10460.  
  10461. You are not limited to using the six standard header patterns which are
  10462. normally shown (To, From, Sender, Cc, News, and Subject).
  10463. You may add any other header to a Pattern by
  10464. using the "eXtraHdr" command to specify a different
  10465. message header line; and then the Add or Change command to fill in
  10466. a pattern for the new header line, just like you would for a standard header.
  10467. <P>
  10468. Look "<A HREF="h_rule_patterns">here</A>"
  10469. for more information on Patterns.
  10470. <P>
  10471. Look <A HREF="h_edit_nav_cmds">here</A>
  10472. to see the available Editing and Navigation commands.
  10473. <P>
  10474. <End of help on this topic>
  10475. </BODY>
  10476. </HTML>
  10477. ======= h_config_role_topat =======
  10478. <HTML>
  10479. <HEAD>
  10480. <TITLE>"To:" Pattern Explained</TITLE>
  10481. </HEAD>
  10482. <BODY>
  10483. <H1>"To:" Pattern Explained</H1>
  10484.  
  10485. Any text you enter as the "To pattern"
  10486. will be compared to the recipients from the To: line of
  10487. the message being replied to or forwarded.
  10488. (Any other non-blank parts of the Pattern must match, too.)
  10489. In the case of the Compose command, this pattern and the other header
  10490. patterns are ignored.
  10491. <P>
  10492.  
  10493. You may enter a complete email address, part of an address, or a
  10494. comma-separated list of addresses or partial addresses.
  10495. For example:
  10496. <P>
  10497.  
  10498. <PRE>
  10499.  To pattern = friend@public.com
  10500.  To pattern = rated.net
  10501.  To pattern = xxx@adults.com, admin@msn.com, fool@motleyfool.com
  10502. </PRE>
  10503.  
  10504. <P>
  10505. Each of those are valid To patterns.
  10506. <P>
  10507.  
  10508. Messages match those patterns if any of the
  10509. addresses in the To: line of the message contains the pattern.
  10510. If the pattern is a comma-separated list of patterns
  10511. (like the last example above) then it is a match if any of the patterns in
  10512. the list match any of the addresses in the To: line.
  10513. (It is not possible to specify two addresses which must <EM>BOTH</EM> be
  10514. present for a match.
  10515. It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
  10516. address2 must be present.
  10517. That is exactly what the comma-separated list does.)
  10518. <P>
  10519.  
  10520. Some messages may be "bounced" to you, and will
  10521. have a "Resent-To:" header line.
  10522. If the message contains a Resent-To: line, Pine will look for
  10523. matches to your "To patterns" there, and <EM>NOT</EM> in
  10524. the original To: line.
  10525. <P>
  10526.  
  10527. When entering a pattern, you may choose an address from your address book
  10528. with the "T" command.
  10529. <P>
  10530.  
  10531. You are not limited to using the six standard header patterns which are
  10532. normally shown (To, From, Sender, Cc, News, and Subject).
  10533. You may add any other header to a Pattern by
  10534. using the "eXtraHdr" command to specify a different
  10535. message header line; and then the Add or Change command to fill in
  10536. a pattern for the new header line, just like you would for a standard header.
  10537. <P>
  10538. Look "<A HREF="h_rule_patterns">here</A>"
  10539. for more information on Patterns.
  10540. <P>
  10541. Look <A HREF="h_edit_nav_cmds">here</A>
  10542. to see the available Editing and Navigation commands.
  10543. <P>
  10544. <End of help on this topic>
  10545. </BODY>
  10546. </HTML>
  10547. ======= h_config_role_frompat =======
  10548. <HTML>
  10549. <HEAD>
  10550. <TITLE>"From:" Pattern Explained</TITLE>
  10551. </HEAD>
  10552. <BODY>
  10553. <H1>"From:" Pattern Explained</H1>
  10554.  
  10555. This is just like the "To pattern" except that it is compared with
  10556. the address in the From: line of the message
  10557. instead of the addresses from the To: line.
  10558. See the help for the To pattern for more information on header patterns.
  10559. <P>
  10560. Look "<A HREF="h_rule_patterns">here</A>"
  10561. for more information on Patterns.
  10562. <P>
  10563. Look <A HREF="h_edit_nav_cmds">here</A>
  10564. to see the available Editing and Navigation commands.
  10565. <P>
  10566. <End of help on this topic>
  10567. </BODY>
  10568. </HTML>
  10569. ======= h_config_role_senderpat =======
  10570. <HTML>
  10571. <HEAD>
  10572. <TITLE>"Sender:" Pattern Explained</TITLE>
  10573. </HEAD>
  10574. <BODY>
  10575. <H1>"Sender:" Pattern Explained</H1>
  10576.  
  10577. This is just like the "To pattern" except that it is compared with
  10578. the address from the Sender: line of the message
  10579. instead of the addresses from the To: line.
  10580. See the help for the To pattern for more information on header patterns.
  10581. <P>
  10582. Look "<A HREF="h_rule_patterns">here</A>"
  10583. for more information on Patterns.
  10584. <P>
  10585. Look <A HREF="h_edit_nav_cmds">here</A>
  10586. to see the available Editing and Navigation commands.
  10587. <P>
  10588. <End of help on this topic>
  10589. </BODY>
  10590. </HTML>
  10591. ======= h_config_role_ccpat =======
  10592. <HTML>
  10593. <HEAD>
  10594. <TITLE>"Cc:" Pattern Explained</TITLE>
  10595. </HEAD>
  10596. <BODY>
  10597. <H1>"Cc:" Pattern Explained</H1>
  10598.  
  10599. This is just like the "To pattern" except that it is compared with
  10600. the addresses from the Cc: line of the message
  10601. instead of the addresses from the To: line.
  10602. See the help for the To pattern for more information on header patterns.
  10603. <P>
  10604. Look "<A HREF="h_rule_patterns">here</A>"
  10605. for more information on Patterns.
  10606. <P>
  10607. Look <A HREF="h_edit_nav_cmds">here</A>
  10608. to see the available Editing and Navigation commands.
  10609. <P>
  10610. <End of help on this topic>
  10611. </BODY>
  10612. </HTML>
  10613. ======= h_config_role_recippat =======
  10614. <HTML>
  10615. <HEAD>
  10616. <TITLE>Recipient Pattern Explained</TITLE>
  10617. </HEAD>
  10618. <BODY>
  10619. <H1>Recipient Pattern Explained</H1>
  10620.  
  10621. This is just like the "To pattern" except that it is compared with
  10622. the addresses from both the To: line and the Cc: line of the
  10623. message instead of just the addresses from the To: line.
  10624. In other words, it is considered a match if the pattern matches
  10625. <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
  10626. in the Cc: line.
  10627. (Notice that defining the Recipient pattern does not have the same
  10628. effect as defining both the To and Cc patterns.
  10629. Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
  10630. It is equivalent to having two different rules;
  10631. one with a To pattern and the other with the same Cc pattern.)
  10632. <P>
  10633. Look "<A HREF="h_rule_patterns">here</A>"
  10634. for more information on Patterns.
  10635. <P>
  10636. Look <A HREF="h_edit_nav_cmds">here</A>
  10637. to see the available Editing and Navigation commands.
  10638. <P>
  10639. <End of help on this topic>
  10640. </BODY>
  10641. </HTML>
  10642. ======= h_config_role_particpat =======
  10643. <HTML>
  10644. <HEAD>
  10645. <TITLE>Participant Pattern Explained</TITLE>
  10646. </HEAD>
  10647. <BODY>
  10648. <H1>Participant Pattern Explained</H1>
  10649.  
  10650. This is just like the "To pattern" except that it is compared with
  10651. the addresses from the From: line, the To: line, and the Cc: line of the
  10652. message instead of just the addresses from the To: line.
  10653. In other words, it is considered a match if the pattern matches
  10654. <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
  10655. in the To: line, <EM>OR</EM> an address in the Cc: line.
  10656. (Notice that defining the Participant pattern does not have the same
  10657. effect as defining all of the From, To, and Cc patterns.
  10658. Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
  10659. From <EM>AND</EM> To <EM>AND</EM> Cc.
  10660. It is equivalent to having three different rules;
  10661. one with a From pattern, another with the same To pattern, and a third with
  10662. the same Cc pattern.)
  10663. <P>
  10664. Look "<A HREF="h_rule_patterns">here</A>"
  10665. for more information on Patterns.
  10666. <P>
  10667. Look <A HREF="h_edit_nav_cmds">here</A>
  10668. to see the available Editing and Navigation commands.
  10669. <P>
  10670. <End of help on this topic>
  10671. </BODY>
  10672. </HTML>
  10673. ======= h_config_role_newspat =======
  10674. <HTML>
  10675. <HEAD>
  10676. <TITLE>News Pattern Explained</TITLE>
  10677. </HEAD>
  10678. <BODY>
  10679. <H1>News Pattern Explained</H1>
  10680.  
  10681. If this pattern is non-blank, then for this rule to be considered a
  10682. match, at least one of the newsgroups from
  10683. the Newsgroups line of the message must match this pattern.
  10684. If this pattern is a comma-separated list of patterns, then at least one of the
  10685. newsgroups must match at least one of the patterns.
  10686. (Any other non-blank parts of the Pattern must match, too.)
  10687. <P>
  10688. Look "<A HREF="h_rule_patterns">here</A>"
  10689. for more information on Patterns.
  10690. <P>
  10691. Look <A HREF="h_edit_nav_cmds">here</A>
  10692. to see the available Editing and Navigation commands.
  10693. <P>
  10694. <End of help on this topic>
  10695. </BODY>
  10696. </HTML>
  10697. ======= h_config_role_subjpat =======
  10698. <HTML>
  10699. <HEAD>
  10700. <TITLE>"Subject:" Pattern Explained</TITLE>
  10701. </HEAD>
  10702. <BODY>
  10703. <H1>"Subject:" Pattern Explained</H1>
  10704.  
  10705. This is similar to the other parts of the Pattern.
  10706. It is compared with
  10707. the contents from the Subject of the message.
  10708. <P>
  10709. If you enter non-ASCII characters in this field then the search will be
  10710. done using the character set you have defined with the
  10711. <A HREF="h_config_char_set">"character-set"</A>
  10712. configuration variable.
  10713. (The truly sophisticated may use an alternate character set for a search
  10714. by entering the MIME encoding of the header string here.)
  10715. <P>
  10716. Look "<A HREF="h_rule_patterns">here</A>"
  10717. for more information on Patterns.
  10718. <P>
  10719. If you wish to have a header pattern which is not one of the six standard
  10720. header patterns, you may add it with the "eXtraHdr" command.
  10721. <P>
  10722. Look <A HREF="h_edit_nav_cmds">here</A>
  10723. to see the available Editing and Navigation commands.
  10724. <P>
  10725. <End of help on this topic>
  10726. </BODY>
  10727. </HTML>
  10728. ======= h_config_role_alltextpat =======
  10729. <HTML>
  10730. <HEAD>
  10731. <TITLE>AllText Pattern Explained</TITLE>
  10732. </HEAD>
  10733. <BODY>
  10734. <H1>AllText Pattern Explained</H1>
  10735.  
  10736. This is similar to the header patterns.
  10737. Instead of comparing with text in a particular header field it 
  10738. is compared with all of the text in the message header and body.
  10739. <P>
  10740. If you enter non-ASCII characters in this field then the search will be
  10741. done using the character set you have defined with the
  10742. <A HREF="h_config_char_set">"character-set"</A>
  10743. configuration variable.
  10744. (The truly sophisticated may use an alternate character set for a search
  10745. by entering the MIME encoding of the header string here.)
  10746. <P>
  10747. It is possible that you may notice degraded performance when using
  10748. AllText Patterns.
  10749. <P>
  10750. Look "<A HREF="h_rule_patterns">here</A>"
  10751. for more information on Patterns.
  10752. <P>
  10753. Look <A HREF="h_edit_nav_cmds">here</A>
  10754. to see the available Editing and Navigation commands.
  10755. <P>
  10756. <End of help on this topic>
  10757. </BODY>
  10758. </HTML>
  10759. ======= h_config_role_arbpat =======
  10760. <HTML>
  10761. <HEAD>
  10762. <TITLE>Extra Header Patterns Explained</TITLE>
  10763. </HEAD>
  10764. <BODY>
  10765. <H1>Extra Header Patterns Explained</H1>
  10766.  
  10767. The header patterns which come after the Subject pattern but before the AllText
  10768. pattern are extra header patterns which you have added to a rule's Pattern.
  10769. These are just like the other header patterns except that
  10770. the contents of the particular header listed on the left hand side will
  10771. be used for comparisons.
  10772. <P>
  10773. The "eXtraHdr" command may be used to add more of these
  10774. header patterns to the rule you are editing.
  10775. <P>
  10776. The "RemoveHdr" command may be used to delete the highlighted
  10777. extra header pattern from the rule you are editing.
  10778. <P>
  10779. If you enter non-ASCII characters in this field then the search will be
  10780. done using the character set you have defined with the
  10781. <A HREF="h_config_char_set">"character-set"</A>
  10782. configuration variable.
  10783. (The truly sophisticated may use an alternate character set for a search
  10784. by entering the MIME encoding of the header string here.)
  10785. <P>
  10786. Look "<A HREF="h_rule_patterns">here</A>"
  10787. for more information on Patterns.
  10788. <P>
  10789. Look <A HREF="h_edit_nav_cmds">here</A>
  10790. to see the available Editing and Navigation commands.
  10791. <P>
  10792. <End of help on this topic>
  10793. </BODY>
  10794. </HTML>
  10795. ======= h_config_role_scorei =======
  10796. <HTML>
  10797. <HEAD>
  10798. <TITLE>Score Interval Explained</TITLE>
  10799. </HEAD>
  10800. <BODY>
  10801. <H1>Score Interval Explained</H1>
  10802.  
  10803. The Score Interval, if defined, is part of the Pattern.
  10804. If you use this, it should be set to something like:
  10805. <P>
  10806. <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
  10807. <P>
  10808. where "min_score" and "max_score" are integers between
  10809. -32000 and 32000.
  10810. The special values "-INF" and "INF" may be used for
  10811. the min and max values.
  10812. These represent negative and positive infinity.
  10813. <P>
  10814. When there is a Score Interval defined, it is a match if the score for
  10815. the message is contained in the interval.
  10816. The interval includes both endpoints.
  10817. The score for a message is calculated by looking at every scoring rule
  10818. defined and adding up the Score Values for the rules which match the message.
  10819. Scoring rules are created using the
  10820. <A HREF="h_rules_score">"SETUP SCORING"</A> screen.
  10821.  
  10822. <P>
  10823. Look "<A HREF="h_rule_patterns">here</A>"
  10824. for more information on Patterns.
  10825. <P>
  10826. Look <A HREF="h_edit_nav_cmds">here</A>
  10827. to see the available Editing and Navigation commands.
  10828. <P>
  10829. <End of help on this topic>
  10830. </BODY>
  10831. </HTML>
  10832. ======= h_config_role_fldr_type =======
  10833. <HTML>
  10834. <HEAD>
  10835. <TITLE>Current Folder Type Explained</TITLE>
  10836. </HEAD>
  10837. <BODY>
  10838. <H1>Current Folder Type Explained</H1>
  10839.  
  10840. The Current Folder Type is part of the role's Pattern.
  10841. It refers to the type of the currently open folder, which is the folder
  10842. you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
  10843. In order for a role to be considered a match, the current folder must
  10844. be of the type you set here.
  10845. The three types "Any", "News", and "Email" are
  10846. all what you might think.
  10847. <P>
  10848. If the Current Folder Type for a role's Pattern is set to "News", for
  10849. example, then
  10850. that role will only be a match if the current folder is a newsgroup and
  10851. the rest of the Pattern matches.
  10852. The value "Specific" may be used when you want to limit the match
  10853. to a specific folder (not just a specific type of folder), or to a list of
  10854. specific folders.
  10855. <P>
  10856. In order to match a specific folder you Select the "Specific"
  10857. button <EM>AND</EM> fill in
  10858. the name (or comma-separated list of names) of
  10859. the folder in the "Folder" field.
  10860. If the current folder is any of the folders in the list, that is considered
  10861. a match.
  10862. The name of each folder in the list may be either "INBOX",
  10863. the technical specification
  10864. of the folder (like what appears in your configuration file) or, if the
  10865. folder is one of your incoming folders, it may be the nickname you've given
  10866. the folder.
  10867. Here are a couple samples of specific folder names:
  10868. <P>
  10869. <CENTER><SAMP>{monet.art.nowhere.edu}mail/art-class</SAMP></CENTER>
  10870. <P>
  10871. <CENTER><SAMP>{news.myisp.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
  10872. <P>
  10873. The easiest way to fill in the "Folder" field is to use
  10874. the "T" command which is available when the "Folder" line is
  10875. hilighted, or to use the "Take" command with the configuration
  10876. feature
  10877. <A HREF="h_config_enable_role_take">"enable-rules-under-take"</A>
  10878. turned on.
  10879. Note that you won't be able to edit the "Folder" line unless the
  10880. Current Folder Type is set to "Specific", and any value that
  10881. "Folder" has is ignored unless the type
  10882. is set to "Specific".
  10883. <P>
  10884. When reading a newsgroup, there may be a performance penalty
  10885. incurred when collecting the information necessary to check a Pattern.
  10886. For this reason, the default Current Folder Type is set to "Email".
  10887. <P>
  10888. Look "<A HREF="h_rule_patterns">here</A>"
  10889. for more information on Patterns.
  10890. <P>
  10891. Look <A HREF="h_edit_nav_cmds">here</A>
  10892. to see the available Editing and Navigation commands.
  10893. <P>
  10894. <End of help on this topic>
  10895. </BODY>
  10896. </HTML>
  10897. ======= h_config_filt_rule_type =======
  10898. <HTML>
  10899. <HEAD>
  10900. <TITLE>Filter Action Explained</TITLE>
  10901. </HEAD>
  10902. <BODY>
  10903. <H1>Filter Action Explained</H1>
  10904.  
  10905. The Filter Action specifies the action to be taken when the Pattern is a
  10906. match.
  10907. It may be set to either "Delete" or "Move".
  10908. If it is set to "Delete", then the message which matches the
  10909. Pattern will be deleted from the open folder.
  10910. <P>
  10911. If it is set to "Move", then the name of the folder to which
  10912. the matching message should be moved is given in the Folder field on the
  10913. next line of the screen.
  10914. A list of folders separated by commas may be given, in which case the
  10915. message will be copied to all of the folders in the list before it is
  10916. deleted.
  10917. <P>
  10918. The easiest way to fill in the "Folder" field is to use
  10919. the T command which is available when the "Folder" line is
  10920. hilighted.
  10921. Note that you won't be able to edit the "Folder" line unless the
  10922. Filter Action is set to "Move", and any value that
  10923. "Folder" has is ignored unless the type
  10924. is set to "Move".
  10925. <P>
  10926. Look "<A HREF="h_rule_patterns">here</A>"
  10927. for more information on Patterns.
  10928. <P>
  10929. Look <A HREF="h_edit_nav_cmds">here</A>
  10930. to see the available Editing and Navigation commands.
  10931. <P>
  10932. <End of help on this topic>
  10933. </BODY>
  10934. </HTML>
  10935. ======= h_config_score_fldr_type =======
  10936. <HTML>
  10937. <HEAD>
  10938. <TITLE>Current Folder Type Explained</TITLE>
  10939. </HEAD>
  10940. <BODY>
  10941. <H1>Current Folder Type Explained</H1>
  10942.  
  10943. The Current Folder Type is part of the scoring rule's Pattern.
  10944. It refers to the type of the folder which
  10945. the message being scored is in.
  10946. In order for a rule to be considered a match, the current folder must
  10947. be of the type you set here.
  10948. The three types "Any", "News", and "Email" are
  10949. all what you might think.
  10950. <P>
  10951. If the Current Folder Type for a Pattern is set to "News", for
  10952. example, then
  10953. that Pattern will only match if the current folder is a newsgroup and
  10954. the rest of the Pattern matches.
  10955. The value "Specific" may be used when you want to limit the match
  10956. to a specific folder (not just a specific type of folder), or to a list of
  10957. specific folders.
  10958. <P>
  10959. In order to match a specific folder you Select the "Specific"
  10960. button <EM>AND</EM> fill in
  10961. the name (or comma-separated list of names) of
  10962. the folder in the "Folder" field.
  10963. If the current folder is any of the folders in the list, that is considered
  10964. a match.
  10965. The name of each folder in the list may be either "INBOX", the technical specification
  10966. of the folder (like what appears in your configuration file) or, if the
  10967. folder is one of your incoming folders, it may be the nickname you've given
  10968. the folder.
  10969. Here are a couple samples of specific folder names:
  10970. <P>
  10971. <CENTER><SAMP>{monet.art.nowhere.edu}mail/art-class</SAMP></CENTER>
  10972. <P>
  10973. <CENTER><SAMP>{news.myisp.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
  10974. <P>
  10975. The easiest way to fill in the "Folder" field is to use
  10976. the T command which is available when the "Folder" line is
  10977. hilighted.
  10978. Note that you won't be able to edit the "Folder" line unless the
  10979. Current Folder Type is set to "Specific", and any value that
  10980. "Folder" has is ignored unless the type
  10981. is set to "Specific".
  10982. <P>
  10983. When reading a newsgroup, there may be a performance penalty
  10984. incurred when collecting the information necessary to check a Pattern.
  10985. For this reason, the default Current Folder Type is set to "Email".
  10986. For example, if you have Index Line Coloring rules which have Score Intervals
  10987. defined then the scores for all the visible messages will need to be calculated.
  10988. If some of your Scoring rules have 
  10989. a Current Folder Type of
  10990. "Any" or "News" this may cause the MESSAGE INDEX
  10991. screen to draw more slowly when in a newsgroup.
  10992. <P>
  10993. Look "<A HREF="h_rule_patterns">here</A>"
  10994. for more information on Patterns.
  10995. <P>
  10996. Look <A HREF="h_edit_nav_cmds">here</A>
  10997. to see the available Editing and Navigation commands.
  10998. <P>
  10999. <End of help on this topic>
  11000. </BODY>
  11001. </HTML>
  11002. ======= h_config_incol_fldr_type =======
  11003. <HTML>
  11004. <HEAD>
  11005. <TITLE>Current Folder Type Explained</TITLE>
  11006. </HEAD>
  11007. <BODY>
  11008. <H1>Current Folder Type Explained</H1>
  11009.  
  11010. The Current Folder Type is part of the Line Coloring rule's Pattern.
  11011. It refers to the type of the folder for which the MESSAGE INDEX is
  11012. being viewed.
  11013. In order for a rule to be considered a match, the current folder must
  11014. be of the type you set here.
  11015. The three types "Any", "News", and "Email" are
  11016. all what you might think.
  11017. <P>
  11018. If the Current Folder Type for a Pattern is set to "News", for
  11019. example, then
  11020. that Pattern will only match if the current folder is a newsgroup and
  11021. the rest of the Pattern matches.
  11022. The value "Specific" may be used when you want to limit the match
  11023. to a specific folder (not just a specific type of folder), or to a list of
  11024. specific folders.
  11025. <P>
  11026. In order to match a specific folder you Select the "Specific"
  11027. button <EM>AND</EM> fill in
  11028. the name (or comma-separated list of names) of
  11029. the folder in the "Folder" field.
  11030. If the current folder is any of the folders in the list, that is considered
  11031. a match.
  11032. The name of each folder in the list may be either "INBOX", the technical specification
  11033. of the folder (like what appears in your configuration file) or, if the
  11034. folder is one of your incoming folders, it may be the nickname you've given
  11035. the folder.
  11036. Here are a couple samples of specific folder names:
  11037. <P>
  11038. <CENTER><SAMP>{monet.art.nowhere.edu}mail/art-class</SAMP></CENTER>
  11039. <P>
  11040. <CENTER><SAMP>{news.myisp.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
  11041. <P>
  11042. The easiest way to fill in the "Folder" field is to use
  11043. the T command which is available when the "Folder" line is
  11044. hilighted.
  11045. Note that you won't be able to edit the "Folder" line unless the
  11046. Current Folder Type is set to "Specific", and any value that
  11047. "Folder" has is ignored unless the type
  11048. is set to "Specific".
  11049. <P>
  11050. When reading a newsgroup, there may be a performance penalty
  11051. incurred when collecting the information necessary to check a Pattern.
  11052. For this reason, the default Current Folder Type is set to "Email".
  11053. For example, a rule with a non-Normal Index Line Color
  11054. and a Current Folder Type of
  11055. "Any" or "News" may cause the MESSAGE INDEX
  11056. screen to draw more slowly when in a newsgroup.
  11057. <P>
  11058. Look "<A HREF="h_rule_patterns">here</A>"
  11059. for more information on Patterns.
  11060. <P>
  11061. Look <A HREF="h_edit_nav_cmds">here</A>
  11062. to see the available Editing and Navigation commands.
  11063. <P>
  11064. <End of help on this topic>
  11065. </BODY>
  11066. </HTML>
  11067. ======= h_config_filt_fldr_type =======
  11068. <HTML>
  11069. <HEAD>
  11070. <TITLE>Current Folder Type Explained</TITLE>
  11071. </HEAD>
  11072. <BODY>
  11073. <H1>Current Folder Type Explained</H1>
  11074.  
  11075. The Current Folder Type is part of the Filtering rule's Pattern.
  11076. It refers to the type of the folder for which the filtering is being done.
  11077. In order for a rule to be considered a match, the current folder must
  11078. be of the type you set here.
  11079. The three types "Any", "News", and "Email" are
  11080. all what you might think.
  11081. <P>
  11082. If the Current Folder Type for a Pattern is set to "News", for
  11083. example, then
  11084. that Pattern will only match if the current folder is a newsgroup and
  11085. the rest of the Pattern matches.
  11086. The value "Specific" may be used when you want to limit the match
  11087. to a specific folder (not just a specific type of folder), or to a list of
  11088. specific folders.
  11089. <P>
  11090. In order to match a specific folder you Select the "Specific"
  11091. button <EM>AND</EM> fill in
  11092. the name (or comma-separated list of names) of
  11093. the folder in the "Folder" field.
  11094. If the current folder is any of the folders in the list, that is considered
  11095. a match.
  11096. The name of each folder in the list may be either "INBOX", the technical specification
  11097. of the folder (like what appears in your configuration file) or, if the
  11098. folder is one of your incoming folders, it may be the nickname you've given
  11099. the folder.
  11100. Here are a couple samples of specific folder names:
  11101. <P>
  11102. <CENTER><SAMP>{monet.art.nowhere.edu}mail/art-class</SAMP></CENTER>
  11103. <P>
  11104. <CENTER><SAMP>{news.myisp.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
  11105. <P>
  11106. The easiest way to fill in the "Folder" field is to use
  11107. the T command which is available when the "Folder" line is
  11108. hilighted.
  11109. Note that you won't be able to edit the "Folder" line unless the
  11110. Current Folder Type is set to "Specific", and any value that
  11111. "Folder" has is ignored unless the type
  11112. is set to "Specific".
  11113. <P>
  11114. When reading a newsgroup, there may be a performance penalty
  11115. incurred when collecting the information necessary to check a Pattern.
  11116. For this reason, the default Current Folder Type is set to "Email".
  11117. For example, a rule with a Current Folder Type of either
  11118. "Any" or "News" may cause the filtering to happen
  11119. more slowly when opening a newsgroup.
  11120. <P>
  11121. Look "<A HREF="h_rule_patterns">here</A>"
  11122. for more information on Patterns.
  11123. <P>
  11124. Look <A HREF="h_edit_nav_cmds">here</A>
  11125. to see the available Editing and Navigation commands.
  11126. <P>
  11127. <End of help on this topic>
  11128. </BODY>
  11129. </HTML>
  11130. ======= h_config_role_stat_imp =======
  11131. <HTML>
  11132. <HEAD>
  11133. <TITLE>Message Important Status Explained</TITLE>
  11134. </HEAD>
  11135. <BODY>
  11136. <H1>Message Important Status Explained</H1>
  11137.  
  11138. This part of the Pattern may have one of three possible values.
  11139. The default value is "Don't care", which matches any message.
  11140. The other two values are "Yes", which means the message must be
  11141. flagged "Important" in order to be a match; or "No", which
  11142. means the message must <EM>not</EM> be flagged "Important" in order
  11143. to be a match.
  11144. <P>
  11145. Look "<A HREF="h_rule_patterns">here</A>"
  11146. for more information on Patterns.
  11147. <P>
  11148. Look <A HREF="h_edit_nav_cmds">here</A>
  11149. to see the available Editing and Navigation commands.
  11150. <P>
  11151. <End of help on this topic>
  11152. </BODY>
  11153. </HTML>
  11154. ======= h_config_role_stat_new =======
  11155. <HTML>
  11156. <HEAD>
  11157. <TITLE>Message New Status Explained</TITLE>
  11158. </HEAD>
  11159. <BODY>
  11160. <H1>Message New Status Explained</H1>
  11161.  
  11162. This part of the Pattern may have one of three possible values.
  11163. The default value is "Don't care", which matches any message.
  11164. The other two values are "Yes", which means the message must be
  11165. "New" in order to be a match; or "No", which
  11166. means the message must <EM>not</EM> be "New" in order
  11167. to be a match.
  11168. "New" is the same as <EM>Unseen</EM> and not "New" is the
  11169. same as <EM>Seen</EM>.
  11170. <P>
  11171. Look "<A HREF="h_rule_patterns">here</A>"
  11172. for more information on Patterns.
  11173. <P>
  11174. Look <A HREF="h_edit_nav_cmds">here</A>
  11175. to see the available Editing and Navigation commands.
  11176. <P>
  11177. <End of help on this topic>
  11178. </BODY>
  11179. </HTML>
  11180. ======= h_config_role_stat_del =======
  11181. <HTML>
  11182. <HEAD>
  11183. <TITLE>Message Deleted Status Explained</TITLE>
  11184. </HEAD>
  11185. <BODY>
  11186. <H1>Message Deleted Status Explained</H1>
  11187.  
  11188. This part of the Pattern may have one of three possible values.
  11189. The default value is "Don't care", which matches any message.
  11190. The other two values are "Yes", which means the message must be
  11191. marked "Deleted" in order to be a match; or "No", which
  11192. means the message must <EM>not</EM> be marked "Deleted" in order
  11193. to be a match.
  11194. <P>
  11195. If you are thinking of using this part of the Pattern as a way to prevent
  11196. messages from being filtered more than once in a Filter Pattern,
  11197. take a look at the Filter Option
  11198. <A HREF="h_config_filt_opts_notdel">"move-only-if-not-deleted"</A>
  11199. instead.
  11200. It should work better than using this field since it will hide the filtered
  11201. messages even if they are already Deleted.
  11202. That option is at the bottom of the Filter configuration screen.
  11203. <P>
  11204. Look "<A HREF="h_rule_patterns">here</A>"
  11205. for more information on Patterns.
  11206. <P>
  11207. Look <A HREF="h_edit_nav_cmds">here</A>
  11208. to see the available Editing and Navigation commands.
  11209. <P>
  11210. <End of help on this topic>
  11211. </BODY>
  11212. </HTML>
  11213. ======= h_config_role_stat_ans =======
  11214. <HTML>
  11215. <HEAD>
  11216. <TITLE>Message Answered Status Explained</TITLE>
  11217. </HEAD>
  11218. <BODY>
  11219. <H1>Message Answered Status Explained</H1>
  11220.  
  11221. This part of the Pattern may have one of three possible values.
  11222. The default value is "Don't care", which matches any message.
  11223. The other two values are "Yes", which means the message must be
  11224. marked "Answered" in order to be a match; or "No", which
  11225. means the message must <EM>not</EM> be marked "Answered" in order
  11226. to be a match.
  11227. <P>
  11228. Look "<A HREF="h_rule_patterns">here</A>"
  11229. for more information on Patterns.
  11230. <P>
  11231. Look <A HREF="h_edit_nav_cmds">here</A>
  11232. to see the available Editing and Navigation commands.
  11233. <P>
  11234. <End of help on this topic>
  11235. </BODY>
  11236. </HTML>
  11237. ======= h_config_role_inick =======
  11238. <HTML>
  11239. <HEAD>
  11240. <TITLE>Initialize Values From Role Explained</TITLE>
  11241. </HEAD>
  11242. <BODY>
  11243. <H1>Initialize Values From Role Explained</H1>
  11244.  
  11245. This is a power user feature.
  11246. You will usually want to leave this field empty.
  11247. The value of this field is the nickname of another one of your roles.
  11248. The five Action values which begin with the word "Set" and the index
  11249. line color from that other role
  11250. are used as the initial values of the Action items for this role.
  11251. If you put something in any of the action fields for this role, that will
  11252. override whatever was in the corresponding field of the initializer role.
  11253. The fields affected by this field are the fields labeled
  11254. "Set From",
  11255. "Set Reply-To",
  11256. "Set Fcc",
  11257. "Set Signature",
  11258. "Set Template", and "Index Line Color".
  11259. <P>
  11260. You might use this field if the "Action" part of one of your roles
  11261. is something you want to use in more than one role.
  11262. Instead of filling in those action values again for each role, you
  11263. may give the nickname of the role where the values are filled in.
  11264. It's just a shortcut way to define Role Actions.
  11265. <P>
  11266. Here's an example to help explain how this works.
  11267. Suppose you have a role with nickname "role1" and role1 has
  11268. (among other things)
  11269. <P>
  11270. <CENTER><SAMP>Set Signature = sig_file1</SAMP></CENTER>
  11271. <P>
  11272. set.
  11273. If in "role2" you set "Initialize settings using role" to
  11274. "role1", then role2 will inherit the Set Signature value
  11275. from role1 by default (and any of the other inheritable action values
  11276. that are set).
  11277. So if role2 had
  11278. <P>
  11279. <CENTER><SAMP>Set Signature =</SAMP></CENTER>
  11280. <P>
  11281. defined, the signature file used with role2 would be "sig-file1".
  11282. However, if role2 had
  11283. <P>
  11284. <CENTER><SAMP>Set Signature = sig_file2</SAMP></CENTER>
  11285. <P>
  11286. defined, then the signature file used with role2 would be "sig-file2".
  11287. <P>
  11288. If you wish,
  11289. you may choose a nickname from your list of roles by using the
  11290. "T" command.
  11291. <P>
  11292. Look <A HREF="h_edit_nav_cmds">here</A>
  11293. to see the available Editing and Navigation commands.
  11294. <P>
  11295. <End of help on this topic>
  11296. </BODY>
  11297. </HTML>
  11298. ======= h_config_role_setfrom =======
  11299. <HTML>
  11300. <HEAD>
  11301. <TITLE>Set From Explained</TITLE>
  11302. </HEAD>
  11303. <BODY>
  11304. <H1>Set From Explained</H1>
  11305.  
  11306. This describes part of the action to be taken if the Pattern for this
  11307. role is a match.
  11308. This field consists of a single address which will be used as the From
  11309. address on the message you are sending.
  11310. This should be a fully-qualified address like
  11311. <P>
  11312. <CENTER><SAMP>Full Name <user@domain></SAMP></CENTER>
  11313. <P>
  11314. or just
  11315. <P>
  11316. <CENTER><SAMP>user@domain</SAMP></CENTER>
  11317. <P>
  11318. If you wish,
  11319. you may choose an address from your address book with the
  11320. "T" command.
  11321. <P>
  11322. If this is left blank, then your normal From address will be used.
  11323. <P>
  11324. Look <A HREF="h_edit_nav_cmds">here</A>
  11325. to see the available Editing and Navigation commands.
  11326. <P>
  11327. <End of help on this topic>
  11328. </BODY>
  11329. </HTML>
  11330. ======= h_config_role_setreplyto =======
  11331. <HTML>
  11332. <HEAD>
  11333. <TITLE>Set Reply-To Explained</TITLE>
  11334. </HEAD>
  11335. <BODY>
  11336. <H1>Set Reply-To Explained</H1>
  11337.  
  11338. This describes part of the action to be taken if the Pattern for this
  11339. role is a match.
  11340. This field consists of a single address which will be used as the Reply-To
  11341. address on the message you are sending.
  11342. This may be a fully-qualified address like
  11343. <P>
  11344. <CENTER><SAMP>Full Name <user@domain></SAMP></CENTER>
  11345. <P>
  11346. or just
  11347. <P>
  11348. <CENTER><SAMP>user@domain</SAMP></CENTER>
  11349. <P>
  11350. If you wish,
  11351. you may choose an address from your address book with the
  11352. "T" command.
  11353. <P>
  11354. If this is left blank, then there won't be a Reply-To address unless
  11355. you have configured one specially with the
  11356. "<A HREF="h_config_custom_hdrs">Customized-Headers</A>"
  11357. configuration option.
  11358. <P>
  11359. Look <A HREF="h_edit_nav_cmds">here</A>
  11360. to see the available Editing and Navigation commands.
  11361. <P>
  11362. <End of help on this topic>
  11363. </BODY>
  11364. </HTML>
  11365. ======= h_config_role_setfcc =======
  11366. <HTML>
  11367. <HEAD>
  11368. <TITLE>Set Fcc Explained</TITLE>
  11369. </HEAD>
  11370. <BODY>
  11371. <H1>Set Fcc Explained</H1>
  11372.  
  11373. This describes part of the action to be taken if the Pattern for this
  11374. role is a match.
  11375. This field consists of a single folder name which will be used in
  11376. the Fcc field of the message you are sending.
  11377. You may put anything here that you would normally type into the Fcc
  11378. field from the composer.
  11379. <P>
  11380. In addition, an fcc of "" (two double quotation marks) means
  11381. no Fcc.
  11382. <P>
  11383. A blank field here means that Pine will use its normal rules for deciding
  11384. the default value of the Fcc field.
  11385. For many roles, perhaps most, it may make more sense for you to use the
  11386. other Pine facilities for setting the Fcc.
  11387. In particular, if you want the Fcc to depend on who you are sending the
  11388. message to then the <A HREF="h_config_fcc_rule">"fcc-name-rule"</A>
  11389. is probably more useful.
  11390. In that case, you would want to leave the Fcc field here blank.
  11391. However, if you have a role that depends on who the message you are replying
  11392. to was From, or what address that message was sent to;
  11393. then it might make sense to set the Fcc for that role here.
  11394. <P>
  11395. If you wish,
  11396. you may choose a folder from your folder collections by using the
  11397. "T" command.
  11398. <P>
  11399. Look <A HREF="h_edit_nav_cmds">here</A>
  11400. to see the available Editing and Navigation commands.
  11401. <P>
  11402. <End of help on this topic>
  11403. </BODY>
  11404. </HTML>
  11405. ======= h_config_role_setotherhdr =======
  11406. <HTML>
  11407. <HEAD>
  11408. <TITLE>Set Other Headers Explained</TITLE>
  11409. </HEAD>
  11410. <BODY>
  11411. <H1>Set Other Headers Explained</H1>
  11412.  
  11413. This describes part of the action to be taken if the Pattern for this
  11414. role is a match.
  11415. This field gives you a way to set values for headers besides
  11416. "From" and "Reply-To".
  11417. If you want to set either of those, use the specific
  11418. "Set From" and "Set Reply-To" settings above.
  11419. <P>
  11420. This field is similar to the
  11421. "<A HREF="h_config_custom_hdrs">Customized-Headers</A>" option.
  11422. Each header you specify here must include the header tag 
  11423. ("To:", "Approved:", etc.)
  11424. and may optionally include a value for that header.
  11425. In order to see these headers when you compose using this role you 
  11426. must use the rich header
  11427. <!--chtml if pinemode="function_key"-->(F5)
  11428. <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
  11429. Here's an example which shows how you might set the To address.
  11430. <P>
  11431. <CENTER><SAMP>Set Other Hdrs = To: Full Name <user@domain></SAMP></CENTER>
  11432. <P>
  11433. Headers set in this way are different from headers set with the
  11434. Customized-Headers option in that the value you give for a header here
  11435. will replace any value that already exists.
  11436. For example, if you are Replying to a message there will already be at
  11437. least one address in the To header (the address you are Replying to).
  11438. However, if you Reply using a role which sets the To header, that role's
  11439. To header value will be used instead.
  11440. <P>
  11441. Limitation: Because commas are used to separate the list of
  11442. Other Headers, it is not possible to have the value of a
  11443. header contain a comma;
  11444. nor is there currently an "escape" mechanism provided
  11445. to make this work.
  11446. <P>
  11447. Look <A HREF="h_edit_nav_cmds">here</A>
  11448. to see the available Editing and Navigation commands.
  11449. <P>
  11450. <End of help on this topic>
  11451. </BODY>
  11452. </HTML>
  11453. ======= h_config_role_setlitsig =======
  11454. <HTML>
  11455. <HEAD>
  11456. <TITLE>Set Literal Signature Explained</TITLE>
  11457. </HEAD>
  11458. <BODY>
  11459. <H1>Set Literal Signature Explained</H1>
  11460.  
  11461. This describes part of the action to be taken if the Pattern for this
  11462. role is a match.
  11463. This field contains the actual text for your signature, as opposed to
  11464. the name of a file containing your signature.
  11465. If this is defined it takes precedence over any value set in the
  11466. "Set Signature" field.
  11467. <P>
  11468. This is simply a different way to store the signature.
  11469. The signature is stored inside your Pine configuration file instead of in
  11470. a separate file.
  11471. Tokens work the same way they do with
  11472. <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
  11473. help text there for more information.
  11474. <P>
  11475.  
  11476. The two character sequence \n (backslash followed by
  11477. the character n) will be used to signify a line-break in your signature.
  11478. You don't have to enter the \n, but it will be visible in the
  11479. CHANGE THIS ROLE RULE window after you are done editing the signature.
  11480. <P>
  11481. Look <A HREF="h_edit_nav_cmds">here</A>
  11482. to see the available Editing and Navigation commands.
  11483. <P>
  11484. <End of help on this topic>
  11485. </BODY>
  11486. </HTML>
  11487. ======= h_config_role_setsig =======
  11488. <HTML>
  11489. <HEAD>
  11490. <TITLE>Set Signature Explained</TITLE>
  11491. </HEAD>
  11492. <BODY>
  11493. <H1>Set Signature Explained</H1>
  11494.  
  11495. This describes part of the action to be taken if the Pattern for this
  11496. role is a match.
  11497. This field consists of a filename which will be used as the signature
  11498. file when using this role.
  11499. <P>
  11500. If the filename is followed by a vertical bar (|) then instead
  11501. of reading the contents of the file the file is assumed to be a
  11502. program which will produce the text to be used on its standard output.
  11503. The program can't have any arguments and doesn't receive any input from Pine,
  11504. but the rest of the processing works as if the contents came from a file.
  11505. <P>
  11506. Instead of storing the data in a local file, the
  11507. signature data may be stored remotely in an IMAP folder.
  11508. In order to do this, 
  11509. you must use a remote name for the signature.
  11510. A remote signature name might look like:
  11511. <P>
  11512. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
  11513. <P>
  11514. or, if you have an SSL-capable version of Pine, you might try
  11515. <P>
  11516. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us/user=loginname/ssl}mail/sig3</SAMP></CENTER>
  11517. <P>
  11518.  
  11519. The syntax used here is the same as the syntax used for a remote
  11520. <A HREF="h_config_signature_file">signature-file</A>.
  11521. Note that you may not access an existing signature file remotely,
  11522. you have to create a new <EM>folder</EM> which contains the signature data.
  11523. If the name you use here for the signature data is a remote name, then when
  11524. you edit the file using the "F" command the data will
  11525. be saved remotely in the folder.
  11526. You aren't required to do anything special to create the folder, it
  11527. gets created if you use a remote name.
  11528.  
  11529. <P>
  11530. If you type "F" you may edit the contents of the file (as opposed to
  11531. the name of the file) you have specified.
  11532. If you type "T" you may use a browser to choose an existing filename.
  11533. <P>
  11534. Besides containing regular text, a signature file may also
  11535. contain (or a signature program may produce) tokens which are replaced with text
  11536. which depends on the message you are replying to or forwarding.
  11537. The tokens all look like _word_ (a word surrounded by underscores).
  11538. For example, if the token
  11539. <P>
  11540. <CENTER><SAMP>_DATE_</SAMP></CENTER>
  11541. <P>
  11542. is included in the text of the signature file, then when you reply to
  11543. or forward a message, the token will be replaced with the actual date
  11544. the message you are replying to or forwarding was sent.
  11545. <P>
  11546. If you use a role which has a signature file for a plain composition
  11547. (that is, not a reply or forward) then there is no original message, so
  11548. any tokens which depend on the message will be replaced with nothing.
  11549. So if you want a signature file to be useful for new compositions it
  11550. shouldn't include any of the tokens which depend on the message being
  11551. replied to or forwarded.
  11552. <P>
  11553. The list of available tokens is
  11554. <A HREF="h_index_tokens">here</A>.
  11555. <P>
  11556. Actually, for the adventurous, there is a way to conditionally include text based
  11557. on whether or not a token would result in specific replacement text.
  11558. For example, you could include some text based on whether or not
  11559. the _NEWS_ token would result in any newsgroups if it was used.
  11560. It's explained in detail
  11561. <A HREF="h_reply_token_conditionals">here</A>.
  11562. <P>
  11563. In the very unlikely event that you want to include a literal token in
  11564. a signature file, you must precede it with a backslash character.
  11565. For example, to include the literal text _DATE_ you must actually use
  11566. \_DATE_.
  11567. It is not possible to have a literal backslash followed by an expanded token.
  11568. <P>
  11569. A blank field here means that Pine will use its normal rules for deciding
  11570. which file (if any) to use for the signature file.
  11571. <P>
  11572. An alternate method for storing the signature is available in
  11573. <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
  11574. <P>
  11575. Look <A HREF="h_edit_nav_cmds">here</A>
  11576. to see the available Editing and Navigation commands.
  11577. <P>
  11578. <End of help on this topic>
  11579. </BODY>
  11580. </HTML>
  11581. ======= h_config_role_settempl =======
  11582. <HTML>
  11583. <HEAD>
  11584. <TITLE>Set Template Explained</TITLE>
  11585. </HEAD>
  11586. <BODY>
  11587. <H1>Set Template Explained</H1>
  11588.  
  11589. This describes part of the action to be taken if the Pattern for this
  11590. role is a match.
  11591. This field consists of a filename which will be used as the template
  11592. file when using this role.
  11593. The template file is a file which is included at the top of the message you
  11594. are composing.
  11595. <P>
  11596. If the filename is followed by a vertical bar (|) then instead
  11597. of reading the contents of the file the file is assumed to be a
  11598. program which will produce the text to be used on its standard output.
  11599. The program can't have any arguments and doesn't receive any input from Pine,
  11600. but the rest of the processing works as if the contents came from a file.
  11601. <P>
  11602. Instead of storing the data in a local file, the
  11603. template may be stored remotely in an IMAP folder.
  11604. In order to do this, 
  11605. you must use a remote name for the template.
  11606. A remote template name might look like:
  11607. <P>
  11608. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
  11609. <P>
  11610. or, if you have an SSL-capable version of Pine, you might try
  11611. <P>
  11612. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us/user=loginname/ssl}mail/templ3</SAMP></CENTER>
  11613. <P>
  11614.  
  11615. The syntax used here is the same as the syntax used for a remote
  11616. <A HREF="h_config_signature_file">signature-file</A>.
  11617. Note that you may not access an existing template file remotely,
  11618. you have to create a new <EM>folder</EM> which contains the template data.
  11619. If the name you use here for the template is a remote name, then when
  11620. you edit the file using the "F" command the data will
  11621. be saved remotely in the folder.
  11622. You aren't required to do anything special to create the folder, it
  11623. gets created if you use a remote name.
  11624. <P>
  11625. If you type "F" you may edit the contents of the file (as opposed to
  11626. the name of the file) you have specified.
  11627. If you type "T" you may use a browser to choose an existing filename.
  11628. <P>
  11629. Besides containing regular text, the template file may also
  11630. contain (or a template file program may produce) tokens which are replaced with text
  11631. which depends on the message you are replying to or forwarding.
  11632. The tokens all look like _word_ (a word surrounded by underscores).
  11633. For example, if the token
  11634. <P>
  11635. <CENTER><SAMP>_DATE_</SAMP></CENTER>
  11636. <P>
  11637. is included in the text of the template file, then when you reply to
  11638. or forward a message, the token will be replaced with the actual date
  11639. the message you are replying to or forwarding was sent.
  11640. <P>
  11641. If you use a role which has a template file for a plain composition
  11642. (that is, not a reply or forward) then there is no original message, so
  11643. any tokens which depend on the message will be replaced with nothing.
  11644. So if you want a template file to be useful for new compositions it
  11645. shouldn't include any of the tokens which depend on the message being
  11646. replied to or forwarded.
  11647. <P>
  11648. The list of available tokens is
  11649. <A HREF="h_index_tokens">here</A>.
  11650. <P>
  11651. Actually, for the adventurous, there is a way to conditionally include text based
  11652. on whether or not a token would result in specific replacement text.
  11653. For example, you could include some text based on whether or not
  11654. the _NEWS_ token would result in any newsgroups if it was used.
  11655. It's explained in detail
  11656. <A HREF="h_reply_token_conditionals">here</A>.
  11657. <P>
  11658. In the very unlikely event that you want to include a literal token in
  11659. a template file, you must precede it with a backslash character.
  11660. For example, to include the literal text _DATE_ you must actually use
  11661. \_DATE_.
  11662. It is not possible to have a literal backslash followed by an expanded token.
  11663. <P>
  11664. A blank template field means that Pine will not use a template file when
  11665. this role is being used.
  11666. <P>
  11667. Look <A HREF="h_edit_nav_cmds">here</A>
  11668. to see the available Editing and Navigation commands.
  11669. <P>
  11670. <End of help on this topic>
  11671. </BODY>
  11672. </HTML>
  11673. ======= h_config_role_scoreval =======
  11674. <HTML>
  11675. <HEAD>
  11676. <TITLE>Score Value Explained</TITLE>
  11677. </HEAD>
  11678. <BODY>
  11679. <H1>Score Value Explained</H1>
  11680.  
  11681. A message's score is the sum of the Score Values from all of the Scoring rules
  11682. with Patterns which match the message.
  11683. The value you give here is the Score Value associated with this rule.
  11684. A Score Value is an integer between -100 and 100, with the default
  11685. value of zero.
  11686. <P>
  11687. Look <A HREF="h_edit_nav_cmds">here</A>
  11688. to see the available Editing and Navigation commands.
  11689. <P>
  11690. <End of help on this topic>
  11691. </BODY>
  11692. </HTML>
  11693. ======= h_config_role_replyuse =======
  11694. <HTML>
  11695. <HEAD>
  11696. <TITLE>Reply Use Explained</TITLE>
  11697. </HEAD>
  11698. <BODY>
  11699. <H1>Reply Use Explained</H1>
  11700.  
  11701. This option determines how this particular role will be used when Replying
  11702. to a message.
  11703. There are three possible values for this option.
  11704. The value "Never"
  11705. means that this role will not be a candidate for use when Replying.
  11706. The role's Pattern will not be checked for a match, however the role will
  11707. be available to be manually switched to if there is a confirmation prompt.
  11708. <P>
  11709.  
  11710. The options "With confirmation" and "Without confirmation"
  11711. mean that you do want to consider this role when Replying.
  11712. For either of these settings, the role's Pattern will be compared with
  11713. the message being replied to.
  11714. If there is a match then this role will either be used without confirmation
  11715. or will be the default when confirmation is asked for, depending on
  11716. which of the two options is selected.
  11717. If confirmation is requested, you will also have a chance to
  11718. manually change the role to any one of your other roles.
  11719. <P>
  11720.  
  11721. You won't be prompted for confirmation if none of your role Patterns
  11722. match the message being replied to.
  11723. This is independent of the value of the current option.
  11724. The <A HREF="h_config_confirm_role">confirm-role-even-for-default</A>
  11725. feature may be used to change this behavior.
  11726. <P>
  11727. <End of help on this topic>
  11728. </BODY>
  11729. </HTML>
  11730. ======= h_config_role_forwarduse =======
  11731. <HTML>
  11732. <HEAD>
  11733. <TITLE>Forward Use Explained</TITLE>
  11734. </HEAD>
  11735. <BODY>
  11736. <H1>Forward Use Explained</H1>
  11737.  
  11738. This option determines how this particular role will be used when Forwarding
  11739. a message.
  11740. There are three possible values for this option.
  11741. The value "Never"
  11742. means that this role will not be a candidate for use when Forwarding.
  11743. The role's Pattern will not be checked for a match, however the role will
  11744. be available to be manually switched to if there is a confirmation prompt.
  11745. <P>
  11746.  
  11747. The options "With confirmation" and "Without confirmation"
  11748. mean that you do want to consider this role when Forwarding.
  11749. For either of these settings, the role's Pattern will be compared with
  11750. the message being forwarded.
  11751. If there is a match then this role will either be used without confirmation
  11752. or will be the default when confirmation is asked for, depending on
  11753. which of the two options is selected.
  11754. If confirmation is requested, you will also have a chance to
  11755. manually change the role to any one of your other roles.
  11756. <P>
  11757.  
  11758. You won't be prompted for confirmation if none of your role Patterns
  11759. match the message being forwarded.
  11760. This is independent of the value of the current option.
  11761. The <A HREF="h_config_confirm_role">confirm-role-even-for-default</A>
  11762. feature may be used to change this behavior.
  11763. <P>
  11764. <End of help on this topic>
  11765. </BODY>
  11766. </HTML>
  11767. ======= h_config_role_composeuse =======
  11768. <HTML>
  11769. <HEAD>
  11770. <TITLE>Compose Use Explained</TITLE>
  11771. </HEAD>
  11772. <BODY>
  11773. <H1>Compose Use Explained</H1>
  11774.  
  11775. This option determines how this particular role will be used when Composing
  11776. a new message using the "Compose" command.
  11777. This does not affect what happens when using the "Role" command
  11778. to compose a new message.
  11779. The "Role" command allows you to select a role from all of the
  11780. roles you have defined, regardless of what Uses you've assigned to those
  11781. roles.
  11782. <P>
  11783.  
  11784. There are three possible values for this option.
  11785. The value "Never"
  11786. means that this role will not be a candidate for use when Composing.
  11787. The role's Current Folder Type will not be checked for a match, however the role
  11788. will be available to be manually switched to if there is a confirmation prompt.
  11789. <P>
  11790.  
  11791. The options "With confirmation" and "Without confirmation"
  11792. mean that you do want to consider this role when Composing.
  11793. For either of these settings,
  11794. the role's Current Folder Type will be checked (since there is no message
  11795. to compare with, the rest of the Pattern is considered a match).
  11796. If there is a match then this role will either be used without confirmation
  11797. or will be the default when confirmation is asked for, depending on
  11798. which of the two options is selected.
  11799. If confirmation is requested, you will also have a chance to
  11800. manually change the role to any one of your other roles.
  11801. <P>
  11802.  
  11803. When using the Compose command the role checking is a little different
  11804. because there is no message being replied to or forwarded.
  11805. Because of this the Current Folder Type is checked but the header pattern
  11806. fields, the AllText pattern, and the Score Interval are all ignored.
  11807. A role is considered to be a match if it is a candidate for Compose Use and
  11808. its Current Folder Type matches the currently open folder.
  11809. This could be useful if you want to set a role based on the folder you
  11810. are reading, or the type of folder you are reading.
  11811. <P>
  11812.  
  11813. You won't be prompted for confirmation if none of your role Patterns
  11814. are a match.
  11815. This is independent of the value of the current option.
  11816. The <A HREF="h_config_confirm_role">confirm-role-even-for-default</A>
  11817. feature may be used to change this behavior.
  11818. <P>
  11819. <End of help on this topic>
  11820. </BODY>
  11821. </HTML>
  11822. ======= h_config_filter_folder =======
  11823. <HTML>
  11824. <HEAD>
  11825. <TITLE>Filter Folder Explained</TITLE>
  11826. </HEAD>
  11827. <BODY>
  11828. <H1>Filter Folder Explained</H1>
  11829.  
  11830. When the Filter Action is set to "Move",
  11831. the folder or folders specified here will be used to store messages matching
  11832. the provided pattern.
  11833.  
  11834. <P>
  11835. If you set the Filter Action to "Move" you must give a folder name
  11836. here.
  11837.  
  11838. <P>
  11839. If you wish,
  11840. you may choose a folder from your folder collections by using the
  11841. "T" command.
  11842. <P>
  11843. Look <A HREF="h_edit_nav_cmds">here</A>
  11844. to see the available Editing and Navigation commands.
  11845. <P>
  11846. <End of help on this topic>
  11847. </BODY>
  11848. </HTML>
  11849. ======= h_index_tokens =======
  11850. <HTML>
  11851. <HEAD>
  11852. <TITLE>Tokens for Index and Replying</TITLE>
  11853. </HEAD>
  11854. <BODY>
  11855.  
  11856. This set of special tokens may be used in the
  11857. <A HREF="h_config_index_format">"Index-Format" option</A>,
  11858. in the <A HREF="h_config_reply_intro">"Reply-Leadin" option</A>,
  11859. in signature files,
  11860. and in template files used in
  11861. <A HREF="h_rules_roles">"roles"</A>.
  11862. Some of them aren't available in all situations.
  11863. <P>
  11864. The tokens are used as they appear below for the "Index-Format"
  11865. option, but they must be surrounded by underscores for the
  11866. "Reply-Leadin" option and in signature and template files.
  11867. <P>
  11868. <P>
  11869.  
  11870. <H1><EM>Tokens Available for all Cases</EM></H1>
  11871.  
  11872. <DL>
  11873. <DT>DATE</DT>
  11874. <DD>
  11875. This token represents the date on which the message was sent, according
  11876. to the "Date" header field.
  11877. It has the format MMM DD. For example, "Oct 23".
  11878. </DD>
  11879.  
  11880. <DT>SMARTDATE</DT>
  11881. <DD>
  11882. This token represents the date on which the message was sent, according
  11883. to the "Date" header field.
  11884. It is "Today" if the message was sent today,
  11885. "Yesterday" for yesterday,
  11886. "Wednesday" if it was last Wednesday, and so on. If the
  11887. message is from more than six months ago it includes the year, as well.
  11888. There is no adjustment made for different time zones, so you'll get
  11889. the day the message was sent according to the time zone the sender
  11890. was in.
  11891. </DD>
  11892.  
  11893. <DT>LONGDATE</DT>
  11894. <DD>
  11895. This token represents the date on which the message was sent, according
  11896. to the "Date" header field.
  11897. It has the format MMM DD, YYYY. For example, "Oct 23, 1999".
  11898. </DD>
  11899.  
  11900. <DT>DATEISO</DT>
  11901. <DD>
  11902. This token represents the date on which the message was sent, according
  11903. to the "Date" header field.
  11904. It has the format YYYY-MM-DD. For example, "1998-10-23".
  11905. </DD>
  11906.  
  11907. <DT>SHORTDATEISO</DT>
  11908. <DD>
  11909. This token represents the date on which the message was sent, according
  11910. to the "Date" header field.
  11911. It has the format YY-MM-DD. For example, "98-10-23".
  11912. </DD>
  11913.  
  11914. <DT>SHORTDATE1</DT>
  11915. <DD>
  11916. This token represents the date on which the message was sent, according
  11917. to the "Date" header field.
  11918. It has the format MM/DD/YY. For example, "10/23/98".
  11919. </DD>
  11920.  
  11921. <DT>SHORTDATE2</DT>
  11922. <DD>
  11923. This token represents the date on which the message was sent, according
  11924. to the "Date" header field.
  11925. It has the format DD/MM/YY. For example, "23/10/98".
  11926. </DD>
  11927.  
  11928. <DT>SHORTDATE3</DT>
  11929. <DD>
  11930. This token represents the date on which the message was sent, according
  11931. to the "Date" header field.
  11932. It has the format DD.MM.YY. For example, "23.10.98".
  11933. </DD>
  11934.  
  11935. <DT>SHORTDATE4</DT>
  11936. <DD>
  11937. This token represents the date on which the message was sent, according
  11938. to the "Date" header field.
  11939. It has the format YY.MM.DD. For example, "98.10.23".
  11940. </DD>
  11941.  
  11942. <DT>TIME24</DT>
  11943. <DD>
  11944. This token represents the time at which the message was sent, according
  11945. to the "Date" header field.
  11946. There is no adjustment made for different time zones, so you'll get
  11947. the time the message was sent according to the time zone the sender
  11948. was in.
  11949. It has the format HH:MM. For example, "17:28".
  11950. </DD>
  11951.  
  11952. <DT>TIME12</DT>
  11953. <DD>
  11954. This token represents the time at which the message was sent, according
  11955. to the "Date" header field.
  11956. This time is for a 12 hour clock.
  11957. It has the format HH:MMpm.
  11958. For example, "5:28pm" or "11:13am".
  11959. </DD>
  11960.  
  11961. <DT>TIMEZONE</DT>
  11962. <DD>
  11963. This token represents the numeric timezone from
  11964. the "Date" header field.
  11965. It has the format [+-]HHMM. For example, "-0800".
  11966. </DD>
  11967.  
  11968. <DT>SUBJECT</DT>
  11969. <DD>
  11970. This token represents the Subject the sender gave the message.
  11971. </DD>
  11972.  
  11973. <DT>FROM</DT>
  11974. <DD>
  11975. This token represents the personal name (or email address if the name
  11976. is unavailable) of the person specified in the message's "From:"
  11977. header field.
  11978. </DD>
  11979.  
  11980. <DT>SENDER</DT>
  11981. <DD>
  11982. This token represents the personal name (or email address) of the person
  11983. listed in the message's "Sender:" header field.
  11984. </DD>
  11985.  
  11986. <DT>TO</DT>
  11987. <DD>
  11988. This token represents the personal names (or email addresses if the names
  11989. are unavailable) of the persons specified in the
  11990. message's "To:" header field.
  11991. </DD>
  11992.  
  11993. <DT>NEWSANDTO</DT>
  11994. <DD>
  11995. This token represents the newsgroups from the
  11996. message's "Newsgroups:" header field <EM>and</EM>
  11997. the personal names (or email addresses if the names
  11998. are unavailable) of the persons specified in the
  11999. message's "To:" header field.
  12000. </DD>
  12001.  
  12002. <DT>TOANDNEWS</DT>
  12003. <DD>
  12004. Same as "NEWSANDTO" except in the opposite order.
  12005. </DD>
  12006.  
  12007. <DT>NEWS</DT>
  12008. <DD>
  12009. This token represents the newsgroups from the
  12010. message's "Newsgroups:" header field.
  12011. </DD>
  12012.  
  12013. <DT>CC</DT>
  12014. <DD>
  12015. This token represents the personal names (or email addresses if the names
  12016. are unavailable) of the persons specified in the
  12017. message's "Cc:" header field.
  12018. </DD>
  12019.  
  12020. <DT>RECIPS</DT>
  12021. <DD>
  12022. This token represents the personal names (or email addresses if the names
  12023. are unavailable) of the persons specified in both the
  12024. message's "To:" header field and
  12025. the message's "Cc:" header field.
  12026. </DD>
  12027.  
  12028. <DT>NEWSANDRECIPS</DT>
  12029. <DD>
  12030. This token represents the newsgroups from the
  12031. message's "Newsgroups:" header field <EM>and</EM>
  12032. the personal names (or email addresses if the names
  12033. are unavailable) of the persons specified in the
  12034. message's "To:" and "Cc:" header fields.
  12035. </DD>
  12036.  
  12037. <DT>RECIPSANDNEWS</DT>
  12038. <DD>
  12039. Same as "NEWSANDRECIPS" except in the opposite order.
  12040. </DD>
  12041.  
  12042. <DT>MONTHABBREV</DT>
  12043. <DD>
  12044. This token represents the month the message was sent, according
  12045. to the "Date" header field.
  12046. For example, "Oct".
  12047. </DD>
  12048.  
  12049. </DL>
  12050.  
  12051. <P>
  12052. <H1><EM>Tokens Available Only for Index-Format</EM></H1>
  12053.  
  12054. <DL>
  12055. <DT>MSGNO</DT>
  12056. <DD>
  12057. This token represents the message's current position in the folder which,
  12058. of course, may change as the folder is sorted or new mail arrives.
  12059. </DD>
  12060.  
  12061. <DT>STATUS</DT>
  12062. <DD>
  12063. This token represents a three character wide field displaying various
  12064. aspects of the message's state.
  12065. The first character is either blank,
  12066. a '*' for message marked Important, or a '+' indicating a message
  12067. addressed directly to you (as opposed to your having received it via a
  12068. mailing list, for example).
  12069. When the feature
  12070. "<A HREF="h_config_mark_for_cc">mark-for-cc</A>"
  12071. is set, if the first character would have been
  12072. blank then it will instead be a '-' if the message is cc'd to you.
  12073. The second character is typically blank,
  12074. though the arrow cursor may occupy it if the 
  12075. "<A HREF="h_config_force_low_speed">assume-slow-link</A>"
  12076. feature is set, or you actually are on a slow link.
  12077. The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
  12078. '<A HREF="h_flag_answered">A</A>' (Answered),
  12079. '<A HREF="h_flag_new">N</A>' (New), or blank.
  12080. </DD>
  12081.  
  12082. <DT>FULLSTATUS</DT>
  12083. <DD>
  12084. This token represents a less abbreviated alternative
  12085. to the "STATUS" field.
  12086. It is six characters wide.
  12087. The first character is '+', '-', or blank, the
  12088. second blank, the third either '*' or blank, the fourth
  12089. '<A HREF="h_flag_new">N</A>' or blank,
  12090. the fifth '<A HREF="h_flag_answered">A</A>'
  12091. or blank, and the sixth character is
  12092. either '<A HREF="h_flag_deleted">D</A>' or
  12093. blank.
  12094. </DD>
  12095.  
  12096. <DT>IMAPSTATUS</DT>
  12097. <DD>
  12098. This token represents an even less abbreviated alternative to the
  12099. "FULLSTATUS" field.
  12100. It differs in only the fourth character which is
  12101. either an 'N' if the message is new to this folder since the last time
  12102. it was opened <EM>and</EM> it has not been viewed, an 'R' if the message
  12103. is new to the folder and has been viewed (Recent), a 'U' if the message is not 
  12104. new to the folder since it was last opened <EM>but</EM> has not been
  12105. viewed (Unseen), or a blank if the message has been in the folder since it was
  12106. last opened and has been viewed.
  12107. </DD>
  12108.  
  12109. <DT>SIZE</DT>
  12110. <DD>
  12111. This token represents the total size, in bytes, of the message.
  12112. </DD>
  12113.  
  12114. <DT>DESCRIPSIZE</DT>
  12115. <DD>
  12116. This token is intended to represent a more useful description of the
  12117. message than just its size, but it isn't very useful at this point.
  12118. The plus sign in this view means there are attachments.
  12119. Note that including this token in
  12120. the "Index-Format" could slow down the
  12121. display a little while Pine collects the necessary information.
  12122. </DD>
  12123.  
  12124. <DT>ATT</DT>
  12125. <DD>
  12126. This is a one column wide field which represents the number of attachments
  12127. a message has. It will be blank if there are no attachments, a single
  12128. digit for one to nine attachments, or an asterisk for more than nine.
  12129. Note that including this token in
  12130. the "Index-Format" could slow down the
  12131. display a little while Pine collects the necessary information.
  12132. </DD>
  12133.  
  12134. <DT>FROMORTO</DT>
  12135. <DD>
  12136. This token represents <EM>either</EM> the personal name (or email address) of
  12137. the person listed in the message's "From:" header
  12138. field, <EM>or</EM>, if that address is yours or one of your
  12139. <A HREF="h_config_alt_addresses">alternate addresses</A>,
  12140. the first person specified in the
  12141. message's "To:" header field
  12142. with the prefix "To: " prepended.
  12143. If the from address is yours and there is also no "To" address,
  12144. Pine will use the address on the "Cc" line.
  12145. If there is no address there, either, Pine will look for a newsgroup name
  12146. from the "Newsgroups" header field and put
  12147. that after the "To: " prefix.
  12148. </DD>
  12149.  
  12150. <DT>FROMORTONOTNEWS</DT>
  12151. <DD>
  12152. This is almost the same as <EM>FROMORTO</EM>.
  12153. The difference is that newsgroups aren't considered.
  12154. When a message is from you, doesn't have a To or Cc, and does have
  12155. a Newsgroups header; this token will be your name instead of the name
  12156. of the newsgroup (like it would be with FROMORTO).
  12157. </DD>
  12158. </DL>
  12159.  
  12160. <P>
  12161. <H1><EM>Tokens Available for all but Index-Format</EM></H1>
  12162.  
  12163. <DL>
  12164. <DT>ADDRESS</DT>
  12165. <DD>
  12166. This is similar to the "FROM" token, only it is always the
  12167. email address, never the personal name.
  12168. For example, "mailbox@domain".
  12169. </DD>
  12170.  
  12171. <DT>MAILBOX</DT>
  12172. <DD>
  12173. This is the same as the "ADDRESS" except that the 
  12174. domain part of the address is left off.
  12175. For example, "mailbox".
  12176. </DD>
  12177.  
  12178. <DT>DAYDATE</DT>
  12179. <DD>
  12180. This token represents the date on which the message was sent, according
  12181. to the "Date" header field.
  12182. It looks like "Sat, 24 Oct 1999" unless the day of
  12183. the week is not available, in which case it looks like
  12184. "24 Oct 1999".
  12185. </DD>
  12186.  
  12187. <DT>DAY</DT>
  12188. <DD>
  12189. This token represents the day of the month on which the message was sent,
  12190. according to the "Date" header field.
  12191. For example, "24" or "9".
  12192. </DD>
  12193.  
  12194. <DT>DAY2DIGIT</DT>
  12195. <DD>
  12196. This token represents the day of the month on which the message was sent,
  12197. according to the "Date" header field.
  12198. For example, "24" or "09".
  12199. </DD>
  12200.  
  12201. <DT>MONTHLONG</DT>
  12202. <DD>
  12203. This token represents the month in which the message was sent, according
  12204. to the "Date" header field.
  12205. For example, "October".
  12206. </DD>
  12207.  
  12208. <DT>MONTH</DT>
  12209. <DD>
  12210. This token represents the month in which the message was sent, according
  12211. to the "Date" header field.
  12212. For example, "10" or "9".
  12213. </DD>
  12214.  
  12215. <DT>MONTH2DIGIT</DT>
  12216. <DD>
  12217. This token represents the month in which the message was sent, according
  12218. to the "Date" header field.
  12219. For example, "10" or "09".
  12220. </DD>
  12221.  
  12222. <DT>YEAR</DT>
  12223. <DD>
  12224. This token represents the year the message was sent, according
  12225. to the "Date" header field.
  12226. For example, "1999" or "2001".
  12227. </DD>
  12228.  
  12229. <DT>YEAR2DIGIT</DT>
  12230. <DD>
  12231. This token represents the year the message was sent, according
  12232. to the "Date" header field.
  12233. For example, "99" or "01".
  12234. </DD>
  12235.  
  12236. <DT>MSGID</DT>
  12237. <DD>
  12238. This token represents the message ID of the message.
  12239. </DD>
  12240.  
  12241. <DT>CURDATE</DT>
  12242. <DD>
  12243. This token represents the current date.
  12244. It has the format MMM DD. For example, "Oct 23".
  12245. </DD>
  12246.  
  12247. <DT>CURDATEISO</DT>
  12248. <DD>
  12249. This token represents the current date.
  12250. It has the format YYYY-MM-DD. For example, "1998-10-23".
  12251. </DD>
  12252.  
  12253. <DT>CURDATEISOS</DT>
  12254. <DD>
  12255. This token represents the current date.
  12256. It has the format YY-MM-DD. For example, "98-10-23".
  12257. </DD>
  12258.  
  12259. <DT>CURTIME24</DT>
  12260. <DD>
  12261. This token represents the current time.
  12262. It has the format HH:MM. For example, "17:28".
  12263. </DD>
  12264.  
  12265. <DT>CURTIME12</DT>
  12266. <DD>
  12267. This token represents the current time.
  12268. This time is for a 12 hour clock.
  12269. It has the format HH:MMpm.
  12270. For example, "5:28pm" or "11:13am".
  12271. </DD>
  12272. </DL>
  12273.  
  12274. <P>
  12275. <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
  12276.  
  12277. <DL>
  12278. <DT>CURSORPOS</DT>
  12279. <DD>
  12280. This token is different from the others.
  12281. When it is replaced it is replaced with nothing, but it sets a Pine
  12282. internal variable which tells the composer to start with the cursor
  12283. positioned at the position where this token was.
  12284. If both the template file and the signature file contain
  12285. a "CURSORPOS" token, then the position in the template file
  12286. is used.
  12287. If there is a template file and neither it nor the signature file contains
  12288. a "CURSORPOS" token, then the cursor is positioned
  12289. after the end of the contents of the
  12290. template file when the composer starts up.
  12291. </DD>
  12292. </DL>
  12293.  
  12294. <P>
  12295. <End of help on this topic>
  12296. </BODY>
  12297. </HTML>
  12298. ======= h_reply_token_conditionals =======
  12299. <HTML>
  12300. <HEAD>
  12301. <TITLE>Conditional Inclusion of Text for Reply-Leadin, Signatures, and Templates</TITLE>
  12302. </HEAD>
  12303. <BODY>
  12304.  
  12305. Conditional text inclusion may be used with
  12306. the <A HREF="h_config_reply_intro">"Reply-Leadin" option</A>,
  12307. in signature files, and in template files used in
  12308. <A HREF="h_rules_roles">"roles"</A>.
  12309. It may <EM>not</EM> be used with the
  12310. "Index-Format" option.
  12311.  
  12312. <P>
  12313. There is a limited if-else capability for including text.
  12314. The if-else condition is based
  12315. on whether or not a given token would result in replacement text you
  12316. specify.
  12317. The syntax of this conditional inclusion is
  12318. <P>
  12319. <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
  12320. <P>
  12321. The left parenthesis must follow the underscore immediately, with no
  12322. intervening space.
  12323. It means the token is expanded and the results of that expansion are
  12324. compared against the "match_this" argument.
  12325. If there is an exact match, then the "if_matched" text is used
  12326. as the replacement text.
  12327. Otherwise, the "if_not_matched" text is used.
  12328. One of the most useful values for the "match_this" argument is
  12329. the empty string, "".
  12330. In that case the expansion is compared against the empty string.
  12331. <P>
  12332. Here's an example to make it clearer.
  12333. This text could be included in one of your template files:
  12334. <P>
  12335. <CENTER><SAMP>_NEWS_("", "I'm replying to email", "I'm replying to news")</SAMP></CENTER>
  12336. <P>
  12337. If that is included in a template file which you are using while replying
  12338. to a message (because you chose to use the role it was part of),
  12339. and that message has a newsgroup header and a newsgroup in that header,
  12340. then the text
  12341. <P>
  12342. <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
  12343. <P>
  12344. will be included in the message you are about to compose.
  12345. On the other hand, if the message you are replying to does not have
  12346. a newsgroup, then the text
  12347. <P>
  12348. <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
  12349. <P>
  12350. would be included instead.
  12351. This would also work in signature files and in
  12352. the "Reply-Leadin" option.
  12353. If the "match_this", "if_matched",
  12354. or "if_not_matched" arguments contain
  12355. spaces, parentheses, or commas;
  12356. they have to be quoted with double quotation marks (like in the example
  12357. above).
  12358. If you want to include a literal quote (") in the text you must escape the
  12359. quote by preceding it with a backslash (\) character.
  12360. If you want to include a literal backslash character you must escape it
  12361. by preceding it with another backslash.
  12362. <P>
  12363. The comma followed by "if_not_matched" is optional.
  12364. If there is no "if_not_matched"
  12365. present then no text is included if the not_matched case is true.
  12366. Here's another example:
  12367. <P>
  12368. <CENTER><SAMP>_NEWS_("", "", "This msg was seen in group: _NEWS_.")</SAMP></CENTER>
  12369. <P>
  12370. Here you can see that tokens may appear in the arguments.
  12371. The same is true for tokens with the conditional parentheses.
  12372. They may appear in arguments,
  12373. though you do have to be careful to get the quoting and escaping of
  12374. nested double quotes correct.
  12375. If this was in the signature file being used and you were replying to a message
  12376. sent to comp.mail.pine the resulting text would be:
  12377. <P>
  12378. <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
  12379. <P>
  12380. If you were replying to a message which wasn't sent to any newsgroup the
  12381. resulting text would be a single blank line.
  12382. The reason you'd get a blank line is because the end of the line is
  12383. outside of the conditional, so is always included.
  12384. If you wanted to get rid of that blank line you could do so by moving
  12385. the end of line inside the conditional.
  12386. In other words, it's ok to have multi-line
  12387. "if_matched" or "if_not_matched" arguments.
  12388. The text just continues until the next double quotation, even if it's not
  12389. on the same line.
  12390. <P>
  12391. Here's one more (contrived) example illustrating a matching argument
  12392. which is not the empty string.
  12393. <P>
  12394. <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
  12395. <P>
  12396. If this was the value of your "Reply-Leadin" option and you
  12397. were replying to
  12398. a message which was sent today, then the value of the "Reply-Leadin"
  12399. would be
  12400. <P>
  12401. <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
  12402. <P>
  12403. But if you were replying to a message sent on Oct. 27 (and that wasn't
  12404. today) you would get
  12405. <P>
  12406. <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
  12407. <P>
  12408.  
  12409. <End of help on this topic>
  12410. </BODY>
  12411. </HTML>
  12412. ======= h_composer_cntxt_nick =======
  12413. <HTML>
  12414. <HEAD>
  12415. <TITLE>Collection Nickname Explained</TITLE>
  12416. </HEAD>
  12417. <BODY>
  12418. <H1>Collection Edit Help -- Nickname Field</H1>
  12419.  
  12420. This field is provided so you can add a short nickname to use when
  12421. referring to this collection within Pine.  Spaces are allowed, and
  12422. you don't need to use double-quotes.  However, the double-quote
  12423. character is not allowed.
  12424. <P>
  12425. Look <A HREF="h_edit_nav_cmds">here</A>
  12426. to see the available Editing and Navigation commands.
  12427. <P>
  12428. <End of help on this topic>
  12429. </BODY>
  12430. </HTML>
  12431. ======= h_composer_cntxt_server =======
  12432. <HTML>
  12433. <HEAD>
  12434. <TITLE>Collection Server: Explained</TITLE>
  12435. </HEAD>
  12436. <BODY>
  12437. <H1>Collection Edit Help -- Server Field</H1>
  12438.  
  12439. This collection's "Server:" definition indicates the
  12440. hostname of the server providing access to the folders in this
  12441. collection.  It's a good idea to use the host's fully qualified
  12442. network name.  However, IP addresses are allowed if it's delimited
  12443. with square-brackets (e.g., [127.0.0.1]).
  12444.  
  12445. <P>
  12446. Additionally, an optional network port number can be supplied by appending
  12447. the server name with a colon, ":", followed by the port number
  12448. on the server to connect to.  By default, the IMAP port number, 143, is used.
  12449.  
  12450. <P>
  12451. Besides server name and optional port number, various parameters can
  12452. be supplied as well that alter Pine's interaction with the server.  A
  12453. parameter is supplied by appending the server's name with a slash,
  12454. "/", character followed by the parameter's name and,
  12455. depending on the particular parameter, the value assigned to that
  12456. name.  Currently supported parameters include:
  12457.  
  12458. <DL>
  12459. <DT>User</DT>
  12460. <DD>This parameter requires an associated value, and is intended to
  12461. provide the username identifier with which to establish the server
  12462. connection.  An example might be: "/user=katie"
  12463. </DD>
  12464. <DT>Service</DT>
  12465. <DD>This parameter requires an associated value.  The default value is
  12466. "IMAP" which indicates communication with the server based
  12467. on the IMAP4.1 protocol (defined in RFC 2060 -- see 
  12468. <A HREF="http://www.imap.org/docs/rfc2060.html">http://www.imap.org/docs/rfc2060.html</A>).</DD>
  12469.  </DL>
  12470.  
  12471. Other values include:
  12472.  <DL>
  12473.  <DT>NNTP</DT>
  12474.  <DD>This value indicates communication with the server takes place via
  12475. the Network News Transfer Protocol.  Use this to define a collection
  12476. of newsgroups on a remote news server.  So, "/service=NNTP"
  12477. (without the quotes) is the way to specify NNTP access.
  12478.  </DD>
  12479.  <DT>POP3</DT>
  12480.  <DD>This value indicates communication with the server takes place via the
  12481. Post Office Protocol 3 protocol.  Note that there are several important issues
  12482. to consider when selecting this option:
  12483. <OL>
  12484.  <LI> POP3 provides access to only your INBOX.  In other words,
  12485. secondary folders such as your "saved-messages" are inaccessible.
  12486.  <LI> Pine's implementation of POP3 does not follow the traditional POP
  12487. model and will leave your mail on the server.
  12488.  <LI> Pine's implementation of POP3 is not fully supported and,
  12489. as such, has known limitations and inefficiencies.
  12490. </OL>
  12491. </DD>
  12492.  
  12493.  
  12494. <DT>Anonymous</DT>
  12495. <DD>This is a unary parameter indicating that the connection be
  12496. established use "public" authentication credentials.
  12497. </DD>
  12498. <DT>Secure</DT>
  12499. <DD>This is a unary parameter indicating that the connection use the
  12500. most secure authentication method mutually supported by Pine and the
  12501. server.  Pine is capable of authenticating connections to 
  12502. the server using several methods.  By default, Pine will attempt each
  12503. method until either a connection is established or the
  12504. list of methods is exhausted.  This parameter causes Pine to fail 
  12505. the connection if the first (generally most "secure") method
  12506. fails.
  12507. </DD>
  12508. <DT>SSL</DT>
  12509. <DD>
  12510. This is a unary parameter indicating communication with the server should 
  12511. take place over a Secure Socket Layer connection.  The server must support
  12512. this method, and be prepared to accept connections on the appropriate
  12513. port.
  12514. Pine must be linked with an SSL library for this option to be operational.
  12515. </DD>
  12516. <DT>Debug</DT>
  12517. <DD>This is a unary parameter indicating that the connection be established
  12518. in a verbose mode.  Basically, it causes Pine to log the communication with
  12519. the server in Pine's debug file.
  12520. </DD>
  12521. </DL>
  12522. <P>
  12523.  
  12524. Parameters names are <EM>not</EM> case sensitive.
  12525.  
  12526. <P>
  12527. <End of help on this topic>
  12528. </BODY>
  12529. </HTML>
  12530. ======= h_composer_cntxt_path =======
  12531. <HTML>
  12532. <HEAD>
  12533. <TITLE>Collection Path: Explained</TITLE>
  12534. </HEAD>
  12535. <BODY>
  12536. <H1>Collection Edit Help -- Path Field</H1>
  12537.  
  12538. The collection's "Path:" definition indicates the location
  12539. of the folders in this collection.  If the path or any of its components
  12540. do not exist, Pine will prompt you for their creation when exiting the
  12541. Add/Change screen.
  12542.  
  12543. <P> 
  12544. By default the path is interpreted as defining a section of your personal
  12545. folder area.  This area and how you specify it are defined by the
  12546. server, if one is specified in the collection, or, typically, the home
  12547. directory if no server is defined.
  12548.  
  12549. <P>
  12550. To define a collection outside the default "area", prefix
  12551. the path with the "namespace" to use when interpreting the
  12552. given path.  If a namespace is specified, the Path begins with the
  12553. sharp, "#", character followed by the name of the namespace
  12554. and then the namespace's path-element-delimiter.  Aside from the
  12555. path's format, namespaces can also imply access rights, content
  12556. policy, audience, location, and, occasionally, access methods.
  12557.  
  12558. <P>
  12559. Each server exports its own set (possibly of size one) of 
  12560. namespaces.  Hence, it's likely communication with your server's
  12561. administrator will be required for specific configurations.  Some of
  12562. the more common namespaces, however, include:
  12563.  
  12564. <DL>
  12565. <DT>#news.</DT>
  12566. <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
  12567. names are hierarchically defined with each level delimited by a period.
  12568. </DD>
  12569. <DT>#public/</DT>
  12570. <DD>This specifies a folder area that the server may export to the general
  12571. public.
  12572. </DD>
  12573. <DT>#shared/</DT>
  12574. <DD>This specifies a folder area that the folder may export to groups
  12575. of users.
  12576. </DD>
  12577. <DT>#ftp/</DT>
  12578. <DD>This specifies a folder area that is the same as that it may have 
  12579. exported via the "File Transfer Protocol".
  12580. </DD>
  12581. <DT>#mh/</DT>
  12582. <DD>This specifies the personal folder area associated with folders
  12583. and directories that were created using the MH message handling system.
  12584. </DD>
  12585. </DL>
  12586. <P>
  12587.  
  12588. In addition, the server may support access to other user's folders,
  12589. provided you have suitable permissions.  Common methods use a prefix
  12590. of either "~<VAR>user</VAR>/", or "/<VAR>user</VAR>/" to
  12591. indicate the root of the other user's folder area.
  12592.  
  12593. <P>
  12594. No, nothing's simple.
  12595.  
  12596. <P>
  12597. <End of help on this topic>
  12598. </BODY>
  12599. </HTML>
  12600. ======= h_composer_cntxt_view =======
  12601. <HTML>
  12602. <HEAD>
  12603. <TITLE>Collection View: Explained</TITLE>
  12604. </HEAD>
  12605. <BODY>
  12606. <H1>Collection Edit Help -- View Field</H1>
  12607.  
  12608. The collection's "View:" definition provides a way to limit
  12609. the displayed list of folders within a collection.  By default, only
  12610. folders that contain the specified characters anywhere in their name
  12611. are shown in the collection's folder list.
  12612.  
  12613. <P>
  12614. Additionally, you can use a wildcard character to better control
  12615. the list of folders selected for display.  The wildcard specifier is
  12616. the star, "*", character.
  12617.  
  12618. <P>
  12619. So, for example, to define a collection of all folders ending with
  12620. "c", you'd specify a view of "*c" (without the
  12621. quote characters!).  Or, similarly, to define a collection of folders
  12622. whose names start with "a" and end with "z", you'd
  12623. specify a view of "a*z".
  12624.  
  12625. <P>
  12626. <End of help on this topic>
  12627. </BODY>
  12628. </HTML>
  12629. ======= h_composer_abook_add_server =======
  12630. <HTML>
  12631. <HEAD>
  12632. <TITLE>Addressbook Server Name Field Explained</TITLE>
  12633. </HEAD>
  12634. <BODY>
  12635. This field should be left blank if the address book is stored in a regular
  12636. file on this system.  If it is a remote address book stored on an IMAP
  12637. server then this is the name of that IMAP server.
  12638. <P>
  12639. Look <A HREF="h_edit_nav_cmds">here</A>
  12640. to see the available Editing and Navigation commands.
  12641. <P>
  12642. <End of help on this topic>
  12643. </BODY>
  12644. </HTML>
  12645. ======= h_composer_abook_add_folder =======
  12646. <HTML>
  12647. <HEAD>
  12648. <TITLE>Addressbook Folder Name Field Explained</TITLE>
  12649. </HEAD>
  12650. <BODY>
  12651. For a remote address book (one for which the Server Name is filled in)
  12652. this is the name of a folder on the remote server. The address book data
  12653. will be stored in this folder. This folder should be used only for
  12654. storing this single address book, not for other address books or for
  12655. other messages.
  12656. <P>
  12657. For a local address book (one for which the Server Name is not filled in)
  12658. this is the name of a file in which the address book will be stored.
  12659. The file is in the same directory as the Pine configuration file if the
  12660. configuration file is local.
  12661. If the configuration file is remote, then this will be in the home directory
  12662. for Unix Pine and in the directory specified by the
  12663. "-aux local_directory" command line argument.
  12664. <P>
  12665. Look <A HREF="h_edit_nav_cmds">here</A>
  12666. to see the available Editing and Navigation commands.
  12667. <P>
  12668. <End of help on this topic>
  12669. </BODY>
  12670. </HTML>
  12671. ======= h_composer_abook_add_nick =======
  12672. <HTML>
  12673. <HEAD>
  12674. <TITLE>Addressbook NickName Field Explained</TITLE>
  12675. </HEAD>
  12676. <BODY>
  12677. This is just an optional nickname for this address book. If present, it
  12678. is used in some of the displays and error messages in the address book
  12679. maintenance screens. It is for your convenience only and serves no
  12680. other purpose.
  12681. <P>
  12682. Look <A HREF="h_edit_nav_cmds">here</A>
  12683. to see the available Editing and Navigation commands.
  12684. <P>
  12685. <End of help on this topic>
  12686. </BODY>
  12687. </HTML>
  12688. ======= h_composer_qserv_cn =======
  12689. <HTML>
  12690. <HEAD>
  12691. <TITLE>Directory Query Form Explained</TITLE>
  12692. </HEAD>
  12693. <BODY>
  12694.  
  12695. Fill in as many of these fields as you wish to narrow down your
  12696. search. All the fields you fill in must match in order for an entry
  12697. to be returned. You may use the wildcard character "*" in
  12698. any of the fields, it matches any zero or more characters at that
  12699. point in the string. There are no implicit wildcards, so the match is
  12700. exact unless you include wildcards.
  12701. <P>
  12702.  
  12703. Note that if an attribute isn't present at all, then the match will fail.
  12704. For example, if a server doesn't support the Locality attribute, then no
  12705. matter what you put in the Locality field (other than leaving it empty)
  12706. the search will fail.
  12707. <P>
  12708.  
  12709. This field, the Common Name field, is typically a person's full name.
  12710. <P>
  12711.  
  12712. <H1>EDITING and NAVIGATION COMMANDS</H1>
  12713. <!--chtml if pinemode="function_key"-->
  12714. <PRE>
  12715. CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
  12716. ^B (Left Arrow)    Back character       | ^D       Delete current character
  12717. ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
  12718. ^P (Up Arrow)      Previous line        |
  12719. ^N (Down Arrow)    Next line            | F9       Cut marked text or
  12720. ^A                 Beginning of line    |            delete current line
  12721. ^E                 End of line          | F10      Undelete line(s)
  12722. F7                 Previous page        |
  12723. F8                 Next page            |-------------------------------------
  12724. ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
  12725. ----------------------------------------|
  12726. EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
  12727. F2   Cancel      |   F1    Get help     |
  12728. F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
  12729. </PRE>
  12730. <!--chtml else-->
  12731. <PRE>
  12732. CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
  12733. ^B (Left Arrow)    Back character       | ^D       Delete current character
  12734. ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
  12735. ^P (Up Arrow)      Previous line        |
  12736. ^N (Down Arrow)    Next line            | ^K       Cut marked text or
  12737. ^A                 Beginning of line    |            delete current line
  12738. ^E                 End of line          | ^U       Undelete line(s)
  12739. ^Y                 Previous page        |
  12740. ^V                 Next page            |-------------------------------------
  12741. ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
  12742. ----------------------------------------|
  12743. EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
  12744. ^C   Cancel      |   ^G    Get help     |
  12745. ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
  12746. </PRE>
  12747. <!--chtml endif-->
  12748. <P><UL>
  12749. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  12750. </UL><P>
  12751. <End of help on this topic>
  12752. </BODY>
  12753. </HTML>
  12754. ======= h_composer_qserv_sn =======
  12755.  
  12756. The Surname is usually the family name of a person.
  12757.  
  12758. <End of help on this topic>
  12759. ======= h_composer_qserv_gn =======
  12760.  
  12761. This is the part of a person's name which isn't the surname or initials.
  12762.  
  12763. <End of help on this topic>
  12764. ======= h_composer_qserv_mail =======
  12765.  
  12766. This is the email address of a person.
  12767.  
  12768. <End of help on this topic>
  12769. ======= h_composer_qserv_org =======
  12770.  
  12771. This is the organization a person belongs to.
  12772.  
  12773. <End of help on this topic>
  12774. ======= h_composer_qserv_unit =======
  12775.  
  12776. This is the organizational unit a person belongs to.
  12777.  
  12778. <End of help on this topic>
  12779. ======= h_composer_qserv_country =======
  12780.  
  12781. This is the country a person belongs to.
  12782.  
  12783. <End of help on this topic>
  12784. ======= h_composer_qserv_state =======
  12785.  
  12786. This is the state a person belongs to.
  12787.  
  12788. <End of help on this topic>
  12789. ======= h_composer_qserv_locality =======
  12790.  
  12791. This is the locality a person belongs to.
  12792.  
  12793. <End of help on this topic>
  12794. ======= h_composer_qserv_custom =======
  12795.  
  12796. This one is for advanced users only! If you put something in this field,
  12797. then the rest of the fields are ignored.
  12798.  
  12799. This field may be set to the string representation of an LDAP search
  12800. filter (see RFC1960). Here are some examples:
  12801.  
  12802. To search for an entry with a surname equal to "clinton" you could set
  12803. the custom filter to:
  12804.  
  12805.      (sn=clinton)
  12806.     
  12807. This is equivalent to putting "clinton" in the SurName field.
  12808. To search for an entry which has a surname which begins with "clint" and
  12809. has a givenname equal to "william" you could use:
  12810.  
  12811.      (&(sn=clint*)(givenname=william))
  12812.     
  12813. This is equivalent to setting the SurName field to "clint*" and the
  12814. GivenName field to "william".
  12815. To search for an entry where either the common name OR the email address
  12816. contains "abcde" you could use:
  12817.  
  12818.      (|(cn=*abcde*)(mail=*abcde*))
  12819.  
  12820. That isn't equivalent to anything you can do by setting the other fields
  12821. because of the OR.
  12822.  
  12823. <End of help on this topic>
  12824. ======= h_composer_qserv_qq =======
  12825.  
  12826. This one is a little different from the rest of the categories.  It causes
  12827. a search to be formed from the configured search filter that you filled
  12828. in when you added the directory server to your configuration. It can also
  12829. be combined with the other fields if you'd like.
  12830.  
  12831. <End of help on this topic>
  12832. ======= h_address_format =======
  12833. <HTML>
  12834. <HEAD>
  12835. <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
  12836. </HEAD>
  12837. <BODY>
  12838. <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
  12839.  
  12840. A valid email address on the Internet has a username, an "@" sign, 
  12841. and then a domain, with no spaces.  
  12842. For example, jsmith@art.nowhere.edu might be the email address
  12843. of a person  
  12844. with the username "jsmith" who has an account in the domain
  12845. "art.nowhere.edu".  The number of dot-separated segments on the 
  12846. right of the "@" sign can vary - a shorter example would be 
  12847. isabelle@elsewhere.edu (the shortest possible form: here, only the 
  12848. organization's domain is specified after the "@" sign); a longer 
  12849. example would be 
  12850.  jsingh@shakti.edutech.nowhere.edu
  12851. (here, the name of the host "shakti" in the domain 
  12852. edutech.nowhere.edu is also specified).  
  12853. <P>  
  12854. If you do not know the exact email address of someone you want to write 
  12855. to, ask them what it is using other means of communication than email; or 
  12856. use the tools for 
  12857. finding people's addresses that are available on the Internet.  See, 
  12858. for example, the World Wide Web site:
  12859. <P>
  12860. <CENTER><A HREF="http://www.washington.edu/nic/addresses">http://www.washington.edu/nic/addresses</A></CENTER>
  12861. <P>
  12862. If you are sending to someone on the same system as you are, you can leave
  12863. the "@" sign and all the information to its right off of the 
  12864. address, and Pine will fill it in automatically, 
  12865. unless the feature 
  12866. <A HREF="h_config_compose_rejects_unqual">"compose-rejects-unqualified-addrs"</A> is set in SETUP CONFIGURATION.  Sometimes you can also
  12867. abbreviate the right part of the address if you are at the same domain.<P>
  12868.  
  12869. When an email address you send a message to is not reachable -- either because 
  12870. it is simply an incorrect address, or because email can temporarily not be 
  12871. delivered to it due to a technical problem on the way to or at the recipient's 
  12872. end -- you will almost always get an error notification email message back.
  12873. <P>
  12874. If you encounter problems with, or have questions about, email delivery or
  12875. email address syntax, contact your local network computing consultants.
  12876. <P><UL>
  12877. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  12878. </UL>
  12879. <P>
  12880. <End of help on this topic>
  12881. </BODY>
  12882. </HTML>
  12883. ======= h_flag_important =======
  12884. <html>
  12885. <title>STATUS FLAG: Important</title>
  12886. <body>
  12887. <h1>STATUS FLAG: Important</h1>
  12888.  
  12889.  
  12890. The <EM>Important</EM> flag, indicated by an asterisk in Pine's
  12891. MESSAGE INDEX
  12892. screen, can only be set by the user, and is intended to be used in
  12893. whatever fashion makes sense to you.  You are the only one that can set or
  12894. clear it. 
  12895.  
  12896. <P>
  12897. <End of help on this topic>
  12898. </BODY>
  12899. </HTML>
  12900. ======= h_flag_new =======
  12901. <html>
  12902. <title>STATUS FLAG: New</title>
  12903. <body>
  12904. <h1>STATUS FLAG: New</h1>
  12905.  
  12906.  
  12907. The <EM>New</EM> flag, indicated by the letter 'N' in Pine's
  12908. MESSAGE INDEX screen,
  12909. is automatically set when messages are delivered to your Inbox (or other
  12910. folder specified outside of Pine).  Likewise, it is cleared automatically
  12911. the first time you read the message it is associated with.
  12912.  
  12913. <P>
  12914. Sometimes it's helpful in prioritizing your mail.  For example, perhaps
  12915. a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
  12916. you'd like to be reminded of it next time you read mail.  This can be done
  12917. easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
  12918.  
  12919.  
  12920. <P>
  12921. <End of help on this topic>
  12922. </BODY>
  12923. </HTML>
  12924. ======= h_flag_answered =======
  12925. <html>
  12926. <title>STATUS FLAG: Answered</title>
  12927. <body>
  12928. <h1>STATUS FLAG: Answered</h1>
  12929.  
  12930. The <EM>Answered</EM> flag, indicated by the letter 'A' in Pine's
  12931. MESSAGE INDEX
  12932. screen, is automatically set when you reply to a message.  This flag is not
  12933. automatically cleared.
  12934.  
  12935. <P>
  12936. <End of help on this topic>
  12937. </BODY>
  12938. </HTML>
  12939. ======= h_flag_deleted =======
  12940. <html>
  12941. <title>STATUS FLAG: Deleted</title>
  12942. <body>
  12943. <h1>STATUS FLAG: Deleted</h1>
  12944.  
  12945. The <EM>Deleted</EM> flag, indicated by the letter 'D' in Pine's
  12946. MESSAGE INDEX
  12947. screen, is set when you use the ""D Delete" command.
  12948. It is cleared
  12949. when you use the "U Undelete" command.
  12950.  
  12951. <P>
  12952. Messages marked with this flag will be permanently removed from
  12953. the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
  12954. command, or
  12955. when you indicate acceptance of their removal upon leaving the folder.
  12956.  
  12957. <P>
  12958. Note, there can be other actions implicit in the
  12959. "D Delete" command,
  12960. such as advancing to the next message, that may be momentarily undesirable.
  12961. For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
  12962. flag <A HREF="h_common_flag">explicitly</A>.
  12963.  
  12964. <P>
  12965. <End of help on this topic>
  12966. </BODY>
  12967. </HTML>
  12968. ====== h_config_pers_name ======
  12969. <html>
  12970. <title>OPTION: Personal-Name</title>
  12971. <body>
  12972. <h1>OPTION: Personal-Name</h1>
  12973.  
  12974. This value is used to determine the full name part of the "From" address
  12975. on messages you send.
  12976. <!--chtml if pinemode="os_windows"-->
  12977.  PC-Pine requires that this be set in order to properly construct the "From" address.
  12978. <!--chtml else-->
  12979.  If unset, Unix Pine will obtain your full name from
  12980.  the system password file. PC-Pine, on the other hand, requires that this be set.
  12981. <!--chtml endif-->
  12982. <P><UL>
  12983. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  12984. </UL><P>
  12985. <End of help on this topic>
  12986. </BODY>
  12987. </HTML>
  12988. ====== h_config_pruned_folders ======
  12989. <html>
  12990. <header>
  12991. <title>OPTION: Pruned-folders</title>
  12992. </header>
  12993. <body>
  12994. <h1>OPTION: Pruned-folders</h1>
  12995.  
  12996. This variable allows you to define a list of one or more folders that
  12997. Pine will offer to prune for you in the same way it automatically offers
  12998. to prune your "sent-mail" folder each month.<p>
  12999.  
  13000. That is, once a month for each folder listed, Pine will offer to move
  13001. the contents of the folder to a new folder of the same name but with
  13002. the previous month's date appended.  Pine will then look for any such
  13003. date-appended folder names created for a previous month, and offer each
  13004. one it finds for deletion.<p>
  13005.  
  13006. If you decline the first offer, no mail is moved and no new folder is
  13007. created.<p>
  13008.  
  13009. Folders listed are assumed to exist, and the archive folders will be created,
  13010. in the first collection defined by the "folder-collections" variable.<p>
  13011.  
  13012. <UL>   
  13013. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13014. </UL><P>
  13015. <End of help on this topic>
  13016. </body>
  13017. </html>
  13018. ====== h_config_upload_cmd ======
  13019. <HTML>
  13020. <HEAD>
  13021. <TITLE>OPTION: Upload-command</TITLE>
  13022. </HEAD>
  13023. <BODY>
  13024. <H1>OPTION: Upload-command</H1>
  13025.  
  13026. This option affects the behavior of the Composer's "Read File" 
  13027. (^R in the message body) and "Attach File" (^J in the header) 
  13028. commands.  It specifies
  13029. a Unix program name, and any necessary command line arguments, that Pine can
  13030. use to transfer files from your personal computer into messages that you are
  13031. composing.<P>
  13032.  
  13033. <B>Note:</B> this facility is intended for use with serial line transfer 
  13034. protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
  13035. to work with TCP/IP file transfer programs such as ftp.<P>
  13036.  
  13037. If a program is specified, the commands listed above are modified to offer a
  13038. subcommand (^Y) to activate the transfer.  Obviously, the Unix program
  13039. specified here must match the transfer program or protocol available on the
  13040. personal computer.<P>
  13041.  
  13042. Pine expects to exchange uploaded data via a file on your Unix system.  When
  13043. the specified upload program finishes, Pine expects the uploaded data to be
  13044. contained in this file.<P>
  13045.  
  13046. When upload is invoked via the "Read File" subcommand, Pine 
  13047. generates a
  13048. temporary file name that it will pass to the specified Unix program.  Pine
  13049. will read the resulting uploaded text from this file and then delete it when
  13050. the upload command is finished.<P>
  13051.  
  13052. When upload is invoked via the "Attach File" subcommand, Pine will 
  13053. prompt
  13054. you for the name of the file that is to contain the uploaded information that
  13055. it is to attach.  Pine will attach this file to the composition, but will
  13056. <B>not</B> delete this file after the upload command is finished.<P>
  13057.  
  13058. The special token "_FILE_" may be included among the Unix program's 
  13059. command
  13060. line arguments.  Pine will replace this symbol with the name of the file
  13061. being used to exchange the uploaded information.  This token allows you to
  13062. position the file name where it is required in the Unix program's command
  13063. line arguments.<P>
  13064.  
  13065. If the "_FILE_" token is not present in the specified command, the
  13066. temporary file's name is automatically appended to the specified Unix
  13067. program.  In other words, you don't need to use "_FILE_" if it is the
  13068. <B>last</B> command line argument.
  13069. <P><UL>
  13070. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13071. </UL><P>
  13072. <End of help on this topic>
  13073. </BODY>
  13074. </HTML>
  13075. ====== h_config_upload_prefix ======
  13076. <HTML>
  13077. <HEAD>
  13078. <TITLE>OPTION: Upload-command-prefix</TITLE>
  13079. </HEAD>
  13080. <BODY>
  13081. <H1>OPTION: Upload-command-prefix</H1>
  13082.  
  13083. This option is used in conjunction with the Upload-command option.
  13084. It defines text to be written to the terminal emulator (via standard output)
  13085. immediately prior to starting upload command.  This is useful for
  13086. integrated serial line file transfer agents that permit command passing
  13087. (e.g., Kermit's APC method).<P>
  13088.  
  13089. The special token "_FILE_" may be included in the string specification.
  13090. That symbol will be replaced with the (Pine-created) name of the temporary
  13091. file in which Pine will expect to find the uploaded file.
  13092. <P><UL>
  13093. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13094. </UL><P>
  13095. <End of help on this topic>
  13096. </BODY>
  13097. </HTML>
  13098. ====== h_config_download_cmd ======
  13099. <HTML>
  13100. <HEAD>
  13101. <TITLE>OPTION: Download-command</TITLE>
  13102. </HEAD>
  13103. <BODY>
  13104. <H1>OPTION: Download-command</H1>
  13105.  
  13106. This option affects the behavior of the Export command.  It specifies a Unix
  13107. program name, and any necessary command line arguments, that Pine can use to
  13108. transfer the exported message to your personal computer's disk.<P>
  13109. Note: this facility is intended for use with serial line transfer 
  13110. protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
  13111. to work with TCP/IP file transfer programs such as ftp.<P>
  13112. If a program is specified, the Export command is modified to offer a
  13113. subcommand (^V) to activate the transfer (in lieu of saving it to
  13114.  the machine where Pine is running).  Obviously, the Unix program
  13115. specified here must match the transfer program or protocol available on the
  13116. personal computer.<P>
  13117.  
  13118. When this subcommand is selected and before Pine invokes the specified Unix
  13119. program, Pine will create a temporary file containing the text of the
  13120. exported message.  Pine uses this file to pass the exported message text to
  13121. the specified Unix program.<P>
  13122.  
  13123. The special token "_FILE_" may be included among the Unix program's command
  13124. line arguments.  Pine will replace this symbol with the temporary file's name
  13125. before executing the Unix program.  This token allows you to position the
  13126. file name where it is required in the Unix program's command line arguments.
  13127. <P>
  13128. If the "_FILE_" token is not present in the specified command, the
  13129. temporary file's name is automatically appended to the specified Unix
  13130. program.  In other words, you don't need to use "_FILE_" if it is the
  13131. <B>last</B> command line argument.
  13132. <P><UL>
  13133. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13134. </UL><P>
  13135. <End of help on this topic>
  13136. </BODY>
  13137. </HTML>
  13138. ====== h_config_download_prefix ======
  13139. <HTML>
  13140. <HEAD>
  13141. <TITLE>OPTION: Download-command-prefix</TITLE>
  13142. </HEAD>
  13143. <BODY>
  13144. <H1>OPTION: Download-command-prefix</H1>
  13145.  
  13146. This option is used in conjunction with the Download-command option.
  13147. It defines text to be written to the terminal emulator (via standard output)
  13148. immediately prior to starting the download command.  This is useful for
  13149. integrated serial line file transfer agents that permit command passing
  13150. (e.g., Kermit's APC method).
  13151. <P>
  13152. The special token "_FILE_" may be included in the string 
  13153. specification.
  13154. That symbol will be replaced with the (Pine-created) name of the temporary
  13155. file into which Pine will place the message to be downloaded.
  13156. <P><UL>
  13157. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13158. </UL><P>
  13159. <End of help on this topic>
  13160. </BODY>
  13161. </HTML>
  13162. ====== h_config_mailcap_path ======
  13163. <HTML>
  13164. <HEAD>
  13165. <TITLE>OPTION: mailcap-search-path</TITLE>
  13166. </HEAD>
  13167. <BODY>
  13168. <H1>OPTION: mailcap-search-path</H1>
  13169. This variable is used to replace Pine's default mailcap file search path.
  13170. It takes one or more file names (full paths must be specified) in which to
  13171. look for mail capability data.  The default search path can be found in the
  13172. <A HREF="h_news">release notes</A> (accessible via the "R" command 
  13173. from the main menu).
  13174. If there is more than one file name listed, list members should be delimited
  13175. by 
  13176. <!--chtml if pinemode="os_windows"-->
  13177. a semi-colon (;) under Windows; for example:<PRE>
  13178.         C:\MYCONFIG\MAILCAP.TXT;H:\NETCONFIG\MAILCAP.TXT
  13179. </PRE>
  13180. <!--chtml else-->
  13181. a colon (:) under UNIX; for example:<PRE>
  13182.         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
  13183. </PRE>
  13184. <!--chtml endif-->
  13185. <P><UL>
  13186. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13187. </UL>
  13188. <P>
  13189. <End of help on this topic>
  13190. </BODY>
  13191. </HTML>
  13192. ====== h_config_mimetype_path ======
  13193. <HTML><HEAD>
  13194. <TITLE>OPTION: mimetype-search-path</TITLE>
  13195. </HEAD>
  13196. <BODY>
  13197. <H1>OPTION: mimetype-search-path</H1>
  13198.  
  13199. This variable is used to replace Pine's default mime.types file search path.
  13200. It takes one or more file names (full paths must be specified) in which to
  13201. look for file-name-extension to MIME type mapping data.  The default search
  13202. path can be found in the release notes ("R" command off the main menu).
  13203.  
  13204. <P>
  13205.  
  13206. If there is more than one file name listed, list members should be delimited
  13207. by a colon (:) under UNIX and a semi-colon (;) under Windows.
  13208. <P>
  13209. <End of help on this topic>
  13210. </BODY></HTML>
  13211. ====== h_config_set_att_ansi ======
  13212. <HTML><HEAD>
  13213. <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
  13214. </HEAD>
  13215. <BODY>
  13216. <H1>OPTION: Set printer to attached ansi printer</H1>
  13217.  
  13218. Type "S" to set your printer to "attached-to-ansi".<BR>
  13219. It is OK to include "attached-to-ansi" in your personal list below.
  13220. <P>
  13221. <End of help on this topic>
  13222. </BODY></HTML>
  13223. ====== h_config_set_att_ansi2 ======
  13224. <HTML><HEAD>
  13225. <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
  13226. </HEAD>
  13227. <BODY>
  13228. <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
  13229.  
  13230. Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
  13231. It is OK to include "attached-to-ansi-no-formfeed" in your personal
  13232. list below.
  13233.  
  13234. <P>
  13235.  
  13236. This is the same as the "attached-to-ansi" option except that a
  13237. formfeed character will not be appended to the end of the print job.
  13238. If your printer already ejects the paper by itself at the end of the
  13239. job, you may prefer the "no-formfeed" form of this printer so that you
  13240. don't get an extra blank page between print jobs.
  13241. <P>
  13242.  
  13243. <End of help on this topic>
  13244. </BODY></HTML>
  13245. ====== h_config_set_stand_print ======
  13246. <HTML>
  13247. <HEAD>
  13248. <TITLE>OPTION: Set default printer</TITLE>
  13249. </HEAD>
  13250. <H1>OPTION: Set default printer</H1>
  13251. <BODY>
  13252. Move to the printer you want and type "S" to set it to be your
  13253. default printer.  This list is not modifiable by you and has been
  13254. set up by the system administrators.  If there is more than one printer
  13255. listed in the Command List, you will be able to cycle through that
  13256. whole list at the time you print, starting with your default.
  13257. It is OK to include entries from this Standard list in your personal
  13258. list below.
  13259. <P>
  13260. <End of help on this topic>
  13261. </BODY>
  13262. </HTML>
  13263. ====== h_config_set_custom_print ======
  13264. <HTML>
  13265. <HEAD>
  13266. <TITLE>OPTION: Set default printer</TITLE>
  13267. </HEAD>
  13268. <BODY>
  13269. You may add as many print commands as you want to your personal list.
  13270. Specify one of them as your default printer by moving to the printer
  13271. you want and typing "S".  If there is more than one printer listed
  13272. in the Command List, you will be able to cycle through that list at
  13273. the time you print, starting with your default.  It is OK to include
  13274. entries from the Standard list above or to include the command
  13275. "attached-to-ansi" or "attached-to-ansi-no-formfeed" as one of the
  13276. entries here.
  13277. <P>
  13278. <End of help on this topic>
  13279. </BODY>
  13280. </HTML>
  13281. ====== h_config_user_id =====
  13282. <html>
  13283. <head>
  13284. <title>OPTION: User-Identification</title>
  13285. </head>
  13286. <body>
  13287. <h1>OPTION: User-Identification</h1>
  13288. This value is used as part of the "From" address on messages you send.
  13289. It is also the default login name for remote IMAP server access.  Set this
  13290. to the username part you want to appear on outgoing email.
  13291.  
  13292. <UL>   
  13293. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13294. </UL><P>
  13295. <End of help on this topic>
  13296. </body>
  13297. </html>
  13298. ====== h_config_user_dom =====
  13299. <HTML>
  13300. <HEAD>
  13301. <TITLE>OPTION: User-Domain</TITLE>
  13302. </HEAD>
  13303. <BODY>
  13304. <H1>OPTION: User-Domain</H1>
  13305. This value specifies the domain part (right-hand side) of your return
  13306. address on outgoing email and is also used as the default domain for email
  13307. composed to a local user.
  13308. <!--chtml if pinemode="os_windows"-->
  13309.  This value is required for PC-Pine. If you are unsure as to what this should be,
  13310.  contact your local help desk, system administrator, or Internet Service Provider.
  13311. <!--chtml else-->
  13312.  If unset, Unix Pine will obtain the domain from
  13313.  the system.  Often this value will be set for your whole site by the
  13314.  system administrator.<P>
  13315. <!--chtml endif-->
  13316. If you set this, see also the <A HREF="h_config_quell_local_lookup">
  13317. "quell-user-lookup-in-passwd-file"</A> feature.
  13318. <P><UL>
  13319. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13320. </UL><P>
  13321. <End of help on this topic>
  13322. </BODY>
  13323. </HTML>
  13324. ====== h_config_smtp_server =====
  13325. <HTML>
  13326. <HEAD>
  13327. <TITLE>OPTION: SMTP-Server</TITLE>
  13328. </HEAD>
  13329. <BODY>
  13330. <H1>OPTION: SMTP-Server</H1>
  13331. This value specifies the name of one or more SMTP 
  13332. (Simple Mail Transfer Protocol) servers for sending mail. 
  13333. <!--chtml if pinemode="os_windows"-->
  13334. You must have an SMTP server for use with PC-Pine.
  13335. SMTP servers are
  13336. normally set up by a system administrator for use by all members of a given
  13337. campus or department.
  13338. Contact your local help desk to ask what SMTP
  13339. servers you should use.  
  13340. <!--chtml else-->
  13341. Unix Pine users may not need to set an SMTP server.
  13342. Pine will attempt to execute the program (usually sendmail) that is used
  13343. to insert mail into the mail system.
  13344. If this works for you, you may leave this option blank.
  13345. If there is an SMTP server running on the Unix host you may be able to
  13346. improve sending performance slightly by setting the SMTP server option
  13347. to "localhost" or to the actual name of the Unix host.
  13348. <P>
  13349. If the Unix host doesn't work the way Pine was expecting you will need to
  13350. set the value of this option.
  13351. SMTP servers are
  13352. normally set up by a system administrator for use by all members of a given
  13353. campus or department.
  13354. Contact your local help desk to ask what SMTP
  13355. servers you should use.  
  13356. <!--chtml endif-->
  13357. <P>
  13358. <UL>
  13359. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13360. </UL>
  13361. <P>
  13362. <End of help on this topic>
  13363. </BODY>
  13364. </HTML>
  13365. ====== h_config_nntp_server =====
  13366. <HTML>
  13367. <HEAD>
  13368. <TITLE>OPTION: NNTP-Server</TITLE></HEAD>
  13369. <BODY>
  13370. <H1>OPTION: NNTP-Server</H1>
  13371.  
  13372. This value specifies the name of the NNTP (Network News Transfer Protocol)
  13373. server for reading and posting USENET news.  NNTP servers are normally
  13374. set up by a system administrator for use by all members of a given campus
  13375. or department.  Contact your local help desk to ask what NNTP servers you
  13376. should use.  
  13377. <!--chtml if pinemode="os_windows"--><!--chtml else-->
  13378. Often Unix Pine users will find that this variable has been
  13379. set for the whole system (and they don't have to worry about it).  
  13380. <!--chtml endif-->
  13381. When you
  13382. define an NNTP server here, Pine implicitly defines a news collection for
  13383. you, assuming that server as the news server and assuming that you will
  13384. use the NNTP protocol and a local newsrc configuration file for reading
  13385. news.  For more about reading news with Pine, see the 
  13386. <A HREF="h_news">release notes</A>.
  13387. <P><UL>
  13388. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13389. </UL><P>
  13390. <End of help on this topic>
  13391. </BODY>
  13392. </HTML>
  13393. ====== h_config_inbox_path =====
  13394. <HTML>
  13395. <HEAD>
  13396. <TITLE>OPTION: Inbox-Path</TITLE>
  13397. </HEAD>
  13398. <BODY>
  13399. <H1>OPTION: Inbox-Path</H1>
  13400.  
  13401. This value overrides the default value of your INBOX name/path/location.
  13402. <!--chtml if pinemode="os_windows"-->
  13403. PC-Pine users must specify an inbox path and it must be a folder on an
  13404. IMAP server.  
  13405. <!--chtml else-->
  13406. Unix and VMS Pine users will often find that this variable
  13407. has been pre-configured by your system administrator.  
  13408. <!--chtml endif-->
  13409. You may be able to specify an alternate INBOX which is either a local folder 
  13410. or a folder on an IMAP server.
  13411. <P>
  13412. A typical remote inbox-path entry would be: {monet.art.nowhere.edu}INBOX
  13413. where "monet.art.nowhere.edu" is replaced by the name of your IMAP
  13414. mail server.
  13415. <P>
  13416. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13417. details on the syntax of folder definitions.
  13418. <P><UL>
  13419. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13420. </UL><P>
  13421. <End of help on this topic>
  13422. </BODY>
  13423. </HTML>
  13424. ====== h_config_default_fcc =====
  13425. <HTML>
  13426. <HEAD>
  13427. <TITLE>OPTION: Default-FCC (File Carbon Copy)</TITLE>
  13428. </HEAD>
  13429. <BODY>
  13430. <H1>OPTION: Default-FCC (File Carbon Copy)</H1>
  13431.  
  13432. This value specifies where a copy of outgoing mail should be saved.  If
  13433. this is not a path name, it will be in the default collection for saves.
  13434. Any valid folder specification, local or IMAP, is allowed.  This default
  13435. folder carbon copy only applies when the 
  13436. <A HREF="h_config_fcc_rule">"fcc-name-rule"</A> 
  13437. is set to use the default folder.  
  13438. <!--chtml if pinemode="os_windows"-->
  13439. PC-Pine default is "SENTMAIL" (normally stored as SENTMAIL.MTX)
  13440. <!--chtml else-->
  13441. Unix Pine default
  13442. is normally "sent-mail" in the default folder collection. 
  13443. <!--chtml endif-->
  13444. <P>
  13445. If you access your email through an IMAP server, especially if you often switch between Unix Pine
  13446. and PC-Pine, or between various desktop email systems, you may want to set this to a folder on your
  13447. IMAP server (remember that in order to later access this remote folder through Pine, it
  13448. must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
  13449. for more information). An example:<p>
  13450. <CENTER><SAMP>{monet.art.nowhere.edu}mail/sent-mail</SAMP></CENTER>
  13451. <P>
  13452. To suppress saving of outgoing mail, set: default-fcc=""
  13453. <P>
  13454. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13455. details on the syntax of folder definitions.
  13456. <P>
  13457. <UL>   
  13458. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13459. </UL><P>
  13460. <End of help on this topic>
  13461. </BODY>
  13462. </HTML>
  13463. ====== h_config_def_save_folder =====
  13464. <HTML>
  13465. <HEAD>
  13466. <TITLE>OPTION: Default-Saved-Msg-Folder</TITLE>
  13467. </HEAD>
  13468. <BODY>
  13469. <H1>OPTION: Default-Saved-Msg-Folder</H1>
  13470.  
  13471. This option determines the default folder name for save-message operations 
  13472. ("saves").
  13473. <P>
  13474. If this is not a path name, it will be in the default collection for saves.
  13475. Any valid folder specification, local or IMAP, is allowed.  This default
  13476. folder only applies when the <A HREF="h_config_saved_msg_name_rule">"
  13477. saved-msg-name-rule"</A> doesn't override it.  
  13478. <!--chtml if pinemode="os_windows"-->
  13479. PC-Pine default is "SAVEMAIL" (normally stored as SAVEMAIL.MTX).
  13480. <!--chtml else-->
  13481. Unix Pine default
  13482. is normally "saved-messages" in the default folder collection.
  13483. <!--chtml endif-->
  13484. If you access your email through an IMAP server, especially if you often switch between Un$
  13485. and PC-Pine, or between various desktop email systems, you may want to set this to a folde$
  13486. IMAP server (remember that in order to later access this remote folder through Pine, it
  13487. must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
  13488. for more information). An example:<p>
  13489. <CENTER><SAMP>{monet.art.nowhere.edu}mail/saved-messages</SAMP></CENTER>
  13490. <P>
  13491. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13492. details on the syntax of folder definitions.
  13493. <P>
  13494. <UL>   
  13495. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13496. </UL><P>
  13497. <End of help on this topic>
  13498. </BODY>
  13499. </HTML>
  13500. ====== h_config_postponed_folder =====
  13501. <HTML>
  13502. <HEAD>
  13503. <TITLE>OPTION: Postponed-Folder</TITLE>
  13504. </HEAD>
  13505. <BODY>
  13506. <H1>OPTION: Postponed-Folder</H1>
  13507. This value overrides the default name for the folder where postponed
  13508. messages are saved.  If this is not a path name, it will be in the default
  13509. collection for message Saves.  Any valid folder specification, local or
  13510. remote, is allowed. 
  13511. PC-Pine default
  13512. is "POSTPOND" (stored as POSTPOND.MTX).
  13513. The Unix Pine default is normally "postponed-msgs"
  13514. in the default collection. 
  13515. <P>
  13516. Tip: If you are using different installations of (PC-)Pine -- for example, PC-Pine on your personal
  13517. computer at home, and Unix Pine on campus -- you can postpone a composition begun with one Pine and
  13518. resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
  13519. in all Pine copies you use. 
  13520. (Remember that in order to later access this remote folder through Pine, it must be in a folder
  13521. collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
  13522. for more information). An
  13523. example:<p> 
  13524. <CENTER><SAMP>{monet.art.nowhere.edu}mail/postponed-msgs</SAMP></CENTER>
  13525. <P>
  13526. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13527. details on the syntax of folder definitions.
  13528. <P>
  13529. <UL>   
  13530. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13531. </UL><P>
  13532. <End of help on this topic>
  13533. </BODY>
  13534. </HTML>
  13535. ====== h_config_read_message_folder =====
  13536. <HTML>
  13537. <HEAD>
  13538. <TITLE>OPTION: Read-Message-Folder</TITLE>
  13539. </HEAD>
  13540. <BODY>
  13541. <H1>OPTION: Read-Message-Folder</H1>
  13542.  
  13543. By virtue of specifying a folder name here, Pine will be configured to
  13544. save all messages which you have read during a session into the designated
  13545. "read messages" folder.  This allows you to more easily distinguish
  13546. between your really new email (in your INBOX) and those which you have
  13547. already read.  Depending on how you define the 
  13548. <A HREF="h_config_auto_read_msgs">"auto-move-read-messages"</A>
  13549. setting, you may or may not be asked when you quit
  13550. Pine if you want read messages to be moved to this folder.  In either
  13551. case, moving the messages means they will be deleted from your INBOX.
  13552. <P>
  13553. If this is not a path name, it will be in the default collection for
  13554. saves.  Any valid folder specification, local or remote (via IMAP), is
  13555. allowed.  There is no default for the name of the read message folder.
  13556. <P>
  13557. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13558. details on the syntax of folder definitions.
  13559. <P>
  13560. <UL>   
  13561. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13562. </UL><P>
  13563. <End of help on this topic>
  13564. </BODY>
  13565. </HTML>
  13566. ====== h_config_form_folder =====
  13567. <HTML>
  13568. <HEAD>
  13569. <TITLE>OPTION: Form-Letter-Folder</TITLE>
  13570. </HEAD>
  13571. <BODY>
  13572. <H1>OPTION: Form-Letter-Folder</H1>
  13573.  
  13574. A "Form-Letter-Folder" is a mail folder that is intended to
  13575. contain messages that you have composed and that are intended to be
  13576. sent in their original form repeatedly.
  13577.  
  13578. <P>
  13579. Setting this variable will alter Pine's usual behavior when you
  13580. execute the Compose command.  Normally, Pine offers a chance to
  13581. continue a postponed or interrupted message should one or the other
  13582. exist.  When this variable is set to a folder name that exists, Pine
  13583. will also offer the chance to select a message from the folder to
  13584. insert into the composer (much like when continuing a postponed message).
  13585. The difference, however, is that Pine will not automatically delete
  13586. the selected message from the Form Letter Folder.
  13587. <P>
  13588. Setting this variable will also affect Pine's behavior when you
  13589. Postpone a message from the composer.  Normally, Pine simply stashes
  13590. the message away in your
  13591. "<A HREF="h_config_postponed_folder">Postponed-Folder</A>".
  13592. Regardless of the specified folder's existence, Pine will ask which
  13593. folder you intend the message to be stored in.  Choose the
  13594. "F" option to store the message in your Form Letter Folder.
  13595. This is the most common way to add a message to the folder.
  13596.  
  13597. <P>
  13598. Another method of adding messages to the folder is via the Pine
  13599. composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
  13600. you expect to send in the same form again, you can enter the Form
  13601. Letter Folder's name in this field.  Pine, as usual, will copy the
  13602. message as it's sent.  Note, when you later select this message from 
  13603. your Form Letter Folder, it will have the same recipients as the original
  13604. message.
  13605.  
  13606. <P>
  13607. To delete a message from the Form Letter Folder, you can either select
  13608. the folder from a suitable FOLDER LIST screen, or use the Delete
  13609. command in the MESSAGE INDEX offered when selecting from the folder as
  13610. part of the Compose command.  You can delete a Form Letter Folder just
  13611. as any other folder from a suitable FOLDER LIST screen.
  13612.  
  13613. <P>
  13614. You may find that the <A HREF="h_rules_roles">"Roles"</A>
  13615. facility introduced in Pine 4.10 can be used
  13616. to replace the Form Letter Folder.
  13617.  
  13618. <P>
  13619. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13620. details on the syntax of folder definitions.
  13621.  
  13622. <P>
  13623. <UL>   
  13624. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13625. </UL><P>
  13626. <End of help on this topic>
  13627. </BODY>
  13628. </HTML>
  13629. ====== h_config_archived_folders =====
  13630. <HTML>
  13631. <HEAD>
  13632. <TITLE>OPTION: Incoming-Archive-Folders</TITLE>
  13633. </HEAD>
  13634. <BODY>
  13635. <H1>OPTION: Incoming-Archive-Folders</H1>
  13636.  
  13637. This is like
  13638. <A HREF="h_config_read_message_folder">Read-Message-Folder</A>,
  13639. only more general.  You may archive
  13640. any of the folders in your incoming collection.  This is a list of folder
  13641. pairs, with the first separated from the second in the pair by a space.
  13642. The first folder in a pair is the folder you want to archive, and the
  13643. second folder is the folder that read messages from the first should be
  13644. moved to.  Depending on how you define the
  13645. <A HREF="h_config_auto_read_msgs">"auto-move-read-messages"</A>
  13646. setting, you may or may not be asked when you
  13647. leave the first folder if you want read messages to be moved to the
  13648. second folder.  In either case, moving the messages means they will be
  13649. deleted from the first folder.
  13650. <P>
  13651. The name of the first folder in each pair can be either the technical
  13652. specification of the folder (like what appears in your configuration file)
  13653. or (much easier) the nickname that you gave the folder when you made it
  13654. an incoming folder.
  13655. <p>
  13656. For example:<p>
  13657. <CENTER><SAMP>{monet.art.nowhere.edu}inbox {monet.art.nowhere.edu}mail/inbox-archive</SAMP></CENTER>
  13658. <p>or, using nicknames:<p>
  13659. <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
  13660. <P>
  13661. If these are not path names, they will be in the default collection for
  13662. saves. Any valid folder specification, local or remote (via IMAP), is
  13663. allowed. There is no default.
  13664. <P>
  13665. See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
  13666. details on the syntax of folder definitions.
  13667. <P>
  13668. <UL>   
  13669. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13670. </UL><P>
  13671. <End of help on this topic>
  13672. </BODY>
  13673. </HTML>
  13674. ====== h_config_newsrc_path ======
  13675. <HTML>
  13676. <HEAD>
  13677. <TITLE>OPTION: newsrc-path</TITLE>
  13678. </HEAD>
  13679. <BODY>
  13680. <H1>OPTION: newsrc-path</H1>
  13681.  
  13682. This option overrides the default name Pine uses for your "newsrc" news
  13683. status and subscription file.  If set, Pine will take this value as the
  13684. full pathname for the desired newsrc file.<P>
  13685.  
  13686. If this option is <B>not</B> set, 
  13687. <!--chtml if pinemode="os_windows"-->
  13688. PC-Pine looks first for $HOME\NEWSRC (where $HOME defaults to the root
  13689. of the current drive, e.g. "C:\") and then it looks in the same
  13690. directory as your pinerc file for NEWSRC.
  13691. <!--chtml else-->
  13692. Unix Pine looks for the file ~/.newsrc (that is, the file named .newsrc in 
  13693. your account's home directory).
  13694. <!--chtml endif-->
  13695. <P><UL>
  13696. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13697. </UL>
  13698. <P>
  13699. <End of help on this topic>
  13700. </BODY>
  13701. </HTML>
  13702. ====== h_config_literal_sig =====
  13703. <HTML>
  13704. <HEAD>
  13705. <TITLE>OPTION: literal-signature</TITLE>
  13706. </HEAD>
  13707. <BODY>
  13708. <H1>OPTION: literal-signature</H1>
  13709.  
  13710. With this option your actual signature, as opposed to
  13711. the name of a file containing your signature,
  13712. is stored in the Pine configuration file.
  13713. If this is defined it takes precedence over the signature-file option.
  13714. <P>
  13715.  
  13716. This is simply a different way to store the signature.
  13717. The signature is stored inside your Pine configuration file instead of in
  13718. a separate file.
  13719. Tokens work the same way they do with the regular
  13720. <A HREF="h_config_signature_file">signature-file</A> so look there for
  13721. help.
  13722. <P>
  13723.  
  13724. The Setup/Signature command on Pine's Main Menu will edit
  13725. the "literal-signature" if defined, otherwise
  13726. it will edit the file named in the "signature-file" option.
  13727. <P>
  13728.  
  13729. The two character sequence \n (backslash followed by
  13730. the character n) will be used to signify a line-break in your signature.
  13731. You don't have to enter the \n, but it will be visible in the
  13732. SETUP CONFIGURATION window after you are done editing the signature.
  13733.  
  13734. <P>
  13735. <UL>   
  13736. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13737. </UL><P>
  13738. <End of help on this topic>
  13739. </BODY>
  13740. </HTML>
  13741. ====== h_config_signature_file =====
  13742. <HTML>
  13743. <HEAD>
  13744. <TITLE>OPTION: signature-file</TITLE>
  13745. </HEAD>
  13746. <BODY>
  13747. <H1>OPTION: signature-file</H1>
  13748.  
  13749. This is the name of a file which will be automatically inserted into
  13750. outgoing messages.
  13751. It typically contains information such as your
  13752. name, email address and organizational affiliation.
  13753. Pine adds the
  13754. signature into the message as soon as you enter the composer so you
  13755. can choose to remove it or edit it on a message by message basis.
  13756. Signature file placement in message replies is controlled by the
  13757. "<A HREF="h_config_sig_at_bottom">signature-at-bottom</A>"
  13758. setting in the feature list.
  13759. <P>
  13760.  
  13761. The default file name is
  13762. <!--chtml if pinemode="os_windows"-->
  13763. "PINE.SIG" in the same directory as your PINERC file if your
  13764. PINERC file is a local file.
  13765. If your PINERC file is remote, then it will be in the directory specified
  13766. by the "-aux local_directory" command line option.
  13767. <!--chtml else-->
  13768. ".signature".
  13769. <!--chtml endif-->
  13770. <P>
  13771.  
  13772. To create or edit your signature file choose Setup from the Main Menu
  13773. and then select S for Signature (Main/Setup/Signature).
  13774. This puts you
  13775. into the Signature Editor where you can enter a <EM>few</EM> lines of
  13776. text containing your identity and affiliation.
  13777.  
  13778. <P>
  13779. If the filename is followed by a vertical bar (|) then instead
  13780. of reading the contents of the file the file is assumed to be a
  13781. program which will produce the text to be used on its standard output.
  13782. The program can't have any arguments and doesn't receive any input from Pine,
  13783. but the rest of the processing works as if the contents came from a file.
  13784.  
  13785. <P>
  13786. Instead of storing the data in a local file, the
  13787. signature data may be stored remotely in an IMAP folder.
  13788. In order to do this, 
  13789. you must use a remote name for the file.
  13790. A remote signature-file name might look like:
  13791. <P>
  13792. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
  13793. <P>
  13794. or, if you have an SSL-capable version of Pine, you might try
  13795. <P>
  13796. <CENTER><SAMP>{myimaphost.myschool.k12.wa.us/user=loginname/ssl}mail/signature</SAMP></CENTER>
  13797. <P>
  13798.  
  13799. The syntax used here is the same as the syntax used for remote configuration
  13800. files from the command line.
  13801. Note that you may not access an existing signature file remotely,
  13802. you have to create a new <EM>folder</EM> which contains the signature data.
  13803. If the name you use here for the signature file is a remote name, then when
  13804. you edit the file from the Setup/Signature command the data will be stored
  13805. remotely in the folder.
  13806. You aren't required to do anything special to create the folder, it
  13807. gets created automatically if you use a remote name.
  13808.  
  13809. <P>
  13810. Besides regular text, the signature file may also contain
  13811. (or a signature program may produce) tokens which
  13812. are replaced with text which usually depends on the message you are replying
  13813. to or forwarding.
  13814. For example, if the signature file contains the token
  13815. <P>
  13816. <CENTER><SAMP>_DATE_</SAMP></CENTER>
  13817. <P>
  13818. anywhere in the text, then that token is replaced by the date
  13819. the message you are replying to or forwarding was sent.
  13820. If it contains
  13821. <P>
  13822. <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
  13823. <P>
  13824. that is replaced with the current date.
  13825. The first is an example of a token which depends on the message you
  13826. are replying to (or forwarding) and the second is an example which
  13827. doesn't depend on anything other than the current date.
  13828. You have to be a little careful with this facility since tokens which
  13829. depend on the message you are replying to or forwarding will be replaced
  13830. by nothing in the case where you are composing a new message from scratch.
  13831. The use of <A HREF="h_rules_roles">"roles"</A> may help you
  13832. in this respect.
  13833. It allows you to use different signature files in different cases.
  13834. <P>
  13835.  
  13836. The list of tokens available for use in the signature file is
  13837. <A HREF="h_index_tokens">here</A>.
  13838. <P>
  13839.  
  13840. Instead of, or along with the use of "roles" to give you
  13841. different signature files in different situations, there is also
  13842. a way to conditionally include text based
  13843. on whether or not a token would result in specific replacement text.
  13844. For example, you could include some text based on whether or not
  13845. the _NEWS_ token would result in any newsgroups if it was used.
  13846. This is explained in detail
  13847. <A HREF="h_reply_token_conditionals">here</A>.
  13848. This isn't for the faint of heart.
  13849. <P>
  13850. In the very unlikely event that you want to include a literal token
  13851. in the signature you must precede it with a backslash character.
  13852. For example,
  13853. <P>
  13854. <CENTER><SAMP>\_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
  13855. <P>
  13856. would produce something like
  13857. <P>
  13858. <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
  13859. <P>
  13860. It is not possible to have a literal backslash followed by an expanded token.
  13861. <P>
  13862. An alternate method for storing the signature data is available by using the
  13863. <A HREF="h_config_literal_sig">literal-signature</A> configuration option.
  13864. <P>
  13865. <UL>   
  13866. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13867. </UL><P>
  13868. <End of help on this topic>
  13869. </BODY>
  13870. </HTML>
  13871. ====== h_config_init_cmd_list =====
  13872. <html>
  13873. <header>
  13874. <title>OPTION: Initial-Keystroke-List</title>
  13875. </header>
  13876. <body
  13877. <h1>OPTION: Initial-Keystroke-List</h1>
  13878.  
  13879. The initial keystroke--or command--list option lets you start Pine at
  13880. any place you like.  Whatever keystrokes you specify here will be executed
  13881. by Pine upon startup as a macro.  The words SPACE, TAB, DOWN, UP, LEFT, and
  13882. RIGHT indicate the pressing of those keys.  CR indicates the pressing of
  13883. the RETURN key.  F1 through F12 represent the function keys, and ^ followed
  13884. by a character indicates that key pressed along with the control key (in
  13885. other words, ^P means Ctrl-P).  A string delimited by double-quotes (")
  13886. will be expanded into the individual keystrokes (excluding the double-quote 
  13887. characters).  For example, to view message 1 on startup, you would specify 
  13888. i,j,1,CR,v.<p>
  13889.  
  13890. Restrictions: You cannot pre-type into the composer with the initial
  13891. keystroke list, and you cannot mix function key commands with letter
  13892. commands.<p>
  13893.  
  13894. <UL>   
  13895. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13896. </UL><P>
  13897. <End of help on this topic>
  13898. </body>
  13899. </html>
  13900. ====== h_config_comp_hdrs =====
  13901. <html>
  13902. <header>
  13903. <title>OPTION: Default-Composer-Headers</title>
  13904. </header>
  13905. <body>
  13906. <h1>OPTION: Default-Composer-Headers</h1>
  13907.  
  13908. You can decide which headers you want visible when composing outgoing
  13909. email using this option.  You can specify any of the regular set, any rich
  13910. header or any custom header which you have already defined.  If you use
  13911. this setting at all, you must specify all the headers you want to see, you
  13912. can't just add to the regular header set.  The default set is To:, Cc:,
  13913. Attchmnt:, and Subject:.<p>
  13914.  
  13915. Note that the "Newsgroups:" header will be abbreviated in the Composer
  13916. display, but should be spelled out in full here.<p>
  13917. <UL>   
  13918. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13919. </UL><P>
  13920. <End of help on this topic>
  13921. </body>
  13922. </html>
  13923. ====== h_config_custom_hdrs =====
  13924. <HTML>
  13925. <HEAD>
  13926. <TITLE>OPTION: Customized-Headers</TITLE>
  13927. </HEAD>
  13928. <BODY>
  13929. <H1>OPTION: Customized-Headers</H1>
  13930.  
  13931. You may add your own custom headers to outgoing messages.
  13932. Each header you specify here must include the header tag 
  13933. (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
  13934. and may optionally include a value for that header.
  13935. If you want to see these custom headers each time you compose a message,
  13936. you must add them to your
  13937. <A HREF="h_config_comp_hdrs">default composer headers</A> list, 
  13938. otherwise they become part
  13939. of the rich header set which you only see when you press the rich header
  13940. <!--chtml if pinemode="function_key"-->(F5)
  13941. <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
  13942. Here's an example which shows how you might set your Reply-To address.
  13943. <P>
  13944. <CENTER><SAMP>Reply-To: Full Name <user@domain></SAMP></CENTER>
  13945. <P>
  13946. or just
  13947. <P>
  13948. <CENTER><SAMP>Reply-To: user@domain</SAMP></CENTER>
  13949. <P>
  13950. The values of headers that you set with the Customized-Headers option are
  13951. defaults.
  13952. If the message you are about to compose already has a value for a header,
  13953. that value is used instead of a value from your Customized-Headers.
  13954. For example, if you are Replying to a message the Subject field
  13955. will already be filled in.
  13956. In that case, if the Customized-Headers list contains a Subject line, the
  13957. custom subject will NOT be used.
  13958. The subject derived from the subject of the message you are Replying
  13959. to will be used instead.
  13960. <P>
  13961. Limitation: Because commas are used to separate the list of
  13962. Customized-Headers, it is not possible to have the value of a
  13963. header contain a comma.
  13964. Nor is there currently an "escape" mechanism provided
  13965. to make this work.
  13966. <P><UL>
  13967. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  13968. </UL>
  13969. <P>
  13970. <End of help on this topic>
  13971. </BODY>
  13972. </HTML>
  13973. ====== h_config_viewer_headers =====
  13974. <HTML>
  13975. <HEAD>
  13976. <TITLE>OPTION: Viewer-Headers</TITLE>
  13977. </HEAD>
  13978. <BODY>
  13979. <H1>OPTION: Viewer-Headers</H1>
  13980.  
  13981. You may change the default list of headers that are viewed by listing
  13982. the headers you want to view here.  If the headers in your
  13983. "viewer-hdrs" list are present in the message, then they
  13984. will be shown.  The order of the headers you list will be honored.  If
  13985. the special value "all-except" is included as the first
  13986. header in the "viewer-hdrs" list, then all headers in the
  13987. message except those in the list will be shown.  The values are all
  13988. case insensitive.
  13989.  
  13990. <P>
  13991. Note that once you put anything in the "viewer-hdrs" list,
  13992. then the original default headers are ignored.  So, if you just wanted
  13993. to add the header Organization to the list, you would have to list
  13994. Organization plus all of the other headers originally in the default
  13995. list.  If you just included Organization and nothing else, then you
  13996. would see only the Organization header, nothing else.
  13997.  
  13998. <P>
  13999. The default list of headers includes:
  14000. <UL>
  14001.   <LI>From
  14002.   <LI>Resent-From
  14003.   <LI>To
  14004.   <LI>Resent-To
  14005.   <LI>Cc
  14006.   <LI>Resent-cc
  14007.   <LI>Bcc
  14008.   <LI>Newsgroups
  14009.   <LI>Followup-To
  14010.   <LI>Date
  14011.   <LI>Resent-Date
  14012.   <LI>Subject
  14013.   <LI>Resent-Subject
  14014.   <LI>Reply-To
  14015. </UL>
  14016.  
  14017. <P>
  14018. <UL>   
  14019. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14020. </UL><P>
  14021. <End of help on this topic>
  14022. </BODY>
  14023. </HTML>
  14024. ====== h_config_saved_msg_name_rule =====
  14025. <HTML>
  14026. <HEAD>
  14027. <TITLE>OPTION: Saved-Msg-Name-Rule</TITLE>
  14028. </HEAD>
  14029. <BODY>
  14030. <H1>OPTION: Saved-Msg-Name-Rule</H1>
  14031.  
  14032. This option determines the default folder name when saving
  14033. a message.
  14034.  
  14035. <P>
  14036. The default option is "default-folder", which is the folder
  14037. called "saved-messages" in Unix Pine and
  14038. "savemail" in PC-Pine.  To change the default folder, modify
  14039. the variable called "default-saved-msg-folder".
  14040.  
  14041. <P>
  14042. Choosing any of the "by-" options cause Pine to attempt to
  14043. get the chosen option's value for the message being saved.
  14044. For example, if "by-from" is chosen, Pine attempts to get the
  14045. value of who the message came from (i.e. the from address).
  14046. Pine then attempts to save the message to a folder matching that value.
  14047. If "by-from" is chosen and no value is obtained, Pine uses
  14048. "by-sender".
  14049. The opposite is also true.
  14050. If "by-recipient" is chosen and the message was posted to a
  14051. newsgroup, Pine will use the newsgroup name.
  14052. If "by-replyto" is chosen and no value is obtained, Pine uses
  14053. "by-from".
  14054.  
  14055. <P>
  14056. If any of the "by-nick" options are chosen, the resulting
  14057. address is looked up in the user's address book and if found, the
  14058. nickname for that entry is used.
  14059. Only simple address book entries are checked, not distribution lists.
  14060. Similarly, if any of the
  14061. "by-fcc" options are chosen, the fcc from the corresponding
  14062. address book entry is used.
  14063. If no value is found in the address book,
  14064. then if the chosen option ends with the "then-from",
  14065. "then-sender", "then-replyto",
  14066. or "then-recip" suffix, Pine
  14067. reverts to the same behavior as "by-from",
  14068. "by-sender", "by-sender", or "by-recipient" depending on which
  14069. option was specified.
  14070. If the chosen option doesn't end with one of
  14071. the "then-" suffixes, then Pine reverts to the default
  14072. folder when no match is found in the address book.
  14073.  
  14074. <P>
  14075. Choosing the option called "last-folder-used", causes Pine
  14076. to save to the folder that you saved to the last time you saved a
  14077. message.  The first time you save a message in a Pine session, Pine
  14078. attempts to save the message to the default folder.
  14079.  
  14080. <P>
  14081. <UL>   
  14082. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14083. </UL><P>
  14084. <End of help on this topic>
  14085. </BODY>
  14086. </HTML>
  14087. ====== h_config_fcc_rule =====
  14088. <HTML>
  14089. <HEAD>
  14090. <TITLE>OPTION: FCC-Name-Rule</TITLE>
  14091. </HEAD>
  14092. <BODY>
  14093. <H1>OPTION: FCC-Name-Rule</H1>
  14094.  
  14095. This option determines the default name for folder carbon copy. Choose
  14096. one:
  14097.  
  14098. <DL>
  14099. <DT>default-fcc</DT>
  14100. <DD>This is the normal default, the value of which is set in the
  14101. "default-fcc" variable as specified earlier in this
  14102. configuration.
  14103. </DD>
  14104.  
  14105. <DT>last-fcc-used</DT>
  14106. <DD> Causes Pine to use the folder that was last
  14107. used in the fcc field
  14108. </DD>
  14109.  
  14110. <DT>by-nickname</DT>
  14111. <DD>Means that Pine will use the nickname
  14112. from your address book that matches the first address in the To line.
  14113. If there is no match, it will use the value of the
  14114. "default-fcc" variable.
  14115. </DD>
  14116.  
  14117. <DT>by-recipient</DT>
  14118. <DD>Means Pine will form a folder name
  14119. based on the left hand side of the first address in the To line.
  14120. </DD>
  14121.  
  14122. <DT>by-nick-then-recip</DT>
  14123. <DD>Means that it will use the
  14124. matching nickname from your address book if there is one, otherwise it
  14125. will extract the recipient name from the address and use that (like
  14126. by-recipient).
  14127. </DD>
  14128.  
  14129. <DT>current-folder</DT>
  14130. <DD>Causes a copy to be written to
  14131. the currently open folder, unless that is the INBOX.  In the case
  14132. where the current folder is the INBOX, the "default-fcc" is
  14133. used instead.
  14134. </DD>
  14135. </DL>
  14136.  
  14137. <P>
  14138. Note: Whatever the fcc specified by the rule here, it will be
  14139. over-ridden by any fcc entries you have in your address book.
  14140.  
  14141. <P>
  14142. <UL>   
  14143. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14144. </UL><P>
  14145. <End of help on this topic>
  14146. </BODY>
  14147. </HTML>
  14148. ====== h_config_sort_key =====
  14149. <HTML>
  14150. <HEAD>
  14151. <TITLE>OPTION: Sort-Key</TITLE>
  14152. </HEAD>
  14153. <BODY>
  14154. <H1>OPTION: Sort-Key</H1>
  14155.  
  14156. This option determines the order in which messages will be displayed in
  14157. the MESSAGE INDEX screen.  Choose from:
  14158. <P>
  14159. <UL>
  14160.  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
  14161.  <LI> <A HREF="h_index_sort_date">Date</A>
  14162.  <LI> <A HREF="h_index_sort_subj">Subject</A>
  14163.  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
  14164.  <LI> <A HREF="h_index_sort_thread">Thread</A>
  14165.  <LI> <A HREF="h_index_sort_from">From</A>
  14166.  <LI> <A HREF="h_index_sort_size">Size</A>
  14167.  <LI> <A HREF="h_index_sort_score">Score</A>
  14168.  <LI> <A HREF="h_index_sort_to">To</A>
  14169.  <LI> <A HREF="h_index_sort_cc">Cc</A>
  14170. </UL>
  14171.  
  14172. <P>
  14173. Each type of sort may also be reversed.
  14174. Normal default is by "Arrival".
  14175.  
  14176. <P>
  14177. <UL>   
  14178. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14179. </UL><P>
  14180. <End of help on this topic>
  14181. </BODY>
  14182. </HTML>
  14183. ====== h_config_fld_sort_rule =====
  14184. <HTML>
  14185. <HEAD>
  14186. <TITLE>OPTION: Folder-Sort-Rule</TITLE>
  14187. </HEAD>
  14188. <BODY>
  14189. <H1>OPTION: Folder-Sort-Rule</H1>
  14190.  
  14191. This option controls the order in which folder list entries will be
  14192. presented in the FOLDER LIST screen.  Choose one of the following:
  14193.  
  14194. <DL>
  14195. <DT>Alphabetical</DT>
  14196. <DD>sort by alphabetical name independent of type
  14197. </DD>
  14198.  
  14199. <DT>Alpha-with-dirs-last</DT>
  14200. <DD>sort by alphabetical name grouping directory entries
  14201. to the end of the list
  14202. </DD>
  14203.  
  14204. <DT>Alpha-with-dirs-first</DT>
  14205. <DD>sort by alphabetical name grouping directory entries
  14206. to the start of the list
  14207. </DD>
  14208. </DL>
  14209.  
  14210. The normal default is "Alphabetical".
  14211.  
  14212. <P>
  14213. <UL>   
  14214. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14215. </UL><P>
  14216. <End of help on this topic>
  14217. </BODY>
  14218. </HTML>
  14219. ====== h_config_ab_sort_rule =====
  14220. <HTML>
  14221. <HEAD>
  14222. <TITLE>OPTION: Address-Book-Sort-Rule</TITLE>
  14223. </HEAD>
  14224. <BODY>
  14225. <H1>OPTION: Address-Book-Sort-Rule</H1>
  14226.  
  14227. This option controls the order in which address book entries will be
  14228. presented.  Choose one of the following:
  14229.  
  14230. <DL>
  14231. <DT>fullname</DT>
  14232. <DD>use fullname field, lists mixed in
  14233. </DD>
  14234.  
  14235. <DT>fullname-with-lists-last</DT>
  14236. <DD>use fullname field, but put lists at end
  14237. </DD>
  14238.  
  14239. <DT>nickname</DT>
  14240. <DD>use nickname field, lists mixed in
  14241. </DD>
  14242.  
  14243. <DT>nickname-with-lists-last</DT>
  14244. <DD>use nickname field, but put lists at end
  14245. </DD>
  14246.  
  14247. <DT>dont-sort</DT>
  14248. <DD>don't change order of file
  14249. </DD>
  14250. </DL>
  14251.  
  14252. <P>
  14253. The normal default is "fullname-with-lists-last".
  14254.  
  14255. <P>
  14256. <UL>   
  14257. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14258. </UL><P>
  14259. <End of help on this topic>
  14260. </BODY>
  14261. </HTML>
  14262. ====== h_config_char_set =====
  14263. <HTML>
  14264. <HEAD>
  14265. <TITLE>OPTION: Character-Set</TITLE>
  14266. </HEAD>
  14267. <BODY>
  14268. <H1>OPTION: Character-Set</H1>
  14269.  
  14270. The character-set configuration option is used for both displaying
  14271. and sending messages.
  14272.  
  14273. <P>
  14274. When displaying a message, Pine compares this setting to the character
  14275. set specified in the message.  If they do not match, then Pine places
  14276. a comment in the displayed text (enclosed in square-brackets) indicating
  14277. that some characters may not be displayed correctly.
  14278.  
  14279. <P>
  14280. When sending a message the text typed in the composer and all text
  14281. attachments are labeled with the character set specified by this option.
  14282.  
  14283. <P>
  14284. The default value for this option is "US-ASCII".
  14285. <!--chtml if pinemode="os_windows"-->
  14286. The value you choose for this option should be consistent with 
  14287. your system's Regional Settings.
  14288. <!--chtml else-->
  14289. The value you choose for this option should reflect the character
  14290. set supported by the terminal or emulator Pine is using for its display
  14291. since that device is responsible for rendering the non-US-ASCII
  14292. characters.  Similarly, how you input 8-bit characters is a function
  14293. of the display device, and not something Pine can provide.  You'll need
  14294. to consult the terminal (or emulator) documention for input instruction.
  14295. <!--chtml endif-->
  14296. Typical values for this option might include
  14297. "ISO-8859-<I>N</I>", where <I>N</I> might be a number
  14298. between 1 and 9, or 13, or 15.
  14299.  
  14300. <P>
  14301. If this option is set to something other than "US-ASCII",
  14302. then its value will be used to label text you send that contains
  14303. non US-ASCII (sometimes called "8-bit") characters.  However,
  14304. if the text does <EM>not</EM> contain any such characters, it will be
  14305. labeled as "US-ASCII", independent of this option's value.
  14306.  
  14307. <P>
  14308. If this option is <EM>not</EM> set and the message text you are sending
  14309. or any text attachments are found to contain non US-ASCII 
  14310. (or "8-bit") characters, then Pine will do one of two things.
  14311. In the case of reply/forward, apply the character set
  14312. label of the original text to the outgoing message's text.
  14313. In the case of an original composition, where the 8-bit
  14314. characters were likely inserted via file or message
  14315. inclusion, Pine will label the text as "X-UNKNOWN".
  14316.  
  14317. <P>
  14318. <UL>   
  14319. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14320. </UL><P>
  14321. <End of help on this topic>
  14322. </BODY>
  14323. </HTML>
  14324. ====== h_config_editor =====
  14325. <HTML>
  14326. <HEAD>
  14327. <TITLE>OPTION: Editor</TITLE>
  14328. </HEAD>
  14329. <BODY>
  14330. <H1>OPTION: Editor</H1>
  14331. Editor specifies the program invoked by ^_ in the Composer. This is
  14332. normally an alternative to Pine's internal composer (Pico).  You could use
  14333. this setting to specify an alternate editor to use occasionally or if you
  14334. have a favorite editor and want to use it all the time (see the 
  14335. <A HREF="h_config_alt_ed_now">"enable-alternate-editor-implicitly"</A> setting).  <P>
  14336. If you specify multiple editors for this option, ^_ will invoke the first one 
  14337. of those specified that exists and is executable.  When specifying a program 
  14338. for use here, make sure that the format of the text it saves -- which, when 
  14339. you exit it, will become the message body in Pine -- is appropriate 
  14340. for the body of an email message; avoid proprietary formats that may result in 
  14341. a message body that the recipient of your message will be unable to decipher.
  14342. <P>
  14343. <!--chtml if pinemode="os_windows"-->
  14344. <!--chtml else-->
  14345. If you are in doubt about what editors are available on your system, or which 
  14346. of them may be appropriate for specification here, ask your local computing 
  14347. support staff.  
  14348. <!--chtml endif-->
  14349. <P><UL>
  14350. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14351. </UL>
  14352. <P>
  14353. <End of help on this topic>
  14354. </BODY>
  14355. </HTML>
  14356. ====== h_config_speller =====
  14357. <HTML>
  14358. <HEAD>
  14359. <TITLE>OPTION: Speller</TITLE>
  14360. </HEAD>
  14361. <BODY>
  14362. <H1>OPTION: Speller</H1>
  14363.  
  14364. This option affects the behavior of the ^T (spell check) command in the
  14365. Composer.  It specifies the program invoked by ^T in the Composer.  By
  14366. default, Pine uses the system's "spell" command.  Pine will use the
  14367. command defined by this option (if any) instead.  When invoking the
  14368. spell-checking program, Pine appends a tempfile name (where the message is
  14369. passed) to the command line. Pine expects the speller to correct the
  14370. spelling in that file. When you exit from that program Pine will read the
  14371. tempfile back into the composer.
  14372.  
  14373. <P>
  14374. If you are using Unix Pine and your system has the "ispell" command,
  14375. it is a reasonable choice for a speller program.
  14376.  
  14377. <P>
  14378. If this option is not set, then the system's "spell" command is used.
  14379. The spell command does not work the same as the alternate speller.
  14380. It produces a list of misspelled words on its standard output, instead.
  14381. Don't set this speller option to the standard Unix spell command.
  14382. That won't work. If you want to use the standard Unix spell command,
  14383. set the speller option to nothing.
  14384.  
  14385. <P>
  14386. <UL>   
  14387. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14388. </UL><P>
  14389. <End of help on this topic>
  14390. </BODY>
  14391. </HTML>
  14392. ====== h_config_display_filters =====
  14393. <HTML>
  14394. <HEAD>
  14395. <TITLE>OPTION: Display-Filters</TITLE>
  14396. </HEAD>
  14397. <BODY>
  14398. <H1>OPTION: Display-Filters</H1>
  14399.  
  14400. This option defines a list of text-filtering commands (programs or
  14401. scripts) that may be used to filter text portions of received messages
  14402. prior to their use (e.g., presentation in the "MESSAGE TEXT"
  14403. display screen, exporting to a text file).  
  14404. For security reasons, the full path name of the
  14405. filter command must be specified.
  14406.  
  14407. <P>
  14408. The command is executed and the message is piped into its standard input. 
  14409. The standard output of the command is read back by Pine.  The
  14410. "_TMPFILE_" token (see below) overrides this default behavior. 
  14411.  
  14412. <P> 
  14413. The filter's use is based on the configured "trigger" string.  The
  14414. format of a filter definition is:
  14415.  
  14416. <P>   
  14417. <CENTER><trigger> <command> <arguments></CENTER>
  14418.  
  14419. <P>
  14420. You can specify as many filters as you wish, separating them with a comma.  
  14421. Each filter can have only one trigger and command.  Thus, two trigger 
  14422. strings which invoke the same command require separate filter 
  14423. specifications. 
  14424.  
  14425. <P> 
  14426. The "trigger" is simply text that, if found in the message,
  14427. will invoke the associated command.  If the trigger contains any space
  14428. characters, it must be placed within quotes.  Likewise, should you
  14429. wish a filter to be invoked unconditionally, define the trigger as the
  14430. null string, "" (two consecutive double-quote characters).  If the
  14431. trigger string is found anywhere in the text of the message the filter
  14432. is invoked.  Placing the trigger text within the tokens defined below
  14433. changes where within the text the trigger must be before considering
  14434. it a match.
  14435.  
  14436. <P>  
  14437. Trigger Modifying Tokens:
  14438. <DL>
  14439. <DT>_CHARSET(<VAR>string</VAR>)_</DT>
  14440. <DD>This token tells Pine to invoke the supplied command
  14441. if the text is in a character set matching <VAR>string</VAR>
  14442. (e.g., ISO-8859-2 or ISO-2022-JP).
  14443. </DD>
  14444.  
  14445.  
  14446. <DT>_LEADING(<VAR>string</VAR>)_</DT>
  14447. <DD>This token tells Pine to invoke the supplied command
  14448. if the enclosed <VAR>string</VAR> is found to be the first
  14449. non-whitespace text.
  14450. <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
  14451. the space character.
  14452. </DD>
  14453.  
  14454. <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
  14455. <DD>This token tells Pine to invoke the supplied command
  14456. if the enclosed <VAR>string</VAR> is found at the beginning
  14457. of any line in the text.
  14458. <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
  14459. the space character.
  14460. </DD>
  14461. </DL>
  14462.  
  14463. <P>
  14464. The "command" and "arguments" portion is simply
  14465. the command line to be invoked if the trigger string is found.  Below
  14466. are tokens that Pine will recognize and replace with special values
  14467. when the command is actually invoked.
  14468.  
  14469. <P>
  14470. Command Modifying Tokens:
  14471.  
  14472. <DL>
  14473. <DT>_TMPFILE_</DT>
  14474. <DD>When the command is executed, this token is 
  14475. replaced with the path and name of the temporary 
  14476. file containing the text to be filtered.  Pine 
  14477. expects the filter to replace this data with the 
  14478. filter's result.
  14479.  
  14480. <P>
  14481. NOTE: Use of this token implies that the text to 
  14482. be filtered is not piped into standard input of the 
  14483. executed command and its standard output is ignored. 
  14484. Pine restores the tty modes before invoking the
  14485. filter in case the filter interacts with the user
  14486. via its own standard input and output.  
  14487. </DD>
  14488.                         
  14489. <DT>_RESULTFILE_</DT>
  14490. <DD>When the command is executed, this token is 
  14491. replaced with the path and name of a temporary 
  14492. file intended to contain a status message from the 
  14493. filter.  Pine displays this in the message status 
  14494. field. 
  14495. </DD>
  14496.  
  14497. <DT>_DATAFILE_</DT>
  14498. <DD>When the command is executed, this token is 
  14499. replaced with the path and name of a temporary 
  14500. file that Pine creates once per session and deletes 
  14501. upon exit.  The file is intended to be used by the 
  14502. filter to store state information between instances 
  14503. of the filter.
  14504. </DD>
  14505.    
  14506. <DT>_PREPENDKEY_</DT>
  14507. <DD>When the command is executed, this token indicates that a random
  14508. number will be passed down the input stream before the message text.
  14509. This number could be used as a session key.  It is sent in this way to
  14510. improve security.  The number is unique to the current Pine session
  14511. and is only generated once per session.
  14512. </DD>
  14513. </DL>
  14514.  
  14515. <P>
  14516. Performance caveat/considerations:
  14517. <BR>
  14518. Testing for the trigger and invoking the filter doesn't come for free.
  14519. There is overhead associated with searching for the trigger string, testing
  14520. for the filter's existence and actually piping the text through the filter.
  14521. The impact can be reduced if the Trigger Modifying Tokens above are 
  14522. employed.
  14523. <P>
  14524. <End of help on this topic>
  14525. </BODY>
  14526. </HTML>
  14527. ====== h_config_sending_filter =====
  14528. <HTML>
  14529. <HEAD>
  14530. <TITLE>OPTION: Sending-Filters</TITLE>
  14531. </HEAD>
  14532. <BODY>
  14533. <H1>OPTION: Sending-Filters</H1>
  14534.       
  14535. This option defines a list of text-filtering commands (programs and
  14536. scripts) that may be selectively invoked to process a message just before
  14537. it is sent.  If set, the Composer's ^X (Send) command will allow you to
  14538. select which filter (or none) to apply to the message before it is sent. 
  14539. For security reasons, the full path of the filter program must be
  14540. specified. 
  14541.  
  14542. <P>
  14543. Command Modifying Tokens:
  14544.  
  14545. <DL>
  14546. <DT>_RECIPIENTS_</DT>
  14547. <DD>When the command is executed, this token is replaced 
  14548. with the space delimited list of recipients of the 
  14549. message being sent. 
  14550. </DD>
  14551.         
  14552. <DT>_TMPFILE_</DT>
  14553. <DD>
  14554. When the command is executed, this token is 
  14555. replaced with the path and name of the temporary 
  14556. file containing the text to be filtered.  Pine 
  14557. expects the filter to replace this data with the 
  14558. filter's result.
  14559.  
  14560. <P>
  14561. NOTE: Use of this token implies that the text to 
  14562. be filtered is not piped into standard input of the 
  14563. executed command and its standard output is ignored. 
  14564. Pine restores the tty modes before invoking the
  14565. filter in case the filter interacts with the user
  14566. via its own standard input and output.  
  14567. </DD>
  14568.                         
  14569. <DT>_RESULTFILE_</DT>
  14570. <DD>When the command is executed, this token is 
  14571. replaced with the path and name of a temporary 
  14572. file intended to contain a status message from the 
  14573. filter.  Pine displays this in the message status 
  14574. field. 
  14575. </DD>
  14576.  
  14577. <DT>_DATAFILE_</DT>
  14578. <DD>When the command is executed, this token is replaced 
  14579. in the command line with the path and name of a 
  14580. temporary file that Pine creates once per session 
  14581. and deletes upon exit.  The file is intended to be 
  14582. used by the filter to store state information between 
  14583. instances of the filter.
  14584. </DD>
  14585.    
  14586. <DT>_PREPENDKEY_</DT>
  14587. <DD>When the command is executed, this token indicates 
  14588. that a random number will be passed down the input 
  14589. stream before the message text.  This number could 
  14590. be used as a session key.  It is sent in this way 
  14591. to improve security.  The number is unique to the 
  14592. current Pine session and is only generated once per 
  14593. session. 
  14594. </DD>
  14595.  
  14596. <DT>_INCLUDEALLHDRS_</DT>
  14597. <DD>When the command is executed, this token indicates 
  14598. that the headers of the message will be passed down the input stream
  14599. before the message text.
  14600. </DD>
  14601.  
  14602. <DT>_MIMETYPE_</DT>
  14603. <DD>When the command is executed, this token is replaced in the
  14604. command name with a temporary file name used to accept any new MIME
  14605. Content-Type information necessitated by the output of the filter.
  14606. Upon the filter's exit, if the file contains new MIME type
  14607. information, Pine verifies its format and replaces the outgoing
  14608. message's MIME type information with that contained in the file. This
  14609. is basically a cheap way of sending something other than Text/Plain.
  14610. </DD>
  14611. </DL>
  14612.  
  14613. <P>   
  14614. NOTE: Only the body text, which is visible in the Composer, is piped
  14615. through this filter.  Attachments are not sent to the filter.
  14616.  
  14617. <P>
  14618. <UL>   
  14619. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14620. </UL><P>
  14621. <End of help on this topic>
  14622. </BODY>
  14623. </HTML>
  14624. ====== h_config_alt_addresses =====
  14625. <HTML>
  14626. <HEAD>
  14627. <TITLE>OPTION: Alt-Addresses</TITLE>
  14628. </HEAD>
  14629. <BODY>
  14630. <H1>OPTION: Alt-Addresses</H1>
  14631.  
  14632. This option provides a place for you to list alternative email addresses
  14633. you may have.  If set, the option affects the behavior of the Reply
  14634. command and the "+" symbol in the MESSAGE INDEX, which denotes that
  14635. a message has been addressed specifically to you.
  14636.  
  14637. <P>
  14638. With respect to Reply, the reply-to-all option will exclude addresses
  14639. listed here.
  14640.  
  14641. <P>
  14642. <UL>   
  14643. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14644. </UL><P>
  14645. <End of help on this topic>
  14646. </BODY>
  14647. </HTML>
  14648. ====== h_config_abook_formats =====
  14649. <HTML>
  14650. <HEAD>
  14651. <TITLE>OPTION: Addressbook-Formats</TITLE>
  14652. </HEAD>
  14653. <BODY>
  14654. <H1>OPTION: Addressbook-Formats</H1>
  14655.  
  14656. This option specifies the format that address books are displayed in.
  14657. Normally, address books are displayed with the nicknames in the first
  14658. column, the fullnames in the second column, and addresses in the third
  14659. column.  The system figures out reasonable defaults for the widths of
  14660. the columns.  An address book may be given a different format by
  14661. listing special tokens in the order you want them to display.  The
  14662. possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
  14663. So, for example, to get the default behavior you could list
  14664.  
  14665. <P>
  14666. <CENTER>addressbook-formats=NICKNAME FULLNAME ADDRESS</CENTER>
  14667.  
  14668. <P>
  14669. (You can also use the token DEFAULT to get the default behavior for
  14670. an address book format.)
  14671.  
  14672. <P>
  14673. The tokens are separated by spaces.  "Addressbook-formats"
  14674. is a list, so if you have more than one address book you may have a
  14675. separate format for each by putting its format at the corresponding
  14676. location in the "addressbook-formats" list.
  14677.  
  14678. <P>
  14679.  
  14680. Listed first are the personal address books, then the global address
  14681. books.  So, if you have two personal address books and one global
  14682. address book, you may have up to three formats in the
  14683. "addressbook-formats" list.  If
  14684. "addressbook-formats" doesn't have as many elements as there
  14685. are address books, the last element is used repeatedly.
  14686.  
  14687. <P>
  14688.  
  14689. Each of the tokens may also be optionally followed by parentheses with
  14690. either a number or a percentage inside the parentheses.  For example,
  14691. <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
  14692. the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
  14693. of the available space (the screen width minus the space for
  14694. inter-column spaces) to the fullnames column, while plain
  14695. <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
  14696. reasonable number of columns.
  14697.  
  14698. <P>
  14699. There are always 2 spaces between every column, so if you use
  14700. fixed column widths (like 13) you should remember to take that into
  14701. account.
  14702.  
  14703. <P>
  14704. <UL>   
  14705. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14706. </UL><P>
  14707. <End of help on this topic>
  14708. </BODY>
  14709. </HTML>
  14710. ====== h_config_index_format =====
  14711. <HTML>
  14712. <HEAD>
  14713. <TITLE>OPTION: Index-Format</TITLE>
  14714. </HEAD>
  14715. <BODY>
  14716. <H1>OPTION: Index-Format</H1>
  14717.  
  14718. This option is used to customize the content of lines in the
  14719. <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
  14720. to convey some amount of immediately relevant information about each 
  14721. message in the current folder.
  14722. <P>
  14723.  
  14724. Pine provides a pre-defined set of informational fields with
  14725. reasonable column widths automatically computed.  You can, however,
  14726. replace this default set by listing special tokens in the order you
  14727. want them displayed.
  14728. <P>
  14729.  
  14730. The list of available tokens is
  14731. <A HREF="h_index_tokens">here</A>.
  14732. <P>
  14733.  
  14734. Spaces are used to separate listed tokens.  Additionally, you can
  14735. specify how much of the screen's width the taken's associated data
  14736. should occupy on the index line by appending the token with a pair of
  14737. parentheses enclosing either a number or percentage.  For example,
  14738. "SUBJECT(13)" means to allocate 13 characters of space to the subject
  14739. column, and "SUBJECT(20%)" means to
  14740. allocate 20% of the available space
  14741. to the subjects column, while plain "SUBJECT" means the system will
  14742. attempt to figure out a reasonable amount of space.
  14743. <P>
  14744.  
  14745. There is always one space between every pair of columns, so if you use fixed
  14746. column widths (like 13) you should remember to take that into account.
  14747. Several of the fields are virtually fixed-width, so it doesn't make
  14748. much sense to specify the width for them.  The fields STATUS,
  14749. FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
  14750. and DESCRIPSIZE all fall into that category.
  14751. You <EM>may</EM> specify widths for those if you wish, but
  14752. you're probably better off letting the system pick those widths.  <P>
  14753.  
  14754. <P>
  14755. The default is equivalent to:
  14756.  
  14757. <P>
  14758. <CENTER><SAMP>index-format=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJECT(67%)</SAMP></CENTER>
  14759.  
  14760. <P>
  14761. This means that the four fields without percentages will be allocated
  14762. first, and then 33% and 67% of the <EM>remaining</EM> space will go to
  14763. the from and subject fields.  If one of those two fields is specified
  14764. as a percentage and the other is left for the system to choose, then
  14765. the percentage is taken as an absolute percentage of the screen, not
  14766. of the space remaining after allocating the first four columns.  It
  14767. doesn't usually make sense to do it that way.  If you leave off all
  14768. the widths, then the subject and from fields (if both are present) are
  14769. allocated space in a 2 to 1 ratio, which is almost exactly the same as
  14770. the default.
  14771.  
  14772. <P>
  14773. What you are most likely to do with this configuration option is to
  14774. specify which fields appear at all, which order they appear in, and the
  14775. percentage of screen that is used for the from and subject fields if you
  14776. don't like the 2 to 1 default.
  14777.  
  14778. <P>
  14779. <UL>   
  14780. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14781. </UL><P>
  14782. <End of help on this topic>
  14783. </BODY>
  14784. </HTML>
  14785. ====== h_config_reply_intro =====
  14786. <HTML>
  14787. <HEAD>
  14788. <TITLE>OPTION: Reply-Leadin</TITLE>
  14789. </HEAD>
  14790. <BODY>
  14791. <H1>OPTION: Reply-Leadin</H1>
  14792.  
  14793. This option is used to customize the content of the introduction line
  14794. that is included when replying to a message and including the original
  14795. message in the reply.
  14796. The normal default (what you will get if you delete this variable) looks
  14797. something like:
  14798. <P>
  14799. <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
  14800. <P>
  14801. where the day of the week is only included if it is available in the
  14802. original message.
  14803. You can replace this default with text of your own.
  14804. The text may contain tokens which are replaced with text
  14805. which depends on the message you are replying to.
  14806. For example, the default is equivalent to:
  14807. <P>
  14808. <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
  14809. <P>
  14810.  
  14811. Since this variable includes regular text mixed with special tokens
  14812. the tokens have to be surrounded by underscore characters.
  14813. For example, to use the token "<SAMP>DATE</SAMP>"
  14814. you would need to use "<SAMP>_DATE_</SAMP>",
  14815. not "<SAMP>DATE</SAMP>".
  14816. <P>
  14817. The list of available tokens is
  14818. <A HREF="h_index_tokens">here</A>.
  14819.  
  14820. <P>
  14821. For the adventurous, there is a way to conditionally include text based
  14822. on whether or not a token would result in specific replacement text.
  14823. For example, you could include some text based on whether or not
  14824. the _NEWS_ token would result in any newsgroups if it was used.
  14825. It's explained in detail
  14826. <A HREF="h_reply_token_conditionals">here</A>.
  14827.  
  14828. <P>
  14829. If your "Reply-Leadin" turns out to be longer
  14830. than 80 characters when replying to a particular message, it is shortened.
  14831.  
  14832. <P>
  14833. In the very unlikely event that you want to include a literal token
  14834. in the introduction line you must precede it with a backslash character.
  14835. For example,
  14836. <P>
  14837. <CENTER><SAMP>\_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
  14838. <P>
  14839. would produce something like
  14840. <P>
  14841. <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
  14842. <P>
  14843. It is not possible to have a literal backslash followed by an expanded token.
  14844. <P>
  14845. <UL>   
  14846. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14847. </UL><P>
  14848. <End of help on this topic>
  14849. </BODY>
  14850. </HTML>
  14851. ====== h_config_remote_abook_history =====
  14852. <HTML>
  14853. <HEAD>
  14854. <TITLE>OPTION: Remote-Abook-History</TITLE>
  14855. </HEAD>
  14856. <BODY>
  14857. <H1>OPTION: Remote-Abook-History</H1>
  14858.  
  14859. Sets how many extra copies of
  14860. remote address book
  14861. data will be kept in each remote address book folder.
  14862. The default is three.
  14863. These extra copies are simply old versions of the data. Each time a change
  14864. is made a new copy of the address book data is appended to the folder. Old
  14865. copies are trimmed, if possible, when Pine exits.
  14866. An old copy can be put back into use by
  14867. deleting and expunging newer versions of the data from the folder.
  14868. Don't delete the first message from the folder. It is a special header
  14869. message for the remote address book and it must be there.
  14870. This is to prevent regular folders from being used as remote address book
  14871. folders and having their data destroyed.
  14872. <P>
  14873. This option is also used to determine how many extra copies of remote
  14874. Pine configuration files are kept.
  14875. <P>
  14876. <UL>   
  14877. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14878. </UL><P>
  14879. <End of help on this topic>
  14880. </BODY>
  14881. </HTML>
  14882. ====== h_config_remote_abook_validity =====
  14883. <HTML>
  14884. <HEAD>
  14885. <TITLE>OPTION: Remote-Abook-Validity</TITLE>
  14886. </HEAD>
  14887. <BODY>
  14888. <H1>OPTION: Remote-Abook-Validity</H1>
  14889.  
  14890. Sets the minimum number of minutes that a
  14891. remote address book will be considered up to date.
  14892. Whenever an entry contained in a remote address book is used,
  14893. if more than this many minutes have
  14894. passed since the last check the remote server will be queried to see if the
  14895. address book has changed.
  14896. If it has changed, the local copy is updated.
  14897. The default value is five minutes.
  14898. The special value of -1 means never check.
  14899. The special value of zero means only check when the address book is first
  14900. opened.
  14901. <P>
  14902. No matter what the value, the validity check is always done when the
  14903. address book is about to be changed by the user.
  14904. The check can be initiated manually by typing <EM>^L</EM> (control-L)
  14905. while in the address book maintenance screen for the remote address book.
  14906. <P>
  14907. <UL>   
  14908. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14909. </UL><P>
  14910. <End of help on this topic>
  14911. </BODY>
  14912. </HTML>
  14913. ====== h_config_user_input_timeo =====
  14914. <HTML>
  14915. <HEAD>
  14916. <TITLE>OPTION: User-Input-Timeout</TITLE>
  14917. </HEAD>
  14918. <BODY>
  14919. <H1>OPTION: User-Input-Timeout</H1>
  14920.  
  14921. If this is set to an integer greater than zero, then this is the number
  14922. of <EM>hours</EM> to wait for user input before Pine times out.
  14923. If Pine is
  14924. in the midst of composing a message or is waiting for user response to
  14925. a question, then it will not timeout.
  14926. However, if Pine is sitting idle waiting for
  14927. the user to tell it what to do next and the user does not give any
  14928. input for this many hours, Pine will exit.
  14929. No expunging or moving of read
  14930. messages will take place.
  14931. It will exit similarly to the way it would exit
  14932. if it received a hangup signal.
  14933. This may be useful for cleaning up unused Pine sessions which have been
  14934. forgotten by their owners.
  14935. The Pine developers envision system administrators
  14936. setting this to a value of several hours (24?) so that it won't surprise
  14937. a user who didn't want to be disconnected.
  14938. <P>
  14939. <UL>   
  14940. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14941. </UL><P>
  14942. <End of help on this topic>
  14943. </BODY>
  14944. </HTML>
  14945. ====== h_config_ssh_open_timeo =====
  14946. <HTML>
  14947. <HEAD>
  14948. <TITLE>OPTION: Ssh-Open-Timeout</TITLE>
  14949. </HEAD>
  14950. <BODY>
  14951. <H1>OPTION: Ssh-Open-Timeout</H1>
  14952.  
  14953. Sets the time in seconds that Pine will
  14954. attempt to open a UNIX secure shell connection.
  14955. The default is 15, the minimum non-zero value is 5,
  14956. and the maximum is unlimited. If this is set to zero ssh connections
  14957. will be completely disabled.
  14958. <P>
  14959. <UL>   
  14960. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14961. </UL><P>
  14962. <End of help on this topic>
  14963. </BODY>
  14964. </HTML>
  14965. ====== h_config_rsh_open_timeo =====
  14966. <HTML>
  14967. <HEAD>
  14968. <TITLE>OPTION: Rsh-Open-Timeout</TITLE>
  14969. </HEAD>
  14970. <BODY>
  14971. <H1>OPTION: Rsh-Open-Timeout</H1>
  14972.  
  14973. Sets the time in seconds that Pine will
  14974. attempt to open a UNIX remote shell connection.
  14975. The default is 15, the minimum non-zero value is 5,
  14976. and the maximum is unlimited. If this is set to zero rsh connections
  14977. will be completely disabled.
  14978. <P>
  14979. <UL>   
  14980. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  14981. </UL><P>
  14982. <End of help on this topic>
  14983. </BODY>
  14984. </HTML>
  14985. ====== h_config_tcp_open_timeo =====
  14986. <HTML>
  14987. <HEAD>
  14988. <TITLE>OPTION: Tcp-Open-Timeout</TITLE>
  14989. </HEAD>
  14990. <BODY>
  14991. <H1>OPTION: Tcp-Open-Timeout</H1>
  14992.  
  14993. Sets the time in seconds that Pine will
  14994. attempt to open a network connection. The default is 30, the minimum is 5,
  14995. and the maximum is system defined (typically 75). If a connection has not
  14996. completed within this many seconds Pine will give up and consider it a
  14997. failed connection.
  14998. <P>
  14999. <UL>   
  15000. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15001. </UL><P>
  15002. <End of help on this topic>
  15003. </BODY>
  15004. </HTML>
  15005. ====== h_config_tcp_readwarn_timeo =====
  15006. <HTML>
  15007. <HEAD>
  15008. <TITLE>OPTION: Tcp-Read-Warning-Timeout</TITLE>
  15009. </HEAD>
  15010. <BODY>
  15011. <H1>OPTION: Tcp-Read-Warning-Timeout</H1>
  15012.  
  15013. Sets the time in seconds that Pine will
  15014. wait for a network read before warning you that things are moving slowly
  15015. and possibly giving you the option to break the connection.
  15016. The default is 15 seconds. The minimum is 5 seconds and the maximumn is
  15017. 1000 seconds.
  15018. <P>
  15019. Related option: <A HREF="h_config_tcp_query_timeo">Tcp-Query-Timeout</A>.
  15020. <P>
  15021. <UL>   
  15022. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15023. </UL><P>
  15024. <End of help on this topic>
  15025. </BODY>
  15026. </HTML>
  15027. ====== h_config_tcp_writewarn_timeo =====
  15028. <HTML>
  15029. <HEAD>
  15030. <TITLE>OPTION: Tcp-Write-Warning-Timeout</TITLE>
  15031. </HEAD>
  15032. <BODY>
  15033. <H1>OPTION: Tcp-Write-Warning-Timeout</H1>
  15034.  
  15035. Sets the time in seconds that Pine will
  15036. wait for a network write before warning you that things are moving slowly
  15037. and possibly giving you the option to break the connection.
  15038. The default is 0 which means it is unset. If set to a non-zero value, the
  15039. minimum is 5 and the maximum is 1000.
  15040. <P>
  15041. Related option: <A HREF="h_config_tcp_query_timeo">Tcp-Query-Timeout</A>.
  15042. <P>
  15043. <UL>   
  15044. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15045. </UL><P>
  15046. <End of help on this topic>
  15047. </BODY>
  15048. </HTML>
  15049. ====== h_config_tcp_query_timeo =====
  15050. <HTML>
  15051. <HEAD>
  15052. <TITLE>OPTION: Tcp-Query-Timeout</TITLE>
  15053. </HEAD>
  15054. <BODY>
  15055. <H1>OPTION: Tcp-Query-Timeout</H1>
  15056.  
  15057. When Pine times out a network read or write it will normally just display
  15058. a message saying "Still waiting".
  15059. However, if enough time has elapsed since it started waiting it will offer
  15060. to let you break the connection.
  15061. That amount of time is set by this option, which defaults to 60 seconds,
  15062. has a minimum of 5 seconds, and a maximum of 1000 seconds.
  15063. <P>
  15064. <UL>   
  15065. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15066. </UL><P>
  15067. <End of help on this topic>
  15068. </BODY>
  15069. </HTML>
  15070. ====== h_config_incoming_folders =====
  15071. <HTML>
  15072. <HEAD>
  15073. <TITLE>OPTION: incoming-folders</TITLE>
  15074. </HEAD>
  15075. <BODY>
  15076. <H1>OPTION: incoming-folders</H1>
  15077.  
  15078. This is a list of one or more folders other than <EM>INBOX</EM> that
  15079. may receive new messages.
  15080. It is related to the
  15081. <A HREF="h_config_enable_incoming">"enable-incoming-folders"</A>
  15082. feature.
  15083. This variable is normally manipulated with the Add, Delete, and Rename
  15084. commands in the FOLDER LIST for the Incoming Message Folders collection.
  15085. <P>
  15086. <UL>   
  15087. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15088. </UL><P>
  15089. <End of help on this topic>
  15090. </BODY>
  15091. </HTML>
  15092. ====== h_config_folder_spec =====
  15093. <HTML>
  15094. <HEAD>
  15095. <TITLE>OPTION: folder-collections</TITLE>
  15096. </HEAD>
  15097. <BODY>
  15098. <H1>OPTION: folder-collections</H1>
  15099.  
  15100. This is a list of one or more collections where saved mail is stored. 
  15101. The first collection in this list is the default
  15102. collection for <EM>Save</EM>s,
  15103. including <A HREF="h_config_default_fcc">Default-FCC</A>.
  15104. <P>
  15105. This variable is normally manipulated using the Setup/collectionList screen.
  15106. <P>
  15107. <UL>   
  15108. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15109. </UL><P>
  15110. <End of help on this topic>
  15111. </BODY>
  15112. </HTML>
  15113. ====== h_config_news_spec =====
  15114. <HTML>
  15115. <HEAD>
  15116. <TITLE>OPTION: news-collections</TITLE>
  15117. </HEAD>
  15118. <BODY>
  15119. <H1>OPTION: news-collections</H1>
  15120.  
  15121. This is a list of collections where news folders are located.
  15122. <P>
  15123. This variable is normally manipulated using the Setup/collectionList screen.
  15124. <P>
  15125. <UL>   
  15126. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15127. </UL><P>
  15128. <End of help on this topic>
  15129. </BODY>
  15130. </HTML>
  15131. ====== h_config_address_book =====
  15132. <HTML>
  15133. <HEAD>
  15134. <TITLE>OPTION: address-book</TITLE>
  15135. </HEAD>
  15136. <BODY>
  15137. <H1>OPTION: address-book</H1>
  15138.  
  15139. A list of personal address books.
  15140. Each entry in the list is an
  15141. optional nickname followed by a pathname or file name relative to the home
  15142. directory.
  15143. The nickname is separated from the rest of the line with whitespace.
  15144. Instead of a local pathname or file name, a remote folder name can be given.
  15145. This causes the address book to
  15146. be a Remote address book.
  15147. <P>
  15148. Use the Setup/AddressBook screen to modify this variable.
  15149. <P>
  15150. <UL>   
  15151. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15152. </UL><P>
  15153. <End of help on this topic>
  15154. </BODY>
  15155. </HTML>
  15156. ====== h_config_glob_addrbook =====
  15157. <HTML>
  15158. <HEAD>
  15159. <TITLE>OPTION: global-address-book</TITLE>
  15160. </HEAD>
  15161. <BODY>
  15162. <H1>OPTION: global-address-book</H1>
  15163.  
  15164. A list of shared address books.  Each entry in the list is an
  15165. optional nickname followed by a pathname or file name relative to the home
  15166. directory.
  15167. A SPACE character separates the nickname from the rest of the line.
  15168. Instead of a local pathname or file name, a remote folder name can be given.
  15169. This causes the address book to
  15170. be a Remote address book.
  15171. Global address books are
  15172. defined to be ReadOnly.
  15173. <P>
  15174. Use the Setup/AddressBook screen to modify this variable.
  15175. <P>
  15176. <UL>   
  15177. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15178. </UL><P>
  15179. <End of help on this topic>
  15180. </BODY>
  15181. </HTML>
  15182. ====== h_config_last_vers =====
  15183. <HTML>
  15184. <HEAD>
  15185. <TITLE>OPTION: last-version-used</TITLE>
  15186. </HEAD>
  15187. <BODY>
  15188. <H1>OPTION: last-version-used</H1>
  15189.  
  15190. This is set automatically by Pine. 
  15191. It is used to keep track of the last version of Pine that
  15192. was run by the user.
  15193. Whenever the version number increases, a new version message is printed out.
  15194. This may not be set in the system-wide configuration files.
  15195. <P>
  15196. <UL>   
  15197. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15198. </UL><P>
  15199. <End of help on this topic>
  15200. </BODY>
  15201. </HTML>
  15202. ====== h_config_printer =====
  15203. <HTML>
  15204. <HEAD>
  15205. <TITLE>OPTION: printer</TITLE>
  15206. </HEAD>
  15207. <BODY>
  15208. <H1>OPTION: printer</H1>
  15209.  
  15210. Your default printer selection.
  15211. <P>
  15212. Use the Setup/Printer screen to modify this variable.
  15213. <P>
  15214. <UL>   
  15215. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15216. </UL><P>
  15217. <End of help on this topic>
  15218. </BODY>
  15219. </HTML>
  15220. ====== h_config_print_cat =====
  15221. <HTML>
  15222. <HEAD>
  15223. <TITLE>OPTION: personal-print-category</TITLE>
  15224. </HEAD>
  15225. <BODY>
  15226. <H1>OPTION: personal-print-category</H1>
  15227.  
  15228. This is an internal Pine variable.
  15229. It will be equal to 1, 2, or 3 depending on whether the default printer is
  15230. attached, standard, or a personal print command.
  15231. <P>
  15232. Use the Setup/Printer screen to modify this variable.
  15233. <P>
  15234. <UL>   
  15235. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15236. </UL><P>
  15237. <End of help on this topic>
  15238. </BODY>
  15239. </HTML>
  15240. ====== h_config_print_command =====
  15241. <HTML>
  15242. <HEAD>
  15243. <TITLE>OPTION: peronsal-print-command</TITLE>
  15244. </HEAD>
  15245. <BODY>
  15246. <H1>OPTION: peronsal-print-command</H1>
  15247.  
  15248. List of personal print commands.
  15249. <P>
  15250. Use the Setup/Printer screen to modify this variable.
  15251. <P>
  15252. <UL>   
  15253. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15254. </UL><P>
  15255. <End of help on this topic>
  15256. </BODY>
  15257. </HTML>
  15258. ====== h_config_pat_roles =====
  15259. <HTML>
  15260. <HEAD>
  15261. <TITLE>OPTION: patterns-roles</TITLE>
  15262. </HEAD>
  15263. <BODY>
  15264. <H1>OPTION: patterns-roles</H1>
  15265.  
  15266. List of rules used for roles.
  15267. <P>
  15268. Use the Setup/Rules/Roles screen to modify this variable.
  15269. <P>
  15270. <UL>   
  15271. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15272. </UL><P>
  15273. <End of help on this topic>
  15274. </BODY>
  15275. </HTML>
  15276. ====== h_config_pat_filts =====
  15277. <HTML>
  15278. <HEAD>
  15279. <TITLE>OPTION: patterns-filters</TITLE>
  15280. </HEAD>
  15281. <BODY>
  15282. <H1>OPTION: patterns-filters</H1>
  15283.  
  15284. List of rules used for filters.
  15285. <P>
  15286. Use the Setup/Rules/Filters screen to modify this variable.
  15287. <P>
  15288. <UL>   
  15289. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15290. </UL><P>
  15291. <End of help on this topic>
  15292. </BODY>
  15293. </HTML>
  15294. ====== h_config_pat_scores =====
  15295. <HTML>
  15296. <HEAD>
  15297. <TITLE>OPTION: patterns-scores</TITLE>
  15298. </HEAD>
  15299. <BODY>
  15300. <H1>OPTION: patterns-scores</H1>
  15301.  
  15302. List of rules used for scoring.
  15303. <P>
  15304. Use the Setup/Rules/SetScores screen to modify this variable.
  15305. <P>
  15306. <UL>   
  15307. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15308. </UL><P>
  15309. <End of help on this topic>
  15310. </BODY>
  15311. </HTML>
  15312. ====== h_config_pat_incols =====
  15313. <HTML>
  15314. <HEAD>
  15315. <TITLE>OPTION: patterns-indexcolors</TITLE>
  15316. </HEAD>
  15317. <BODY>
  15318. <H1>OPTION: patterns-indexcolors</H1>
  15319.  
  15320. List of rules used for coloring lines in the index.
  15321. <P>
  15322. Use the Setup/Rules/Indexcolor screen to modify this variable.
  15323. <P>
  15324. <UL>   
  15325. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15326. </UL><P>
  15327. <End of help on this topic>
  15328. </BODY>
  15329. </HTML>
  15330. ====== h_config_font_name =====
  15331. <HTML>
  15332. <HEAD>
  15333. <TITLE>OPTION: font-name</TITLE>
  15334. </HEAD>
  15335. <BODY>
  15336. <H1>OPTION: font-name</H1>
  15337.  
  15338. Name of normal font.
  15339. <P>
  15340. Use the pulldown Config menu to modify this variable.
  15341. <P>
  15342. <UL>   
  15343. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15344. </UL><P>
  15345. <End of help on this topic>
  15346. </BODY>
  15347. </HTML>
  15348. ====== h_config_font_size =====
  15349. <HTML>
  15350. <HEAD>
  15351. <TITLE>OPTION: font-size</TITLE>
  15352. </HEAD>
  15353. <BODY>
  15354. <H1>OPTION: font-size</H1>
  15355.  
  15356. Size of normal font.
  15357. <P>
  15358. Use the pulldown Config menu to modify this variable.
  15359. <P>
  15360. <UL>   
  15361. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15362. </UL><P>
  15363. <End of help on this topic>
  15364. </BODY>
  15365. </HTML>
  15366. ====== h_config_font_style =====
  15367. <HTML>
  15368. <HEAD>
  15369. <TITLE>OPTION: font-style</TITLE>
  15370. </HEAD>
  15371. <BODY>
  15372. <H1>OPTION: font-style</H1>
  15373.  
  15374. Style of normal font.
  15375. <P>
  15376. Use the pulldown Config menu to modify this variable.
  15377. <P>
  15378. <UL>   
  15379. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15380. </UL><P>
  15381. <End of help on this topic>
  15382. </BODY>
  15383. </HTML>
  15384. ====== h_config_print_font_name =====
  15385. <HTML>
  15386. <HEAD>
  15387. <TITLE>OPTION: print-font-name</TITLE>
  15388. </HEAD>
  15389. <BODY>
  15390. <H1>OPTION: print-font-name</H1>
  15391.  
  15392. Name of printer font.
  15393. <P>
  15394. Use the pulldown Config menu to modify this variable.
  15395. <P>
  15396. <UL>   
  15397. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15398. </UL><P>
  15399. <End of help on this topic>
  15400. </BODY>
  15401. </HTML>
  15402. ====== h_config_print_font_size =====
  15403. <HTML>
  15404. <HEAD>
  15405. <TITLE>OPTION: print-font-size</TITLE>
  15406. </HEAD>
  15407. <BODY>
  15408. <H1>OPTION: print-font-size</H1>
  15409.  
  15410. Size of printer font.
  15411. <P>
  15412. Use the pulldown Config menu to modify this variable.
  15413. <P>
  15414. <UL>   
  15415. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15416. </UL><P>
  15417. <End of help on this topic>
  15418. </BODY>
  15419. </HTML>
  15420. ====== h_config_print_font_style =====
  15421. <HTML>
  15422. <HEAD>
  15423. <TITLE>OPTION: print-font-style</TITLE>
  15424. </HEAD>
  15425. <BODY>
  15426. <H1>OPTION: print-font-style</H1>
  15427.  
  15428. Style of printer font.
  15429. <P>
  15430. Use the pulldown Config menu to modify this variable.
  15431. <P>
  15432. <UL>   
  15433. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15434. </UL><P>
  15435. <End of help on this topic>
  15436. </BODY>
  15437. </HTML>
  15438. ====== h_config_window_position =====
  15439. <HTML>
  15440. <HEAD>
  15441. <TITLE>OPTION: window-position</TITLE>
  15442. </HEAD>
  15443. <BODY>
  15444. <H1>OPTION: window-position</H1>
  15445.  
  15446. Position on the screen of the Pine window.
  15447. <P>
  15448. Pine normally maintains this variable itself.
  15449. <P>
  15450. <UL>   
  15451. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15452. </UL><P>
  15453. <End of help on this topic>
  15454. </BODY>
  15455. </HTML>
  15456. ====== h_config_cursor_style =====
  15457. <HTML>
  15458. <HEAD>
  15459. <TITLE>OPTION: cursor-style</TITLE>
  15460. </HEAD>
  15461. <BODY>
  15462. <H1>OPTION: cursor-style</H1>
  15463.  
  15464. Cursor style.
  15465. <P>
  15466. Use the pulldown Config menu to modify this variable.
  15467. <P>
  15468. <UL>   
  15469. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15470. </UL><P>
  15471. <End of help on this topic>
  15472. </BODY>
  15473. </HTML>
  15474. ====== h_config_ldap_servers =====
  15475. <HTML>
  15476. <HEAD>
  15477. <TITLE>OPTION: ldap-servers</TITLE>
  15478. </HEAD>
  15479. <BODY>
  15480. <H1>OPTION: ldap-servers</H1>
  15481.  
  15482. List of LDAP servers and associated data.
  15483. <P>
  15484. Use the Setup/Directory screen to modify this variable.
  15485. <P>
  15486. <UL>   
  15487. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15488. </UL><P>
  15489. <End of help on this topic>
  15490. </BODY>
  15491. </HTML>
  15492. ====== h_config_sendmail_path =====
  15493. <HTML>
  15494. <HEAD>
  15495. <TITLE>OPTION: sendmail-path</TITLE>
  15496. </HEAD>
  15497. <BODY>
  15498. <H1>OPTION: sendmail-path</H1>
  15499.  
  15500. This names the path to an
  15501. alternative program, and any necessary arguments, to be used in posting
  15502. mail messages. See the Technical notes for more information.
  15503. <P>
  15504. <UL>   
  15505. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15506. </UL><P>
  15507. <End of help on this topic>
  15508. </BODY>
  15509. </HTML>
  15510. ====== h_config_oper_dir =====
  15511. <HTML>
  15512. <HEAD>
  15513. <TITLE>OPTION: operating-dir</TITLE>
  15514. </HEAD>
  15515. <BODY>
  15516. <H1>OPTION: operating-dir</H1>
  15517.  
  15518. This names the root of the
  15519. tree to which you are restricted when reading and writing folders and
  15520. files. It is usually used in the system-wide,
  15521. <EM>fixed</EM> configuration file.
  15522. <P>
  15523. <UL>   
  15524. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15525. </UL><P>
  15526. <End of help on this topic>
  15527. </BODY>
  15528. </HTML>
  15529. ====== h_config_rshpath =====
  15530. <HTML>
  15531. <HEAD>
  15532. <TITLE>OPTION: rsh-path</TITLE>
  15533. </HEAD>
  15534. <BODY>
  15535. <H1>OPTION: rsh-path</H1>
  15536.  
  15537. Sets the name of the command used to open a UNIX remote shell
  15538. connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
  15539. <P>
  15540. <UL>   
  15541. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15542. </UL><P>
  15543. <End of help on this topic>
  15544. </BODY>
  15545. </HTML>
  15546. ====== h_config_rshcmd =====
  15547. <HTML>
  15548. <HEAD>
  15549. <TITLE>OPTION: rsh-command</TITLE>
  15550. </HEAD>
  15551. <BODY>
  15552. <H1>OPTION: rsh-command</H1>
  15553.  
  15554. Sets the format of the command used to
  15555. open a UNIX remote shell connection. The default is
  15556. "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
  15557. provided command. The first is for the command's pathname, the second is
  15558. for the host to connnect to, the third is for the user to connect as, and
  15559. the fourth is for the connection method (typically <CODE>imap</CODE>).
  15560. <P>
  15561. <UL>   
  15562. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15563. </UL><P>
  15564. <End of help on this topic>
  15565. </BODY>
  15566. </HTML>
  15567. ====== h_config_sshpath =====
  15568. <HTML>
  15569. <HEAD>
  15570. <TITLE>OPTION: ssh-path</TITLE>
  15571. </HEAD>
  15572. <BODY>
  15573. <H1>OPTION: ssh-path</H1>
  15574.  
  15575. Sets the name of the command used to open a UNIX secure shell
  15576. connection. The default is typically <CODE>/usr/local/bin/ssh</CODE>.
  15577. <P>
  15578. <UL>   
  15579. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15580. </UL><P>
  15581. <End of help on this topic>
  15582. </BODY>
  15583. </HTML>
  15584. ====== h_config_sshcmd =====
  15585. <HTML>
  15586. <HEAD>
  15587. <TITLE>OPTION: ssh-command</TITLE>
  15588. </HEAD>
  15589. <BODY>
  15590. <H1>OPTION: ssh-command</H1>
  15591.  
  15592. Sets the format of the command used to
  15593. open a UNIX secure shell connection. The default is
  15594. "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
  15595. provided command. The first is for the command's pathname, the second is
  15596. for the host to connnect to, the third is for the user to connect as, and
  15597. the fourth is for the connection method (typically <CODE>imap</CODE>).
  15598. <P>
  15599. <UL>   
  15600. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15601. </UL><P>
  15602. <End of help on this topic>
  15603. </BODY>
  15604. </HTML>
  15605. ====== h_config_new_ver_quell =====
  15606. <HTML>
  15607. <HEAD>
  15608. <TITLE>OPTION: new-version-threshold</TITLE>
  15609. </HEAD>
  15610. <BODY>
  15611. <H1>OPTION: new-version-threshold</H1>
  15612.  
  15613. When a new version of Pine is run for the first time it offers a
  15614. special explanatory screen to the user upon startup.  This option
  15615. helps control when and if that special screen appears for users that
  15616. have previously run Pine.  It takes as its value a Pine version
  15617. number.  Pine versions less than the specified value will supress this
  15618. special screen while versions equal to or greater than that specified
  15619. will behave normally.
  15620. <P>
  15621. <UL>   
  15622. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15623. </UL><P>
  15624. <End of help on this topic>
  15625. </BODY>
  15626. </HTML>
  15627. ====== h_config_disable_drivers =====
  15628. <HTML>
  15629. <HEAD>
  15630. <TITLE>OPTION: disable-these-drivers</TITLE>
  15631. </HEAD>
  15632. <BODY>
  15633. <H1>OPTION: disable-these-drivers</H1>
  15634.  
  15635. This variable is a list of mail drivers which will be disabled.
  15636. The candidates for disabling are listed below.
  15637. There may be more in the future if you compile Pine with
  15638. a newer version of the c-client library.
  15639. <P>
  15640.  
  15641. <UL>
  15642. <LI> mbox
  15643. <LI> mbx
  15644. <LI> mh
  15645. <LI> mmdf
  15646. <LI> mtx
  15647. <LI> mx
  15648. <LI> news
  15649. <LI> phile
  15650. <LI> tenex
  15651. <LI> unix
  15652. </UL>
  15653. <P>
  15654.  
  15655. The <EM>mbox</EM> driver enables the following behavior: if there is a
  15656. file called <CODE>mbox</CODE>
  15657. in your home directory, and if that file is either empty or in Unix mailbox
  15658. format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
  15659. will automatically transfer mail from the system mail spool directory into the
  15660. <CODE>mbox</CODE> file and
  15661. delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
  15662. this will not happen.
  15663. <P>
  15664.  
  15665. It is not recommended to disable the driver which supports the system default
  15666. mailbox format. On most non-SCO systems, that driver is the
  15667. <EM>unix</EM> driver.
  15668. On most SCO systems, it is the <EM>mmdf</EM> driver.
  15669. The system default driver may be
  15670. configured to something else on your system; check with your system manager
  15671. for additional information.
  15672. <P>
  15673.  
  15674. It is most likely not very useful for you to disable any of the drivers other
  15675. than possibly <EM>mbox</EM>.
  15676. You could disable some of the others if you know for
  15677. certain that you don't need them but the performance gain in doing so
  15678. is very modest.
  15679. <P>
  15680. <UL>   
  15681. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15682. </UL><P>
  15683. <End of help on this topic>
  15684. </BODY>
  15685. </HTML>
  15686. ====== h_config_abook_metafile =====
  15687. <HTML>
  15688. <HEAD>
  15689. <TITLE>OPTION: remote-abook-metafile</TITLE>
  15690. </HEAD>
  15691. <BODY>
  15692. <H1>OPTION: remote-abook-metafile</H1>
  15693.  
  15694. This is usually set by Pine and is the name of a file
  15695. that contains data about
  15696. remote address books and remote configuration files.
  15697. <P>
  15698. <UL>   
  15699. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15700. </UL><P>
  15701. <End of help on this topic>
  15702. </BODY>
  15703. </HTML>
  15704. ====== h_config_composer_wrap_column =====
  15705. <HTML>
  15706. <HEAD>
  15707. <TITLE>OPTION: Composer-Wrap-Column</TITLE>
  15708. </HEAD>
  15709. <BODY>
  15710. <H1>OPTION: Composer-Wrap-Column</H1>
  15711.  
  15712.  
  15713. This option specifies an aspect of Pine's Composer.  This gives the
  15714. maximum width that auto-wrapped lines will have.  It's also the maximum
  15715. width of lines justified using the <A HREF="h_compose_justify">^J
  15716. Justify</A> command.  The normal default
  15717. is "74".  The largest allowed setting is normally "80"
  15718. in order to
  15719. prevent very long lines from being sent in outgoing mail.  When the mail
  15720. is actually sent, trailing spaces will be stripped off of each line.
  15721.  
  15722. <P>
  15723. <UL>   
  15724. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15725. </UL><P>
  15726. <End of help on this topic>
  15727. </BODY>
  15728. </HTML>
  15729. ====== h_config_viewer_overlap =====
  15730. <html>
  15731. <header>
  15732. <title>OPTION: Viewer-Overlap</title>
  15733. </header>
  15734. <body>
  15735. <h1>OPTION: Viewer-Overlap</h1>
  15736.  
  15737. This option specifies an aspect of Pine's Message Viewing screen.  When
  15738. the space bar is used to page forward in a message, the number of lines
  15739. specified by the "viewer-overlap" variable will be repeated from the
  15740. bottom of the screen.  That is, if this was set to two lines, then the
  15741. bottom two lines of the screen would be repeated on the top of the next
  15742. screen.  The normal default value is "2".<p>
  15743. <UL>   
  15744. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15745. </UL><P>
  15746. <End of help on this topic>
  15747. </body>
  15748. </html>
  15749. ====== h_config_scroll_margin =====
  15750. <HTML>
  15751. <HEAD>
  15752. <TITLE>OPTION: Scroll-margin</TITLE>
  15753. </HEAD>
  15754. <BODY>
  15755. <H1>OPTION: Scroll-margin</H1>
  15756.  
  15757. This option controls when Pine's line-by-line scrolling occurs.
  15758. Typically, when a selected item is at the top or bottom screen edge
  15759. and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
  15760. displayed items are scrolled down or up by a single line.
  15761.  
  15762. <P>
  15763. This option allows you to tell Pine the number of lines from the top and
  15764. bottom screen edge that line-by-line paging should occcur.  For example,
  15765. setting this value to one (1) will cause Pine to scroll the display
  15766. vertically when you move to select an item on the display's top or
  15767. bottom edge.
  15768.  
  15769. <P>
  15770. By default, this variable is zero, indicating that scrolling happens
  15771. when you move up or down to select an item immediately off the display's
  15772. top or bottom edge.
  15773.  
  15774. <P>
  15775. <UL>   
  15776. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15777. </UL><P>
  15778. <End of help on this topic>
  15779. </BODY>
  15780. </HTML>
  15781. ====== h_config_reply_indent_string =====
  15782. <HTML>
  15783. <HEAD>
  15784. <TITLE>OPTION: Reply-Indent-String</TITLE>
  15785. </HEAD>
  15786. <BODY>
  15787. <H1>OPTION: Reply-Indent-String</H1>
  15788.  
  15789. This option specifies an aspect of Pine's Reply command.
  15790. When a message is replied to and the text of the message is included, the
  15791. included text usually has the string "> " prepended
  15792. to each line indicating it is quoted text.
  15793. (In case you haven't seen this before, "string" is a technical term
  15794. which means chunk of text.)
  15795.  
  15796. <P>
  15797. This option specifies a different value for that string.
  15798. If you wish to use a string which begins or ends with a space,
  15799. enclose the string in double quotes.
  15800.  
  15801. <P>
  15802. Besides simple text, the prepended string can be based
  15803. on the message being replied to.
  15804. The following tokens are substituted for the message's corresponding value:
  15805.  
  15806. <DL>
  15807. <DT>_FROM_</DT>
  15808. <DD>This token gets replaced with the message sender's "username".
  15809. </DD>
  15810.  
  15811. <DT>_NICK_</DT>
  15812. <DD>This token gets replaced with the nickname of the message sender's
  15813. address as found in your addressbook.
  15814. If no addressbook entry is found,
  15815. Pine replaces the characters "_NICK_" with nothing.
  15816. </DD>
  15817.  
  15818. <DT>_INIT_</DT>
  15819. <DD>This token gets replaced with the initials of the sender of the message.
  15820. </DD>
  15821.  
  15822. </DL>
  15823.  
  15824. NOTE: When the
  15825. <A HREF="h_config_prefix_editing">"enable-reply-indent-string-editing"</A>
  15826. feature is enabled, you are given the opportunity to edit the string, whether 
  15827. it is the default or one automatically generated using the above tokens.
  15828. <P>
  15829. <UL>   
  15830. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15831. </UL><P>
  15832. <End of help on this topic>
  15833. </BODY>
  15834. </HTML>
  15835. ====== h_config_empty_hdr_msg =====
  15836. <HTML>
  15837. <HEAD>
  15838. <TITLE>OPTION: Empty-Header-Message</TITLE>
  15839. </HEAD>
  15840. <BODY>
  15841. <H1>OPTION: Empty-Header-Message</H1>
  15842.  
  15843. When sending, if all of the To, Cc, and Newsgroups fields are empty,
  15844. Pine will put a special address in the To line.  The default value is:
  15845.  
  15846. <P>
  15847. <CENTER><SAMP>Undisclosed recipients: ;</SAMP></CENTER>
  15848.  
  15849. <P>
  15850. The reason for this is to avoid embarrassment caused by some Internet
  15851. mail transfer software that interprets a "missing"
  15852. <SAMP>To:</SAMP> header as an error and replaces it with an
  15853. <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
  15854. entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
  15855. Bcc.  You may change the part of this message that comes before the
  15856. ": ;" by setting the "empty-header-message"
  15857. variable to something else.
  15858.  
  15859. <P>
  15860. The normal default is "Undisclosed recipients".
  15861.  
  15862. <P>
  15863. <UL>   
  15864. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15865. </UL><P>
  15866. <End of help on this topic>
  15867. </BODY>
  15868. </HTML>
  15869. ====== h_config_status_msg_delay =====
  15870. <HTML>
  15871. <HEAD>
  15872. <TITLE>OPTION: Status-Message-Delay</TITLE>
  15873. </HEAD>
  15874. <BODY>
  15875. <H1>OPTION: Status-Message-Delay</H1>
  15876.  
  15877. If this is set to a positive number, it causes the cursor to move to the
  15878. status line whenever a status message is printed and pause there for this
  15879. many seconds.  It will probably only be useful if the 
  15880. <A HREF="h_config_show_cursor">"show-cursor"</A> feature is also turned on.
  15881. <P>
  15882. <UL>   
  15883. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15884. </UL><P>
  15885. <End of help on this topic>
  15886. </BODY>
  15887. </HTML>
  15888. ====== h_config_mailcheck =====
  15889. <html>
  15890. <header>
  15891. <title>OPTION: Mail-Check-Interval</title>
  15892. </header>
  15893. <body>
  15894. <h1>OPTION: Mail-Check-Interval</h1>
  15895.  
  15896. This options specifies, in seconds, how often Pine will check for new
  15897. mail.  If set to zero, new-mail checking is disabled.  There is a minimum
  15898. value, normally 15 seconds.<p>
  15899. <UL>   
  15900. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15901. </UL><P>
  15902. <End of help on this topic>
  15903. </body>
  15904. </html>
  15905. ====== h_config_news_active =====
  15906. <html>
  15907. <header>
  15908. <title>OPTION: News-Active-File-Path</title>
  15909. </header>
  15910. <body>
  15911. <h1>OPTION: News-Active-File-Path</h1>
  15912.  
  15913. This option tells Pine where to look for the "active file" for newsgroups
  15914. when accessing news locally, rather than via NNTP.  The default path is
  15915. usually "/usr/lib/news/active".<p>
  15916. <UL>   
  15917. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15918. </UL><P>
  15919. <End of help on this topic>
  15920. </body>
  15921. </html>
  15922. ====== h_config_news_spool =====
  15923. <html>
  15924. <header>
  15925. <title>OPTION: News-Spool-Directory</title>
  15926. </header>
  15927. <body>
  15928. <h1>OPTION: News-Spool-Directory</h1>
  15929. This option tells Pine where to look for the "news spool" for newsgroups
  15930. when accessing news locally, rather than via NNTP.  The default path is
  15931. usually "/usr/spool/news".<p>
  15932. <UL>   
  15933. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15934. </UL><P>
  15935. <End of help on this topic>
  15936. </body>
  15937. </html>
  15938. ====== h_config_image_viewer =====
  15939. <html>
  15940. <header>
  15941. <title>OPTION: Image-Viewer</title>
  15942. </header>
  15943. <body>
  15944. <h1>OPTION: Image-Viewer</h1>
  15945. <body>
  15946. This option specifies the program Pine should call to view MIME
  15947. attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
  15948. no longer needed, but remains for backward compatibility.  The more
  15949. general method for associating external printing and viewing programs with
  15950. specific MIME data types is to use the system's (or your personal)
  15951. "mailcap" configuration file.<p>
  15952. <UL>   
  15953. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15954. </UL><P>
  15955. <End of help on this topic>
  15956. </body>
  15957. </html>
  15958. ====== h_config_domain_name =====
  15959. <HTML>
  15960. <HEAD>
  15961. <TITLE>OPTION: Use-Only-Domain-Name</TITLE>
  15962. </HEAD>
  15963. <BODY>
  15964. <H1>OPTION: Use-Only-Domain-Name</H1>
  15965.  
  15966. This option is used only if the 
  15967. <A HREF="h_config_user_dom">"user-domain"</A> option is <B>not</B> 
  15968. set.  If set to "Yes" (and user-domain is not used), then Pine 
  15969. strips the hostname from your return ("From") address and when 
  15970. completing unqualified addresses that you enter into the composer.
  15971. <P>
  15972. If you set this, see also the <A HREF="h_config_quell_local_lookup">
  15973. "quell-user-lookup-in-passwd-file"</A> feature.
  15974.  
  15975.  
  15976. <!--chtml if pinemode="os_windows"-->
  15977. <P>This option is not applicable to PC-Pine.
  15978. <!--chtml else-->
  15979. <P>
  15980. <!--chtml endif-->
  15981. <UL>
  15982. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  15983. </UL>
  15984. <P>
  15985. <End of help on this topic>
  15986. </BODY>
  15987. </HTML>
  15988. ====== h_config_prune_date =====
  15989. <HTML>
  15990. <HEAD>
  15991. <TITLE>OPTION: Last-Time-Prune Question</TITLE>
  15992. </HEAD>
  15993. <BODY>
  15994. <H1>OPTION: Last-Time-Prune Question</H1>
  15995.  
  15996. This value records the last time you were asked about deleting old
  15997. sent-mail.
  15998. It is set automatically by Pine at the beginning of each month.
  15999. In the past, if you wished to suppress the monthly sent-mail
  16000. pruning feature, you could set this to a date in the future.
  16001. This value is relative to the year 1900, so 
  16002. to set this, for example, to October 2005, use 105.10.
  16003. <P>
  16004. You can still do that if you wish, or you can use the
  16005. <A HREF="h_config_pruning_rule">pruning-rule</A> option, which is probably
  16006. a little more convenient to use.
  16007. <P>
  16008. <UL>   
  16009. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16010. </UL><P>
  16011. <End of help on this topic>
  16012. </BODY>
  16013. </HTML>
  16014. ====== h_config_goto_default =====
  16015. <HTML>
  16016. <HEAD>
  16017. <TITLE>OPTION: goto-default-rule</TITLE>
  16018. </HEAD>
  16019. <BODY>
  16020. <H1>OPTION: goto-default-rule</H1>
  16021.  
  16022. This value affects Pine's behavior when you use the Goto command.
  16023. Pine's usual behavior has two parts.  If your current folder is
  16024. "Inbox", Pine will offer the last open folder as the
  16025. default.  If the current folder is other than "Inbox",
  16026. "Inbox" is offered as the default.
  16027.  
  16028. <P>
  16029. The available options include:
  16030.  
  16031. <DL>
  16032.  
  16033.  <DT>folder-in-first-collection</DT>
  16034.  
  16035.  <DD> Pine will offer the most recently visited folder in the default
  16036. collection found in the "Collection List" screen as the default.
  16037. </DD>
  16038.  
  16039.  <DT> inbox-or-folder-in-first-collection</DT>
  16040.  
  16041.  <DD> If the current folder is "Inbox",
  16042. Pine will offer the most recently visited folder in the
  16043. default collection found in the "Collection List" screen.
  16044. If the current folder is other than "Inbox",
  16045. "Inbox" is offered as the default.
  16046. </DD>
  16047.  
  16048.  <DT> inbox-or-folder-in-recent-collection</DT>
  16049.  
  16050.  <DD> This is Pine's default behavior.
  16051. If the current folder is "Inbox",
  16052. Pine will offer the last open
  16053. folder as the default.
  16054. If the current folder is other than "Inbox",
  16055. "Inbox" is offered as the default.
  16056. </DD>
  16057.  
  16058.  <DT> first-collection-with-inbox-default</DT>
  16059.  
  16060.  <DD> Instead of offering the most recently visited folder in the default
  16061. collection, the default collection is offered but with "Inbox" as
  16062. the default folder.
  16063. If you type in a folder name it will be in the default collection.
  16064. If you simply accept the default, however, your "Inbox" will be opened.
  16065. </DD>
  16066.  
  16067.  <DT> most-recent-folder</DT>
  16068.  
  16069.  <DD> The last accepted value simply causes the most recently opened
  16070. folder to be offered as the default regardless of the currently opened
  16071. folder.
  16072. </DD>
  16073. </DL>
  16074.  
  16075. <P>
  16076. NOTE: The default while a newsgroup is open remains the same; the last
  16077. open newsgroup.
  16078.  
  16079. <P>
  16080. <UL>   
  16081. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16082. </UL><P>
  16083. <End of help on this topic>
  16084. </BODY>
  16085. </HTML>
  16086. ====== h_config_pruning_rule =====
  16087. <HTML>
  16088. <HEAD>
  16089. <TITLE>OPTION: Pruning-Rule</TITLE>
  16090. </HEAD>
  16091. <BODY>
  16092. <H1>OPTION: Pruning-Rule</H1>
  16093.  
  16094. By default, Pine will ask at the beginning of each month whether or not
  16095. you want to rename your sent-mail folder to a name like sent-mail-month-year.
  16096. It will also ask whether you would like to delete old sent-mail folders.
  16097. If you have defined
  16098. <A HREF="h_config_read_message_folder">Read-Message-Folder</A>
  16099. or
  16100. <A HREF="h_config_pruned_folders">Pruned-Folders</A>
  16101. Pine will also ask about pruning those folders.
  16102. <P>
  16103.  
  16104. With this option you may provide an automatic answer to these questions.
  16105. The default value is to ask you what you'd like to do.
  16106. <P>
  16107.  
  16108. The six possible values for this option are:
  16109.  
  16110. <DL>
  16111. <DT>ask about rename, ask about deleting</DT>
  16112. <DD>This is the default.
  16113. Pine will ask whether you want to rename the folders and whether you
  16114. want to delete each of the old folders.
  16115. </DD>
  16116.  
  16117. <DT>ask about rename, don't delete</DT>
  16118. <DD>Pine will ask whether you want to rename the folders, but won't
  16119. ask about or delete old folders.
  16120. </DD>
  16121.  
  16122. <DT>always rename, ask about deleting</DT>
  16123. <DD>This means you want to always answer yes and have Pine automatically
  16124. rename the folder if possible.
  16125. You will also be asked about deleting old folders.
  16126. </DD>
  16127.  
  16128. <DT>always rename, don't delete</DT>
  16129. <DD>This means you want to always answer yes and have Pine automatically
  16130. rename the folder if possible.
  16131. There will be no deleting of old folders.
  16132. </DD>
  16133.  
  16134. <DT>don't rename, ask about deleting</DT>
  16135. <DD>This means you want to always answer no.
  16136. Pine will not rename the folder.
  16137. You will be asked about deleting old folders.
  16138. </DD>
  16139.  
  16140. <DT>don't rename, don't delete</DT>
  16141. <DD>This means you want to always answer no.
  16142. Pine will not rename the folder.
  16143. There will be no deleting of old folders, either.
  16144. </DD>
  16145. </DL>
  16146.  
  16147. <P>
  16148. <UL>   
  16149. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16150. </UL><P>
  16151. <End of help on this topic>
  16152. </BODY>
  16153. </HTML>
  16154. ====== h_config_inc_startup =====
  16155. <HTML>
  16156. <HEAD>
  16157. <TITLE>OPTION: incoming-startup-rule</TITLE>
  16158. </HEAD>
  16159. <BODY>
  16160. <H1>OPTION: incoming-startup-rule</H1>
  16161.  
  16162. This value affects Pine's behavior when opening the "INBOX" or 
  16163. one of the "INCOMING MESSAGE FOLDERS".
  16164. It determines which message will be the <EM>current message</EM> when
  16165. the folder is first opened.
  16166. The default value is "first-unseen".
  16167.  
  16168. <P>
  16169. The seven possible values for this option are:
  16170.  
  16171. <DL>
  16172. <DT>first-unseen</DT>
  16173. <DD>The current message is set to the first
  16174. unseen message which has not been marked deleted, or the last message if
  16175. all of the messages have been seen previously.
  16176. Messages which have not been seen or which have been seen but re-marked
  16177. as New are considered unseen messages.
  16178. See the note at the bottom of this help about newsgroups.
  16179. </DD>
  16180.  
  16181. <DT>first-recent</DT>
  16182. <DD>Similar to the default, but rather than starting on the first
  16183. unseen message Pine starts on the first <EM>recent</EM> message.
  16184. A message is recent if it arrived since the last time the folder was
  16185. open.  This value causes the current message to be set to the first
  16186. recent message if there is one, otherwise to the last
  16187. message in the folder.
  16188. </DD>
  16189.  
  16190. <DT>first-important</DT>
  16191. <DD>This will result in the current message being set to the first
  16192. message marked Important (but not Deleted).
  16193. If no messages are marked Important, then it will be the last message.
  16194. </DD>
  16195.  
  16196. <DT>first-important-or-unseen</DT>
  16197. <DD>This selects the first of the first unseen and the first important
  16198. messages.
  16199. </DD>
  16200.  
  16201. <DT>first-important-or-recent</DT>
  16202. <DD>This selects the first of the first recent and the first important
  16203. messages.
  16204. </DD>
  16205.  
  16206. <DT>first</DT>
  16207. <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
  16208. If all messages are deleted you start on the last message.
  16209. </DD>
  16210.  
  16211. <DT>last</DT>
  16212. <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
  16213. If all messages are deleted you start on the last message.
  16214. </DD>
  16215. </DL>
  16216.  
  16217. <P>
  16218. NOTE:  For newsgroups in the incoming collection, "first-unseen" and
  16219. "first-recent" are the same and are affected by whether or not the
  16220. feature 
  16221. <A HREF="h_config_news_uses_recent">"news-approximates-new-status"</A>
  16222. is turned on. 
  16223. Also, there is no permanent storage in news for an Important flag.
  16224. This means that no messages will be marked Important when a newsgroup is
  16225. first opened.
  16226.  
  16227. <P>
  16228. <UL>   
  16229. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16230. </UL><P>
  16231. <End of help on this topic>
  16232. </BODY>
  16233. </HTML>
  16234. ====== h_config_browser =====
  16235. <HTML>
  16236. <HEAD>
  16237. <TITLE>OPTION: url-viewers</TITLE>
  16238. </HEAD>
  16239. <BODY>
  16240. <H1>OPTION: url-viewers</H1>
  16241. <!--chtml if pinemode="os_windows"-->
  16242. PC-Pine users do not need to enter anything here, unless:<UL>
  16243. <LI> they want to override, for use with Pine, the application defined
  16244. in the Windows operating system for handling URLs; or
  16245. <LI> they are (planning on) using the same configuration file with 
  16246. Unix Pine.
  16247. </UL><HR><P>
  16248. <!--chtml endif-->
  16249. This option affects Pine's handling of URLs that are found in 
  16250. messages you read.  Normally, only URLs Pine can handle directly
  16251. are automatically offered for selection in the "Message
  16252. Text" screen.  When one or more applications
  16253. capable of deciphering URLs on their command line are added here, Pine
  16254. will choose the first available to display URLs it cannot handle directly.
  16255. A viewer's availability is based on its being specified with a <B>full
  16256. directory path</B> and the evaluation of any optionally supplied
  16257. parameters described below.
  16258.  
  16259. <P>
  16260. Additionally, to support various connection methods and applications, each
  16261. entry in this list can optionally begin with one or more of
  16262. the following special tokens.  The allowed tokens include:
  16263.  
  16264. <P>
  16265. <DL>
  16266. <DT>_TEST(<VAR>test-string</VAR>)_</DT>
  16267. <DD>
  16268. The <VAR>test-string</VAR> is a shell command that Pine will run to
  16269. evaluate a viewer's availability.  The command specified by the test
  16270. string is run and if its resulting exit status is non-zero, Pine will
  16271. not consider the associated viewer for use.
  16272. </DD>
  16273.  
  16274. <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
  16275. <DD>
  16276. The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
  16277. URL schemes that are to be used with the associated viewer.  This is
  16278. the way to configure Pine to recognize URLs other than the built-in set.
  16279. <P>
  16280. It can also be used to override Pine's built-in handlers.
  16281. For example, you could specify "news" in the <VAR>scheme-list</VAR>,
  16282. and Pine would use (provided it passed all other criteria) the associated
  16283. viewer when it encounterd a URL of the form "news:comp.mail.pine".
  16284.  
  16285. </DD>
  16286. </DL>
  16287.  
  16288. <P>
  16289. By default, Pine will simply append a space character followed by the
  16290. selected URL prior to launching the command in your specified SHELL.  You can
  16291. optionally specify where in the command the selected URL should appear
  16292. by using the "_URL_" token.  All occurrences found in the command
  16293. will be replaced with the selected URL before the command is handed
  16294. to the shell.  If such replacement occurs, the default appending of the
  16295. selected URL does not take place.
  16296.  
  16297. <P>
  16298. NOTE: If the viewer you specify has any command-line arguments,
  16299. including the "_URL_" token, you will need to add a
  16300. double-quote character before the command path and after the last
  16301. argument (see the "lynx" example below).
  16302.  
  16303. <P>
  16304. So, here are some example entries:
  16305. <PRE>
  16306. url-viewers = _TEST("test -n '${DISPLAY}'")_  /usr/local/bin/netscape
  16307.               "/usr/local/bin/lynx _URL_"
  16308.               C:\BIN\NETSCAPE.BAT
  16309. </PRE>
  16310. <P>
  16311. This example shows that for the first viewer in the list to be used
  16312. the environment variable "DISPLAY" must be defined.  If it
  16313. is, then the path and file "/usr/local/bin/netscape" must exist.  
  16314. If neither condition is met,
  16315. then the path and file "/usr/local/bin/lynx" must exist.  
  16316. If it does, then the "_URL_" token is replaced by the selected URL. 
  16317. If the path to "lynx" is invalid,
  16318. then the final path and file C:\BIN\NETSCAPE.BAT must exist.  
  16319. Note that the last
  16320. entry is a DOS/Windows path.  This is one way to support Pine running
  16321. on more than one architecture with the same configuration file.<P>
  16322. <P>
  16323. <!--chtml if pinemode="os_windows"-->
  16324. <!--chtml else-->
  16325. Note that depending on the type of browser used and the method of 
  16326. its invocation (such as whether it will open in a separate window) from
  16327. the MESSAGE TEXT screen, the browser may "supplant" 
  16328. the MESSAGE TEXT screen, and you will have to quit the browser to return to 
  16329. it (for example, when using Lynx; to exit Lynx, use the "Q" command).
  16330. In other words, launching the browser from Pine may make Pine 
  16331. "disappear" (although it is still "running")
  16332. until you close the browser again.<P>  
  16333. <UL><LI><A HREF="h_config_browser_xterm">Defining url-viewers in an X windows 
  16334. environment: for advanced users and  systems administrators</A>
  16335. </UL>
  16336. <!--chtml endif-->
  16337. <P>If you are unsure what browsers are available on your system or how to 
  16338. specify them in Pine's url-viewers option for best usability, contact your 
  16339. local computing support staff.
  16340. <P><UL>
  16341. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16342. </UL>
  16343. <P>
  16344. <End of help on this topic>
  16345. </BODY>
  16346. </HTML>
  16347. ====== h_config_browser_xterm =====
  16348. <HTML>
  16349. <HEAD>
  16350. <TITLE>url-viewers and X windows applications</TITLE>
  16351. </HEAD>
  16352. <BODY>
  16353. <H1>Defining url-viewers in an X windows 
  16354. environment: for advanced users and  systems administrators</H1>
  16355. If you are using Pine with an X-terminal (emulator) and want to define an 
  16356. X windows-based application in url-viewers, 
  16357. you may want to do so in a manner that causes any <B>already</B> 
  16358. invoked viewer application to be used for viewing URLs you select from Pine 
  16359. messages, and a <B>new</B> URL-viewer process to be 
  16360. started <B>only</B> if the same application has <B>not already</B> 
  16361. been launched -- for one reason, to avoid file-locking contentions among 
  16362. multiple invocations of the same URL-viewer application.  
  16363. (The example entries set in the help screen for the "url-viewers" 
  16364. option does not do this.)  A method of doing that would be:<OL>
  16365. <LI> use 
  16366. the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
  16367. check (using commands appropriate for your Unix shell
  16368. in place of <VAR>test-string</VAR>) for the presence of a 
  16369. lockfile created by the URL-viewer application -- which implies that the 
  16370. application is already running, though this is not foolproof. 
  16371. Following that in the same url-viewers entry, specify the 
  16372. application with its appropriate command line option(s) to 
  16373. show the URL selected from the Pine message in an already open window of 
  16374. that application, or perhaps in a new window of that application.  
  16375.  
  16376. <LI> In the 
  16377. <B>second</B> entry for the url-viewers option, specify the same 
  16378. application without those command line options, but this time using the 
  16379. _TEST(...)_ token to check whether the environment variable "DISPLAY"
  16380. is defined.
  16381. <LI> If you may be using Pine (with the same .pinerc file) outside of the X 
  16382. windows environment (for instance, using VT-100 terminal emulation), you 
  16383. may wish to specify a non-X windows URL-viewer application such as Lynx
  16384. as the last entry.
  16385. </OL><BR>
  16386. How exactly you define your url-viewers entries to do this will depend on 
  16387. the command shell, the URL-viewer application(s), and possibly the specific 
  16388. version of the latter, you are using.  
  16389. <P>
  16390. Relevant command 
  16391. line options for the Netscape browser for showing URLs (selected from Pine) 
  16392. when Netscape is already running are discussed in the document
  16393. "Remote Control of UNIX Netscape" 
  16394. found at the URL (as of 12 Aug. 1998):
  16395. <P>
  16396.  
  16397. <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
  16398.  
  16399. <P>(If the URL-viewer application is 
  16400. <B>not</B> running on the same host as Pine, but being launched from an 
  16401. applications server, you may not be able to use the command line options for 
  16402. using an existing invocation of the application in Pine's url-viewers entry.)
  16403. <P>
  16404. <!--chtml if this-method="shown-to-work"-->
  16405. An example using the Korn shell and the Netscape browser (first entry wrapped 
  16406. because of its length, but should all appear on one line):
  16407. <P>
  16408. url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ "/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &"<BR>
  16409.  
  16410. _TEST("test -n '${DISPLAY}'")_ "/usr/local/bin/netscape &"<BR>
  16411.               "/usr/local/bin/lynx '_URL_'"
  16412. <P>
  16413. <!--chtml endif-->
  16414. <P>
  16415. <UL>   
  16416. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16417. </UL><P>
  16418. <End of help on this topic>
  16419. </BODY>
  16420. </HTML>
  16421. ====== h_config_enable_full_hdr =====
  16422. <HTML>
  16423. <HEAD>
  16424. <TITLE>FEATURE: enable-full-header-cmd</TITLE>
  16425. </HEAD>
  16426. <BODY>
  16427. <H1>FEATURE: enable-full-header-cmd</H1>
  16428.  
  16429. This feature enables the "H Full Headers" command which toggles between
  16430. the display of all headers in the message and the normal edited view of
  16431. headers.  The Full Header command also controls which headers are included
  16432. for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
  16433. Full Header mode will respect the
  16434. <A HREF="h_config_include_header">"include-headers-in-reply"</A>
  16435. feature setting.)
  16436. <P>
  16437. <UL>   
  16438. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16439. </UL><P>
  16440. <End of help on this topic>
  16441. </BODY>
  16442. </HTML>
  16443. ====== h_config_enable_pipe =====
  16444. <HTML>
  16445. <HEAD>
  16446. <TITLE>FEATURE: enable-unix-pipe-cmd</TITLE>
  16447. </HEAD>
  16448. <BODY>
  16449. <H1>FEATURE: enable-unix-pipe-cmd</H1>
  16450.  
  16451. This feature enables the "| Pipe" command that sends the current message
  16452. to the specified Unix command for external processing.  Not available on
  16453. PC-Pine.
  16454. <P>
  16455.  
  16456. A short description of how the pipe command works is given
  16457. <A HREF="h_pipe_command">here</A>.
  16458.  
  16459. <P>
  16460. <UL>   
  16461. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16462. </UL><P>
  16463. <End of help on this topic>
  16464. </BODY>
  16465. </HTML>
  16466. ====== h_config_enable_tab_complete =====
  16467. <HTML>
  16468. <HEAD>
  16469. <TITLE>FEATURE: enable-tab-completion</TITLE>
  16470. </HEAD>
  16471. <H1>FEATURE: enable-tab-completion</H1>
  16472.  
  16473. This feature enables the TAB key when at a prompt for a filename. In this
  16474. case, TAB will cause the partial name already entered to be automatically
  16475. completed, provided the partial name is unambiguous.
  16476. <P>
  16477. <End of help on this topic>
  16478. </BODY>
  16479. </HTML>
  16480. ====== h_config_quit_wo_confirm =====
  16481. <HTML>
  16482. <HEAD>
  16483. <TITLE>FEATURE: quit-without-confirm</TITLE>
  16484. </HEAD>
  16485. <BODY>
  16486. <H1>FEATURE: quit-without-confirm</H1>
  16487. This feature controls whether or not Pine will ask for confirmation when a
  16488. Quit command is received.
  16489. <P>
  16490. <End of help on this topic>
  16491. </BODY>
  16492. </HTML>
  16493. ====== h_config_enable_jump =====
  16494. <HTML>
  16495. <HEAD>
  16496. <TITLE>FEATURE: enable-jump-shortcut</TITLE>
  16497. </HEAD>
  16498. <BODY>
  16499. <H1>FEATURE: enable-jump-shortcut</H1>
  16500. Setting this feature will allow you to enter a number (followed by RETURN)
  16501. and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
  16502. screens.  In other words, it obviates the need for typing the "J" for the
  16503. Jump command.
  16504. <P>
  16505. <End of help on this topic>
  16506. </BODY>
  16507. </HTML>
  16508. ====== h_config_enable_alt_ed =====
  16509. <HTML>
  16510. <HEAD>
  16511. <TITLE>FEATURE: enable-alternate-editor-cmd</TITLE>
  16512. </HEAD>
  16513. <BODY>
  16514. <H1>FEATURE: enable-alternate-editor-cmd</H1>
  16515.  
  16516. If this feature is set, and the 
  16517. <A HREF="h_config_editor">"editor"</A> option
  16518. <B>is not</B> set, entering
  16519. the ^_ (Ctrl-underscore) key while composing a message will prompt you
  16520. for the name of the editor you would like to use.
  16521. <P>
  16522. If the environment variable $EDITOR is set, its value will be offered as
  16523. a default.
  16524. <P>
  16525. If the <A HREF="h_config_editor">"editor"</A> option
  16526. <B>is</B> set, the ^_ key will activate the specified
  16527. editor without prompting, in which case it is not necessary to
  16528. set the "enable-alternate-editor-cmd" feature.  
  16529. <P>
  16530. <UL>   
  16531. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16532. </UL><P>
  16533. <End of help on this topic>
  16534. </BODY>
  16535. </HTML>
  16536. ====== h_config_alt_ed_now =====
  16537. <HTML>
  16538. <HEAD>
  16539. <TITLE>FEATURE: enable-alternate-editor-implicitly</TITLE>
  16540. </HEAD>
  16541. <BODY>
  16542. <H1>FEATURE: enable-alternate-editor-implicitly</H1>
  16543.  
  16544. If this feature and the <A HREF="h_config_editor">"editor"</A>
  16545. variable are both set, Pine will
  16546. automatically activate the specified editor when the cursor is moved from
  16547. the header of the message being composed into the message text.  For
  16548. replies, the alternate editor will be activated immediately.  If this
  16549. feature is set but the "editor" variable is not set, then Pine will
  16550. automatically ask for the name of an alternate editor when the cursor
  16551. is moved out of the header being composed, or if a reply is being done.
  16552.  
  16553. <P><UL>
  16554. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16555. </UL>
  16556. <P>
  16557. <End of help on this topic>
  16558. </BODY>
  16559. </HTML>
  16560. ====== h_config_enable_bounce =====
  16561. <HTML>
  16562. <HEAD>
  16563. <TITLE>FEATURE: enable-bounce-cmd</TITLE>
  16564. </HEAD>
  16565. <H1>FEATURE: enable-bounce-cmd</H1>
  16566. <BODY>
  16567.  
  16568. Setting this feature enables the "B Bounce" command, which will prompt
  16569. for an address and *remail* the message to the new recipient.  This command
  16570. is used to re-direct messages that you have received in error, or need to
  16571. be redirected for some other reason (e.g. list moderation).  The final
  16572. recipient will see a header indicating that you have Resent the msg, but
  16573. the message's From: header will show the original author of the message,
  16574. and replies to it will go back to that author, and not to you.
  16575. <P>
  16576. <End of help on this topic>
  16577. </BODY>
  16578. </HTML>
  16579. ====== h_config_enable_agg_ops =====
  16580. <HTML>
  16581. <HEAD>
  16582. <TITLE>FEATURE: enable-aggregate-command-set</TITLE>
  16583. </HEAD>
  16584. <BODY>
  16585. <H1>FEATURE: enable-aggregate-command-set</H1>
  16586. Setting this feature enables the commands and subcommands that relate to
  16587. performing operations on more than one message at a time.  We call these
  16588. "aggregate operations".  In particular, the 
  16589. <!--chtml if pinemode="function_key"-->"F5
  16590. <!--chtml else-->";
  16591. <!--chtml endif--> Select", 
  16592.  
  16593. <!--chtml if pinemode="function_key"-->
  16594. "F6
  16595. <!--chtml else-->
  16596. "A 
  16597. <!--chtml endif-->
  16598. Apply", and 
  16599. <!--chtml if pinemode="function_key"-->
  16600. "F4
  16601. <!--chtml else-->
  16602. "Z 
  16603. <!--chtml endif-->
  16604. Zoom" commands are enabled by this feature.  Select is used to
  16605. "tag" one or more messages meeting the specified criteria.  Apply can
  16606. then be used to apply any message command to all of the selected/tagged
  16607. messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
  16608. view between just those Selected and all messages in the folder.
  16609. <P>
  16610. This feature also enables the 
  16611. <!--chtml if pinemode="function_key"-->
  16612. "F7" 
  16613. <!--chtml else-->
  16614. "^X" 
  16615. <!--chtml endif-->
  16616.  
  16617. subcommand in the MESSAGE INDEX 
  16618. WhereIs command which causes all messages matching the WhereIs argument to 
  16619. become selected; and the Select, Select Current, and ZoomMode commands in the
  16620. <A HREF="h_folder_maint">FOLDER LIST screen</A>.
  16621. <P>
  16622. <UL>   
  16623. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16624. </UL><P>
  16625. <End of help on this topic>
  16626. </BODY>
  16627. </HTML>
  16628.  
  16629. ====== h_config_enable_flag =====
  16630. <HTML>
  16631. <HEAD>
  16632. <TITLE>FEATURE: enable-flag-cmd</TITLE>
  16633. </HEAD>
  16634. <BODY>
  16635. <H1>FEATURE: enable-flag-cmd</H1>
  16636.  
  16637. Setting this feature enables the "* Flag" command which allows you to
  16638. manipulate the status flags associated with a message.  By default, Flag
  16639. will set the "Important" flag, which results in an asterisk being
  16640. displayed in column one of the MESSAGE INDEX for such messages.
  16641. <P>
  16642. <End of help on this topic>
  16643. </BODY>
  16644. </HTML>
  16645. ====== h_config_flag_screen_default =====
  16646. <HTML>
  16647. <HEAD>
  16648. <TITLE>FEATURE: enable-flag-screen-implicitly</TITLE>
  16649. </HEAD>
  16650. <BODY>
  16651. <H1>FEATURE: enable-flag-screen-implicitly</H1>
  16652.  
  16653. The feature modifies the behavior of the "* Flag" command (provided it
  16654. too is enabled).  By default, when the "* Flag" command is selected,
  16655. Pine offers a prompt to set one of several flags and also offers the
  16656. option of entering the detailed flag manipulation screen via the "^T"
  16657. key. Enabling this feature causes Pine to immediately enter the detailed
  16658. flag screen rather than first offer the simple prompt.
  16659. <P>
  16660. <End of help on this topic>
  16661. </BODY>
  16662. </HTML>
  16663. ====== h_config_can_suspend =====
  16664. <HTML>
  16665. <HEAD>
  16666. <TITLE>FEATURE: enable-suspend</TITLE>
  16667. </HEAD>
  16668. <BODY>
  16669. <H1>FEATURE: enable-suspend</H1>
  16670.  
  16671. Setting this feature will allow you to type ^Z (Control Z) to 
  16672. <!--chtml if pinemode="os_windows"-->
  16673. minimize Pine into its icon, bringing into focus whatever
  16674. application is running behind the PC-Pine window.
  16675. <!--chtml else-->
  16676. temporarily suspend Pine.
  16677.  
  16678. <P>
  16679. This does not exit Pine, but puts it in the background to watch
  16680. for new mail and such.  Normally, you type a command, such
  16681. as "fg" at your system prompt to return to your Pine session.
  16682.  
  16683. <P>
  16684. The <A HREF="h_config_suspend_spawns">use-subshell-for-suspend</A> feature
  16685. adjusts whether Pine is placed into the background of the shell its 
  16686. running in or starts a news shell.
  16687. <!--chtml endif-->
  16688.  
  16689. <P>
  16690. <UL>   
  16691. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16692. </UL><P>
  16693. <End of help on this topic>
  16694. </BODY>
  16695. </HTML>
  16696. ====== h_config_take_lastfirst ======
  16697. <HTML><HEAD>
  16698. <TITLE>FEATURE: disable-take-last-comma-first</TITLE>
  16699. </HEAD>
  16700. <BODY>
  16701. <H1>FEATURE: disable-take-last-comma-first</H1>
  16702.  
  16703. Normally, when TakeAddr is used to copy an address from a message into
  16704. an address book entry, Pine will attempt to rewrite the full name of the
  16705. address in the form
  16706. <P>
  16707.  
  16708.     : Last, First<P>
  16709.  
  16710. instead of<P>
  16711.  
  16712.     : First Last
  16713.  
  16714. <P>
  16715. It does this because many people find it useful to sort by Last name
  16716. instead of First name.  If this feature is set, then the TakeAddr command
  16717. will not attempt to reverse the name in this manner.
  16718. <P>
  16719. <End of help on this topic>
  16720. </BODY></HTML>
  16721. ====== h_config_print_from ======
  16722. <HTML>
  16723. <HEAD>
  16724. <TITLE>FEATURE: print-includes-from-line</TITLE>
  16725. </HEAD>
  16726. <BODY>
  16727. <H1>FEATURE: print-includes-from-line</H1>
  16728. If this feature is set, then the Berkeley-mail style From line is included
  16729. at the start of each message that is printed.  This line looks something
  16730. like the following, with the address replaced by the address from the
  16731. From line of the message being printed:
  16732. <P>
  16733.     : From user@domain.somewhere.com Mon May 13
  16734. 14:11:06 1998
  16735. <P>
  16736. <End of help on this topic>
  16737. </BODY>
  16738. </HTML>
  16739. ====== h_config_expanded_distlists ======
  16740. <HTML>
  16741. <HEAD>
  16742. <TITLE>FEATURE: expanded-view-of-distribution-lists</TITLE>
  16743. </HEAD>
  16744. <BODY>
  16745. <H1>FEATURE: expanded-view-of-distribution-lists</H1>
  16746. If this feature is set, then distribution lists in the address book
  16747. screen will always be expanded automatically.
  16748. <P>
  16749. <End of help on this topic>
  16750. </BODY>
  16751. </HTML>
  16752. ====== h_config_compose_news_wo_conf ======
  16753. <HTML>
  16754. <HEAD>
  16755. <TITLE>FEATURE: compose-sets-newsgroup-without-confirm</TITLE>
  16756. </HEAD>
  16757. <BODY>
  16758. <H1>FEATURE: compose-sets-newsgroup-without-confirm</H1>
  16759. This feature controls one aspect of Pine's Composer.  If you enter the
  16760. composer while reading a newsgroup, you will normally be prompted to
  16761. determine whether you intend the new message to be posted to the current
  16762. newsgroup or not.  If this feature is set, Pine will not prompt you
  16763. in this situation, and will assume that you do indeed wish to post
  16764. to the newsgroup you are reading.
  16765. <P>
  16766. <End of help on this topic>
  16767. </BODY>
  16768. </HTML>
  16769. ====== h_config_compose_rejects_unqual ======
  16770. <HTML>
  16771. <HEAD>
  16772. <TITLE>FEATURE: compose-rejects-unqualified-addrs</TITLE>
  16773. </HEAD>
  16774. <BODY>
  16775. <H1>FEATURE: compose-rejects-unqualified-addrs</H1>
  16776.  
  16777. This feature controls one aspect of the message composer; in particular,
  16778. what happens when an unqualified name is entered into an address header.
  16779. If set, unqualified names entered as addresses will be treated as errors
  16780. unless they match an addressbook nickname.  Pine will not attempt to turn
  16781. them into complete addresses by adding your local domain.<P>
  16782.  
  16783. A complete (fully qualified) address is one containing a username followed
  16784. by an "@" ("at") symbol, followed by a domain name (e.g.
  16785. "jsmith@nowhere.edu").  An unqualified name is one <B>without</B> 
  16786. the "@" symbol and domain name (e.g. "jsmith"). 
  16787.  
  16788. (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
  16789.  
  16790. <P>
  16791.  
  16792. When you enter a fully qualified address, Pine does not interpret or
  16793. modify it, but simply passes it on to the mail-transport-agent (MTA) for
  16794. your system.  Pine conforms to the Internet standards governing message
  16795. headers and will not send an unqualifed name to the MTA.  Therefore, when
  16796. you enter an unqualified name, Pine will normally attempt to turn it into
  16797. a fully qualified address, first by checking to see if you have entered a
  16798. matching nickname in your addressbook, or failing that, by simply adding
  16799. your own domain to the name entered.  So if your address is
  16800. "jsmith@nowhere.edu" and you enter "fred", then (assuming 
  16801. "fred" is not a nickname in your addressbook), Pine will turn 
  16802. that into "fred@nowhere.edu".<P>
  16803.  
  16804. There are situations where it is not desirable for Pine to interpret such
  16805. unqualified names as valid (local) addresses.  For example, if "fred"
  16806. turned out to be a typo (intended to be an addressbook nickname), but
  16807. there actually was a "fred" in your local domain, the message might 
  16808. be mis-delivered without your realizing it.  In order to reduce the likelihood
  16809. of such accidents, setting this feature will cause Pine to treat such
  16810. addresses as errors, and require that you explicitly enter the full local
  16811. address (e.g. "fred@nowhere.edu") or correct the name so that it 
  16812. matches an address book nickname.<P>
  16813.  
  16814. Consider this a safety feature against mis-directed mail.
  16815. <P>
  16816. <UL>   
  16817. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16818. </UL><P>
  16819. <End of help on this topic>
  16820. </BODY>
  16821. </HTML>
  16822. ====== h_config_quell_local_lookup ======
  16823. <HTML>
  16824. <HEAD>
  16825. <TITLE>FEATURE: quell-user-lookup-in-passwd-file</TITLE>
  16826. </HEAD>
  16827. <BODY>
  16828. <H1>FEATURE: quell-user-lookup-in-passwd-file</H1>
  16829.  
  16830. This feature controls an aspect of Pine's Composer, and if needed, will
  16831. usually be set by your system manager in Pine's system-wide configuration
  16832. file. Specifically, if this feature is set, Pine will not attempt to look
  16833. in the system password file to find a Full Name for the entered address.
  16834. <P>
  16835. Normally, names you enter into address fields (e.g. To: or Cc:) are
  16836. checked against your address book(s) to see if they match an address book
  16837. nickname.  Failing that, (in Unix Pine) the name is then checked against
  16838. the Unix password file.  If the entered name matches a username in the
  16839. system password file, Pine extracts the corresponding Full Name information
  16840. for that individual, and adds that to the address being entered.
  16841. <P>
  16842. However, password file matching can have surprising (incorrect) results if
  16843. other users of the system do not receive mail at the domain you are using.
  16844. That is, if either the 
  16845. <A HREF="h_config_user_dom">"user-domain"</A> or 
  16846. <A HREF="h_config_domain_name">"use-only-domain-name"</A>
  16847. option
  16848. is set such that the administrative domain of other users on the system
  16849. isn't accurately reflected, Pine should be told that a passwd file match
  16850. is coincidental, and Full Name info will be incorrect.  For example, a
  16851. personal name from the password file could get falsely paired with the
  16852. entered name as it is turned into an address in the configured domain.
  16853. <P>
  16854. If you are seeing this behavior, enabling this feature will prevent Unix
  16855. Pine from looking up names in the password file to find the Full Name
  16856. for incomplete addresses you enter.<P>
  16857. <UL>
  16858. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16859. </UL>
  16860. <P>
  16861. <End of help on this topic>
  16862. </BODY>
  16863. </HTML>
  16864. ====== h_config_preserve_start_stop ======
  16865. <HTML>
  16866. <HEAD>
  16867. <TITLE>FEATURE: preserve-start-stop-characters</TITLE>
  16868. </HEAD>
  16869. <BODY>
  16870. <H1>FEATURE: preserve-start-stop-characters</H1>
  16871.  
  16872. This feature controls how special control key characters, typically
  16873. Ctrl-S and Ctrl-Q, are interpreted when input to Pine.  These characters
  16874. are known as the "start" and "stop" characters and are sometimes used in
  16875. communications paths to control data flow between devices that operate at
  16876. different speeds.
  16877.  
  16878. <P>
  16879.  
  16880. By default, Pine turns the system's handling of these special characters
  16881. off except during printing.  However, if you see Pine reporting input errors
  16882. such as:
  16883. <P>
  16884.      [ Command "^Q" not defined for this screen.]
  16885. <P>
  16886. and, at the same time, see your display become garbled, then it is likely
  16887. that setting this option will solve the problem.  Be aware, though, that
  16888. enabling this feature will also cause Pine to ostensibly "hang" 
  16889. whenever the Ctrl-S key combination is entered as the system is now
  16890. interpreting such input as a "stop output" command.  To "start
  16891. output"  again, simply type Ctrl-Q. 
  16892. <P>
  16893. <End of help on this topic>
  16894. </BODY>
  16895. </HTML>
  16896. ====== h_config_enable_incoming ======
  16897. <HTML>
  16898. <HEAD>
  16899. <TITLE>FEATURE: enable-incoming-folders</TITLE>
  16900. </HEAD>
  16901. <BODY>
  16902. <H1>FEATURE: enable-incoming-folders</H1>
  16903.  
  16904. Pine's Incoming Message Folders collection
  16905. provides a convenient way to access multiple incoming folders.
  16906. It is also useful if you have accounts on multiple computers.
  16907. <P>
  16908.  
  16909. If set, this feature defines a pseudo-folder collection called
  16910. "INCOMING MESSAGE FOLDERS".  Initially, the only folder included
  16911. in this collection will be your INBOX, which will no longer show up in
  16912. your Default folder collection.
  16913. <P>
  16914.  
  16915. You may add more folders to the Incoming Message Folders collection by
  16916. using the
  16917. <!--chtml if pinemode="function_key"-->
  16918. "F10
  16919. <!--chtml else-->
  16920. "A
  16921. <!--chtml endif-->
  16922. Add" command in the FOLDER LIST screen.  You will be prompted for
  16923. the host the folder is stored on (which defaults to the same host used
  16924. for your INBOX), a nickname, and the actual folder name.  Once a set
  16925. of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
  16926. or MESSAGE TEXT screens) may be used to scan the folders for those
  16927. with Recent messages.  If you add more folders to
  16928. your Incoming-Folders collection, turning this feature back off will have
  16929. no effect.
  16930. <P>
  16931. NOTE: Normally the software which actually delivers mail (the stuff that happens
  16932. before Pine is involved) is in a better position to do delivery filtering
  16933. than is Pine itself.
  16934. If possible, you may want to look at programs such as
  16935. "filter" or "procmail", which are examples of delivery
  16936. filtering programs.
  16937. If you'd prefer to have Pine do the filtering for you, you may set that
  16938. up.
  16939. Look <A HREF="h_rules_filter">here</A> for help with Pine filtering.
  16940. <P>
  16941. <UL>   
  16942. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  16943. </UL><P>
  16944. <End of help on this topic>
  16945. </BODY>
  16946. </HTML>
  16947. ====== h_config_attach_in_reply ======
  16948. <HTML>
  16949. <HEAD>
  16950. <TITLE>FEATURE: include-attachments-in-reply</TITLE>
  16951. </HEAD>
  16952. <BODY>
  16953. <H1>FEATURE: include-attachments-in-reply</H1>
  16954.  
  16955. This feature controls an aspect of Pine's Reply command. If set, any MIME
  16956. attachments that were part of the original message will automatically be
  16957. included in the Reply.
  16958. <P>
  16959. <End of help on this topic>
  16960. </BODY>
  16961. </HTML>
  16962. ====== h_config_include_header =====
  16963. <HTML>
  16964. <HEAD>
  16965. <TITLE>FEATURE: include-header-in-reply</TITLE>
  16966. </HEAD>
  16967. <BODY>
  16968. <H1>FEATURE: include-header-in-reply</H1>
  16969.  
  16970. This feature controls an aspect of Pine's Reply command. If set, and the
  16971. original message is being included in the reply, then headers from that
  16972. message will also be part of the reply.
  16973. <P>
  16974. <End of help on this topic>
  16975. </HEAD>
  16976. </HTML>
  16977. ====== h_config_sig_at_bottom =====
  16978. <HTML>
  16979. <HEAD>        
  16980. <TITLE>FEATURE: signature-at-bottom</TITLE>
  16981. </HEAD>
  16982. <BODY>
  16983. <H1>FEATURE: signature-at-bottom</H1>
  16984.  
  16985. This feature controls an aspect of Pine's Reply command.  If this feature
  16986. is set, and the original message is being included in the reply, then the
  16987. contents of your signature file (if any) will be inserted after the included
  16988. message.
  16989. <P>
  16990. This feature does not affect the results of a Forward command.
  16991. <P>
  16992. <End of help on this topic>
  16993. </BODY>
  16994. </HTML>
  16995. ====== h_config_sigdashes =====
  16996. <HTML>
  16997. <HEAD>
  16998. <TITLE>FEATURE: enable-sigdashes</TITLE>
  16999. </HEAD>
  17000. <BODY>
  17001. <H1>FEATURE: enable-sigdashes</H1>
  17002.  
  17003. This feature enables support for the common USENET news convention 
  17004. of preceding a message signature with the special line consisting of 
  17005. the three characters "-- " (i.e., dash, dash, and space).
  17006.  
  17007. <P>
  17008. When enabled and a
  17009. "<A HREF="h_config_signature_file">signature-file</A>" exists,
  17010. Pine will insert the special line before including the file's text (unless
  17011. the special line already exists somewhere in the file's text).
  17012.  
  17013. <P>
  17014. In addition, when you Reply or Followup to a message containing one of
  17015. these special lines and choose to include its text, Pine will observe
  17016. the convention of not including text beyond the special line in your
  17017. reply.
  17018.  
  17019. <P>
  17020. See also "<a href="h_config_strip_sigdashes">strip-from-sigdashes-on-reply</a>"
  17021. for a related feature.
  17022.  
  17023. <P>
  17024. <UL>   
  17025. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17026. </UL><P>
  17027. <End of help on this topic>
  17028. </BODY>
  17029. </HTML>
  17030. ====== h_config_strip_sigdashes =====
  17031. <HTML>
  17032. <HEAD>
  17033. <TITLE>FEATURE: strip-from-sigdashes-on-reply</TITLE>
  17034. </HEAD>
  17035. <BODY>
  17036. <H1>FEATURE: strip-from-sigdashes-on-reply</H1>
  17037.  
  17038. This feature doesn't do anything if the feature
  17039. "<A HREF="h_config_sigdashes">enable-sigdashes</A>" is turned on.
  17040. However, if the "enable-sigdashes" feature is not turned on,
  17041. then turning on this feature enables support for the convention
  17042. of not including text beyond the sigdashes line when Replying or Following
  17043. up to a message and including the text of that message.
  17044. <P>
  17045. In other words, this is a way to turn on the signature stripping behavior
  17046. without also turning on the dashes-adding behavior.
  17047. <P>
  17048. <UL>   
  17049. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17050. </UL><P>
  17051. <End of help on this topic>
  17052. </BODY>
  17053. </HTML>
  17054. ====== h_config_sub_lists =====
  17055. <HTML>
  17056. <HEAD>
  17057. <TITLE>FEATURE: enable-partial-match-lists</TITLE>
  17058. </HEAD>
  17059. <BODY>
  17060. <H1>FEATURE: enable-partial-match-lists</H1>
  17061.  
  17062. This feature affects the subcommands available when Saving, 
  17063. or when Opening a new folder. If set, the subcommand ^X ListMatches will be
  17064. available. This command allows you to type in a substring of the folder
  17065. you are looking for and when you type ^X it will display all folders
  17066. which contain that substring in their names.
  17067.  
  17068. <P>
  17069. <End of help on this topic>
  17070. </BODY>
  17071. </HTML>
  17072. ====== h_config_use_sender_not_x =====
  17073. <HTML>
  17074. <HEAD>
  17075. <TITLE>FEATURE: use-sender-not-X-Sender</TITLE>
  17076. </HEAD>
  17077. <BODY>
  17078. <H1>FEATURE: use-sender-not-X-Sender</H1>
  17079.  
  17080. Normally Pine adds a header line labeled X-Sender, if the sender is
  17081. different from the From: line.  The standard specifies that this header
  17082. line should be labeled Sender, not X-Sender.  Setting this feature causes
  17083. Sender to be used instead of X-Sender.
  17084.  
  17085. <P>
  17086. <End of help on this topic>
  17087. </BODY>
  17088. </HTML>
  17089. ====== h_config_use_fk =====
  17090. <HTML>
  17091. <HEAD>
  17092. <TITLE>FEATURE: use-function-keys</TITLE>
  17093. </HEAD>
  17094. <BODY>
  17095. <H1>FEATURE: use-function-keys</H1>
  17096.  
  17097. This feature specifies that Pine will respond to function keys instead of
  17098. the normal single-letter commands. In this mode, the key menus at the
  17099. bottom of each screen will show function key designations instead of the
  17100. normal mnemonic key.
  17101.  
  17102. <P>
  17103. <End of help on this topic>
  17104. </BODY>
  17105. </HTML>
  17106. ====== h_config_compose_maps_del =====
  17107. <HTML>
  17108. <HEAD>
  17109. <TITLE>FEATURE: compose-maps-delete-key-to-ctrl-d</TITLE>
  17110. </HEAD>
  17111. <BODY>
  17112. <H1>FEATURE: compose-maps-delete-key-to-ctrl-d</H1>
  17113.  
  17114. This feature affects the behavior of the DELETE key.
  17115. If set, Delete will be equivalent to ^D, and delete
  17116. the current character.  Normally Pine defines the Delete key
  17117. to be equivalent to ^H, which deletes the <EM>previous</EM>
  17118. character.
  17119.  
  17120. <P>
  17121. <End of help on this topic>
  17122. </BODY>
  17123. </HTML>
  17124. ====== h_config_compose_bg_post =====
  17125. <HTML>
  17126. <HEAD>
  17127. <TITLE>FEATURE: enable-background-sending</TITLE>
  17128. </HEAD>
  17129. <BODY>
  17130. <H1>FEATURE: enable-background-sending</H1>
  17131.  
  17132. This feature affects the behavior of Pine's mail sending.  If set, this
  17133. feature enables a subcommand in the composer's "Send?" confirmation
  17134. prompt.  The subcommand allows you to tell Pine to handle the actual
  17135. posting in the background.  While this feature usually allows posting
  17136. to appear to happen very fast, it has no affect on the actual delivery
  17137. time it takes a message to arrive at its destination.
  17138.  
  17139. <P>
  17140. Please Note:
  17141. OL>
  17142.  <LI>This feature isn't supported on all systems.  All DOS and Windows,
  17143.        as well as several Unix ports, do not recognize this feature.
  17144.  <LI>Error handling is significantly different when this feature is
  17145.         enabled.  Any message posting failure results in the message
  17146.         being appended to your "Interrupted" mail folder.  When you
  17147.         type the <A HREF="h_common_compose">C</A>ompose command,
  17148.     Pine will notice this folder and
  17149.         offer to extract any messages contained.  Upon continuing a 
  17150.         failed message, Pine will display the nature of the failure 
  17151.         in the status message line.
  17152.  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
  17153.     for message data to
  17154.         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
  17155.     if you typically run close to any sort of disk-space limits or quotas.
  17156. </OL>
  17157. <P>
  17158. <End of help on this topic>
  17159. </BODY>
  17160. </HTML>
  17161. ====== h_config_compose_dsn =====
  17162. <HTML>
  17163. <HEAD>
  17164. <TITLE>FEATURE: enable-delivery-status-notification</TITLE>
  17165. </HEAD>
  17166. <BODY>
  17167. <H1>FEATURE: enable-delivery-status-notification</H1>
  17168.  
  17169. This feature affects the behavior of Pine's mail sending.  If set, this
  17170. feature enables a subcommand in the composer's "Send?" confirmation
  17171. prompt.  The subcommand allows you to tell Pine to request the type of
  17172. Delivery Status Notification (DSN) which you would like.  Most users will
  17173. be happy with the default, and need not enable this feature.
  17174.  
  17175. <P>
  17176. Turning on this feature and then turning on the DSNOpts from the send
  17177. prompt reveals four on-off toggles at the bottom of the screen.
  17178. The "X" command toggles between NoErrRets and ErrRets.  NoErrRets requests
  17179. that no notification be returned to you, even if there is a delivery
  17180. failure.  The "D" key toggles between Delay and NoDelay.  This tells the
  17181. server that you are willing (or not) to receive delay notifications, which
  17182. happen when there is an unusual delay at some mail server (in that mail
  17183. server's opinion).  The "S" key toggles between Success and NoSuccess.
  17184. Success requests that you be sent a DSN message when the message is
  17185. successfully delivered to the recipients mailbox.  Setting NoErrRets will
  17186. automatically turn off Delay and Success notification, and will flip the
  17187. toggles to show that.  Similarly, turning on Delay and/or Success will
  17188. automatically toggle the "X" key to ErrRets.  The fourth command, the
  17189. "H" key, toggles between RetHdrs and RetFull.  RetFull requests that
  17190. the full message be returned in any failed DSN.  RetHdrs requests that
  17191. only the headers be returned in any failed DSN.  Notice that this command
  17192. applies only to failed delivery status reports.  For delay or success
  17193. reports, the full message is never returned, only the headers are returned.
  17194.  
  17195. <P>
  17196. If you don't enable the DSN feature or if you don't turn it on for a
  17197. particular message, the default is that you will be notified about failures,
  17198. you might be notified about delays, and you won't be notified about
  17199. successes.  You will usually receive the full message back when there is
  17200. a failure.
  17201.  
  17202. <P>
  17203. If you turn on the DSNOpts the default is to return as much information as
  17204. possible to you.  That is, by default, the Success and Delay options are
  17205. turned on and the full message will be returned on failure.
  17206.  
  17207. <P>
  17208. The sending prompt will display the current DSN request (if any) in a
  17209. shorthand form.  It will be:
  17210.  
  17211. <P><CENTER>[Never]</CENTER>
  17212.  
  17213. <P>
  17214. if you have requested NoErrRets.  Otherwise, it will look something like:
  17215.  
  17216. <P><CENTER>[FDS-Hdrs]</CENTER>
  17217.  
  17218. <P>
  17219. The "F" will always be there, indicating that you will be notified
  17220. of failures.  (Pine doesn't provide a way to request no failure notification
  17221. and at the same time request either success or delay notification.  The only
  17222. way to request no failure notifications is to request no notifications at
  17223. all with NoErrRets.)  The "D" and/or "S" will be present if you have
  17224. requested Delay and/or Success notification.  If one of those is missing,
  17225. that means you are requesting no notification of the corresponding type.
  17226. After the dash it will say either Hdrs or Full.  Hdrs means to return only
  17227. the headers and Full means to return the full message (applies to
  17228. failure notifications only).
  17229.  
  17230. <P>
  17231. NOTE: This feature relies on your system's mail transport agent or
  17232. configured "smtp-server" having the negotiation mechanism introduced in
  17233. "Extended SMTP" (ESMTP) and the specific extension called
  17234. "Delivery Status Notification" (DSN).  If the mail tranport agent you
  17235. are using doesn't support DSN, a short warning will be shown to you on
  17236. the message line at the bottom of the screen after you send your message,
  17237. but your message will have been sent anyway.
  17238.  
  17239. <P>
  17240. Note that DSNs don't provide a mechanism to request read receipts.  That
  17241. is, if you request notification on success you are notified when the
  17242. message is delivered to the mailbox, not when the message is read.
  17243.  
  17244. <P>
  17245. ESMTP allows for graceful migration to upgraded mail transfer agents, but
  17246. it is possible that this feature might cause problems for some servers. 
  17247.  
  17248. <P>
  17249. <End of help on this topic>
  17250. </BODY>
  17251. </HTML>
  17252. ====== h_config_auto_zoom =====
  17253. <HTML>
  17254. <HEAD>
  17255. <TITLE>FEATURE: auto-zoom-after-select</TITLE>
  17256. </HEAD>
  17257. <BODY>
  17258. <H1>FEATURE: auto-zoom-after-select</H1>
  17259.  
  17260. This feature affects the behavior of the Select command.
  17261. If set, the select command will automatically perform a zoom
  17262. after the select is complete.
  17263.  
  17264. <P>
  17265. <End of help on this topic>
  17266. </BODY>
  17267. </HTML>
  17268. ====== h_config_auto_unzoom =====
  17269. <HTML>
  17270. <HEAD>
  17271. <TITLE>FEATURE: auto-unzoom-after-apply</TITLE>
  17272. </HEAD>
  17273. <BODY>
  17274. <H1>FEATURE: auto-unzoom-after-apply</H1>
  17275.  
  17276. This feature affects the behavior of the Apply command.  If set, and if
  17277. you are currently looking at a Zoomed Index view of selected messages,
  17278. the Apply command will do the operation you specify, but then will
  17279. implicitly do an "UnZoom", so that you will automatically be back in
  17280. the normal Index view after the Apply. 
  17281.  
  17282. <P>
  17283. <End of help on this topic>
  17284. </BODY>
  17285. </HTML>
  17286. ====== h_config_fast_recent =====
  17287. <HTML>
  17288. <HEAD>
  17289. <TITLE>FEATURE: enable-fast-recent-test</TITLE>
  17290. </HEAD>
  17291. <BODY>
  17292. <H1>FEATURE: enable-fast-recent-test</H1>
  17293.  
  17294. This feature controls the behavior of the TAB key when traversing folders
  17295. in the optional 
  17296. <A HREF="h_config_enable_incoming">"incoming-folders" collection</A> 
  17297. or in optional news-collections.
  17298.  
  17299. <P>
  17300. When the TAB (Next New) key is pressed, the default behavior is to
  17301. explicitly examine the status of the folder for the number of recent
  17302. messages (messages delivered since the last time it was viewed).
  17303. Depending on the size and number of messages in the folder, this test
  17304. can be time consuming.
  17305.  
  17306. <P>
  17307. Enabling this feature will cause Pine to only test for the existence of
  17308. any recent messages rather than the obtain the count.  This is much faster
  17309. in many cases.  The downside is that you're not given the number of recent
  17310. messages when prompted to view the next folder.
  17311.  
  17312. <P>
  17313. <UL>   
  17314. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17315. </UL><P>
  17316. <End of help on this topic>
  17317. </BODY>
  17318. </HTML>
  17319. ====== h_config_arrow_nav =====
  17320. <HTML>
  17321. <HEAD>
  17322. <TITLE>FEATURE: enable-arrow-navigation</TITLE>
  17323. </HEAD>
  17324. <BODY>
  17325. <H1>FEATURE: enable-arrow-navigation</H1>
  17326.  
  17327. This feature controls the behavior of the left and right arrow keys.
  17328. If set, the left and right arrow keys will operate like the usual
  17329. navigation keys < and >.
  17330.  
  17331. <P>
  17332. If you set this feature, and do not like the changed behavior of the up/down 
  17333. arrow 
  17334. keys when navigating through the FOLDER LIST screen -- 
  17335. <B>first</B> from column to column, if more than one folder is 
  17336. displayed per row, 
  17337. and <B>then</B> from row to row -- you may either also wish to set the feature 
  17338. "<A HREF="h_config_relaxed_arrow_nav">enable-arrow-navigation-relaxed</A>", 
  17339. "<A HREF="h_config_single_list">single-column-folder-list</A>", or
  17340. use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
  17341. folders in each column.
  17342. <P>
  17343. <UL>   
  17344. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17345. </UL><P>
  17346. <End of help on this topic>
  17347. </BODY>
  17348. </HTML>
  17349. ====== h_config_relaxed_arrow_nav =====
  17350. <HTML>
  17351. <HEAD>
  17352. <TITLE>FEATURE: enable-arrow-navigation-relaxed</TITLE>
  17353. </HEAD>
  17354. <BODY>
  17355. <H1>FEATURE: enable-arrow-navigation-relaxed</H1>
  17356.  
  17357. This feature controls the behavior of the left, right, up and down
  17358. arrow keys in the FOLDER LIST screen when the "<A
  17359. HREF="h_config_arrow_nav">enable-arrow-navigation</A>" feature is
  17360. enabled.
  17361.  
  17362. <P>
  17363. Normally, when the "enable-arrow-navigation" feature is set,
  17364. the left and right arrow keys in the Folder List screen strictly
  17365. track the commands bound to the '<' and '>' keys, and the up
  17366. and down arrow keys move the hilite bar to the previous and next
  17367. folder or directory name.
  17368.  
  17369. <P>
  17370.  
  17371. When enabled, this feature returns the left, right, up and down
  17372. arrow keys' functionality in the FOLDER LIST screen to what it was
  17373. before enabling
  17374. "enable-arrow-navigation".  In other words, left and right
  17375. arrows move the hilite bar to the left or right, and the up and
  17376. down arrows move it up or down.
  17377.  
  17378.  
  17379. <P>
  17380. <UL>   
  17381. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17382. </UL><P>
  17383. <End of help on this topic>
  17384. </BODY>
  17385. </HTML>
  17386. ====== h_config_alt_compose_menu =====
  17387. <HTML>
  17388. <HEAD>
  17389. <TITLE>FEATURE: alternate-compose-menu</TITLE>
  17390. </HEAD>
  17391. <BODY>
  17392. <H1>FEATURE: alternate-compose-menu</H1>
  17393.  
  17394. This feature controls the menu that is displayed when Compose is selected.
  17395. If set, a list of options will be presented, with each option representing
  17396. the type of composition that could be used. This feature is most useful for
  17397. users who want to avoid being prompted with each option separately, or who
  17398. want to avoid the checking of remote postponed or form letter folders.
  17399. The possible types of composition are:
  17400.  
  17401. <P>
  17402. New, for starting a new composition. Note that if New is selected and roles
  17403. are set, roles are checked for matches and applied according to the setting
  17404. of the matching role.
  17405.  
  17406. <P>
  17407. Interrupted, for continuing an interrupted composition. This option is only
  17408. offered if an interrupted message folder is detected.
  17409.  
  17410. <P>
  17411. Postponed, for continuing postponed compositions. This option is offered
  17412. if a postponed-folder is set in the config REGARDLESS OF whether or not
  17413. the postponed folder actually exists. This option is especially handy
  17414. for avoiding having to check for the existence of a remote postponed folder.
  17415.  
  17416. <P>
  17417. Form, for using form letters. This option is offered if the form-letter-folder
  17418. is set in the config, and is not checked for existence for reasons similar
  17419. to those explained by the postponed option.
  17420.  
  17421. <P>
  17422. setRole, for selecting a role to apply to a composition.
  17423.  
  17424. <P>
  17425. <End of help on this topic>
  17426. </BODY>
  17427. </HTML>
  17428. ====== h_config_del_from_dot =====
  17429. <HTML>
  17430. <HEAD>
  17431. <TITLE>FEATURE: compose-cut-from-cursor</TITLE>
  17432. </HEAD>
  17433. <BODY>
  17434. <H1>FEATURE: compose-cut-from-cursor</H1>
  17435.  
  17436. This feature controls the behavior of the Ctrl-K command in the composer.
  17437. If set, ^K will cut from the current cursor position to the end of the line,
  17438. rather than cutting the entire line.
  17439.  
  17440. <P>
  17441. <End of help on this topic>
  17442. </BODY>
  17443. </HTML>
  17444. ====== h_config_print_index =====
  17445. <HTML>
  17446. <HEAD>
  17447. <TITLE>FEATURE: print-index-enabled</TITLE>
  17448. </HEAD>
  17449. <BODY>
  17450. <H1>FEATURE: print-index-enabled</H1>
  17451.  
  17452. This feature controls the behavior of the Print command when in the
  17453. MESSAGE INDEX screen.  If set, the print command will give you a prompt
  17454. asking if you wish to print the message index, or the currently highlighted
  17455. message. If not set, the message will be printed.
  17456.  
  17457. <P>
  17458. <End of help on this topic>
  17459. </BODY>
  17460. </HTML>
  17461. ====== h_config_allow_talk =====
  17462. <HTML>
  17463. <HEAD>
  17464. <TITLE>FEATURE: allow-talk</TITLE>
  17465. </HEAD>
  17466. <BODY>
  17467. <H1>FEATURE: allow-talk</H1>
  17468.  
  17469. By default, permission for others to "talk" to your terminal is turned
  17470. off when you are running Pine.  When this feature is set, permission is
  17471. instead turned on.  If enabled, you may see unexpected messages in the
  17472. middle of your Pine screen from someone attempting to contact you via the
  17473. "talk" program.
  17474.  
  17475. <P>
  17476. NOTE: The "talk" program has nothing to do with Pine or email.  The 
  17477. talk daemon on your system will attempt to print a message on your screen 
  17478. when someone else is trying to contact you.  If you wish to see these
  17479. messages while you are running Pine, you should enable this feature.
  17480.  
  17481. <P>
  17482. If you do enable this feature and see a "talk" message, you must 
  17483. suspend or quit Pine before you can respond.
  17484.  
  17485. <P>
  17486. <End of help on this topic>
  17487. </BODY>
  17488. </HTML>
  17489. ====== h_config_send_filter_dflt =====
  17490. <HTML>
  17491. <HEAD>
  17492. <TITLE>FEATURE: compose-send-offers-first-filter</TITLE>
  17493. </HEAD>
  17494. <BODY>
  17495. <H1>FEATURE: compose-send-offers-first-filter</H1>
  17496. If you have <A HREF="h_config_sending_filter">"sending-filters"</A> 
  17497. configured, setting this feature will cause
  17498. the first filter in the sending-filters list to be offered as the default
  17499. instead of unfiltered, the usual default.
  17500. <P>
  17501. <UL>   
  17502. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17503. </UL><P>
  17504. <End of help on this topic>
  17505. </BODY>
  17506. </HTML>
  17507. ====== h_config_custom_print =====
  17508. <HTML>
  17509. <HEAD>
  17510. <TITLE>FEATURE: print-offers-custom-cmd-prompt</TITLE>
  17511. </HEAD>
  17512. <BODY>
  17513. <H1>FEATURE: print-offers-custom-cmd-prompt</H1>
  17514.  
  17515. When this feature is set, the print command will have an additional
  17516. subcommand called "C CustomPrint".  If selected, you will have
  17517. the opportunity to enter any system print command --instead of being 
  17518. restricted to using those that have been previously configured in the 
  17519. printer setup menu.
  17520. <P>
  17521.  
  17522. <End of help on this topic>
  17523. </BODY>
  17524. </HTML>
  17525. ====== h_config_enable_dot_files =====
  17526. <HTML>
  17527. <HEAD>
  17528. <TITLE>FEATURE: enable-dot-files</TITLE>
  17529. </HEAD>
  17530. <BODY>
  17531. <H1>FEATURE: enable-dot-files</H1>
  17532.  
  17533. When this feature is set, files beginning with dot (".") will be
  17534. visible in the file browser.  For example, you'll be able to select them
  17535. when using the browser to add an attachment to a message.
  17536. <P>
  17537. <End of help on this topic>
  17538. </BODY>
  17539. </HTML>
  17540. ====== h_config_enable_dot_folders =====
  17541. <HTML>
  17542. <HEAD>        
  17543. <TITLE>FEATURE: enable-dot-folders</TITLE>
  17544. </HEAD>
  17545. <BODY>
  17546. <H1>FEATURE: enable-dot-folders</H1>
  17547.  
  17548. When this feature is set, folders beginning with dot (".") may be added
  17549. and viewed.
  17550. <P>
  17551. <End of help on this topic>
  17552. </BODY>
  17553. </HTML>
  17554. ====== h_config_ff_between_msgs =====
  17555. <HTML>
  17556. <HEAD>
  17557. <TITLE>FEATURE: print-formfeed-between-messages</TITLE>
  17558. </HEAD>
  17559. <BODY>
  17560. <H1>FEATURE: print-formfeed-between-messages</H1>
  17561.  
  17562. Setting this feature causes a formfeed to be printed between messages when
  17563. printing multiple messages (with Apply Print command).
  17564. <P>
  17565. <End of help on this topic>
  17566. </BODY>
  17567. </HTML>
  17568. ====== h_config_blank_keymenu =====
  17569. <HTML>
  17570. <HEAD>
  17571. <TITLE>FEATURE: disable-keymenu</TITLE>
  17572. </HEAD>
  17573. <BODY>
  17574. <H1>FEATURE: disable-keymenu</H1>
  17575.  
  17576. If this feature is set the command key menu that normally appears on the
  17577. bottom two lines of the screen will not usually be there.  Asking for
  17578. help with ^G or ? will cause the key menu to appear instead of causing
  17579. the help message to come up.  If you want to actually see the help text,
  17580. another ^G or ? will show it to you.  After the key menu has popped
  17581. up with the help key it will remain there for an O for Other command but
  17582. disappear if any other command is typed.
  17583. <P>
  17584. <End of help on this topic>
  17585. </BODY>
  17586. </HTML>
  17587. ====== h_config_enable_mouse =====
  17588. <HTML>
  17589. <HEAD>
  17590. <TITLE>FEATURE: enable-mouse-in-xterm</TITLE>
  17591. </HEAD>
  17592. <BODY>
  17593. <H1>FEATURE: enable-mouse-in-xterm</H1>
  17594.  
  17595. This feature controls whether or not an X terminal mouse can be used with
  17596. Pine.  If set, and the $DISPLAY variable indicates that an X terminal is
  17597. being used, the left mouse button on the mouse can be used to select text
  17598. or commands.
  17599. <P>
  17600. Note: if this feature is set, the behavior of X terminal cut-and-paste is
  17601. also modified.  It is necessary to hold the shift key down while clicking
  17602. left or middle mouse buttons for the normal xterm cut/paste operations. 
  17603. <P>
  17604. <End of help on this topic>
  17605. </BODY>
  17606. </HTML>
  17607. ====== h_config_enable_xterm_newmail =====
  17608. <HTML><HEAD>        
  17609. <TITLE>FEATURE: enable-newmail-in-xterm-icon</TITLE>
  17610. </HEAD>
  17611. <BODY>
  17612. <H1>FEATURE: enable-newmail-in-xterm-icon</H1>
  17613.  
  17614. This feature controls whether or not Pine will attempt to announce new
  17615. mail arrival when it is running in an X terminal window and that window
  17616. is iconified.  If set, and the $DISPLAY variable indicates that an X
  17617. terminal is being used, Pine will send appropriate escape sequences to
  17618. the X terminal to modify the label on Pine's icon to indicate that new
  17619. mail has arrived. 
  17620. <P>
  17621. <End of help on this topic>
  17622. </BODY></HTML>
  17623. ====== h_config_prefix_editing =====
  17624. <HTML>
  17625. <HEAD>
  17626. <TITLE>FEATURE: enable-reply-indent-string-editing</TITLE>
  17627. </HEAD>
  17628. <BODY>
  17629. <H1>FEATURE: enable-reply-indent-string-editing</H1>
  17630.  
  17631. This feature affects the Reply command's "Include original message
  17632. in Reply?" prompt.  When enabled, it causes the
  17633. "Edit Indent String" sub-command to appear which allows 
  17634. you to edit the string Pine would otherwise use to denote included 
  17635. text from the message being replied to.<P>
  17636.  
  17637. Thus, you can change Pine's default message quote character (usually
  17638. an angle bracket) on a per message basis. So you could change your quoted message to
  17639. look, for example, like this:<p>
  17640.  
  17641. <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
  17642.  
  17643. John: I just wanted to say hello and to congratulate you
  17644. John: on a job well done!</pre><p>
  17645.  
  17646. The configuration option
  17647. <A HREF="h_config_reply_indent_string">"Reply-Indent-String"</A>
  17648. may be used to change what appears as the default string to be edited.
  17649. <P>
  17650. NOTE: Edited reply-indent-strings only apply to the message
  17651. currently being replied to.
  17652. <P>
  17653. <UL>   
  17654. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17655. </UL><P>
  17656. <End of help on this topic>
  17657. </BODY>
  17658. </HTML>
  17659. ====== h_config_enable_search_and_repl =====
  17660. <HTML>
  17661. <HEAD>
  17662. <TITLE>FEATURE: enable-search-and-replace</TITLE>
  17663. </HEAD>
  17664. <BODY>
  17665. <H1>FEATURE: enable-search-and-replace</H1>
  17666.  
  17667. This feature modifies the behavior of Pine's composer.  Setting this
  17668. feature causes Pine to offer the "^R Replace" subcommand, which
  17669. allows you to search and replace text strings in a message you are composing, 
  17670. inside the "^W Where is" command.  
  17671.  
  17672. <P>
  17673.  
  17674. To search and replace text, first enter the text to be replaced at the 
  17675. "Search: " prompt.  Then, rather than pressing Enter to just search for that
  17676. text, press ^R, which turns the prompt into 
  17677.  
  17678. <P>
  17679.  
  17680. Search (to replace): 
  17681.  
  17682. <P>
  17683.  
  17684. and then press Enter.  The cursor will highlight the first occurrence 
  17685. of the text string you entered, and the prompt will show: 
  17686.  
  17687. <P>
  17688.  
  17689. Replace "<your text string>" with : 
  17690.  
  17691. <P>
  17692.  
  17693. where <your text string> is what you entered at the previous prompt;
  17694. here, enter the replacement text.  To only replace the highlighted 
  17695. occurrence, simply press Enter now; to replace all occurrences in the 
  17696. message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
  17697. each replacement.
  17698.  
  17699. <P>
  17700.  
  17701. The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
  17702. ^X toggles between "Replace All" and "Replace One."
  17703.  
  17704. <P>
  17705.  
  17706. If you previously searched for text in a message, it will be offered for 
  17707. reuse as part of the prompt, shown in [ ] brackets.
  17708.  
  17709. <P>
  17710. <End of help on this topic>
  17711. </BODY>
  17712. </HTML>
  17713. ====== h_config_enable_view_attach =====
  17714. <HTML>
  17715. <HEAD>
  17716. <TITLE>FEATURE: enable-msg-view-attachments</TITLE>
  17717. </HEAD>
  17718. <BODY>
  17719. <H1>FEATURE: enable-msg-view-attachments</H1>
  17720.  
  17721. This feature modifies the behavior of Pine's MESSAGE TEXT screen.
  17722. Setting this feature causes Pine to present attachments in boldface.
  17723. The first available attachment is displayed in inverse.  This is the
  17724. "selected" attachment.  Pressing RETURN will cause Pine to display
  17725. the selected attachment.  Use the arrow keys to change which of the
  17726. attachments displayed in boldface is the current selection.
  17727.  
  17728. <P>
  17729.  
  17730. Speaking of arrow keys, the Up and Down Arrows will select the next
  17731. and previous attachments if one is available on the screen for selection.
  17732. Otherwise, they will simply adjust the viewed text one line up or down.
  17733.  
  17734. <P>
  17735.  
  17736. Similarly, when selectable items are present in a message, the Ctrl-F key
  17737. can be used to select the next item in the message independent of which
  17738. portion of the viewed message is currently displayed. The Ctrl-B key can
  17739. be used to select the previous item in the same way. 
  17740. <P> 
  17741. <End of help on this topic>
  17742. </BODY>
  17743. </HTML>
  17744. ====== h_config_enable_y_print =====
  17745. <HTML>
  17746. <HEAD>
  17747. <TITLE>FEATURE: enable-print-via-y-command</TITLE>
  17748. </HEAD>
  17749. <BODY>
  17750. <H1>FEATURE: enable-print-via-y-command</H1>
  17751.  
  17752. This feature modifies the behavior of Pine's Print command.
  17753. <P>
  17754. By default, Pine's print command is available by pressing the "%" key.  
  17755. (This command is a substantial change from Pine versions before 4.00 -- 
  17756. where the print command was "Y" -- based on numerous complaints about 
  17757. printing being invoked inadvertently, since Y also means "Yes.")  
  17758.  
  17759. <P>
  17760.  
  17761. This feature is supplied to mitigate any disruption or anxiety users 
  17762. might feel as a result of this change.  
  17763.  
  17764. <P>
  17765.  
  17766. Enabling this feature will cause Pine to recognize both the old
  17767. command, "Y" for Prynt, as well the new "%" method for invoking
  17768. printing.  Note, key menu labels are not changed as a result of
  17769. enabling this feature.
  17770.  
  17771. <P>
  17772.  
  17773. <End of help on this topic>
  17774. </BODY>
  17775. </HTML>
  17776. ====== h_config_enable_lessthan_exit =====
  17777. <HTML>
  17778. <HEAD>
  17779. <TITLE>FEATURE: enable-exit-via-lessthan-command</TITLE>
  17780. </HEAD>
  17781. <BODY>
  17782.  
  17783. If this feature is set, then on screens where there is an Exit command
  17784. but no < command, the < key will perform the same function as the Exit
  17785. command.
  17786. <P>
  17787. <End of help on this topic>
  17788. </BODY>
  17789. </HTML>
  17790. ====== h_config_enable_view_url =====
  17791. <HTML>
  17792. <HEAD>
  17793. <TITLE>FEATURE: enable-msg-view-urls</TITLE>
  17794. </HEAD>
  17795. <BODY>
  17796. <H1>FEATURE: enable-msg-view-urls</H1>
  17797. This feature modifies the behavior of Pine's MESSAGE TEXT screen.
  17798. Setting this feature causes Pine to select possible URLs from the
  17799. displayed text and display them in boldface for selection.
  17800. <P>
  17801. The first available URL is displayed in inverse.  This is the
  17802. "selected" URL.  Pressing RETURN will cause Pine to display
  17803. the selected URL via either built-in means as with mailto:, imap:,
  17804. news:, and nntp:, or via an external application as defined
  17805. by the <A HREF="h_config_browser">"url-viewer"</A> 
  17806. variable.
  17807. <P>
  17808. Use the arrow keys to change which of the URLs displayed in boldface
  17809. is the current selection.
  17810. <P>
  17811. Speaking of arrow keys, the Up and Down Arrows will select the next
  17812. and previous URL if one is available on the screen for selection (unless 
  17813. you have set the feature 
  17814. <A HREF="h_config_enable_view_arrows">"enable-msg-view-forced-arrows"</A>).
  17815. Otherwise, they will simply adjust the viewed text one line up or down.
  17816. <P>
  17817. Similarly, when selectable items are present in a message, the Ctrl-F
  17818. key can be used to select the next item in the message independent
  17819. of which portion of the viewed message is currently displayed. The
  17820. Ctrl-B key can be used to select the previous item in the same way.
  17821. <P>
  17822. <UL>   
  17823. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17824. </UL><P>
  17825. <End of help on this topic>
  17826. </BODY>
  17827. </HTML>
  17828. ====== h_config_enable_view_web_host =====
  17829. <HTML>
  17830. <HEAD>
  17831. <TITLE>FEATURE: enable-msg-view-web-hostnames</TITLE>
  17832. </HEAD>
  17833. <BODY>
  17834. <H1>FEATURE: enable-msg-view-web-hostnames</H1>
  17835.  
  17836. This feature modifies the behavior of Pine's MESSAGE TEXT screen.
  17837. Setting this feature causes Pine to select possible web hostnames
  17838. from the displayed text and display them in boldface for selection.  
  17839. This can be useful when you receive messages referencing World Wide Web 
  17840. sites without the use of complete URLs; for example, specifying only 
  17841. "www.washington.edu/pine/" (which will <B>not</B> become a 
  17842. selectable 
  17843. item by setting <A HREF="h_config_enable_view_url">"enable-msg-view-urls"</A>) 
  17844. rather than explicitly
  17845. "http://www.washington.edu/pine/".  
  17846. <P>
  17847. The first available hostname is displayed in inverse.  This is the
  17848. "selected" hostname.  Pressing RETURN will cause Pine to display
  17849. the selected hostname via an external application as defined
  17850. by the <A HREF="h_config_browser">"url-viewer"</A> 
  17851. variable.
  17852. <P>
  17853. Use the arrow keys (unless you have set the feature 
  17854. <A HREF="h_config_enable_view_arrows">"enable-msg-view-forced-arrows"</A>) 
  17855. to change which of the hostnames displayed in
  17856. boldface is the current selection.
  17857. <P>
  17858. Similarly, when selectable web hostnames are present in a message, the Ctrl-F
  17859. key can be used to select the next web hostname in the message independent
  17860. of which portion of the viewed message is currently displayed. The
  17861. Ctrl-B key can be used to select the previous web hostnames in the same way.
  17862. <P>
  17863. <UL>   
  17864. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17865. </UL><P>
  17866. <End of help on this topic>
  17867. </BODY>
  17868. </HTML>
  17869. ====== h_config_enable_view_addresses =====
  17870. <HTML>
  17871. <HEAD>
  17872. <TITLE>FEATURE: enable-msg-view-addresses</TITLE>
  17873. </HEAD>
  17874. <BODY>
  17875. <H1>FEATURE: enable-msg-view-addresses</H1>
  17876.  
  17877. This feature modifies the behavior of Pine's MESSAGE TEXT screen.
  17878. Setting this feature causes Pine to select possible email addresses
  17879. from the displayed text and display them in boldface for selection.  
  17880.  
  17881. <P>
  17882. The first available email address is displayed in inverse.  This is the
  17883. "selected" address.  Pressing RETURN will cause Pine to enter
  17884. the message composition screen with the To: field filled in with the
  17885. selected address.
  17886. <P>
  17887. Use the arrow keys (unless you have set the feature 
  17888. <A HREF="h_config_enable_view_arrows">"enable-msg-view-forced-arrows"</A>) 
  17889. to change which of the hostnames displayed in
  17890. boldface is the current selection.
  17891. <P>
  17892. Similarly, when selectable web hostnames are present in a message, the Ctrl-F
  17893. key can be used to select the next web hostname in the message independent
  17894. of which portion of the viewed message is currently displayed. The
  17895. Ctrl-B key can be used to select the previous web hostnames in the same way.
  17896. <P>
  17897. <UL>   
  17898. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  17899. </UL><P>
  17900. <End of help on this topic>
  17901. </BODY>
  17902. </HTML>
  17903. ====== h_config_enable_view_arrows =====
  17904. <HTML>
  17905. <HEAD>
  17906. <TITLE>FEATURE: enable-msg-view-forced-arrows</TITLE>
  17907. </HEAD>
  17908. <BODY>
  17909. <H1>FEATURE: enable-msg-view-forced-arrows</H1>
  17910.  
  17911. This feature modifies Up and Down arrow key behavior in Pine's
  17912. MESSAGE TEXT screen when selectable Attachments, URL's, or
  17913. web-hostnames are presented. Pine's usual behavior is to move to
  17914. the next or previous selectable item if currently displayed or
  17915. simply to adjust the screen view by one line.
  17916.  
  17917. <P>
  17918.  
  17919. Setting this feature causes the UP and Down arrow key to behave as
  17920. if no selectable items were present in the message.
  17921.  
  17922. <P>
  17923.  
  17924. Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
  17925. item) functionality is unchanged.
  17926. <P>
  17927.  
  17928. <End of help on this topic>
  17929. </BODY>
  17930. <HTML>
  17931. ====== h_config_prefer_plain_text =====
  17932. <HTML>
  17933. <HEAD>
  17934. <TITLE>FEATURE: prefer-plain-text</TITLE>
  17935. </HEAD>
  17936. <BODY>
  17937. <H1>FEATURE: prefer-plain-text</H1>
  17938.  
  17939. A message being viewed may contain alternate versions of the same content.
  17940. Those alternate versions are ordered by the sending software such that the
  17941. first alternative is the least preferred and the last alternative is the
  17942. most preferred. Pine will normally display the most-preferred version that
  17943. it knows how to display. This is most often encountered where the two
  17944. alternate versions are a plain text version and an HTML version, with the
  17945. HTML version listed last as the most preferred.
  17946. <P>
  17947. If this option is set, then any plain text version will be preferred to
  17948. all other versions.
  17949. <P>
  17950. <End of help on this topic>
  17951. </BODY>
  17952. </HTML>
  17953. ====== h_config_pass_control =====
  17954. <HTML>
  17955. <HEAD>
  17956. <TITLE>FEATURE: pass-control-characters-as-is</TITLE>
  17957. </HEAD>
  17958. <BODY>
  17959. <H1>FEATURE: pass-control-characters-as-is</H1>
  17960.  
  17961. This feature controls how certain characters contained in messages are
  17962. displayed.  If set, all characters in a message will be sent to the
  17963. screen.  Normally, control characters are automatically suppressed in
  17964. order to avoid inadvertently changing terminal setup parameters.
  17965. <P>
  17966. <End of help on this topic>
  17967. </BODY>
  17968. </HTML>
  17969. ====== h_config_fcc_on_bounce =====
  17970. <HTML>
  17971. <HEAD>
  17972. <TITLE>FEATURE: fcc-on-bounce</TITLE>
  17973. </HEAD>
  17974. <BODY>
  17975. <H1>FEATURE: fcc-on-bounce</H1>
  17976.  
  17977. This feature controls an aspect of Pine's behavior when bouncing a
  17978. message. If set, normal FCC ("File Carbon Copy") processing will be
  17979. done, just as if you had composed a message to the address you are
  17980. bouncing to.  If not set, no FCC of the message will be saved. 
  17981. <P>
  17982. <End of help on this topic>
  17983. </BODY>
  17984. </HTML>
  17985. ====== h_config_show_cursor =====
  17986. <HTML>
  17987. <HEAD>
  17988. <TITLE>FEATURE: show-cursor</TITLE>
  17989. </HEAD>
  17990. <BODY>
  17991. <H1>FEATURE: show-cursor</H1>
  17992.  
  17993. This feature controls an aspect of Pine's displays.  If set, the system
  17994. cursor will move to convenient locations in the displays.  For example,
  17995. to the beginning of the status field of the highlighted index line, or
  17996. to the highlighted word after a successful WhereIs command.  It is intended
  17997. to draw your attention to an "interesting" spot on the screen.
  17998. <P>
  17999. <End of help on this topic>
  18000. </BODY>
  18001. </HTML>
  18002. ====== h_config_single_list =====
  18003. <HTML>
  18004. <HEAD>
  18005. <TITLE>FEATURE: single-column-folder-list</TITLE>
  18006. </HEAD>
  18007. <BODY>
  18008. <H1>FEATURE: single-column-folder-list</H1>
  18009.  
  18010. This feature controls an aspect of Pine's FOLDER LIST screen.  If set,
  18011. the folders will be listed one per line instead of several per line
  18012. in the FOLDER LIST display.
  18013. <P>
  18014. <End of help on this topic>
  18015. </BODY>
  18016. </HTML>
  18017. ====== h_config_vertical_list =====
  18018. <HTML>
  18019. <HEAD>
  18020. <TITLE>FEATURE: vertical-folder-list</TITLE>
  18021. </HEAD>
  18022. <BODY>
  18023. <H1>FEATURE: vertical-folder-list</H1>
  18024.  
  18025. This feature controls an aspect of Pine's FOLDER LIST screen.  If set,
  18026. the folders will be listed alphabetically down the columns rather
  18027. than across the columns as is the default.
  18028. <P>
  18029. <End of help on this topic>
  18030. </BODY>
  18031. </HTML>
  18032. ====== h_config_verbose_post =====
  18033. <HTML>
  18034. <HEAD>
  18035. <TITLE>FEATURE: enable-verbose-smtp-posting</TITLE>
  18036. </HEAD>
  18037. <BODY>
  18038. <H1>FEATURE: enable-verbose-smtp-posting</H1>
  18039. This feature controls an aspect of Pine's message sending.  When enabled,
  18040. Pine will send a VERB (i.e., VERBose) command early in the posting process
  18041. intended to cause the SMTP server to provide a more detailed account of
  18042. the transaction.  This feature is typically only useful to system
  18043. administrators and other support personel as an aid in troublshooting
  18044. problems.
  18045. <P>
  18046. Note, this feature relies on a specific capability of the system's mail
  18047. transport agent or configured 
  18048. <A HREF="h_config_smtp_server">"smtp-server"</A>.  
  18049. It is possible that this
  18050. feature will cause problems for some tranport agents, and may result in
  18051. sending failure.  In addition, as the verbose output comes from the mail
  18052. transport agent, it is likely to vary from one system to another. 
  18053. <P><UL>
  18054. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18055. </UL><P>
  18056. <End of help on this topic>
  18057. </BODY>
  18058. </HTML>
  18059. ====== h_config_auto_reply_to =====
  18060. <HTML>
  18061. <HEAD>
  18062. <TITLE>FEATURE: reply-always-uses-reply-to</TITLE>
  18063. </HEAD>
  18064. <BODY>
  18065. <H1>FEATURE: reply-always-uses-reply-to</H1>
  18066.  
  18067. This feature controls an aspect of Pine's Reply command.  If set, Pine
  18068. will not prompt when a message being replied to contains a "Reply-To:"
  18069. header value, but will simply use its value (as opposed to using the
  18070. "From:" field's value).
  18071.  
  18072. <P>
  18073.  
  18074. Note: Using the "Reply-To:" address is usually the preferred behavior,
  18075. however, some mailing list managers choose to place the list's address in
  18076. the "Reply-To:" field of any message sent out to the list.  In such
  18077. cases, this feature makes it all too easy for personal replies to be
  18078. inadvertently sent to the entire mail list, so be careful! 
  18079. <P>
  18080. <End of help on this topic>
  18081. </BODY>
  18082. </HTML>
  18083. ====== h_config_del_skips_del =====
  18084. <HTML><HEAD>
  18085. <TITLE>FEATURE: delete-skips-deleted</TITLE>
  18086. </HEAD>
  18087. <BODY>
  18088. <H1>FEATURE: delete-skips-deleted</H1>
  18089.  
  18090. This feature controls an aspect of Pine's Delete command.  If set, this
  18091. feature will cause the Delete command to advance past other messages that
  18092. are marked deleted.  In other words, pressing "D" will both mark the
  18093. current message deleted and advance to the next message that is not marked
  18094. deleted.
  18095. <P>
  18096. <End of help on this topic>
  18097. </BODY></HTML>
  18098. ====== h_config_expunge_manually =====
  18099. <HTML>
  18100. <HEAD>
  18101. <TITLE>FEATURE: expunge-only-manually</TITLE>
  18102. </HEAD>
  18103. <BODY>
  18104. <H1>FEATURE: expunge-only-manually</H1>
  18105.  
  18106. Normally, when you close a folder which contains deleted messages you are
  18107. asked if you want to expunge those messages from the folder permanently.
  18108. If this feature is set, you won't be asked and the deleted messages will
  18109. remain in the folder.
  18110. If you choose to set this feature you will have to expunge the
  18111. messages manually using the eXpunge command, which you can use while
  18112. in the MESSAGE INDEX screen.
  18113. If you do not expunge deleted messages the size of your
  18114. folder will continue to increase until you are out of disk space.
  18115. <P>
  18116. <UL>   
  18117. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18118. </UL><P>
  18119. <End of help on this topic>
  18120. </BODY>
  18121. </HTML>
  18122. ====== h_config_auto_expunge =====
  18123. <HTML>
  18124. <HEAD>
  18125. <TITLE>FEATURE: expunge-without-confirm</TITLE>
  18126. </HEAD>
  18127. <BODY>
  18128. <H1>FEATURE: expunge-without-confirm</H1>
  18129. This features controls an aspect of Pine's eXpunge command.  If set, you
  18130. will <B>not</B> be prompted to confirm your intent before the expunge takes 
  18131. place.
  18132. Actually, this is only true for the INBOX folder and for folders in the
  18133. Incoming Folders collection. See the feature
  18134. <A HREF="h_config_full_auto_expunge">"expunge-without-confirm-everywhere"</A>.
  18135. <P>
  18136. <UL>   
  18137. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18138. </UL><P>
  18139. <End of help on this topic>
  18140. </BODY>
  18141. </HTML>
  18142. ====== h_config_full_auto_expunge =====
  18143. <HTML>
  18144. <HEAD>
  18145. <TITLE>FEATURE: expunge-without-confirm-everywhere</TITLE>
  18146. </HEAD>
  18147. <BODY>
  18148. <H1>FEATURE: expunge-without-confirm-everywhere</H1>
  18149. This features controls an aspect of Pine's eXpunge command.  If set, you
  18150. will <B>not</B> be prompted to confirm your intent before the expunge 
  18151. takes place.  This feature sets this behavior for all folders, unlike the
  18152. <A HREF="h_config_auto_expunge">"expunge-without-confirm"</A>
  18153. feature which works only for incoming folders.
  18154. <P>
  18155. <UL>   
  18156. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18157. </UL><P>
  18158. <End of help on this topic>
  18159. </BODY>
  18160. </HTML>
  18161. ====== h_config_auto_read_msgs =====
  18162. <HTML>
  18163. <HEAD>
  18164. <TITLE>FEATURE: auto-move-read-msgs</TITLE>
  18165. </HEAD>
  18166. <BODY>
  18167. <H1>FEATURE: auto-move-read-msgs</H1>
  18168. This feature controls an aspect of Pine's behavior upon quitting.  If set,
  18169. and the 
  18170. <A HREF="h_config_read_message_folder">"read-message-folder"</A>
  18171. option is also set, then Pine will
  18172. automatically transfer all read messages to the designated folder and mark
  18173. them as deleted in the INBOX.  Messages in the INBOX marked with an 
  18174. "N" (meaning New, or unseen) are not affected.
  18175. <P>
  18176. <UL>   
  18177. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18178. </UL><P>
  18179. <End of help on this topic>
  18180. </BODY>
  18181. </HTML>
  18182. ====== h_config_auto_fcc_only =====
  18183. <HTML>
  18184. <HEAD>
  18185. <TITLE>FEATURE: fcc-only-without-confirm</TITLE>
  18186. </HEAD>
  18187. <BODY>
  18188. <H1>FEATURE: fcc-only-without-confirm</H1>
  18189. This features controls an aspect of Pine's composer.
  18190. The only time this feature will be used is if you attempt to send mail
  18191. which has no recipients but does have an Fcc.
  18192. Normally, Pine will ask if you really mean to copy the message only to
  18193. the Fcc.
  18194. That is, it asks if you really meant to have no recipients.
  18195. If this feature is set, you
  18196. will <B>not</B> be prompted to confirm your intent to make only a copy
  18197. of a message with no recipients.
  18198. <P>
  18199. <UL>   
  18200. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18201. </UL><P>
  18202. <End of help on this topic>
  18203. </BODY>
  18204. </HTML>
  18205. ====== h_config_no_fcc_attach =====
  18206. <HTML>
  18207. <HEAD>
  18208. <TITLE>FEATURE: fcc-without-attachments</TITLE>
  18209. </HEAD>
  18210. <BODY>
  18211. <H1>FEATURE: fcc-without-attachments</H1>
  18212.  
  18213. This features controls the way FCC's (File Carbon Copies) are
  18214. made of the messages you send.
  18215.  
  18216. <P>
  18217. Normally, Pine saves an exact copy of your message as it was sent.
  18218. When this feature is enabled, the "body" of the message
  18219. you send (the text you type in the composer) is preserved in the 
  18220. copy as before, however all attachments are replaced with text
  18221. explaining what had been sent rather than the attachments themselves.
  18222.  
  18223. <P>
  18224. This feature also affects Pine's "Send ?" confirmation prompt
  18225. in that a new "^F Fcc Attchmnts" option becomes available which
  18226. allows you to interactively set whether or not attachments are saved
  18227. to the Fcc'd copy.
  18228.  
  18229. <P>
  18230. <UL>   
  18231. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18232. </UL><P>
  18233. <End of help on this topic>
  18234. </BODY>
  18235. </HTML>
  18236. ====== h_config_read_in_newsrc_order =====
  18237. <HTML>
  18238. <HEAD>
  18239. <TITLE>FEATURE: news-read-in-newsrc-order</TITLE>
  18240. </HEAD>
  18241. <BODY>
  18242. <H1>FEATURE: news-read-in-newsrc-order</H1>
  18243. This feature controls the order in which newsgroups will be presented.  If
  18244. set, they will be presented in the same order as they occur in your 
  18245. <!--chtml if pinemode="os_windows"-->
  18246. "NEWSRC"
  18247. <!--chtml else-->
  18248. ".newsrc"
  18249. <!--chtml endif-->
  18250. file (the default location of which can be changed with the 
  18251. <A HREF="h_config_newsrc_path">"newsrc-path"</A> option).  
  18252. <P>
  18253. If not set, the newsgroups will be presented in alphabetical order.
  18254. <P>
  18255. <UL>   
  18256. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18257. </UL><P>
  18258. <End of help on this topic>
  18259. </BODY>
  18260. </HTML>
  18261. ====== h_config_post_wo_validation =====
  18262. <HTML>
  18263. <HEAD>
  18264. <TITLE>FEATURE: news-post-without-validation</TITLE>
  18265. </HEAD>
  18266. <BODY>
  18267. <H1>FEATURE: news-post-without-validation</H1>
  18268.  
  18269. This feature controls whether the NNTP server is queried as newsgroups
  18270. are entered for posting.  Validation over slow links (e.g. dialup using
  18271. SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
  18272. <P>
  18273. <End of help on this topic>
  18274. </BODY>
  18275. </HTML>
  18276. ====== h_config_quell_post_prompt =====
  18277. <HTML>
  18278. <HEAD>
  18279. <TITLE>FEATURE: quell-extra-post-prompt</TITLE>
  18280. </HEAD>
  18281. <BODY>
  18282. <H1>FEATURE: quell-extra-post-prompt</H1>
  18283.  
  18284. By default, when you post a message to a newsgroup you are asked to confirm
  18285. that you want to post with the question
  18286.  
  18287. <P>
  18288. <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
  18289. <P>
  18290.  
  18291. If this feature is set, you
  18292. will <B>not</B> be prompted to confirm your intent to post to a newsgroup
  18293. and your message will be posted.
  18294.  
  18295. <P>
  18296. <UL>   
  18297. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18298. </UL><P>
  18299. <End of help on this topic>
  18300. </BODY>
  18301. </HTML>
  18302. ====== h_config_check_mail_onquit =====
  18303. <HTML>
  18304. <HEAD>
  18305. <TITLE>FEATURE: check-newmail-when-quitting</TITLE>
  18306. </HEAD>
  18307. <BODY>
  18308. <H1>FEATURE: check-newmail-when-quitting</H1>
  18309.  
  18310. If this feature is set, Pine will check for new mail after you give the
  18311. Quit command.
  18312. If new mail has arrived since the previous check, you will be notified
  18313. and given the choice of quitting or not quitting.
  18314. <P>
  18315. <UL>   
  18316. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18317. </UL><P>
  18318. <End of help on this topic>
  18319. </BODY>
  18320. </HTML>
  18321. ====== h_config_tab_no_prompt =====
  18322. <HTML>
  18323. <HEAD>
  18324. <TITLE>FEATURE: continue-tab-without-confirm</TITLE>
  18325. </HEAD>
  18326. <BODY>
  18327. <H1>FEATURE: continue-tab-without-confirm</H1>
  18328.  
  18329. Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
  18330. command and there is a problem checking a folder, you are asked
  18331. whether you want to continue with the search in the following folder or not.
  18332. This question gives you a chance to stop the NextNew processing.
  18333. (The checking problem might be caused by the fact that the folder does not
  18334. exist, or by an authentication problem, or by a server problem
  18335. of some sort.)
  18336. <P>
  18337.  
  18338. If this feature is set you will not be asked.
  18339. It will be assumed that you do want to continue.
  18340. <P>
  18341. <UL>   
  18342. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18343. </UL><P>
  18344. <End of help on this topic>
  18345. </BODY>
  18346. </HTML>
  18347. ====== h_config_confirm_role =====
  18348. <HTML>
  18349. <HEAD>
  18350. <TITLE>FEATURE: confirm-role-even-for-default</TITLE>
  18351. </HEAD>
  18352. <BODY>
  18353. <H1>FEATURE: confirm-role-even-for-default</H1>
  18354.  
  18355. If you have roles, when you Reply to or Forward a message, or Compose
  18356. a new message, Pine
  18357. will search through your roles for one which matches.
  18358. Normally, if no matches are found you will be placed into the composer
  18359. with no opportunity to select a role.
  18360. If this feature is set, then you will be asked to confirm that you don't
  18361. want a role.
  18362. This will give you the opportunity to select a role (with the ^T command).
  18363. If you confirm no role with a Return, you will be placed in
  18364. the composer with no role.
  18365. You may also confirm with either an "N" or a "Y".
  18366. These behave the same as if you pressed the Return.
  18367. (The "N" and "Y" answers are available because they
  18368. match what you might type if there was a role match.)
  18369. <P>
  18370. If you are using the alternate form of the Compose command called
  18371. "Role", then all of your roles will be available to you,
  18372. independent of the value of this feauture and of the values set for all of
  18373. Reply Use, Forward Use, and Compose Use.
  18374. <P>
  18375. <UL>   
  18376. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18377. </UL><P>
  18378. <End of help on this topic>
  18379. </BODY>
  18380. </HTML>
  18381. ====== h_config_news_cross_deletes =====
  18382. <HTML>
  18383. <HEAD>
  18384. <TITLE>FEATURE: news-deletes-across-groups</TITLE>
  18385. </HEAD>
  18386. <BODY>
  18387. <H1>FEATURE: news-deletes-across-groups</H1>
  18388.  
  18389. This feature controls what Pine does when you delete a message in a
  18390. newsgroup that appears in more than one newsgroup.  Such a message
  18391. is sometimes termed a "crossposting" in that it was posted
  18392. across several newsgroups.
  18393.  
  18394. <P>
  18395. Pine's default behavior when you delete such a message is to remove
  18396. only the copy in the current newsgroup from view when you use the
  18397. "Exclude" command or the next time you visit the newsgroup.
  18398.  
  18399. <P>
  18400. Enabling this feature causes Pine to remove every occurrence of the
  18401. message from all newsgroups it appears in and to which you are
  18402. subscribed.
  18403.  
  18404. <P>
  18405. NOTE: As currently implemented, enabling this feature may increase the
  18406. time it takes the Expunge command and newsgroup closing to complete.
  18407.  
  18408. <P>
  18409. <UL>   
  18410. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18411. </UL><P>
  18412. <End of help on this topic>
  18413. </BODY>
  18414. </HTML>
  18415. ====== h_config_news_catchup =====
  18416. <HTML>
  18417. <HEAD>
  18418. <TITLE>FEATURE: news-offers-catchup-on-close</TITLE>
  18419. </HEAD>
  18420. <BODY>
  18421. <H1>FEATURE: news-offers-catchup-on-close</H1>
  18422.  
  18423. This feature controls what Pine does as it closes a newsgroup.
  18424. When set, Pine will offer to delete all messages from the newsgroup
  18425. as you are quitting Pine or opening a new folder.
  18426.  
  18427. <P>
  18428. This feature is useful if you typically read all the interesting messages
  18429. in a newsgroup each time you open it.  This feature saves you from
  18430. having to delete each message in a newsgroup as you read it or from
  18431. selecting all the messages and doing an
  18432. <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
  18433. move on to the next folder or newsgroup.
  18434.  
  18435. <P>
  18436. <UL>   
  18437. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18438. </UL><P>
  18439. <End of help on this topic>
  18440. </BODY>
  18441. </HTML>
  18442. ====== h_config_select_wo_confirm =====
  18443. <HTML>
  18444. <HEAD>
  18445. <TITLE>FEATURE: select-without-confirm</TITLE>
  18446. </HEAD>
  18447. <BODY>
  18448. <H1>FEATURE: select-without-confirm</H1>
  18449.  
  18450. This feature controls an aspect of Pine's Save, Export, and Goto commands.
  18451. These commands all take text input to specify the name of the folder or
  18452. file to be used, but allow you to press ^T for a list of possible names.
  18453. If set, the selected name will be used immediately, without further
  18454. opportunity to confirm or edit the name.
  18455. <P>
  18456. <End of help on this topic>
  18457. </BODY>
  18458. </HTML>
  18459. ====== h_config_use_current_dir =====
  18460. <HTML>
  18461. <HEAD>
  18462. <TITLE>FEATURE: use-current-dir</TITLE>
  18463. </HEAD>
  18464. <BODY>
  18465. <H1>FEATURE: use-current-dir</H1>
  18466.  
  18467. This feature controls an aspect of several commands. 
  18468. If set, your "current working directory" 
  18469. <!--chtml if pinemode="running"-->
  18470. (which, at least for your current Pine "session," 
  18471. is "<!--#echo var="CURRENT_DIR"-->") 
  18472. <!--chtml endif-->
  18473. will be used instead of your home directory 
  18474. <!--chtml if pinemode="running"-->
  18475. (which, in the present configuration of your system, is
  18476.  "<!--#echo var="HOME_DIR"-->") 
  18477. <!--chtml endif-->
  18478. for all of the following operations:<UL>
  18479.     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
  18480.     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
  18481.     <LI> <!--chtml if pinemode="function_key"-->F4
  18482.          <!--chtml else-->Ctrl-R
  18483.          <!--chtml endif--> file inclusion in the COMPOSER
  18484.     <LI> <!--chtml if pinemode="function_key"-->F5
  18485.          <!--chtml else-->Ctrl-J
  18486.          <!--chtml endif--> file attachment in the COMPOSER
  18487. </UL>
  18488. <!--chtml if pinemode="os_windows"-->
  18489. <P>
  18490. If you are starting PC-Pine from a desktop icon or the Start menu, 
  18491. you can set the "current drive" 
  18492. by specifying it in the "Start in:" 
  18493. box found in the Shortcut tab of the Properties.  
  18494. <!--chtml endif-->
  18495. <P>
  18496. <UL>   
  18497. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18498. </UL>
  18499.  
  18500. <P>
  18501. <End of help on this topic>
  18502. </BODY>
  18503. </HTML>
  18504. ====== h_config_save_wont_delete =====
  18505. <HTML>
  18506. <HEAD>
  18507. <TITLE>FEATURE: save-will-not-delete</TITLE>
  18508. </HEAD>
  18509. <BODY>
  18510. <H1>FEATURE: save-will-not-delete</H1>
  18511.  
  18512. This feature controls one aspect of the Save command.  If set, Save will
  18513. not mark the message "deleted" (its default behavior) after
  18514. it has been copied to the designated folder.
  18515.  
  18516. <P>
  18517. <End of help on this topic>
  18518. </BODY>
  18519. </HTML>
  18520. ====== h_config_save_advances =====
  18521. <HTML>
  18522. <HEAD>
  18523. <TITLE>FEATURE: save-will-advance</TITLE>
  18524. </HEAD>
  18525. <BODY>
  18526. <H1>FEATURE: save-will-advance</H1>
  18527.  
  18528. This feature controls one aspect of the Save command.  If set, Save will
  18529. (in addition to copying the current message to the designated folder) also
  18530. advance to the next message.
  18531.  
  18532. <P>
  18533. <End of help on this topic>
  18534. </BODY>
  18535. </HTML>
  18536. ====== h_config_force_low_speed =====
  18537. <HTML>
  18538. <HEAD>
  18539. <TITLE>FEATURE: assume-slow-link</TITLE>
  18540. </HEAD>
  18541. <BODY>
  18542. <H1>FEATURE: assume-slow-link</H1>
  18543.  
  18544. This feature affects Pine's display routines.  If set, the normal
  18545. inverse-video cursor (used to highlight the current item in a list) will be
  18546. replaced by an "arrow" cursor and other
  18547. screen update optimizations for
  18548. low-speed links (e.g. 2400 bps dialup connections) will be activated.
  18549.  
  18550. <P>
  18551. <End of help on this topic>
  18552. </BODY>
  18553. </HTML>
  18554. ====== h_config_show_delay_cue =====
  18555. <HTML>
  18556. <HEAD>
  18557. <TITLE>FEATURE: enable-mail-check-cue</TITLE>
  18558. </HEAD>
  18559. <BODY>
  18560. <H1>FEATURE: enable-mail-check-cue</H1>
  18561.  
  18562. If set, this feature will cause an asterisk to appear in the upper
  18563. left-hand corner of the screen whenever Pine checks for new mail.
  18564. Two asterisks whenever Pine saves (checkpoints) the state of the current
  18565. mailbox to disk.
  18566.  
  18567. <!--chtml if pinemode="os_windows"-->
  18568. <P>
  18569. In addtion, PC-Pine will display a less-than symbol, '<', when 
  18570. it is trying to open a network connection (e.g, to open your INBOX
  18571. on an IMAP
  18572. server) or read from the network connection.  A greater-than symbol,
  18573. will be displayed when PC-Pine is trying to write to the network
  18574. connection (e.g, sending a command to your IMAP server).
  18575. <!--chtml endif-->
  18576.  
  18577. <P>
  18578. <End of help on this topic>
  18579. </BODY>
  18580. </HTML>
  18581. ====== h_config_color_style =====
  18582. <HTML>
  18583. <HEAD>
  18584. <TITLE>OPTION: Color-Style</TITLE>
  18585. </HEAD>
  18586. <BODY>
  18587. <H1>OPTION: Color-Style</H1>
  18588.  
  18589. If the terminal or terminal emulator you are using is capable of displaying
  18590. colors, this option controls whether or not color will be used in Pine.
  18591. If you turn color on and things are set up correctly,
  18592. you should see color appear on the screen immmediately.
  18593. Modern terminal emulators are usually capable of displaying colors.
  18594. <P>
  18595. The available options include:
  18596. <P>
  18597.  
  18598. <DL>
  18599. <DT>no-color</DT>
  18600. <DD>Don't use color.
  18601. </DD>
  18602.  
  18603. <DT>use-termdef</DT>
  18604. <DD>In order to decide if your terminal is capable of color, Pine looks in
  18605. the terminal capabilities database, TERMINFO or TERMCAP, depending on
  18606. how Pine was compiled.
  18607. This is a good option to choose if you switch between a color and a non-color
  18608. terminal with the same Pine configuration.
  18609. Pine will know to use color on the color terminal because it is described
  18610. in the termcap entry, and Pine will know to use black and white on the
  18611. non-color terminal.
  18612. The Pine Technical Notes
  18613. <CENTER><SAMP><A HREF="http://www.washington.edu/pine/tech-notes/">http://www.washington.edu/pine/tech-notes/</A></SAMP></CENTER>
  18614. have more information on configuring a TERMCAP or TERMINFO
  18615. entry for color Pine.
  18616. This is usually something a system administrator does.
  18617. </DD>
  18618.  
  18619. <DT>force-ansi-8color</DT>
  18620. <DD>Because setting up a termcap entry is confusing and because the
  18621. terminal capabilities database is often not correctly configured for color,
  18622. this choice and the next may be easier for you to use.
  18623. If your terminal emulator responds to ANSI color escape sequences, which
  18624. many do, this option will cause Pine to believe your terminal will respond
  18625. to the escape sequences which produce eight different foreground and background
  18626. colors.
  18627. The escape sequences used to set the foreground colors are
  18628.  
  18629.   <P><CENTER>ESC [ 3 <color_number> m</CENTER><P>
  18630.  
  18631. where the color_number is an ASCII digit between 0 and 7.
  18632. The numbers 0 through 7 should correspond to the colors black, red, green,
  18633. yellow, blue, magenta, cyan, and white.
  18634. Some terminal emulators use a pre-ANSI scheme which swaps
  18635. the colors blue and red and the colors yellow and cyan.
  18636. This will cause the default colors to be different, but other than that
  18637. things should work fine.
  18638. The escape sequences used to set the background colors are the same
  18639. as for the foreground colors except a "4" replaces the "3".
  18640. </DD>
  18641.  
  18642. <DT>force-ansi-16color</DT>
  18643. <DD>Many terminal emulators know about the same eight colors above
  18644. plus eight more.
  18645. This option attempts to use all 16 colors.
  18646. The same escape sequences as for the eight-color terminal are used
  18647. for the first eight colors.
  18648. The escape sequences used to set foreground colors 8-15 are the same as
  18649. for 0-7 except the "3" is replaced with a "9".
  18650. The background color sequences for colors 8-15 are the same as for 0-7
  18651. except the "4" is replaced with "10".
  18652. You can tell if the 16 colors are working by turning on this option
  18653. and then going into one of the color configuration screens, for example,
  18654. the configuration screen for Normal Color.
  18655. If you see 16 different colors to select from, it's working.
  18656. </DD>
  18657. </DL>
  18658.  
  18659. <P>
  18660. The normal default is "no-color".
  18661. <P>
  18662.  
  18663. Once you've turned on color you may set the
  18664. colors of many objects on the screen individually.
  18665. For example, you may add colors to the status letters on the MESSAGE
  18666. INDEX page.
  18667. Most categories of color which Pine supports are configurable here.
  18668. For example, "Normal Color"
  18669. is the color used to display most of the text in Pine, and
  18670. "Reverse Color" is used to display highlighted text, such as the
  18671. current message in the MESSAGE INDEX.
  18672. <P>
  18673. Lines in the MESSAGE INDEX may also be colored.
  18674. Use Setup Rules to get to the Indexcolor configuration screen.
  18675. <P>
  18676.  
  18677. <UL>   
  18678. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18679. </UL><P>
  18680. <End of help on this topic>
  18681. </BODY>
  18682. </HTML>
  18683. ====== h_config_auto_open_unread =====
  18684. <HTML>
  18685. <HEAD>
  18686. <TITLE>FEATURE: auto-open-next-unread</TITLE>
  18687. </HEAD>
  18688. <BODY>
  18689. <H1>FEATURE: auto-open-next-unread</H1>
  18690.  
  18691. This feature controls the behavior of the TAB key when traversing folders
  18692. in the optional 
  18693. <A HREF="h_config_enable_incoming">"incoming-folders" collection</A> 
  18694. or in optional news-collections.
  18695. <P>
  18696. When the TAB (Next New) key is pressed, and there
  18697. are no more unseen messages in the current (incoming message or news)
  18698. folder, Pine will search the list of folders in the current collection for
  18699. one containing New or Recent (new since the last time the folder was
  18700. opened) messages.  Normally, when such a folder is found, Pine will ask
  18701. whether you wish to open the folder.  If this feature is set, Pine will
  18702. automatically open the folder without prompting.<P>
  18703.  
  18704. <UL>   
  18705. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18706. </UL><P>
  18707. <End of help on this topic>
  18708. </BODY>
  18709. </HTML>
  18710. ====== h_config_auto_include_reply =====
  18711. <HTML>
  18712. <HEAD>
  18713. <TITLE>FEATURE: include-text-in-reply</TITLE>
  18714. </HEAD>
  18715. <BODY>
  18716. <H1>FEATURE: include-text-in-reply</H1>
  18717.  
  18718. This feature controls an aspect of Pine's Reply command.  Normally, Pine
  18719. will ask whether you wish to include the original message in your reply.
  18720. If this feature is set, the original message will be included in the reply
  18721. automatically, without prompting.
  18722. <P>
  18723. <End of help on this topic>
  18724. </BODY>
  18725. </HTML>
  18726. ====== h_config_select_in_bold =====
  18727. <HTML>
  18728. <HEAD>
  18729. <TITLE>FEATURE: show-selected-in-boldface</TITLE>
  18730. </HEAD>
  18731. <BODY>
  18732. <H1>FEATURE: show-selected-in-boldface</H1>
  18733.  
  18734. This feature controls an aspect of Pine's 
  18735. <A HREF="h_config_enable_agg_ops">"aggregate operation"</A>
  18736. commands; in
  18737. particular, the Select and WhereIs commands. Select and WhereIs (with the
  18738. ^X subcommand) will search the current folder for messages meeting a
  18739. specified criteria, and "tag" the resulting messages with an 
  18740. "X" in the
  18741. first column of the applicable lines in the MESSAGE INDEX.  If this feature
  18742. is set, instead of using the "X" to denote a selected message, 
  18743. Pine will
  18744. attempt to display those index lines in boldface. Whether this is
  18745. preferable to the "X" will depend on personal taste and the type of
  18746. terminal being used.
  18747. <P>
  18748. <UL>   
  18749. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18750. </UL><P>
  18751. <End of help on this topic>
  18752. </BODY>
  18753. </HTML>
  18754. ====== h_config_alt_auth =====
  18755. <HTML>
  18756. <HEAD>
  18757. <TITLE>FEATURE: try-alternative-authentication-driver-first</TITLE>
  18758. </HEAD>
  18759. <BODY>
  18760. <H1>FEATURE: try-alternative-authentication-driver-first</H1>
  18761.  
  18762. This feature controls how Pine provides authentication credentials
  18763. to the IMAP server you are connecting to.  Normally, Pine and the server
  18764. negotiate the most secure method to exchange such information.
  18765.  
  18766. <P>
  18767. However, some methods aren't available for negotiation, and thus
  18768. require pre-configuration (typically, per server) on Pine's part.
  18769. This feature allows Pine to implicitly try an alternative to the
  18770. default methods that may have been added to Pine when it was built.
  18771.  
  18772. <P>
  18773. <UL>   
  18774. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18775. </UL><P>
  18776. <End of help on this topic>
  18777. </BODY>
  18778. </HTML>
  18779. ====== h_config_file_dir ======
  18780. <HTML>
  18781. <HEAD>
  18782. <TITLE>OPTION: file-directory</TITLE>
  18783. </HEAD>
  18784. <BODY>
  18785. <H1>OPTION: file-directory</H1>
  18786.  
  18787. This value affects the Composer's "^J Attach" command, 
  18788. the Attachment Index Screen's "S Save" command, and the
  18789. Message Index's "E Export" command.
  18790.  
  18791. <P>
  18792. Normally, when a filename is supplied that lacks a leading "path"
  18793. component, Pine assumes the file exists in the user's home directory.
  18794. Under Windows operating systems, this definition isn't always clear.  This 
  18795. feature allows you to explictly set where Pine should look for files
  18796. without a leading path.
  18797.  
  18798. <P>
  18799. NOTE: this feature's value is ignored if either 
  18800. <A HREF="h_config_use_current_dir">use-current-dir</A> feature
  18801. is set or the PINERC has a value for the "operating-dir" variable.
  18802.  
  18803. <P>
  18804. <UL>   
  18805. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  18806. </UL><P>
  18807. <End of help on this topic>
  18808. </BODY>
  18809. </HTML>
  18810. ====== h_config_quote_all_froms =====
  18811.         FEATURE: save-will-quote-leading-froms
  18812.  
  18813. This feature controls an aspect of the Save command (and also the way
  18814. outgoing messages are saved to an FCC folder).  If set, Pine will add
  18815. a leading ">" character in front of message lines beginning with "From" 
  18816. when they are saved to another folder, including lines syntactically
  18817. distinguishable from the type of message separator line commonly used on
  18818. Unix systems.
  18819.  
  18820. The default behavior is that a ">" will be prepended only to lines
  18821. beginning with "From " that might otherwise be confused with a message
  18822. separator line on Unix systems.  If pine is the only mail program you use,
  18823. this default is reasonable.  If another program you use has trouble
  18824. displaying a message with an unquoted "From " saved by Pine, you should
  18825. enable this feature.  This feature only applies to the common Unix mailbox
  18826. format that uses message separator lines beginning with "From ".  If
  18827. Pine has been configured to use a different mailbox format (possibly
  18828. incompatible with other mail programs), then this issue does not arise,
  18829. and the feature is irrelevant.
  18830.  
  18831. <End of help on this topic>
  18832. ====== h_config_normal_color =====
  18833. <HTML>
  18834. <HEAD>
  18835. <TITLE>OPTION: Normal Color</TITLE>
  18836. </HEAD>
  18837. <BODY>
  18838. <H1>OPTION: Normal Color</H1>
  18839.  
  18840. Sets the color Pine normally uses.
  18841. The foreground color is the color of the actual character and the
  18842. background color is the color of the area behind the character.
  18843. <P>
  18844. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18845. <P>
  18846. Look <A HREF="h_edit_nav_cmds">here</A>
  18847. to see the available Editing and Navigation commands.
  18848. <P>
  18849. <End of help on this topic>
  18850. </BODY>
  18851. </HTML>
  18852. ====== h_config_reverse_color =====
  18853. <HTML>
  18854. <HEAD>
  18855. <TITLE>OPTION: Reverse Color</TITLE>
  18856. </HEAD>
  18857. <BODY>
  18858. <H1>OPTION: Reverse Color</H1>
  18859.  
  18860. Sets the color Pine uses for reverse video characters.
  18861. The foreground color is the color of the actual character and the
  18862. background color is the color of the area behind the character.
  18863. <P>
  18864. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18865. <P>
  18866. Look <A HREF="h_edit_nav_cmds">here</A>
  18867. to see the available Editing and Navigation commands.
  18868. <P>
  18869. <End of help on this topic>
  18870. </BODY>
  18871. </HTML>
  18872. ====== h_config_title_color =====
  18873. <HTML>
  18874. <HEAD>
  18875. <TITLE>OPTION: Title Color</TITLE>
  18876. </HEAD>
  18877. <BODY>
  18878. <H1>OPTION: Title Color</H1>
  18879.  
  18880. Sets the color Pine uses for the titlebar (the top line on the screen).
  18881. The foreground color is the color of the actual character and the
  18882. background color is the color of the area behind the character.
  18883. By default, the Title Color is the same as the Reverse Color.
  18884. <P>
  18885. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18886. <P>
  18887. Look <A HREF="h_edit_nav_cmds">here</A>
  18888. to see the available Editing and Navigation commands.
  18889. <P>
  18890. <End of help on this topic>
  18891. </BODY>
  18892. </HTML>
  18893. ====== h_config_status_color =====
  18894. <HTML>
  18895. <HEAD>
  18896. <TITLE>OPTION: Status Color</TITLE>
  18897. </HEAD>
  18898. <BODY>
  18899. <H1>OPTION: Status Color</H1>
  18900.  
  18901. Sets the color Pine uses for status messages written to the message
  18902. line near the bottom of the screen.
  18903. The foreground color is the color of the actual character and the
  18904. background color is the color of the area behind the character.
  18905. By default, the Status Color is the same as the Reverse Color.
  18906. <P>
  18907. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18908. <P>
  18909. Look <A HREF="h_edit_nav_cmds">here</A>
  18910. to see the available Editing and Navigation commands.
  18911. <P>
  18912. <End of help on this topic>
  18913. </BODY>
  18914. </HTML>
  18915. ====== h_config_index_color =====
  18916. <HTML>
  18917. <HEAD>
  18918. <TITLE>OPTION: Index Colors</TITLE>
  18919. </HEAD>
  18920. <BODY>
  18921. <H1>OPTION: Index Colors</H1>
  18922.  
  18923. You may add color to the single character symbols which give the status
  18924. of each message in the MESSAGE INDEX.
  18925. By default the characters "+", "*", "D",
  18926. "A", and "N" show up near the left hand side of the
  18927. screen depending on whether the message is addressed to you, and whether
  18928. the message is marked Important, is Deleted, is Answered, or is New.
  18929. The color for each of those characters may be specified by setting the
  18930. "Index-to-me" Symbol Color,
  18931. the "Index-important" Symbol Color,
  18932. the "Index-deleted" Symbol Color,
  18933. the "Index-answered" Symbol Color,
  18934. and the "Index-new" Symbol Color.
  18935. There are also two other symbol colors called "Index-recent"
  18936. and "Index-unseen".
  18937. These two colors will only be used if you have configured your
  18938. "<A HREF="h_config_index_format">Index-Format</A>" option
  18939. to include the "IMAPSTATUS" token.
  18940. <P>
  18941. Besides coloring the message status symbols, you may also color the
  18942. entire index line.
  18943. This is done by using the
  18944. <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
  18945. may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
  18946. <P>
  18947. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18948. <P>
  18949. Look <A HREF="h_edit_nav_cmds">here</A>
  18950. to see the available Editing and Navigation commands.
  18951. <P>
  18952. <End of help on this topic>
  18953. </BODY>
  18954. </HTML>
  18955. ====== h_config_keylabel_color =====
  18956. <HTML>
  18957. <HEAD>
  18958. <TITLE>OPTION: KeyLabel Color</TITLE>
  18959. </HEAD>
  18960. <BODY>
  18961. <H1>OPTION: KeyLabel Color</H1>
  18962.  
  18963. Sets the color Pine uses for the labels of the keys in the two-line
  18964. menu at the bottom of the screen.
  18965. For example, some of the screens have a "P PrevMsg" command.
  18966. This option sets the color used when displaying "PrevMsg".
  18967. The foreground color is the color of the actual character and the
  18968. background color is the color of the area behind the character.
  18969. By default, the KeyLabel Color is the same as the Normal Color.
  18970. <P>
  18971. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18972. <P>
  18973. Look <A HREF="h_edit_nav_cmds">here</A>
  18974. to see the available Editing and Navigation commands.
  18975. <P>
  18976. <End of help on this topic>
  18977. </BODY>
  18978. </HTML>
  18979. ====== h_config_keyname_color =====
  18980. <HTML>
  18981. <HEAD>
  18982. <TITLE>OPTION: KeyName Color</TITLE>
  18983. </HEAD>
  18984. <BODY>
  18985. <H1>OPTION: KeyName Color</H1>
  18986.  
  18987. Sets the color Pine uses for the names of the keys in the two-line
  18988. menu at the bottom of the screen.
  18989. For example, some of the screens have a "P PrevMsg" command.
  18990. This option sets the color used when displaying the "P".
  18991. The foreground color is the color of the actual character and the
  18992. background color is the color of the area behind the character.
  18993. By default, the KeyName Color is the same as the Reverse Color.
  18994. <P>
  18995. <A HREF="h_color_setup">Descriptions of the available commands</A>
  18996. <P>
  18997. Look <A HREF="h_edit_nav_cmds">here</A>
  18998. to see the available Editing and Navigation commands.
  18999. <P>
  19000. <End of help on this topic>
  19001. </BODY>
  19002. </HTML>
  19003. ====== h_config_slctbl_color =====
  19004. <HTML>
  19005. <HEAD>
  19006. <TITLE>OPTION: Selectable Item Color</TITLE>
  19007. </HEAD>
  19008. <BODY>
  19009. <H1>OPTION: Selectable Item Color</H1>
  19010.  
  19011. Sets the color Pine uses for selectable items, such as URLs.
  19012. The foreground color is the color of the actual character and the
  19013. background color is the color of the area behind the character.
  19014. By default, the Selectable Item Color is the same as the Normal Color,
  19015. except that it is bold.
  19016. <P>
  19017. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19018. <P>
  19019. Look <A HREF="h_edit_nav_cmds">here</A>
  19020. to see the available Editing and Navigation commands.
  19021. <P>
  19022. <End of help on this topic>
  19023. </BODY>
  19024. </HTML>
  19025. ====== h_config_quote_color =====
  19026. <HTML>
  19027. <HEAD>
  19028. <TITLE>OPTION: Quote Colors</TITLE>
  19029. </HEAD>
  19030. <BODY>
  19031. <H1>OPTION: Quote Colors</H1>
  19032.  
  19033. Sets the colors Pine uses for coloring quoted text in the MESSAGE TEXT
  19034. screen.
  19035. If a line begins with a > character (or space followed by >)
  19036. it is considered a quote.
  19037. That line will be given the Quote1 Color (first level quote).
  19038. If there is a second level of quoting then the Quote2 Color will be used.
  19039. Pine considers there to be a second level of quoting if that first > is
  19040. followed by another > (or space followed by >).
  19041. If there are characters other than whitespace and > signs, then it isn't
  19042. considered another level of quoting.
  19043. Similarly, if there is a third level of quoting the Quote3 Color will be
  19044. used.
  19045. If there are more levels after that the Quote Colors are reused.
  19046. If you define all three colors then it would repeat like Color1, Color2, Color3,
  19047. Color1, Color2, Color3, ...
  19048. If you only define the first two it would be
  19049. Color1, Color2, Color1, Color2, ...
  19050. If you define only the Quote1 Color, then the entire quote would be that
  19051. color regardless of the quoting levels.
  19052. If you define a Quote Color to be the same as the Normal Color, that's treated
  19053. the same as if you didn't define it at all.
  19054. By default, the Quote Colors are the same as the Normal Color.
  19055. <P>
  19056. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19057. <P>
  19058. Look <A HREF="h_edit_nav_cmds">here</A>
  19059. to see the available Editing and Navigation commands.
  19060. <P>
  19061. <End of help on this topic>
  19062. </BODY>
  19063. </HTML>
  19064. ====== h_config_prompt_color =====
  19065. <HTML>
  19066. <HEAD>
  19067. <TITLE>OPTION: Prompt Color</TITLE>
  19068. </HEAD>
  19069. <BODY>
  19070. <H1>OPTION: Prompt Color</H1>
  19071.  
  19072. Sets the color Pine uses for confirmation prompts and questions which
  19073. appear in the status line near the bottom of the screen.
  19074. The foreground color is the color of the actual character and the
  19075. background color is the color of the area behind the character.
  19076. By default, the Prompt Color is the same as the Reverse Color.
  19077. <P>
  19078. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19079. <P>
  19080. Look <A HREF="h_edit_nav_cmds">here</A>
  19081. to see the available Editing and Navigation commands.
  19082. <P>
  19083. <End of help on this topic>
  19084. </BODY>
  19085. </HTML>
  19086. ====== h_config_incol =====
  19087. <HTML>
  19088. <HEAD>
  19089. <TITLE>OPTION: Index Line Color</TITLE>
  19090. </HEAD>
  19091. <BODY>
  19092. <H1>OPTION: Index Line Color</H1>
  19093.  
  19094. This option is used to set the color of a line in the index when the
  19095. message for that line matches the Pattern.
  19096. This colors the whole index line, except possibly the status letters
  19097. which may be colored separately using the
  19098. <A HREF="h_color_setup">Setup Kolor</A> screen.
  19099. The foreground color is the color of the actual characters and the
  19100. background color is the color of the area behind the characters.
  19101. <P>
  19102. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19103. <P>
  19104. Look <A HREF="h_edit_nav_cmds">here</A>
  19105. to see the available Editing and Navigation commands.
  19106. <P>
  19107. <End of help on this topic>
  19108. </BODY>
  19109. </HTML>
  19110. ====== h_config_dflt_color =====
  19111. <HTML>
  19112. <HEAD>
  19113. <TITLE>OPTION: Default Color</TITLE>
  19114. </HEAD>
  19115. <BODY>
  19116. <H1>OPTION: Default Color</H1>
  19117.  
  19118. Setting default will cause the color to be the default color.
  19119. Unsetting default is normally done by choosing a color, but in some cases
  19120. you may want to declare the current default color to be your non-default
  19121. choice.
  19122. For example, the default Title Color is the same as the Reverse Color.
  19123. Whenever the Reverse Color changes the Title Color will also change, unless
  19124. you've changed it or unset the default box.
  19125. <P>
  19126. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19127. <P>
  19128. Look <A HREF="h_edit_nav_cmds">here</A>
  19129. to see the available Editing and Navigation commands.
  19130. <P>
  19131. <End of help on this topic>
  19132. </BODY>
  19133. </HTML>
  19134. ====== h_config_bold_slctbl =====
  19135. <HTML>
  19136. <HEAD>
  19137. <TITLE>OPTION: Bold</TITLE>
  19138. </HEAD>
  19139. <BODY>
  19140. <H1>OPTION: Bold</H1>
  19141.  
  19142. The color for this particular section may have the Bold attribute turned
  19143. on or off.
  19144. Setting bold will cause the characters to be bold.
  19145. <P>
  19146. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19147. <P>
  19148. Look <A HREF="h_edit_nav_cmds">here</A>
  19149. to see the available Editing and Navigation commands.
  19150. <P>
  19151. <End of help on this topic>
  19152. </BODY>
  19153. </HTML>
  19154. ====== h_config_customhdr_color =====
  19155. <HTML>
  19156. <HEAD>
  19157. <TITLE>OPTION: Viewer Header Colors</TITLE>
  19158. </HEAD>
  19159. <BODY>
  19160. <H1>OPTION: Viewer Header Colors</H1>
  19161.  
  19162. Sets the color Pine uses for header fields in the MESSAGE TEXT screen.
  19163. For example, you may set the color of the Subject header or the From header.
  19164. The foreground color is the color of the actual character and the
  19165. background color is the color of the area behind the character.
  19166. <P>
  19167. For Header Colors,
  19168. there is an additional line on the
  19169. screen labeled "Pattern to match".
  19170. If you leave that blank, then the whole field for that header will
  19171. be colored.
  19172. However, if you give a pattern to match, the coloring will only take place
  19173. if there is a match for that pattern in the value of the field.
  19174. For example, if you are working on a color for the Subject header and
  19175. you fill in a pattern of "important", then only Subjects which
  19176. contain the word "important" will be colored.
  19177. <P>
  19178. If the pattern you enter is a comma-separated list of patterns, then coloring
  19179. happens if any of those patterns matches.
  19180. <P>
  19181. <A HREF="h_color_setup">Descriptions of the available commands</A>
  19182. <P>
  19183. Look <A HREF="h_edit_nav_cmds">here</A>
  19184. to see the available Editing and Navigation commands.
  19185. <P>
  19186. <End of help on this topic>
  19187. </BODY>
  19188. </HTML>
  19189. ====== h_config_customhdr_pattern =====
  19190. <HTML>
  19191. <HEAD>
  19192. <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
  19193. </HEAD>
  19194. <BODY>
  19195. <H1>OPTION: Viewer Header Color Pattern</H1>
  19196.  
  19197. If you leave this blank, then the whole field for the header will
  19198. be colored.
  19199. If you give a pattern to match, the coloring will only take place
  19200. if there is a match for that pattern in the value of the field.
  19201. For example, if you are working on a color for the Subject header and
  19202. you fill in a pattern of "important", then only Subjects which
  19203. contain the word "important" will be colored.
  19204. <P>
  19205. For address headers (like From and To) and for the Newsgroups header,
  19206. a pattern match will cause only the matched addresses or newsgroups to be
  19207. colored.
  19208. If there is no pattern to match, then all of the addresses or newsgroups
  19209. in the relevant header will be colored.
  19210. <P>
  19211. The matching pattern may be a comma-separated list of patterns to match
  19212. instead of a single pattern.
  19213. For example, you could use the pattern "important,urgent" which would
  19214. cause a match if either the word "important" or the word
  19215. "urgent" appeared in the value of the header.
  19216. You could list several comma-separated email addresses in the Header
  19217. From Color pattern so that those addresses will be colored when any of
  19218. them appear in the From header.
  19219. <P>
  19220. To add a new matching pattern or change the existing pattern use the 
  19221. <!--chtml if pinemode="function_key"-->
  19222. "F4"
  19223. <!--chtml else-->
  19224. "C"
  19225. <!--chtml endif-->
  19226. "Change" command which is available when the "Pattern to
  19227. match" line is hilighted.
  19228. The
  19229. <!--chtml if pinemode="function_key"-->
  19230. "F10"
  19231. <!--chtml else-->
  19232. "D"
  19233. <!--chtml endif-->
  19234. "Delete" command may be used to quickly remove all patterns
  19235. for a particular header.
  19236. <P>
  19237. <End of help on this topic>
  19238. </BODY>
  19239. </HTML>
  19240. ====== h_color_setup =====
  19241. <HTML>
  19242. <HEAD>
  19243. <TITLE>SETUP COLOR COMMANDS</TITLE>
  19244. </HEAD>
  19245. <BODY>
  19246. <H1>SETUP COLOR COMMANDS</H1>
  19247. <!--chtml if pinemode="function_key"-->
  19248. <PRE>
  19249. Available Commands -- Group 1
  19250. -------------------------------
  19251. F1  Display this help text
  19252. F2  Show other available commands
  19253. F3  Exit to Main Menu
  19254. F4  Select the highlighted foreground or background color
  19255. F5  Move to previous line
  19256. F6  Move to next line
  19257. F7  Previous page
  19258. F8  Next page
  19259. F9  Add a config section for a header field
  19260. F10 Restore all default colors (for all sections)
  19261. F11 Print color configuration screen
  19262. F12 Whereis (search for word)
  19263.  
  19264. Available Commands -- Group 2
  19265. -------------------------------
  19266. F1  Display this help text
  19267. F2  Show other available commands
  19268. F5  Delete config section for highlighted header field
  19269. F6  Shuffle the order of Header Color sections
  19270. </PRE>
  19271. <!--chtml else-->
  19272. <PRE>
  19273. General commands
  19274. -------------------------------------------------
  19275.  ?  Display this help text     E  Exit back to Main Menu
  19276.  P  Previous Line              N  Next Line
  19277.  -  Previous page             Spc Next page
  19278.  W  WhereIs (search for word)  %  Print color configuration screen
  19279.  
  19280. Color Setup Commands
  19281. ------------------------------------------------
  19282.  *  Select the highlighted foreground or background color
  19283.  A  Add a config section for a header field
  19284.  D  Delete config section for highlighted header field
  19285.  R  Restore all default colors (for all sections)
  19286.  $  Shuffle the order of Header Color sections
  19287. </PRE>
  19288. <!--chtml endif-->
  19289.  
  19290. <H2>Description of the Setup Color Screen</H2>
  19291.  
  19292. From this screen you may turn on color and set the colors of
  19293. various parts of the Pine display.
  19294. For help on turning on color move your cursor into the Color Style section
  19295. at the top of the Setup Color screen and ask for help.
  19296.  
  19297. <P>
  19298. Each section of the rest of the color setup screen has a title
  19299. which describes briefly what effect the setting will have.
  19300. For example, the Status Color section sets the color for status messages.
  19301. Read the help in each section for a description of the effect of setting
  19302. the color for that section.
  19303. Highlight the section you want to change by moving the cursor into it, then
  19304. select the foreground and background colors desired by using the Next and
  19305. Prev keys to highlight the color, and the * command to select it.
  19306. <P>
  19307. To set a color to its default value, set the X in the Default line at
  19308. the bottom of the list of colors.
  19309. Most colors default to being the same as either the Normal Color or the
  19310. Reverse Color.
  19311. See the help for the particular color section to see which.
  19312. <P>
  19313.  
  19314. Besides coloring the specific fields that Pine knows about, you may also
  19315. color specific header fields when viewing a message in the MESSAGE TEXT
  19316. screen.
  19317. For example, you may color the Subject header a particular color.
  19318. There are a few commands for use with headers.
  19319. The "AddHeader" command adds a section to the color
  19320. configuration screen which allows you to set the color for that header.
  19321. You'll be asked for the name of the header field you want to color.
  19322. If you wanted to color the Subject, you would answer
  19323. with the word "subject".
  19324. Once you've added a header field, the color setting works just like the
  19325. other color fields, except that there is an additional line on the
  19326. config screen labeled "Pattern to match".
  19327. If you leave that blank, then the whole field for that header will always
  19328. be colored.
  19329. However, if you give a pattern to match, the coloring will only take place
  19330. if there is a match for that pattern in the value of the field.
  19331. For example, if you are working on a color for the Subject header and
  19332. you fill in a pattern of "important", then only Subjects which
  19333. contain the word "important" will be colored.
  19334. <P>
  19335. The "DeleteHdr" command removes a header section from the
  19336. configuration altogether.
  19337. The "Shuffle" command changes the order of header sections.
  19338. This is only necessary if you use header sections with pattern fields.
  19339. For example, if you have two Subject sections, one with one pattern and
  19340. another with another pattern, and the subject for a particular message
  19341. happens to match both, then the color from the first match is used.
  19342. <P>
  19343.  
  19344. The command "RestoreDefs" will restore all of the default colors.
  19345. Each section will change to the default value used for that section when
  19346. color is first enabled.
  19347. When you restore all default colors the color settings for the Header Colors
  19348. will be unset (since that's the default), but the header fields you've
  19349. added will remain so that you may easily reset them.
  19350. In order to get rid of them completely you'd have to use
  19351. the "DeleteHdr" command.
  19352.  
  19353. <P><UL>
  19354. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19355. </UL><P>
  19356. <End of help on this topic>
  19357. </BODY>
  19358. </HTML>
  19359. ====== h_config_news_uses_recent ======
  19360. <HTML>
  19361. <HEAD>
  19362. <TITLE>FEATURE: news-approximates-new-status</TITLE>
  19363. </HEAD>
  19364. <BODY>
  19365. <H1>FEATURE: news-approximates-new-status</H1>
  19366.  
  19367. This feature causes certain messages to be marked as "New" in the
  19368. MESSAGE INDEX of newsgroups.
  19369.  
  19370. <P>
  19371.  
  19372. When opening a newsgroup, Pine will consult your "newsrc" file and
  19373. determine the last message you have previously disposed of via the "D"
  19374. key.  If this feature is set, any subsequent messages will be shown in the
  19375. Index with an "N", and the first of these messages will be highlighted.
  19376. Although this is only an approximation of true "New" or "unseen"
  19377. status, it provides a useful cue to distinguish more-or-less recent
  19378. messages from those you have seen previously, but are not yet ready to
  19379. mark deleted.
  19380.  
  19381. <P>
  19382.  
  19383. Background: your "newsrc" file (used to store message status information
  19384. for newsgroups) is only capable of storing a single flag, and Pine uses
  19385. this to record whether or not you are "done with" a message, as
  19386. indicated by marking the message as "Deleted".  Unfortunately, this
  19387. means that Pine has no way to record exactly which messages you have
  19388. previously seen, so it normally does not show the "N" status flag for
  19389. any messages in a newsgroup. This feature enables a starting
  19390. *approximation* of seen/unseen status that may be useful.
  19391. <P>
  19392. <End of help on this topic>
  19393. </BODY>
  19394. </HTML>
  19395. ====== h_config_expose_hidden_config =====
  19396. <HTML>
  19397. <HEAD>
  19398. <TITLE>FEATURE: expose-hidden-config</TITLE>
  19399. </HEAD>
  19400. <BODY>
  19401. <H1>FEATURE: expose-hidden-config</H1>
  19402.  
  19403. If set, this causes configuration options and features which are normally
  19404. hidden from view to be editable in the Setup/Config screen.
  19405.  
  19406. <P>
  19407. The purpose of this feature is to allow you to change configuration
  19408. features and variables which are normally hidden.
  19409. This is particularly useful if you are using a remote configuration,
  19410. where it is impossible to edit the contents manually, but it may also be used
  19411. on a local pinerc configuration file.
  19412. <P>
  19413. If set, several configuration variables and features which are normally
  19414. hidden from view will show up in the Setup/Configuration screen.
  19415. They will be at the bottom of the configuration screen.
  19416. You can find them by searching for the word "hidden".
  19417. <P>
  19418. This feature will usually be used by setting it on the command line.
  19419. Any feature may be turned on temporarily for a particular <EM>Pine</EM>
  19420. session from the command line. For example, this feature may be temporarily set
  19421. with the syntax
  19422. <P>
  19423.  
  19424. <BLOCKQUOTE>
  19425. pine -feature-list=expose-hidden-config
  19426. </BLOCKQUOTE>
  19427.  
  19428. You could also set this feature in your configuration file (it is one
  19429. of the hidden features which can be set) so that the hidden configuration
  19430. always shows up.
  19431. <P>
  19432.  
  19433. Note that this is an advanced feature which should be used with care.
  19434. The reason that this part of the configuration is normally hidden is because
  19435. there is a significant potential for causing problems if you change these
  19436. variables.
  19437. If something breaks after a change try changing it back to see if that is
  19438. what is causing the problem.
  19439. There are also some variables which are normally hidden because they are
  19440. manipulated through <EM>Pine</EM> in other ways.
  19441. For example, colors are normally set using the Setup/Kolors screen and
  19442. the "address-book" variable is normally set using
  19443. the Setup/AddressBooks screen, so there is little reason to edit these directly.
  19444. The "incoming-folders" variable is normally changed by using
  19445. the Add, Delete, and Rename commands in the FOLDER LIST screen,
  19446. and the "last-time-prune-questioned" variable is normally used
  19447. internally by <EM>Pine</EM> and not set directly by the user.
  19448. <P>
  19449. <UL>   
  19450. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19451. </UL><P>
  19452. <End of help on this topic>
  19453. </BODY>
  19454. </HTML>
  19455. ====== h_config_disable_signature_edit =====
  19456. <HTML>
  19457. <HEAD>
  19458. <TITLE>FEATURE: disable-signature-edit-cmd</TITLE>
  19459. </HEAD>
  19460. <BODY>
  19461. <H1>FEATURE: disable-signature-edit-cmd</H1>
  19462.  
  19463. If set, this disables the editing of signature files from within
  19464. the Setup/Config screen.
  19465. <P>
  19466. <UL>   
  19467. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19468. </UL><P>
  19469. <End of help on this topic>
  19470. </BODY>
  19471. </HTML>
  19472. ====== h_config_disable_roles_templateedit =====
  19473. <HTML>
  19474. <HEAD>
  19475. <TITLE>FEATURE: disable-roles-template-edit</TITLE>
  19476. </HEAD>
  19477. <BODY>
  19478. <H1>FEATURE: disable-roles-template-edit</H1>
  19479.  
  19480. If set, this disables the editing of template files within the
  19481. Role setup screen.
  19482. <P>
  19483. <UL>   
  19484. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19485. </UL><P>
  19486. <End of help on this topic>
  19487. </BODY>
  19488. </HTML>
  19489. ====== h_config_disable_roles_sigedit =====
  19490. <HTML>
  19491. <HEAD>
  19492. <TITLE>FEATURE: disable-roles-sig-edit</TITLE>
  19493. </HEAD>
  19494. <BODY>
  19495. <H1>FEATURE: disable-roles-sig-edit</H1>
  19496.  
  19497. If set, this disables the editing of signature files within the
  19498. Role setup screen.
  19499. <P>
  19500. <UL>   
  19501. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19502. </UL><P>
  19503. <End of help on this topic>
  19504. </BODY>
  19505. </HTML>
  19506. ====== h_config_disable_roles_setup =====
  19507. <HTML>
  19508. <HEAD>
  19509. <TITLE>FEATURE: disable-roles-setup</TITLE>
  19510. </HEAD>
  19511. <BODY>
  19512. <H1>FEATURE: disable-roles-setup</H1>
  19513.  
  19514. If set, this disables the Setup/Rules/Roles command.
  19515. <P>
  19516. <UL>   
  19517. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19518. </UL><P>
  19519. <End of help on this topic>
  19520. </BODY>
  19521. </HTML>
  19522. ====== h_config_disable_pipes_in_templates =====
  19523. <HTML>
  19524. <HEAD>
  19525. <TITLE>FEATURE: disable-pipes-in-templates</TITLE>
  19526. </HEAD>
  19527. <BODY>
  19528. <H1>FEATURE: disable-pipes-in-templates</H1>
  19529.  
  19530. By default, if a template file name is followed by a vertical bar (|) then
  19531. that causes the file to be executed to produce the text for the template.
  19532. If this feature is set, then this is not allowed.
  19533. <P>
  19534. <UL>   
  19535. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19536. </UL><P>
  19537. <End of help on this topic>
  19538. </BODY>
  19539. </HTML>
  19540. ====== h_config_disable_pipes_in_sigs =====
  19541. <HTML>
  19542. <HEAD>
  19543. <TITLE>FEATURE: disable-pipes-in-sigs</TITLE>
  19544. </HEAD>
  19545. <BODY>
  19546. <H1>FEATURE: disable-pipes-in-sigs</H1>
  19547.  
  19548. By default, if a signature file name is followed by a vertical bar (|) then
  19549. that causes the file to be executed to produce the text for the signature.
  19550. If this feature is set, then this is not allowed.
  19551. <P>
  19552. <UL>   
  19553. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19554. </UL><P>
  19555. <End of help on this topic>
  19556. </BODY>
  19557. </HTML>
  19558. ====== h_config_disable_password_cmd =====
  19559. <HTML>
  19560. <HEAD>
  19561. <TITLE>FEATURE: disable-password-cmd</TITLE>
  19562. </HEAD>
  19563. <BODY>
  19564. <H1>FEATURE: disable-password-cmd</H1>
  19565.  
  19566. If set, then the Setup/Newpassword command is disabled.
  19567. <P>
  19568. <UL>   
  19569. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19570. </UL><P>
  19571. <End of help on this topic>
  19572. </BODY>
  19573. </HTML>
  19574. ====== h_config_disable_kb_lock =====
  19575. <HTML>
  19576. <HEAD>
  19577. <TITLE>FEATURE: disable-keyboard-lock-cmd</TITLE>
  19578. </HEAD>
  19579. <BODY>
  19580. <H1>FEATURE: disable-keyboard-lock-cmd</H1>
  19581.  
  19582. If set, then the Keyboard Lock command is removed from the Main Menu.
  19583. <P>
  19584. <UL>   
  19585. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19586. </UL><P>
  19587. <End of help on this topic>
  19588. </BODY>
  19589. </HTML>
  19590. ====== h_config_disable_config_cmd =====
  19591. <HTML>
  19592. <HEAD>
  19593. <TITLE>FEATURE: disable-config-cmd</TITLE>
  19594. </HEAD>
  19595. <BODY>
  19596. <H1>FEATURE: disable-config-cmd</H1>
  19597.  
  19598. If set, then the Setup/Config screen is disabled.
  19599. <P>
  19600. <UL>   
  19601. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19602. </UL><P>
  19603. <End of help on this topic>
  19604. </BODY>
  19605. </HTML>
  19606. ====== h_config_allow_chg_from =====
  19607. <HTML>
  19608. <HEAD>
  19609. <TITLE>FEATURE: allow-changing-from</TITLE>
  19610. </HEAD>
  19611. <BODY>
  19612. <H1>FEATURE: allow-changing-from</H1>
  19613.  
  19614. This feature affects Pine's handling of the "From:" header field
  19615. in the "<A HREF="h_config_custom_hdrs">Customized-Headers</A>" configuration
  19616. option.
  19617. <P>
  19618. If this feature is set then the From line can be changed just like
  19619. all the other header fields that can be changed.
  19620. This feature defaults to <EM>ON</EM>.
  19621. <P>
  19622. Even with this feature turned ON (the default) you will not be able 
  19623. to change the From header unless you add it to your list of
  19624. <A HREF="h_config_custom_hdrs">Customized-Headers</A>.
  19625. You may also want to change the
  19626. <A HREF="h_config_comp_hdrs">Default-Composer-Headers</A>
  19627. if you want the From header to always show up in the composer without
  19628. having to type the Rich Headers command first.
  19629. <P>
  19630. Note that many sites restrict the use of this feature in order to
  19631. reduce the chance of falsified addresses and misdirected mail.
  19632. <P>
  19633. <UL>   
  19634. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19635. </UL><P>
  19636. <End of help on this topic>
  19637. </BODY>
  19638. </HTML>
  19639. ====== h_config_disable_busy =====
  19640. <HTML>
  19641. <HEAD>
  19642. <TITLE>FEATURE: disable-busy-alarm</TITLE>
  19643. </HEAD>
  19644. <BODY>
  19645. <H1>FEATURE: disable-busy-alarm</H1>
  19646.  
  19647. If set, the spinning bar that sometimes appears in the status line will not
  19648. appear when Pine is busy. This might be useful if it is suspected that
  19649. the alarm(2) system calls that Pine uses to implement the busy spinner
  19650. are suspected of causing a problem.
  19651. <P>
  19652. <UL>   
  19653. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19654. </UL><P>
  19655. <End of help on this topic>
  19656. </BODY>
  19657. </HTML>
  19658. ====== h_config_mailcap_params =====
  19659. <HTML>
  19660. <HEAD>
  19661. <TITLE>FEATURE: enable-mailcap-param-substitution</TITLE>
  19662. </HEAD>
  19663. <BODY>
  19664. <H1>FEATURE: enable-mailcap-param-substitution</H1>
  19665.  
  19666. If set, this will allow mailcap named parameter substitution to occur
  19667. in mailcap entries.
  19668. By default, this is turned off to prevent security problems which may occur
  19669. with some incorrect mailcap configurations.
  19670. For more information, see RFC1524 and look for "named parameters" in the
  19671. text of the RFC.
  19672. <P>
  19673. <UL>   
  19674. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19675. </UL><P>
  19676. <End of help on this topic>
  19677. </BODY>
  19678. </HTML>
  19679. ====== h_config_no_bezerk_zone =====
  19680. <HTML>
  19681. <HEAD>
  19682. <TITLE>FEATURE: quell-berkeley-format-timezone</TITLE>
  19683. </HEAD>
  19684. <BODY>
  19685. <H1>FEATURE: quell-berkeley-format-timezone</H1>
  19686.  
  19687. POSIX mandates a timezone in UNIX mailbox format folder delimiters
  19688. (the line which begins with From <SPACE>).
  19689. Some versions of Berkeley mail have trouble with this, and don't recognize
  19690. the line as a message delimiter.
  19691. If this feature is set, the timezone will be left off the delimiter line.
  19692. <P>
  19693. <UL>   
  19694. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19695. </UL><P>
  19696. <End of help on this topic>
  19697. </BODY>
  19698. </HTML>
  19699. ====== h_config_quell_imap_env =====
  19700. <HTML>
  19701. <HEAD>
  19702. <TITLE>FEATURE: quell-imap-envelope-update</TITLE>
  19703. </HEAD>
  19704. <BODY>
  19705. <H1>FEATURE: quell-imap-envelope-update</H1>
  19706.  
  19707. In the MESSAGE INDEX screen, if the open folder is being accessed
  19708. using IMAP, Pine normally tries to paint the index lines on the screen
  19709. as soon as the information arrives from the IMAP server.
  19710. This means that the index information makes it onto the screen more quickly
  19711. than it otherwise would.
  19712. This sometimes results in behavior that bothers some users.
  19713. For example, when paging to a new page of the index, it may be possible for
  19714. the lines to be painted on the screen in a random order, rather than from
  19715. top to bottom.
  19716. <P>
  19717.  
  19718. Setting this feature causes Pine to wait for all of the information
  19719. to be gathered before it paints the index screen.
  19720. Once it collects all of the information, the screen will be painted quickly
  19721. from top to bottom.
  19722. <P>
  19723. <UL>   
  19724. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19725. </UL><P>
  19726. <End of help on this topic>
  19727. </BODY>
  19728. </HTML>
  19729. ====== h_config_quell_news_env =====
  19730. <HTML>
  19731. <HEAD>
  19732. <TITLE>FEATURE: quell-news-envelope-update</TITLE>
  19733. </HEAD>
  19734. <BODY>
  19735. <H1>FEATURE: quell-news-envelope-update</H1>
  19736.  
  19737. In the MESSAGE INDEX screen, if the open folder is being accessed
  19738. using NNTP (News), Pine normally tries to paint the index lines on the screen
  19739. as soon as the information arrives from the NNTP server.
  19740. This means that the index information makes it onto the screen more quickly
  19741. than it otherwise would.
  19742. This sometimes results in behavior that bothers some users.
  19743. For example, when paging to a new page of the index, it may be possible for
  19744. the lines to be painted on the screen in a random order, rather than from
  19745. top to bottom.
  19746. <P>
  19747.  
  19748. Setting this feature causes Pine to wait for all of the information
  19749. to be gathered before it paints the index screen.
  19750. Once it collects all of the information, the screen will be painted quickly
  19751. from top to bottom.
  19752. <P>
  19753. <UL>   
  19754. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19755. </UL><P>
  19756. <End of help on this topic>
  19757. </BODY>
  19758. </HTML>
  19759. ====== h_config_quell_partial =====
  19760. <HTML>
  19761. <HEAD>
  19762. <TITLE>FEATURE: quell-partial-fetching</TITLE>
  19763. </HEAD>
  19764. <BODY>
  19765. <H1>FEATURE: quell-partial-fetching</H1>
  19766.  
  19767. Partial fetching is a feature of the IMAP protocol.
  19768. By default, Pine
  19769. will use partial fetching when copying the contents of a message or attachment
  19770. from the IMAP server to Pine.
  19771. This means that the fetch will be done in many
  19772. small chunks instead of one big chunk. The main benefit of this approach is
  19773. that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
  19774. to stop the fetch early. In some cases partial fetching may cause a performance
  19775. problem so that the fetching of data takes significantly longer when partial
  19776. fetching is used. Turning on this feature will turn off partial fetching.
  19777. <P>
  19778. <UL>   
  19779. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19780. </UL><P>
  19781. <End of help on this topic>
  19782. </BODY>
  19783. </HTML>
  19784. ====== h_config_save_aggregates =====
  19785. <HTML>
  19786. <HEAD>
  19787. <TITLE>FEATURE: save-aggregates-copy-sequence</TITLE>
  19788. </HEAD>
  19789. <BODY>
  19790. <H1>FEATURE: save-aggregates-copy-sequence</H1>
  19791.  
  19792. This feature will optimize an aggregate copy operation, if
  19793. possible, by issuing a single IMAP <EM>COPY</EM> command with a
  19794. list of the messages to be copied.
  19795. This may save network traffic when the source and destination
  19796. folders are on the same IMAP server.
  19797. <EM>However, many IMAP servers (including the UW IMAP server) do
  19798. not preserve the order of messages when this optimization is applied.</EM>
  19799. If this feature is not enabled, or if
  19800. the folders are on different IMAP servers, or the folders are local and in
  19801. different formats, Pine will copy each message individually.
  19802. <P>
  19803. <UL>   
  19804. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19805. </UL><P>
  19806. <End of help on this topic>
  19807. </BODY>
  19808. </HTML>
  19809. ====== h_config_termcap_wins =====
  19810. <HTML>
  19811. <HEAD>
  19812. <TITLE>FEATURE: termdef-takes-precedence</TITLE>
  19813. </HEAD>
  19814. <BODY>
  19815. <H1>FEATURE: termdef-takes-precedence</H1>
  19816.  
  19817. In some versions of Pine before 4.00 there was a compile-time macro
  19818. called <EM>TERMCAP_WINS</EM> which could be set to cause the <EM>termcap</EM>
  19819. or <EM>terminfo</EM> definitions to be used instead of the built in definitions.
  19820. Beginning with 4.00 this hidden runtime feature can be turned
  19821. on to accomplish the same thing.
  19822. <P>
  19823. <UL>   
  19824. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19825. </UL><P>
  19826. <End of help on this topic>
  19827. </BODY>
  19828. </HTML>
  19829. ====== h_config_suspend_spawns =====
  19830. <HTML>
  19831. <HEAD>
  19832. <TITLE>FEATURE: use-subshell-for-suspend</TITLE>
  19833. </HEAD>
  19834. <BODY>
  19835. <H1>FEATURE: use-subshell-for-suspend</H1>
  19836.  
  19837. This feature affects Pine's behavior when process suspension is enabled
  19838. and then activated via the Ctrl-Z key.  Pine suspension allows one to
  19839. temporarily interact with the operating system command "shell" 
  19840. without
  19841. quitting Pine, and then subsequently resume the still-active Pine session.
  19842. <P>
  19843.  
  19844. When the <A HREF="h_config_can_suspend">"enable-suspend"</A> feature
  19845. is set and subsequently the Ctrl-Z key
  19846. is pressed, Pine will normally suspend itself and return temporary control
  19847. to Pine's parent shell process.  However, if this feature is set, Pine
  19848. will instead create an inferior subshell process.  This is useful when the
  19849. parent process is not intended to be used interactively.  Examples include
  19850. invoking Pine via the -e argument of the Unix "xterm" program, 
  19851. or via a menu system.<P>
  19852.  
  19853. Note that one typically resumes a suspended Pine by entering the Unix
  19854. "fg" command, but if this feature is set, it will be necessary to
  19855. enter the "exit" command instead.
  19856. <P>
  19857. <UL>   
  19858. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19859. </UL><P>
  19860. <End of help on this topic>
  19861. </BODY>
  19862. </HTML>
  19863. ====== h_config_8bit_smtp =====
  19864. <HTML>
  19865. <HEAD>
  19866. <TITLE>FEATURE: enable-8bit-to-smtp-server</TITLE>
  19867. </HEAD>
  19868. <BODY>
  19869. <H1>FEATURE: enable-8bit-to-smtp-server</H1>
  19870. This feature affects Pine's behavior when sending mail.  Internet standards
  19871. require that all electronic mail messages traversing the global Internet
  19872. consist of 7bit ASCII characters unless a pair of cooperating mail 
  19873. transfer agents explicitly agree to allow 8bit messages.  In general, 
  19874. then, exchanging messages in non-ASCII characters requires MIME encoding.
  19875. <P>
  19876. However, there are now Internet standards that allow for unencoded 8bit
  19877. exchange of messages between cooperating systems.  Setting this feature
  19878. tells Pine to try to negotiate unencoded 8bit transmission during the
  19879. sending process.  Should the negotiation fail, Pine will fall back to its
  19880. ordinary encoding rules. 
  19881. <P>
  19882. Note, this feature relies on your system's mail transport agent or
  19883. configured <A HREF="h_config_smtp_server">"smtp-server"</A>
  19884. having the negotiation mechanism introduced in
  19885. "Extended SMTP" (ESMTP) and the specific extension called
  19886. "8BITMIME". 
  19887. <P>
  19888. ESMTP allows for graceful migration to upgraded mail transfer agents, but
  19889. it is possible that this feature might cause problems for some servers. 
  19890. <P><UL>
  19891. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19892. </UL>
  19893. <P><End of help on this topic>
  19894. </BODY>
  19895. </HTML>
  19896. ====== h_config_8bit_nntp =====
  19897. <HTML>
  19898. <HEAD>
  19899. <TITLE>FEATURE: enable-8bit-nntp-posting</TITLE>
  19900. </HEAD>
  19901. <BODY>
  19902. <H1>FEATURE: enable-8bit-nntp-posting</H1>
  19903.  
  19904. This feature affects Pine's behavior when posting news.  
  19905.  
  19906. <P>
  19907.  
  19908. The Internet standard for exchanging USENET news messages (RFC-1036)
  19909. specifies that USENET messages should conform to Internet mail standards
  19910. and contain only 7bit characters, but much of the news transport software
  19911. in use today is capable of successfully sending messages containing 8bit
  19912. characters.  Hence, many people believe that it is appropriate to send 8bit
  19913. news messages without any MIME encoding.
  19914.  
  19915. <P>
  19916.  
  19917. Moreover, there is no Internet standard for explicitly negotiating 8bit
  19918. transfer, as there is for Internet email.  Therefore, Pine provides the
  19919. option of posting unencoded 8bit news messages, though not as the default.
  19920. Setting this feature will turn OFF Pine's MIME encoding of newsgroup
  19921. postings that contain 8bit characters. 
  19922.  
  19923. <P>
  19924.  
  19925. Note, articles may cross a path or pass through news transport software
  19926. that is unsafe or even hostile to 8bit characters.  At best this will only
  19927. cause the posting to become garbled.  The safest way to transmit 8bit
  19928. characters is to leave Pine's MIME encoding turned on, but recipients
  19929. who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
  19930. messages.
  19931. <P>
  19932. <End of help on this topic>
  19933. </BODY>
  19934. </HTML>
  19935. ====== h_config_mark_for_cc =====
  19936. <HTML>
  19937. <HEAD>
  19938. <TITLE>FEATURE: mark-for-cc</TITLE>
  19939. </HEAD>
  19940. <BODY>
  19941. <H1>FEATURE: mark-for-cc</H1>
  19942.  
  19943. This feature affects Pine's MESSAGE INDEX display.
  19944. By default, a '+' is displayed in the first column if the
  19945. message is addressed directly to you.
  19946. When this feature is set and the message is not addressed to you, then a
  19947. '-' character is displayed if the message is instead Cc'd directly
  19948. to you.
  19949.  
  19950. <P>
  19951. <UL>   
  19952. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  19953. </UL><P>
  19954. <End of help on this topic>
  19955. </BODY>
  19956. </HTML>
  19957. ====== h_config_tab_new_only =====
  19958. <HTML>
  19959. <HEAD>
  19960. <TITLE>FEATURE: tab-visits-next-new-message-only</TITLE>
  19961. </HEAD>
  19962. <BODY>
  19963. <H1>FEATURE: tab-visits-next-new-message-only</H1>
  19964.  
  19965. This feature affects Pine's behavior when using the TAB key to move from
  19966. one message to the next.  Pine's usual behavior is to select the next
  19967. unread message or message flagged as "Important".
  19968.  
  19969. <P>
  19970.  
  19971. Setting this feature causes Pine to skip the messages flagged as important,
  19972. and select unread messages exclusively.  Tab behavior when there are no
  19973. new messages left to select remains unchanged.
  19974. <P>
  19975. <End of help on this topic>
  19976. </BODY>
  19977. </HTML>
  19978. ====== h_config_quell_dead_letter =====
  19979. <HTML>
  19980. <HEAD>
  19981. <TITLE>FEATURE: quell-dead-letter-on-cancel</TITLE>
  19982. </HEAD>
  19983. <BODY>
  19984. <H1>FEATURE: quell-dead-letter-on-cancel</H1>
  19985.  
  19986. This feature affects Pine's behavior when you cancel a message being
  19987. composed.  Pine's usual behavior is to write the canceled message to
  19988. a file named 
  19989. <!--chtml if pinemode="os_windows"-->
  19990. "DEADLETR",
  19991. <!--chtml else-->
  19992. "dead.letter" in your home directory,
  19993. <!--chtml endif-->
  19994. overwriting any previous message. Under
  19995. some conditions (some routine), this can introduce a noticeable delay.
  19996. Setting this feature will cause Pine NOT to write canceled compositions
  19997. into the file.
  19998. <P>
  19999. NOTE: Enabling this feature means NO record of canceled messages is
  20000. maintained.
  20001. <P>
  20002. <UL>   
  20003. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20004. </UL><P>
  20005. <End of help on this topic>
  20006. </BODY>
  20007. </HTML>
  20008. ====== h_config_quell_beeps =====
  20009. <HTML>
  20010. <HEAD>
  20011. <TITLE>FEATURE: quell-status-message-beeping</TITLE>
  20012. </HEAD>
  20013. <BODY>
  20014. <H1>FEATURE: quell-status-message-beeping</H1>
  20015.  
  20016. This feature affects Pine's behavior when it displays status message
  20017. (e.g., Error complaints, New mail warnings, etc).  Setting this feature
  20018. will not affect the display of such messages, but will cause those that
  20019. emit a beep to become silent.
  20020.  
  20021. <P>
  20022. <UL>   
  20023. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20024. </UL><P>
  20025. <End of help on this topic>
  20026. </BODY>
  20027. </HTML>
  20028. ====== h_config_quell_lock_failure_warnings =====
  20029. <HTML>
  20030. <HEAD>
  20031. <TITLE>FEATURE: quell-lock-failure-warnings</TITLE>
  20032. </HEAD>
  20033. <BODY>
  20034. <H1>FEATURE: quell-lock-failure-warnings</H1>
  20035.  
  20036. This feature affects Pine's behavior when it encounters a problem
  20037. acquiring a mail folder lock.  Typically, a secondary file associated
  20038. with the mail folder being opened is created as part of the locking
  20039. process.  On some systems, such file creation has been administratively
  20040. precluded by the system configuration.
  20041. <P>
  20042. Pine issues a warning when such failures occur, which can become bothersome
  20043. if the system is configured to disallow such actions.  Setting this
  20044. feature causes Pine to remain silent when this part of lock creation fails.
  20045. <P>
  20046. WARNING: systems that have been configured in a way that precludes locking
  20047. introduce some risk of mail folder corruption when more than one program
  20048. attempts to modify the mail folder.  This is most likely to occur to one's
  20049. INBOX or other incoming message folder. 
  20050. <P>
  20051. See also <A HREF="h_info_on_locking">"What Systems Managers Need to Know about Pine File Locking"</A>.
  20052. <P>
  20053. <UL>   
  20054. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20055. </UL><P>
  20056. <End of help on this topic>
  20057. </BODY>
  20058. </HTML>
  20059. ====== h_config_enable_role_take ======
  20060. <HTML>
  20061. <HEAD>
  20062. <TITLE>FEATURE: enable-rules-under-take</TITLE>
  20063. </HEAD>
  20064. <BODY>
  20065. <H1>FEATURE: enable-rules-under-take</H1>
  20066. Normally, the Take command takes addresses from a message and helps you
  20067. put them into your Address Book.
  20068. If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
  20069. you may find it useful
  20070. to be able to Take information from a message's headers and put it into
  20071. a new Rule.
  20072. When this feature is set, you will be given an extra prompt which gives
  20073. you the choice to Take into the Address Book or Take into a rule.
  20074. <P><UL>
  20075. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20076. </UL>
  20077. <P>
  20078. <End of help on this topic>
  20079. </BODY>
  20080. </HTML>
  20081. ====== h_config_quell_folder_internal_msg ======
  20082. <HTML>
  20083. <HEAD>
  20084. <TITLE>FEATURE: quell-folder-internal-msg</TITLE>
  20085. </HEAD>
  20086. <BODY>
  20087. <H1>FEATURE: quell-folder-internal-msg</H1>
  20088. This feature determines whether or not Pine will create 
  20089. "pseudo messages" in folders that are in standard Unix or 
  20090. MMDF format. <P> 
  20091.  
  20092. Pine will normally create these pseudo messages when they are not already
  20093. present in a standard Unix or MMDF folder.  Their purpose is to record
  20094. certain mailbox state data needed for correct IMAP and POP server
  20095. operation, and also for Pine to be able to mark messages as Answered when
  20096. the Reply has been postponed.<P>
  20097.  
  20098. Sites which do not use IMAP/POP for remote mail access, and which need to
  20099. support mail tools that are adversely affected by the presence of the
  20100. pseudo-messages (e.g. some mail notification tools) may enable this
  20101. feature to tell Pine not to create them.  Note that Pine's 
  20102. "Answered" flag
  20103. capability will be adversely affected if this is done.<P>
  20104.  
  20105. Note too that, even if this feature is enabled, Pine will not remove
  20106. pseudo-messages when it encounters them (e.g. those created by UW's imapd
  20107. or ipopd servers.) This feature has no effect on folders that are not in
  20108. standard Unix or MMDF format, as pseudo-messages are not needed in the
  20109. other formats to record mailbox state information.
  20110. <P><UL>
  20111. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20112. </UL>
  20113. <P>
  20114. <End of help on this topic>
  20115. </BODY>
  20116. </HTML>
  20117. ====== h_config_quell_empty_dirs ======
  20118. <HTML>
  20119. <HEAD>
  20120. <TITLE>FEATURE: quell-empty-directories</TITLE>
  20121. </HEAD>
  20122. <BODY>
  20123. <H1>FEATURE: quell-empty-directories</H1>
  20124.  
  20125. This feature causes Pine to remove from the display any directories
  20126. that do not contain at least one file or directory.  This can be useful
  20127. to prevent overly cluttered folder lists when a collection is stored on
  20128. a server that treats all names as both a folder and a directory.
  20129.  
  20130. <P>
  20131. Note, enabling this feature can cause surprising behavior!  For example,
  20132. you can still use Add to create a directory, but unless you immediately
  20133. enter that directory and create a folder, that newly created directory
  20134. may not be displayed next time you enter the folder list.
  20135.  
  20136. <P>
  20137. <UL>   
  20138. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20139. </UL><P>
  20140. <End of help on this topic>
  20141. </BODY>
  20142. </HTML>
  20143. ====== h_config_no_part_fetch =====
  20144. <HTML>
  20145. <HEAD>
  20146. <TITLE>FEATURE: quell-partial-fetching</TITLE>
  20147. </HEAD>
  20148. <BODY>
  20149. <H1>FEATURE: quell-partial-fetching</H1>
  20150.  
  20151. This feature affects the way Pine interacts with IMAP 4rev1 mail servers.
  20152. By default, when a large message or attachment is viewed or saved, Pine
  20153. asks the server for message data in segments.  This allows the command 
  20154. that caused the request to be interrupted.
  20155.  
  20156. <P>
  20157. Testing has shown that, while extremely rare, it is possible for such
  20158. requests to cause some servers distress.  If you're having trouble
  20159. viewing or saving large messages, then you might try listing this feature
  20160. in your pinerc's feature list.
  20161.  
  20162. <P>
  20163. <UL>   
  20164. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20165. </UL><P>
  20166. <End of help on this topic>
  20167. </BODY>
  20168. </HTML>
  20169. ====== h_config_tcap_wins =====
  20170. <HTML>
  20171. <HEAD>
  20172. <TITLE>FEATURE: termdef-takes-precedence</TITLE>
  20173. </HEAD>
  20174. <BODY>
  20175. <H1>FEATURE: termdef-takes-precedence</H1>
  20176.  
  20177. This feature may affect Pine's low-level input routines.  Termcap (or
  20178. terminfo, depending on how your copy of Pine was compiled and linked)
  20179. is the name of the database which describes terminal capabilities.  In
  20180. particular, it describes the sequences of characters that various keys
  20181. will emit.
  20182.  
  20183. <P>
  20184. An example would be the Up Arrow key on the keyboard.  Up
  20185. Arrow is not a distinct character on most Unix systems.  When you press
  20186. the Up Arrow key a short sequence of characters are produced.  This
  20187. sequence is supposed to be described in the termcap database by the
  20188. "ku" capability (or by the "kcuu1" capability if you
  20189. are using terminfo instead of termcap).
  20190.  
  20191. <P>
  20192. By default, Pine defines some terminal
  20193. escape sequences that are commonly used.  For example, the sequence
  20194. "ESC O A" is recognized as an Up Arrow key.  The sequence
  20195. "ESC [ A"
  20196. is also recognized as an Up Arrow key.  These are chosen because common
  20197. terminals like VT100's or ANSI standard terminals produce these
  20198. sequences when you press the Up Arrow key.
  20199.  
  20200. <P>
  20201. If your system's termcap
  20202. (terminfo) database assigns some other function to the sequence
  20203. "ESC O A"
  20204. it is usually ignored by Pine.  Also, if your termcap (terminfo)
  20205. database assigns a sequence which doesn't begin with an escape
  20206. character (<SAMP>ESC</SAMP>) it is usually ignored by Pine.
  20207. This usually works fine
  20208. because most terminals emit the escape sequences that Pine has defined
  20209. by default.  We have also found that it is usually better to have these
  20210. defaults take precedence over the definitions contained in the database
  20211. because the defaults are more likely to be correct than the database.
  20212.  
  20213. <P>
  20214. There are some terminals where this breaks down.  If you want Pine to
  20215. believe the definitions given in your termcap (terminfo) database in
  20216. preference to the defaults the Pine itself sets up, then you may turn
  20217. this feature on.  Then, sequences of characters which are defined in
  20218. both termcap (terminfo) and in Pine's set of defaults will be
  20219. interpreted the way that termcap (terminfo) says they should be
  20220. interpreted.  Also, if your terminal capabilities database assigns a
  20221. sequence which doesn't begin with escape, it will not be ignored.
  20222.  
  20223. <P>
  20224. <UL>   
  20225. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20226. </UL><P>
  20227. <End of help on this topic>
  20228. </BODY>
  20229. </HTML>
  20230. ====== h_config_cruise_mode =====
  20231. <HTML>
  20232. <HEAD>
  20233. <TITLE>FEATURE: enable-cruise-mode</TITLE>
  20234. </HEAD>
  20235. <BODY>
  20236. <H1>FEATURE: enable-cruise-mode</H1>
  20237.  
  20238. This feature affects Pine's behavior when you hit the
  20239. "Space Bar" at
  20240. the end of a displayed message.  Typically, Pine complains that the end
  20241. of the text has already been reached.  Setting this feature causes such
  20242. keystrokes to be interpreted as if the "Tab" key had been hit, thus
  20243. taking you to the next "interesting" message,
  20244. or scanning ahead to the 
  20245. next incoming folder with "interesting" messages.
  20246.  
  20247. <P>
  20248. <UL>   
  20249. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20250. </UL><P>
  20251. <End of help on this topic>
  20252. </BODY>
  20253. </HTML>
  20254. ====== h_config_cruise_mode_delete =====
  20255. <HTML>
  20256. <HEAD>
  20257. <TITLE>FEATURE: enable-cruise-mode-delete</TITLE>
  20258. </HEAD>
  20259. <BODY>
  20260. <H1>FEATURE: enable-cruise-mode-delete</H1>
  20261.  
  20262. This feature modifies the behavior of Pine's 
  20263. <A HREF="h_config_cruise_mode">"enable-cruise-mode"</A> feature.  
  20264. Setting this feature causes Pine to implicitly delete read
  20265. messages when it moves on to display the next "interesting" message.
  20266. <P>
  20267. NOTE: Beware when enabling this feature AND the 
  20268. <A HREF="h_config_auto_expunge">"expunge-without-confirm"</A> 
  20269. feature.
  20270. <P>
  20271. <UL>   
  20272. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20273. </UL><P>
  20274. <End of help on this topic>
  20275. </BODY>
  20276. </HTML>
  20277. ====== h_config_allow_goto =====
  20278. <HTML><HEAD>        
  20279. <TITLE>FEATURE: enable-goto-in-file-browser</TITLE>
  20280. </HEAD>
  20281. <BODY>
  20282. <H1>FEATURE: enable-goto-in-file-browser</H1>
  20283.  
  20284. This feature modifies the behavior of Pine's file browser.  Setting this
  20285. feature causes Pine to offer the "G Goto" command in the file browser.
  20286.  
  20287. <P>
  20288.  
  20289. This command allows you to explicitly set the displayed directory.  Pine's
  20290. default behavior requires you to visit each intermediate directory when moving
  20291. between two distant directories.
  20292. <P>
  20293. <End of help on this topic>
  20294. </BODY></HTML>
  20295. ====== h_config_add_ldap =====
  20296. <HTML>
  20297. <HEAD>
  20298. <TITLE>FEATURE: ldap-result-to-addrbook-add</TITLE>
  20299. </HEAD>
  20300. <BODY>
  20301. <H1>FEATURE: ldap-result-to-addrbook-add</H1>
  20302.  
  20303. If both the Directory option
  20304. <A HREF="h_config_ldap_opts_impl">"use-implicitly-from-composer"</A>  
  20305. and this feature are set,
  20306. then when an implicit directory lookup is done from the
  20307. composer you will automatically be prompted to add the result of the
  20308. directory lookup to your address book.
  20309. <P>
  20310. <UL>   
  20311. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20312. </UL><P>
  20313. <End of help on this topic>
  20314. </BODY>
  20315. </HTML>
  20316. ======= h_config_filt_opts_notdel =======
  20317. <HTML>
  20318. <HEAD>
  20319. <TITLE>FILTER FEATURE: move-only-if-not-deleted</TITLE>
  20320. </HEAD>
  20321. <BODY>
  20322. <H1>FILTER FEATURE: move-only-if-not-deleted</H1>
  20323.  
  20324. If this option is set then a message will be moved into the
  20325. specified folder only if it is not marked for deletion.
  20326. This is useful if you have multiple Pine sessions running
  20327. simultaneously and you don't want messages to be filtered into a
  20328. folder more than once.
  20329. It is also useful if you want to filter
  20330. only the "undeleted" messages in a newsgroup into a folder.
  20331. This method is not foolproof.
  20332. There may be cases where a message
  20333. gets marked deleted and so it is never filtered into the folder.
  20334. For example, if you deleted it in another Pine session or another mail
  20335. program that didn't use the filtering rule.
  20336. <P>
  20337. This option has no effect if the Filter Action is set to Delete instead
  20338. of Move.
  20339. <P>
  20340. <End of help on this topic>
  20341. </BODY>
  20342. </HTML>
  20343. ====== h_config_lame_list_mode =====
  20344. <HTML>
  20345. <HEAD>
  20346. <TITLE>FEATURE: enable-lame-list-mode</TITLE>
  20347. </HEAD>
  20348. <BODY>
  20349. <H1>FEATURE: enable-lame-list-mode</H1>
  20350.  
  20351. This feature modifies the method Pine uses to ask your IMAP
  20352. server for folder names to display in the FOLDER LIST screen.
  20353. It is intended to compensate for a small set of IMAP servers that
  20354. are programmed to ignore a part of the request, and thus respond
  20355. to Pine's query with nonsensical results.
  20356. <P>
  20357.  
  20358. If you find that Pine is erroneously displaying blank folder lists,
  20359. try enabling this feature.
  20360. <P>
  20361.  
  20362. NOTE: Enabling this feature has consequences for the Goto and Save
  20363. commands.  Many servers allow access to folders outside the area
  20364. reserved for your personal folders via some reserved character,
  20365. typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
  20366. allows, at the Goto and Save prompts, quick access to folders
  20367. outside your personal folder collection without requiring a specific
  20368. collection definition.  This behavior will generally not be available
  20369. when this feature is enabled.
  20370.  
  20371. <P>
  20372. <UL>   
  20373. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20374. </UL><P>
  20375. <End of help on this topic>
  20376. </BODY>
  20377. </HTML>
  20378. ====== h_config_textplain_int =====
  20379. <HTML>
  20380. <HEAD>
  20381. <TITLE>FEATURE: show-plain-text-internally</TITLE>
  20382. </HEAD>
  20383. <BODY>
  20384. <H1>FEATURE: show-plain-text-internally</H1>
  20385.  
  20386. This feature modifies the method Pine uses to display Text/Plain
  20387. MIME attachments from the Attachment Index screen.  Normally, the
  20388. "View" command searches for any externally defined (usually
  20389. via the
  20390. "<A HREF="h_config_mailcap_path">Mailcap</A>" file) viewer,
  20391. and displays the selected text within that viewer.
  20392.  
  20393. <P>
  20394. Enabling this feature causes Pine to ignore any external viewer
  20395. settings and always display text with Pine's internal viewer.
  20396.  
  20397. <P>
  20398. <UL>   
  20399. <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
  20400. </UL><P>
  20401. <End of help on this topic>
  20402. </BODY>
  20403. </HTML>
  20404. ====== h_config_role_undo =====
  20405. Yes, remember changes and exit back to list of roles; No, discard changes
  20406. made in this screen; ^C, cancel exit and stay in this config screen.
  20407. ====== h_config_undo =====
  20408. Yes, save changes and exit; No, exit without saving any changes made since
  20409. entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
  20410. ====== h_os_index_whereis =====
  20411. Enter ^V or ^Y to go immediately to the last or first message in the index.
  20412. Or, enter the match string followed by RETURN.
  20413. ====== h_os_index_whereis_agg =====
  20414. Enter ^V or ^Y to go immediately to the last or first message in the index,
  20415. Or, enter the match string followed by RETURN (or ^X to select all matches).
  20416. =========== h_oe_add_full ==================
  20417. Type the full name of the person being added and press the RETURN key.
  20418. Press ^C to cancel addition.
  20419. =========== h_oe_add_nick ==================
  20420. Type a short nickname and press RETURN.  A nickname is a short easy-to-
  20421. remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
  20422. ========== h_oe_add_addr ================
  20423. Type the e-mail address and press RETURN.
  20424. Press ^C to cancel addition.
  20425. ========== h_oe_crlst_full ==============
  20426. Type a long name or description for the list that you are creating and
  20427. press RETURN.  Press ^C to cancel creation of list.
  20428. =========== h_oe_crlst_nick =============
  20429. Type a nickname (short, easy-to-remember name or single word) for the list
  20430. you are creating and press RETURN.  Press ^C to cancel.
  20431. ========== h_oe_crlst_addr ==============
  20432. Type an e-mail address, or a nickname already in the address book that you
  20433. want to be part of this list and press RETURN.
  20434. ========== h_oe_adlst_addr =============
  20435. Type an e-mail address or a nickname already in the address book that you
  20436. want to add to this list and press RETURN.
  20437. ========== h_oe_editab_nick ============
  20438. Change the nickname using the arrow keys and delete key.  Press RETURN
  20439. when done.  Press ^C to cancel editing and leave the nickname as it was.
  20440. ========== h_oe_editab_full ============
  20441. Change the full name using the arrow keys and delete key.  Press RETURN
  20442. when done.  Press ^C to cancel editing and leave the full name as it was.
  20443. ========== h_oe_editab_addr ============
  20444. Change the address using the arrow keys and delete key.  Press RETURN
  20445. when done.  Press ^C to cancel editing and leave the address as it was.
  20446. ========== h_oe_editab_fcc ============
  20447. Change the fcc using the arrow keys and delete key.  Press RETURN when
  20448. done.  Press ^C to cancel editing and leave the fcc as it was.
  20449. ========== h_oe_editab_comment ============
  20450. Change the comment field using the arrow keys and delete key.  Press RETURN
  20451. when done.  Press ^C to cancel editing and leave the comment as it was.
  20452. ====== h_ab_forward =====
  20453. Yes, expand nicknames and qualify local names with your current domain name;
  20454. No, leave nicknames and local names as is;  ^C, cancel.
  20455. ========== h_ab_export ==========
  20456. Type the name of a file to write the addresses into and
  20457. press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
  20458. ========== h_ab_edit_a_field ==========
  20459. Edit any of the fields of the currently selected entry by typing one of the
  20460. letters at the bottom of the screen.  Press ^C to cancel edit.
  20461. ====== h_ab_del_data_revert =====
  20462. Press B to completely delete addrbook and revert to default, C to delete config
  20463. and revert while leaving data, or D to only delete data (make it empty).
  20464. ====== h_ab_del_data_modify =====
  20465. Press B to completely delete addrbook, C to delete configuration while leaving
  20466. data, or D to delete data (make it empty) but leave config. ^C to cancel.
  20467. ====== h_ab_del_config_modify =====
  20468. Yes, remove this address book from my configuration.
  20469. No, make no changes now.
  20470. ====== h_ab_del_config_revert =====
  20471. Yes, remove this address book from my config and revert to default.
  20472. No, make no changes now.
  20473. ====== h_ab_del_default =====
  20474. Yes, remove this default address book from my configuration.
  20475. No, make no changes now.
  20476. ====== h_ab_really_delete =====
  20477. Yes, delete the actual contents of the address book, not just the 
  20478. configuration.  No, don't delete the data after all, cancel and start over.
  20479. ====== h_ab_del_ignore =====
  20480. Press I to ignore all the default address books for this category.  Press R to
  20481. remove this one address book and add the others to your personal list.
  20482. ====== h_ab_del_dir_ignore =====
  20483. Press I to ignore all the default directory servers for this category.
  20484. Press R to remove this one server and add the others to your personal list.
  20485. ====== h_ab_copy_dups =====
  20486. Yes, overwrite the existing entry.
  20487. No, skip duplicates but save the rest. Press ^C to cancel.
  20488. ====== h_ab_export_vcard =====
  20489. A, export list of addresses to file.
  20490. V, export as much vCard information as possible to file. ^C to cancel.
  20491. ====== h_ab_text_or_vcard =====
  20492. Text, start composer with displayed text already included.
  20493. VCard, start composer with address book entry attached as a vCard. ^C cancels.
  20494. ====== h_ab_backup_or_ldap =====
  20495. Backup, copy email address from entry and allow editing of it.
  20496. LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
  20497. ====== h_ldap_text_or_vcard =====
  20498. Text: export displayed text for selected entry. Address: export only the
  20499. email address. VCard: export entry in vCard format. ^C cancels.
  20500. ====== h_ab_save_exp =====
  20501. Save, save entry or entries to an address book.
  20502. Export, save to file outside of pine. ^C cancels save.
  20503. ====== h_ab_add =====
  20504. A, add a brand new entry to this address book.
  20505. E, edit the entry which is currently highlighted. ^C to cancel.
  20506. ====== h_ab_shuf =====
  20507. U, swap order of highlighted address book and the one above it.
  20508. D, swap order of highlighted address book and the one below it. ^C to cancel.
  20509. ====== h_ab_shuf_up =====
  20510. U, swap order of highlighted address book and the one above it.
  20511. Press ^C to cancel.
  20512. ====== h_ab_shuf_down =====
  20513. D, swap order of highlighted address book and the one below it.
  20514. Press ^C to cancel.
  20515. ====== h_role_shuf =====
  20516. U, swap order of highlighted rule and the one above it.
  20517. D, swap order of highlighted rule and the one below it. ^C to cancel.
  20518. ====== h_role_shuf_up =====
  20519. U, swap order of highlighted rule and the one above it.
  20520. Press ^C to cancel.
  20521. ====== h_role_shuf_down =====
  20522. D, swap order of highlighted rule and the one below it.
  20523. Press ^C to cancel.
  20524. ====== h_incoming_shuf =====
  20525. B, swap order of highlighted directory and the one before it.
  20526. F, swap order of highlighted directory and the one after it. ^C to cancel.
  20527. ====== h_incoming_shuf_up =====
  20528. B, swap order of highlighted directory and the one before it.
  20529. Press ^C to cancel.
  20530. ====== h_incoming_shuf_down =====
  20531. F, swap order of highlighted directory and the one after it.
  20532. Press ^C to cancel.
  20533. ====== h_dir_shuf =====
  20534. U, swap order of highlighted directory and the one above it.
  20535. D, swap order of highlighted directory and the one below it. ^C to cancel.
  20536. ====== h_dir_shuf_up =====
  20537. U, swap order of highlighted directory and the one above it.
  20538. Press ^C to cancel.
  20539. ====== h_dir_shuf_down =====
  20540. D, swap order of highlighted directory and the one below it.
  20541. Press ^C to cancel.
  20542. ====== h_hdrcolor_shuf =====
  20543. U, swap order of highlighted Header Color and the one above it.
  20544. D, swap order of highlighted Header Color and the one below it. ^C to cancel.
  20545. ====== h_hdrcolor_shuf_up =====
  20546. U, swap order of highlighted Header Color and the one above it.
  20547. Press ^C to cancel.
  20548. ====== h_hdrcolor_shuf_down =====
  20549. D, swap order of highlighted Header Color and the one below it.
  20550. Press ^C to cancel.
  20551. ========== h_oe_editab_al ============
  20552. Change the address using the arrow keys and delete key.  Press RETURN
  20553. when done.  Press ^C to cancel editing and leave the address as it was.
  20554. ========== h_dir_comp_search ===============
  20555. Type a string to look for just like you would in the composer. Your configured
  20556. rules for the servers with the implicit flag set will be used.
  20557. ========== h_oe_searchab ===============
  20558. Type the word or name you want to search for and press RETURN.  If you press
  20559. RETURN without entering anything the word in [] will be searched for.
  20560. ========== h_oe_save ==========
  20561. Type the name of the folder you want to save the message in and press RETURN.
  20562. Press ^T to get a list of your folders.  Press ^C to cancel saving this mail.
  20563. ========== h_oe_chooseabook ==========
  20564. Choose the address book you want to save the new entry in.
  20565. Use ^N or ^P to change address books.  ^C to cancel.
  20566. ========== h_oe_takeaddr ==========
  20567. Edit the e-mail address using the arrow and delete keys.  Press RETURN
  20568. when done.  Press ^C to cancel adding this entry to the address book.
  20569. ========== h_oe_take_replace ==========
  20570. Press R to replace the old entry with this new data.  You will still have
  20571. another chance to cancel.  N to enter another nickname.  ^C to cancel now.
  20572. ========== h_oe_take_replace_or_add ==========
  20573. Press R to replace the old entry.  Press A to add the selected addresses to
  20574. the old existing list.  N to enter another nickname. ^C to cancel now.
  20575. ========== h_oe_takename ==========
  20576. Edit the full name to be correct using the arrow and delete keys.  Press RETURN
  20577. when done.  Press ^C to cancel adding this entry to the address book.
  20578. ========== h_oe_takenick ==========
  20579. Type a nickname (short easy-to-remember name, initials or single word) for this
  20580. entry in the address book and press RETURN.  Press ^C to cancel addition.
  20581. ========== h_oe_jump ==========
  20582. Type the number of the message number you want to jump to and press
  20583. RETURN.  Press ^C if you want to cancel jumping to another message.
  20584. ========== h_oe_broach ==========
  20585. Type the name of the folder you want to open and press RETURN.  Press ^P/^N
  20586. to go to the previous/next collections in the list.  Press ^C to cancel goto.
  20587. ========== h_oe_foldsearch ==========
  20588. Type the text you want to search for in foldernames and press RETURN.  If you
  20589. press RETURN without entering anything, any text in [] will be searched for.
  20590. ========== h_oe_foldadd ==========
  20591. Type the name of the folder you want to add and press RETURN.  Press ^C to
  20592. cancel adding a new folder.
  20593. ========== h_oe_foldrename ==========
  20594. Change the old name of the folder to the new name using the arrow and
  20595. delete keys and press RETURN.  Press ^C to cancel rename.
  20596. ========== h_oe_login ==========
  20597. Enter your login name for the host you are opening the mailbox on.  Just press
  20598. RETURN to use your login from this host as is, or edit it with delete key.
  20599. ========== h_oe_passwd ==========
  20600. Type your password for the host and login shown as part of the prompt.
  20601. Press ^C to cancel opening folder.
  20602. ========== h_oe_choosep ==========
  20603. Enter the number associated with the printer you want to select.  Press ^C to
  20604. cancel the printer selection.  The current selection is highlighted.
  20605. ========== h_oe_customp ==========
  20606. Type the name of the Unix print command and press RETURN.  Press ^C to
  20607. cancel the printer selection.
  20608. ========== h_oe_searchview ==========
  20609. Type the word or name you want to search for and press RETURN.  If you press
  20610. RETURN without entering anything the word in [] will be searched for.
  20611. ========== h_oe_keylock ==========
  20612. The keyboard is in use and locked by another user.  Only that user can
  20613. unlock this keyboard by typing the password.
  20614. ========== h_oe_export ==========
  20615. Type the name of a file to write into and press RETURN.
  20616. You may also specify an absolute path.  Use ^C to cancel.
  20617. ========== h_wt_expire ==========
  20618. At the beginning of each month Pine offers to rename your current sent-mail
  20619. folder to one named for the month so you have a sent-mail folder for each month
  20620. ========== h_wt_delete_old ==========
  20621. It is the beginning of the month, and we need to conserve disk
  20622. space.  Please delete any sent-mail that you do not need.
  20623. ========== h_select_sort ==========
  20624. Select the order for sorting the index by typing the capitalized letter.
  20625. Arrival is by arrival in your mailbox; Date is by time/day message was sent.
  20626. ========== h_sticky_personal_name ==========
  20627. Type in your name as you want it to appear on outgoing email.  This entry
  20628. will be saved into your Pine configuration file.
  20629. ========== h_sticky_inbox ============
  20630. INBOX syntax is usually {complete.machine.name}INBOX
  20631. This entry will be saved in your Pine configuration file.
  20632. ========== h_sticky_smtp ============
  20633. The name of the computer on your campus which relays your outgoing email
  20634. to the Internet.  This entry will be saved in your Pine configuration file.
  20635. ========== h_sticky_user_id ==========
  20636. The username or login-id part of your email address.  This entry will be
  20637. saved in your Pine configuration file.
  20638. ========== h_sticky_domain ==========
  20639. The domain part of your email address, NOT the name of your PC.  This
  20640. entry will be saved in your Pine configuration file.
  20641. ========== h_bounce =========
  20642. Enter the address or nickname of the intended recipient.  Pine will resend
  20643. the message, which will retain the original author's From: address.
  20644. ========== h_incoming_add_folder_host =========
  20645. Enter RETURN if the folder is on the machine where Pine is running;
  20646. otherwise enter the host name of the mail server, or ^X if same as INBOX.
  20647. ========== h_incoming_add_folder_name =========
  20648. Enter the name of the desired folder. Pine will attempt to create this
  20649. folder on the previously specified mail server.
  20650. ========== h_incoming_add_folder_nickname =========
  20651. Enter an (optional) nickname that will be used in lieu of the actual
  20652. host and folder names in the FOLDER LIST display.
  20653. ========== h_anon_forward ==========
  20654. Enter the address of your intended recipient, or ^C to cancel.
  20655. Example: jsmith@somewhere.edu
  20656. ========== h_news_subscribe ==========
  20657. Enter the name of the newsgroup to which you wish to subscribe,
  20658. or ^C to cancel.  Example: comp.mail.pine
  20659. ========== h_pipe_msg ==========
  20660. Enter the name of the Unix command to which you wish to send this
  20661. message, or ^C to cancel.
  20662. ========== h_pipe_attach ==========
  20663. Enter the name of the Unix command to which you wish to send this
  20664. attachment, or ^C to cancel.
  20665. ========== h_select_by_num ==========
  20666. Enter a list of numbers (or number range(s)), or ^C to cancel.  The messages
  20667. corresponding to the numbers will be selected.  Example: 2-5,7-9,11,19
  20668. ========== h_select_txt_from ==========
  20669. Messages with From: headers containing the entered string will be selected.
  20670. ^C to cancel. ^G again to see original options.
  20671. ========== h_select_txt_not_from ==========
  20672. Messages without From: headers containing the entered string will be selected.
  20673. ^C to cancel. ^G again to see original options.
  20674. ========== h_select_txt_to ==========
  20675. Messages with To: headers containing the entered string will be selected.
  20676. ^C to cancel. ^G again to see original options.
  20677. ========== h_select_txt_not_to ==========
  20678. Messages without To: headers containing the entered string will be selected.
  20679. ^C to cancel. ^G again to see original options.
  20680. ========== h_select_txt_cc ==========
  20681. Messages with Cc: headers containing the entered string will be selected.
  20682. ^C to cancel. ^G again to see original options.
  20683. ========== h_select_txt_not_cc ==========
  20684. Messages without Cc: headers containing the entered string will be selected.
  20685. ^C to cancel. ^G again to see original options.
  20686. ========== h_select_txt_subj ==========
  20687. Messages with Subject: headers containing the entered string will be selected.
  20688. ^C to cancel.  ^X enters Subject: line of current message.
  20689. ========== h_select_txt_not_subj ==========
  20690. Messages without Subject headers containing the entered string will be selected.
  20691. ^C to cancel.  ^X enters Subject: line of current message.
  20692. ========== h_select_txt_all ==========
  20693. All messages containing the entered string will be selected.  Headers and body,
  20694. but not encoded attachments, will be compared.  Enter ^C to cancel.
  20695. ========== h_select_txt_not_all ==========
  20696. All messages which don't contain the entered string will be selected.  Headers
  20697. and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
  20698. ========== h_select_txt_recip ==========
  20699. Messages with Cc: or To: headers containing the entered string will be selected.
  20700. ^C to cancel. ^G again to see original options.
  20701. ========== h_select_txt_not_recip ==========
  20702. Messages without Cc: or To: headers containing the string will be selected.
  20703. ^C to cancel. ^G again to see original options.
  20704. ========== h_select_txt_partic ==========
  20705. Messages with Cc, To, or From headers containing the string will be selected.
  20706. ^C to cancel. ^G again to see original options.
  20707. ========== h_select_txt_not_partic ==========
  20708. Messages without Cc, To, or From headers containing the string will be selected.
  20709. ^C to cancel. ^G again to see original options.
  20710. ========== h_select_date ==========
  20711. If typed, date must be in DD-MMM-YYYY format, where MMM is three-letter 
  20712. abbreviation of month. ^P/^N also changes date. ^X enters date of current msg.
  20713. ========== h_attach_index_whereis ==========
  20714. Enter some text that appears in the Attachment Index entry for the desired
  20715. attachment.  The first attachment containing that text will be highlighted.
  20716. ========== h_kb_lock ==========
  20717. Keystrokes entered here (up to a RETURN) comprise a password that must
  20718. be entered again later in order to unlock the keyboard.
  20719. ========== h_compose_default ==========
  20720. N, compose a new message. R, set a role.
  20721. ^C to cancel.
  20722. ========== h_compose_intrptd ==========
  20723. N, compose a new msg. I, continue interrupted msg. R, set a role.
  20724. ^C to cancel.
  20725. ========== h_compose_postponed ==========
  20726. N, compose a new message. P, continue postponed msg. R, set a role.
  20727. ^C to cancel.
  20728. ========== h_compose_intrptd_postponed ==========
  20729. N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
  20730. R, set a role. ^C to cancel.
  20731. ========== h_compose_form ==========
  20732. N, compose a new message. F, use form letter. R, set a role.
  20733. ^C to cancel.
  20734. ========== h_compose_intrptd_form ==========
  20735. N, compose a new msg. I, continue interrupted msg. F, use form letter.
  20736. R, set a role. ^C to cancel.
  20737. ========== h_compose_postponed_form ==========
  20738. N, compose a new message. P, continue postponed msg. F, use form letter.
  20739. R, set a role. ^C to cancel.
  20740. ========== h_compose_intrptd_postponed_form ==========
  20741. N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
  20742. F, use form letter. R, set a role. ^C to cancel.
  20743. ========== h_config_whereis ==========
  20744. To move quickly to a particular line, enter a search string or
  20745. ^C to cancel.
  20746. ========== h_config_edit_scorei ==========
  20747. Enter interval in the form (min,max). -INF and INF may be used to represent
  20748. -infinity and infinity. ^C to cancel change. RETURN to accept change.
  20749. ========== h_config_add ==========
  20750. Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
  20751. pressing RETURN sets the Empty Value (this turns off any global default).
  20752. ========== h_config_add_custom_color ==========
  20753. Enter a header fieldname. For example, "subject" or "from".
  20754.  
  20755. ========== h_config_add_pat_hdr ==========
  20756. Enter a header fieldname. For example, "reply-to" or "organization" or
  20757. any fieldname you want which isn't included already.
  20758. ========== h_config_print_opt_choice ==========
  20759. You may edit either the initialization string (characters printed before
  20760. printing starts) or the trailer string.  Choose one or ^C to cancel.
  20761. ========== h_config_print_init ==========
  20762. Enter a C-style string for this.  You may use common backslash escapes like
  20763. \\n for newline, \\ooo for octal character, and \\xhh for hex character.
  20764. ========== h_config_change ==========
  20765. Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
  20766. delete current (highlighted) character, etc.  Enter ^C to cancel change.
  20767. ========== h_config_replace_add ==========
  20768. Replace ignores the current default, Add places the current default in your
  20769. editing buffer as if you had typed it in.
  20770. ========== h_config_insert_after ==========
  20771. Enter a nickname for this print command.  (InsertBefore puts the new item
  20772. before the current line, InsertAfter puts it after the current line.)
  20773. ========== h_config_print_cmd ==========
  20774. Enter command to be executed for the printer.  Use normal editing keys
  20775. to modify, ^C to cancel, carriage return to accept current value.
  20776. ========== h_config_role_del ==========
  20777. Answering Yes will remove this rule completely from your rules list.
  20778. ========== h_config_role_addfile ==========
  20779. Type the name of a file to add to your configuration. You don't need to
  20780. use a file, you may add rules directly (with Add) without using a file.
  20781. ========== h_config_role_delfile ==========
  20782. Answering Yes will remove this rule file completely from your rules list.
  20783. The rules data file itself will not be removed.
  20784. ========== h_config_print_del ==========
  20785. Answering Yes will remove this printer completely from your printer list.
  20786. ========== h_config_print_name_cmd ==========
  20787. You may edit the Nickname of this printer, the Command to be executed when
  20788. printing, or change the Options associated with this printer.
  20789. ========== h_send_fcc_only ==========
  20790. Yes, copy message to Fcc only and send to NO recipients.
  20791. No, return to composer.
  20792. ========== h_send_prompt ==========
  20793. Yes, send the message.
  20794. No or ^C, return to composer.
  20795. ========== h_send_prompt_dsn ==========
  20796. Yes, send the message.  No or ^C, return to composer.
  20797. What's DSNOpts? See enable-delivery-status-notification in config screen.
  20798. ========== h_role_confirm ==========
  20799. Yes, use displayed role. No, compose without a role.
  20800. ^C, cancel the message. ^T, select a role from your other eligible roles.
  20801. ========== h_norole_confirm ==========
  20802. Return, compose without a role.
  20803. ^C, cancel the message. ^T, select a role from your eligible roles.
  20804. ========== h_custom_print ==========
  20805. Enter a Unix command that accepts its data on standard input.
  20806. Pine will display any information the command sends to standard output.
  20807. ========== h_convert_abooks_and_sigs ==========
  20808. You will be given the opportunity to convert address books and signature files
  20809. to remote configurations.
  20810. ========== h_convert_abooks ==========
  20811. You will be given the opportunity to convert address books to remote
  20812. configurations.
  20813. ========== h_convert_sigs ==========
  20814. You will be given the opportunity to convert signature files to remote
  20815. configurations.
  20816. ========== h_convert_abook ==========
  20817. Yes is fairly safe. You will be ADDing a remote address book which is a copy
  20818. of the current address book. The current abook won't be removed automatically.
  20819. ========== h_convert_sig ==========
  20820. Answering Yes copies the contents of the signature file into your Pine
  20821. configuration file. After that, the contents of the file will not be used.
  20822. ========== h_convert_pinerc_server ==========
  20823. This is the name of the host (computer) where the remote Pine configuration
  20824. will be stored. This should be an IMAP server which you have permission to use.
  20825. ========== h_convert_pinerc_folder ==========
  20826. Enter the correct remote folder name. This folder is special and should
  20827. contain only configuration data. It shouldn't contain other mail messages.
  20828.