* Update configure script to remove the search for a linking tcl
[alpine.git] / pith / pine.hlp
bloba28a0f12d1b396db33923a217e0698447bb5be7b
1 # $Id: pine.hlp 1266 2009-07-14 18:39:12Z hubert@u.washington.edu $
3 #        T H E   A L P I N E    M E S S A G E   S Y S T E M
5 #/* ========================================================================
6 # * Copyright 2013-2018 Eduardo Chappa
7 # * Copyright 2006-2008 University of Washington
8 # *
9 # * Licensed under the Apache License, Version 2.0 (the "License");
10 # * you may not use this file except in compliance with the License.
11 # * You may obtain a copy of the License at
12 # *
13 # *     http://www.apache.org/licenses/LICENSE-2.0
14 # *
15 # * ========================================================================
16 # */
18          Help text for the Alpine mailer
20 This file is in a format created to be turned into text strings in a C
21 program.
23 There are two shell scripts that run on this.  Cmplhelp.sh is the
24 first and turns this into a C file (helptext.c) of text strings that
25 are compiled and linked. The other program, cmplhlp2.sh, turns this
26 into a .h file (helptext.h) with extern string definitions of the
27 strings in the .c file.  The code that actually processes these files
28 while alpine is running is in help.c
30 The lines with "===== xxxx ====" divide the different help screens.  The
31 xxx is the name of the variable that strings will be put in, which are
32 also declared in helptext.h.
34 # is a comment
36 Help text screen text can be either plain text OR HTML.  The latter is
37 denoted by the first line starting with "<HTML>".  The former is simply
38 displayed as it's formatted here.
40 HTML is limited to simple formatting ala HTML 2.0.  No forms, or tables.
41 In addition a small set of tools are are available to customize the HTML
42 screen's text:
44 1a)  Default and function key bindings are separated like this:
46 <!--chtml if pinemode="function_key"-->
47         Function key bindings here
48 <!--chtml else-->
49         Default key bindings here
50 <!--chtml endif-->
53 1b)  A way to distinguish HTML text that is to be displayed when
54      pine is running vs. when the text is served up outside Alpine
55      (someday) can be done via:
57 <!--chtml if pinemode="running"-->
58    Text displayed when viewed within a running pine session
59 <!--chtml else-->
60    Text displayed when HTML viewed outside pine (using chtml aware server)
61 <!--chtml endif-->
63 1c)  A way to distinguish HTML text that is to be displayed under
64      PC-Alpine vs. not is available via:
66 <!--chtml if pinemode="os_windows"-->
67    Text displayed under PC-Alpine
68 <!--chtml else-->
69    Text displayed otherwise
70 <!--chtml endif-->
72 WARNING ABOUT CHTML "if-else-endif" CLAUSES: They don't nest.
74 2a) Several "server side include" commented elements are supported:
76 <!--#include file="textfile"--> 
78 The file "textfile" will be inserted into the HTML text directly.
79 Alpine does no formatting of the text.  At some point we might want to
80 look at the first line for <HTML> but not today.
82 2b) Various bits of Alpine's running state can be inserted into the
83 HTML text as well using the special comment:
85 <!--#echo var="variable"--> 
87 Where "variable" is one of either:
89     ALPINE_VERSION
90     ALPINE_REVISION
91     ALPINE_COMPILE_DATE
92     ALPINE_TODAYS_DATE
93     C_CLIENT_VERSION
94     _LOCAL_FULLNAME_
95     _LOCAL_ADDRESS_
96     _BUGS_FULLNAME_
97     _BUGS_ADDRESS_
98     CURRENT_DIR
99     HOME_DIR
100     PINE_CONF_PATH
101     PINE_CONF_FIXED_PATH
102     PINE_INFO_PATH
103     MAIL_SPOOL_PATH
104     MAIL_SPOOL_LOCK_PATH
105     VAR_<VARNAME> - where <VARNAME> is config variable name
106     FEAT_<FEATURENAME> - where <FEATURENAME> is config feature name
108 3) The URL scheme "X-Alpine-Gripe:" is available to insert links to
109    pine's composer such that various debugging data can be attached to the
110    message. Aside from normal email addresses, this can be set to
111    either "_LOCAL_ADDRESS_" for the configured local help address, or
112    "_BUGS_ADDRESS_" for the configured local bug reporting address.
113    Aside from the special tokens above, the default behavior only differs
114    from "mailto:" by the insertion of a special Subject: prefix that
115    consists of a randomly-generated token for tracking purposes.
116    Several optional parameters can be included to control what is
117    attached or offered for attachment to the message:
119         ?config  --  Automatically attaches the user's configuration
120                      information to the trouble report
121         ?keys    --  Automatically attaches the user's most recent
122                      keystrokes
123         ?curmsg  --  Causes the user to get an offer to attach the
124                      current message to the trouble report
125         ?local   --  Automatically attaches the result of the script 
126                      defined by VAR_BUGS_EXTRAS
128 For HTML-format sections, the help screen dividers  "===== xxxx ====" must 
129 contain one and only one space after the first and before the second set of 
130 equal signs.
132 Note to authors of this file: to mark sections that need further revision, 
133 please use the text string on the following line consistently so that it is 
134 easy to find those places again in this file:
135 *revision needed*
137 NOTE: Several sections of help text which weren't being used were removed
138 at RCS version number 4.122.  In particular, there were some placeholders
139 with help text for the config screen and the composer that didn't have any
140 reasonable place to be called from.
141 Dummy change to get revision in pine.hlp
142 ============= h_revision =================
143 Alpine Commit 296 2018-07-06 19:19:36
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
158 <BR>
159 <BR>Copyright 2013-2018 Eduardo Chappa
160 <BR>Copyright 2006-2008 University of Washington
161 </DIV>
164 Alpine is an &quot;Alternatively Licensed Program for Internet
165 News and Email&quot; produced until 2009 by the University of Washington.
166 It is intended to be an easy-to-use program for
167 sending, receiving, and filing Internet electronic mail messages and
168 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
169 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
170 is available as is a world wide web based version designed to run under the
171 Apache web server.
174 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
176 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
177 addresses bugs found in previous releases and has a few additions as well.
180 Additions include:
182 <UL>
183 <LI> PC-Alpine builds with LibreSSL and supports S/MIME.
185 <LI> NTLM authentication support with the ntlm library, in Unix systems.
186 Based on code provided by Maciej W. Rozycki.
188 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
189 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
191 <LI> Improvements to the configure stage of compilation. Some of
192 these contributed by Helmut Grohne. See
193 <A href="https://bugs.debian.org/876164">Bug 876164</A> in Debian.
195 <LI> Add &quot;remove password&quot; command to the management screen for the 
196 password file encryption key. This allows users to use their password file
197 without entering a master password.
199 <LI> Add the &quot;g&quot; option to the select command that works in IMAP 
200 servers that implement the X-GM-EXT-1 capability (such as the one offered 
201 by Gmail.) This allows users to do selection in Alpine as if they were 
202 doing a search in the web interface for Gmail.
204 <LI> New variable close-connection-timeout, which tells Alpine to close
205 a connection that is having problems being kept alive after the number
206 of seconds configured in this variable, if the connection has not
207 recovered. The default is 0, which means to keep the connection alive
208 and wait for the connection to recover.
210 <LI> When a message is of type multipart/mixed, and its first part is
211 multipart/signed, Alpine will include the text of the original message
212 in a reply message, instead of including a multipart attachment.
213 Suggested by Barry Landy.
214 </UL>
217 Bugs that have been addressed include:
218 <UL>
219    <LI> Width of characters is not always determined correctly when wcwidth
220         is used. Revert to using code for the Windows operating system. 
221         Reported by Andrew Ho.
223    <LI> Crash when attempting to bounce a message due to lack of space in
224         allocated space for key menu array. Reported by David Sewell.
226    <LI> Crash when a CA certificate failed to load, and user attempted to
227         view certificate information of other certificate authorities.
229    <LI> Deactivate some color code from Pico (as standalone editor in the
230         windows version) until I find a way to activate it again. This is 
231         not critical and it is not something that PC-Pico must have (some 
232         of it already exists in other ways, like color support, what does 
233         not exist is the more complex code that Unix-Pico has with color 
234         codes for specific colors.)
236    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
237         build when using Visual Studio 2017. Fix contributed by 
238         Ulf-Dietrich Braunmann.
240    <LI> When the locale is not set up to UTF-8, alpine might determine the 
241         width of a character incorrectly. Reported by Alexandre Fedotov.
243    <LI> When colors are edited from the main setup configuration screen, some
244         color settings are not updated until Alpine is restarted. Reported by
245         Andrew Hill.
247    <LI> If the first part of a message is multipart/alternative, and the 
248         first part of this is also a multipart type, then Alpine might 
249         fail to select the first text part when replying to a message. 
250         Reported by Lucio Chiappetti.
252    <LI> TLS 1.2 works does not work if Alpine is compiled with openssl &gt;= 1.1.0.
253         Reported and patched by Kyle George.
255    <LI> If the directory where Alpine saves the certificates if empty,
256         alpine would not create a self-signed certificate to encrypt the 
257         password file.
259    <LI> S/MIME: The list of public certificates is freed before it is 
260         reused when a signature fails to verify. This causes Alpine to 
261         crash. Patch submitted by Linus Torvalds.
263    <LI> S/MIME: A message could fail to verify its signature even if the
264         certificate was saved when the message was open. Based on a report 
265         by David Woodhouse to the RedHat bugzilla system.
266 </UL>
269 Version 2.21 addresses bugs found in previous releases and has several 
270 additions as well.
273 Additions include:
274 <UL>
275   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
276        user to choose the dictionary used to spell check, in case the user 
277        communicates in more than one language. Examples of values for the 
278        variable are "en_US" or "de_DE", etc. Only the first 10 
279        dictionaries are offered.
281   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
282        Based on a contribution by Wang Kang.
284   <LI> Colors configured in Alpine are inherited in the composer.
286   <LI> When Alpine is compiled with password file and SMIME support 
287        the password file is encrypted using a private key/public 
288        certificate pair. If one such pair cannot be found, one will be 
289        created. <A HREF="h_password_file_support">Learn more</A>.
291   <LI> Alpine builds with any version of OpenSSL greater than or equal
292        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
293        LibreSSL.
295   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
296        format, which removes text in the SUBJECT between &quot;[&quot; and 
297        &quot;]&quot;.
299   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
300        but it differns in that it gives the time in which the message was
301        sent for messages that are less than a week old. it uses a 24 hour
302        format.
304   <LI> Alpine will include attachments when forwarding some 
305        multipart/alternative messages for which it did not use to include 
306        attachments.
308   <LI> New configuration option 
309        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
310        which adds more ways to control features and variables when you
311        start to reply to a message.
313   <LI> Added support for RFC 2971 - IMAP ID extension.
315   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
316        that allows users to ignore errors in the computation of the size
317        of a message from defective servers.
319   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
320        clients such as Thunderbird do not validate signatures that use sha1 digest.
322   <LI> Add the configuration variable "default-directories", which is called
323        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
324        variable saves a list of directories that are readily accessible 
325        for save or export of attachments. This makes it easier to save 
326        attachments in directories that are hard to navigate to, or that 
327        are accessed frequently.
329   <LI> When a filename is attached and its name is encoded, the save 
330        attachment command will offer to save the file in the encoded form. 
331        This might work for some users, but the save command will have a 
332        subcommand ^N to decode the file name and save the file with the 
333        decoded name.
335   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
336        as well as autocompletes automatically when only one possibility exists 
337        for the ^J attach command.
339   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
340        the html OL tag.
342   <LI> Ignore message from smtp server after a successful authentication
343        challenge.
345   <LI> When a message is saved in the Form Letter folder, add the ability
346        to save the role being used to compose such message so that settings
347        such as the SMTP server set in the role can be used when sending
348        such form message. Suggested and patched by Frank Doepper.
350   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
351        SSLCERTSDIR is not found.
353   <LI> When Alpine sends an attachment, it will set the boundary attribute
354        in lower case, as some SMTP servers, such as those of libero.it 
355        reject messages if the boundary attribute is in uppercase.
357   <LI> Add the ability to change the private key and certificates used
358        to encrypt a password file in the SMIME setup configuration screen.
359        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
361   <LI> SMIME: The ctrl-E command that gives information on the certificate
362        is only available for messages that have a signed or encrypted 
363        part.
365   <LI> SMIME: If a message contains a RFC822 attachment that is
366        signed/decrypted add the ability to view its SMIME information.
368   <LI> SMIME: Certificate information in the S/MIME screen is available 
369        for certificates stored in a container.
371   <LI> SMIME: Offer the common name of the person, instead of the name of
372        file containing the certificate, as the name to be displayed in the 
373        certificate management screen for certificate authorities. 
374        Suggested by Matthias Rieber.
376   <LI> SMIME: Management of several alternate name (SAN) certificates is 
377        improved. When importing a SAN certificate, also import a certificate
378        for the filename, besides for the e-mail addresses in the
379        certificate. Suggested by Matthias Rieber.
381   <LI> SMIME: add full year when displaying information about a certificate
382        in the certificate management screen. Suggested by Matthias Rieber.
384   <LI> SMIME: sort certificates by some type of alphabetical order in the
385        displayed name.
387   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
388        certificates included in signatures, when the option "Validate 
389        Using Certificate Store Only" is enabled. If the user does not wish 
390        to save it, validation will fail.
392   <LI> HTML: Add support for decoding entities in hexadecimal notation.
393        Suggested by Tulip&aacute;nt Gergely.
395   <LI> The &quot;#&quot; command, when used as part of an aggregate
396        operation will allow users to select the role used in either 
397        replying, forwarding or replying to the group of selected messages, 
398        Suggested by Hisashi T Fujinaka.
400   <LI> If the charset of a message can not be determined, use the value set
401        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
403   <LI> Resizing setup screen will redraw screen.
405   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
406        in the width ambiguous zone, it will use other means to determine
407        the width, such as call wcwidth.
409   <LI> Pico: Code reorganization in the search command to make it easier to
410        add subcommands of the search command.
412   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
413        subcommand of the search command to bring this choice into view.
415   <LI> Pico: Add the ability to search for strings in the beginning or end
416        of a line. Use the Ctrl-^ subcommand of the search command to bring 
417        this choice into view.
419   <LI> For a multipart/alternative message, the Take Address command will 
420        work on the part that is being read.
422   <LI> When sending a message, allow for 512 characters of consecutive 
423        non-white space before folding the subject line.
425   <LI> Make sure titlebar (the line at the top of the screen) always 
426        contains the name of the folder/newsgroup that is open, if this 
427        fits in the title.
429   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
430        will also scramble the name, version and operating system in the 
431        message-id header. Based on a contribution by Dennis Davis, which 
432        is itself based on a contribution by Mark Hills.
434   <LI> Change in logic in imap_set_password function to make Alpine ask if
435        a user wants to save a password before reading the password file.
437   <LI> When exporting all parts of a message, if two attachments have the same
438        name, do not overwrite a file more than once, but instead add a counter
439        number to the filename to make a new file that does not exist in the file
440        system.
442   <LI> Add the Control-R subcommand to the save command for attachments. 
443        This subcommand toggles if the saving will be done in binary mode 
444        for text attachments. When a user saves an attachment using binary
445        mode it will be saved as it was sent, otherwise the attachment will
446        be transformed to UTF-8 for further transformation through internal
447        and user defined filters for saving.
449   <LI> Add command line argument -smimedir, which allows to specify
450        the default path for a directory that contains the public, private, 
451        and ca directories. This is useful in case a user has a backup of 
452        old certificates that cannot be installed in the ~/.alpine-smime 
453        dir.
455   <LI> Reimplementation of the code that allows the .pinerc file to be a
456        symbolic link by Kyle George from tcpsoft.com to use realpath.
458   <LI> When saving an attachment, the "^T" command leads to a screen where the
459        "A" command can be used to add a file. A directory can be added by
460        pressing "^X" after the "A" command. Added after a suggestion by
461        Stefan Goessling.
463   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
464        scroll through the history of directories used to save attachments, 
465        while preserving the given name of the file. Suggested by Peter 
466        Koellner.
468   <LI> SMIME: Turn off automatic signing and encrypting of a message when
469        bouncing. Suggested after a discussion with Matthias Rieber.
471   <LI> When messages are selected, warn the user if a message that is not
472        selected will be bounced, or if not all selected messages will be 
473        bounced. Suggested by Ulf-Dietrich Braumann.
475   <LI> The bounce command adds a subcommand to choose a role.
477   <LI> When selecting messages by number, the &quot;.&quot; character can 
478        be used to specify the message on which the cursor is on.
480   <LI> When Alpine opens an attachment, it sometimes changes the extension 
481        of the file that is being opened and replaces it by another for the 
482        same mime type. If Alpine finds that the extension of the file 
483        corresponds with the mime type, according to the mime-types file, 
484        then it will keep it, and no substitution will be made.
486   <LI> Set no restrictions on the length of encoded subjects, but encode
487        words in length of no more than 75 characters.
488 </UL>
492 Bugs that have been addressed include:
493 <UL>
494   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
495        Alpine will use the function ASN1_TIME_print to determine the date 
496        of validity. Reported by Ben Stienstra.
498   <LI> SMIME: Crash when attempting to unlock the password file and an
499        incorrect password is entered.
501   <LI> SMIME: Crash when checking the signature of a message that contains
502        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
503        Krellner.
505   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
507   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
508        remote containers. Reported by Matthias Rieber.
510   <LI> SMIME: certificates included in messages were not being transferred
511        to a remote container.
513   <LI> SMIME: Crash if public certificates are located in an inaccessible
514        remote server and the private key is not available.
516   <LI> SMIME: Alpine does not remove temporary files created when adding a 
517        CA certificate to a container. Reported by Holger Trapp.
519   <LI> SMIME: When reading a local certificate, Alpine converts the name 
520        of the certificate to lowercase, which may make Alpine not be able 
521        to read such certificate. Reported by Dennis Davis.
523   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
524        entering a password to read an encrypted message will make Alpine 
525        forget the key and not ask the password to unlock it again in case 
526        it is necessary to unlock it again. Reported by Ulf-Dietrich 
527        Braumann.
529   <LI> Alpine would use freed memory while trying to compute the color
530        of the titlebar. This happened when trying to continue a postponed 
531        message.
533   <LI> Alpine failed to read an encrypted password file if too many
534        passwords were saved in the password file.
536   <LI> When selecting messages while in Threaded Index Screen, some 
537        messages other than top of threads could appear in the index, making
538        Alpine display messages &quot;out of the screen.&quot;
540   <LI> The index format would be chopped at the position of an unrecognized 
541        token, instead of skipping the token as intended.
543   <LI> Work in progress: Avoid calling non-safe functions when Alpine
544        receives a signal. See bug report 
545        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
547   <LI> Crash when attempting to read a message after a bounce command. 
548        In order to produce a crash one needed to use the ^T subcommand and 
549        do a search in a LDAP directory. The crash is produced by changes 
550        to the text in the title bar. Reported by Heinrich Mislik in the 
551        Alpine-info list.
553   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
554        making Alpine not display the correct character at the position 
555        that wrapping is done. Reported by Wang Kang.
557   <LI> Pico: Searching for a string that is too long causes Pico to crash
558        in the next search.
560   <LI> Fix vulnerability in regex library. This only affects those who use
561        this library, such as the windows version of Alpine. See 
562        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
563        for more details.
565   <LI> Alpine would not set include and lib paths for OpenSSL if this was
566        installed in /usr/local/ssl.
568   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
569        contents when saving its configuration.
571   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
572        the name. Reported by Andreas Fehr.
574   <LI> When opening an INBOX folder in a context different from the 
575        incoming folders collection, from the command line, Alpine would 
576        open the INBOX folder from the incoming folders collection.
578   <LI> Mismatch in size of UCS and CELL caused a corruption in the
579        content of a pointer, which made the speller in PC-Alpine get the 
580        content of a word incorrectly.
582   <LI> Skip testing openssl compatibility version when cross-compilation
583        is detected. Fix contributed by Antti Sepp&auml;l&auml;
585   <LI> Alpine fails to remove temporary files used during a display or sending
586        filter. Fix contributed by Phil Brooke.
588   <LI> When the index is in zoomed state, adding new messages to the 
589        selection would not show those messages if those messages are on 
590        top of the current message in the top of the screen. Reported by
591        Ulf-Dietrich Braumann. In addition, when the user scrolls through
592        the index, this scroll smoothly, without jumping pages. Reported
593        by Holger Trapp.
595   <LI> Crash when reviewing history of saving attachments.
597   <LI> Crash when canceling a goto command on a local collection that has
598        not been expanded and attempting to expand such collection.
600   <LI> Crash in Pico when forwarding messages that contain a direction mark
601        at the end of a line. Reported by James Mingo.
603   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
604 </UL>
608 Version 2.20 addresses bugs found in previous releases and has several 
609 additions as well.
612 Additions include:
615 <UL>
616   <LI> Upgrade UW-IMAP to Panda IMAP from 
617        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
618   <LI> S/MIME: Add screen to manage certificates.
619   <LI> S/MIME: Signatures are validated using the user's certificates instead
620        of the ones included in the message. Behavior can be disabled by
621        disabling the option <A href="h_config_smime_use_cert_store">
622         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
623        by default.
624   <LI> S/MIME: sign messages using intermediate certificates when needed 
625        and possible.
626   <LI> S/MIME: validation of certificates for servers that modify signed 
627        content.
628   <LI> S/MIME: signed and encrypted messages will be signed first and 
629        encrypted second, so that they can be decoded by other clients.
630   <LI> S/MIME: add the sender certificate to the list of certificates in
631        encrypted messages to make it possible for the sender to decrypt
632        the message they sent.
633   <LI> S/MIME: When transferring certificates to a local container, create 
634        container with default names PublicContainer, PrivateContainer and 
635        CAContainer, as appropriate for these files, unless the user has 
636        provided some other names.
637   <LI> S/MIME: Forwarding a message will include the signed part as part
638        of the text and not as a multipart message, just as the reply
639        command does.
640   <LI> HTML: Style tag in body of html message causes Alpine to not write
641        its content until a new &lt;/style&gt;
642   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
643        the same inline tag; the same is valid for the &lt;HR&gt; tag.
644   <LI> Add support to selective expunge through a subcommand of the 
645        select-apply commands. Read more in the <A 
646        HREF="h_index_cmd_expunge">help</A> for the expunge command.
647   <LI> Pico: New subcommand of the search command, allows to reverse the
648        direction of search.
649   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
650        the key and certificate used to encrypt the password file are saved 
651        in the ~/.alpine-smime/.pwd directory, or in the directory specified
652        by the -pwdcertdir command line option. 
653        <A HREF="h_password_file_support">Learn more</A>.
654   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
655        server to use different ways to connect using ssl, for 
656        example {server.com/tls1} will attempt to connect to 
657        server.com at the ssl imap port (port 993) and establish a 
658        connection using TLSv1. These flags can be used in 
659        conjunction with the /ssl flag, the ssl flag is redundant. 
660        Conversely, however, the /ssl flag does not imply any of 
661        these flags; the /ssl flag means SSLv3 or, if not available, 
662        SSLv2 in the SSL port.
663   <LI> Alpine does not attempt to automatically reopen a collection 
664        that was not opened due to cancellation by the user. 
665        Instead, the user must try to open it explicitly.
666   <LI> Alpine searches for a certificate that matches an email address in
667        all addresses in a certificate (instead of just the first 
668        one) but when it tries to unlock the certificate, it asks 
669        for the password for the first email address in that 
670        certificate.
671   <LI> Style tag in body of html message causes Alpine to not write its content
672        until a new &lt;/style&gt;
673   <LI> Experimental: Write the content-type of a message in 
674        lowercase, as some non-compliant servers do not understand 
675        uppercase content-type, such as those of GMX.de.
676   <LI> Experimental: Do not send the RSET command before attempting
677        to send a message, as this causes a delay in some evily managed
678        servers.
679   <LI> Opening a folder updates recent count in maildrops (this 
680        already works for other types of folders)
681   <LI> Automatically redraw screen after opening an attachment 
682        instead of simply clearing it.
683   <LI> Pico: Justification works without need of a predefined quote 
684        string. This allows justification of blocks of text that are 
685        indented with spaces.
686   <LI> Decode the name of attachment names, so they can be written as part   
687        of the description of the part. 
688   <LI> Check bounds and tie strings off to improve security. Contributed 
689        by James Jerkins.
690   <LI> Replace tabs by spaces in From and Subject fields to control for
691        size in screen of these fields. Change only in index screen display.
692   <LI> Aggregate operations allows bouncing a list of messages using a role.
693        Suggested by Ulf-Dietrich Braumann.
694   <LI> Disable saving new passwords to the password file. Implemented
695        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
696   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
697      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
698      Charles M. Register.
699 </UL>
703 Bugs that have been addressed include:
704 <UL>
705   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
706        in personal names. Reported by Lev Gorenstein.
707   <LI> When writing the .pinerc file, lines were truncated if they were longer
708        than 10,000 characters. This could cause data corruption, so now lines
709        are allowed to be of any length.
710   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
711        remove attachments before they were open by a mailcap viewer. It 
712        requires that the user has an equivalent to a command such as "ps 
713        auxww" to list the list of processes, and check if there is any 
714        program using the attachment. The default is "/bin/ps auxww", but 
715        it can be changed at compile time with the option --with-ps-cmd. 
716        See the help of the variable 
717        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
718        for more information.
719   <LI> S/MIME: signed messages that contained an attachment would not validate.
720   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
721        validate. Thanks to Andreas Schamanek for testing, debugging and 
722        advising during the process of fixing this problem.
723   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
724        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
725        and Stefan Mueller.
726   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
727        home directory.
728   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
729        SMIME making it not possible to sign or encrypt messages.
730   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
731        information that is not part of the body, and hence making the body
732        of the message seem wrong.
733   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
734        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
735        enabled, the message contains 8bit characters and the smtp server 
736        supports 8bit sending.
737   <LI> When replying to several messages, subject will be decoded first,
738        and then stripped from re/fwd before they are compared to determine
739        the subject of the replied message.
740   <LI> Crash when tcp connection to NNTP server was lost after connection
741        had been established, but lost immediately afterwards.
742   <LI> Crash with message &quot;lock when already locked&quot;, when painting
743        an index was based on scores that needed information from a remote
744        addressbook in the same server as the folder opened. Reported by
745        Peter Koellner.
746   <LI> Crash in message/rfc822 attachments encoded in base64.
747   <LI> Postponed messages whose content-type is text/html, text/enriched and
748        text/richtext are sent with that content-type, even though, after
749        resuming composition, Alpine had changed its type to text/plain.
750   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
751        character set, which might lead to a crash or a corruption in the 
752        screen. Work was done to contain the bug. A more complete fix will 
753        be done in a future release. Reported by Professor Robert Funnell.
754   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
755   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
756   <LI> Save command did not warn of existence of a message with a deleted 
757        attachment in an aggregate save, unless cursor was positioned on a message 
758        with a deleted attachment. Reported by Florian Herzig.
759   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
760        in an IMAP server.
761   <LI> DATE tokens were not internally transformed to UTF-8, which made their
762        values not appear complete in the screen. Reported by Werner Scheinast.
763   <LI> Fixes to configure script so that it will not require PAM for every system.
764   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
765        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
766        during the build. Fix by Ulf-Dietrich Braumann.
767   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
768        needs to use tcl_getstringresult() instead. Reported by 
769        Ulf-Dietrich Braumann.
770   <LI> Quoted string in URL Viewers configuration variable were not 
771        unquoted before passing to viewer.
772   <LI> Fix in configure script to detect location of tcl library; add
773        /usr/local in FreeBSD and fix a bug in configure script that used 
774        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
775        by Werner Scheinast.
776   <LI> Move SSL configurations from UW-IMAP to configure script, and
777        update OpenSSL configuration for Mac OS X.
778   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
779   <LI> When the download of an attachment is interrumpted, Alpine stills
780      caches what was downloaded, making the download incomplete for 
781      subsequent calls of Alpine attempting to open the attachment. In the 
782      future, Alpine will not cache any downloaded part of the attachment 
783      when it is interrupted.
784 </UL>
789 Version 2.11 addresses bugs found in previous releases and has a few 
790 additions as well.
793 Additions include:
796 <UL>
797    <LI> Alpine requires version 1.0.0c of Openssl to build.
798    <LI> Increase encryption of S/MIME encrypted messages.
799    <LI> Pico: Improvements in justification of paragraphs: lines that begin
800 with a quote string, followed by a space were considered individual paragraphs,
801 now they are considered part of a paragraph. Based on earlier joint work
802 with Jeff Franklin.
803    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
804    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
805 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
806    <LI> Added recognition of ws and wss URIs.
807    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
808  <A HREF="h_config_directory_color">directory names</A>,
809  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
810    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
811 used in the display of the INDEX SCREEN.
812    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
813 that adds the ability to preserve To: and Cc: fields when replying to a 
814 message, as specified by original sender.
815    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
816  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
817    <LI> Quota command includes subcommands for printing, forwarding, etc.
818 </UL>
821 Bugs that have been addressed include:
823 <UL>
824   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
825   <LI> Crash when resizing the screen in a configuration screen.
826   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
827   <LI> Do not use a shell to open a browser.
828   <LI> Configure script did not test for crypto or pam libraries.
829   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
830   <LI> Change Cygwin directory separator to &quot;/&quot;.
831   <LI> Alpine could set List- headers, contrary to RFC 2369.
832 </UL>
835 Version 2.10 addresses bugs found in previous releases and has a few 
836 additions as well.
839 Additions include:
842 <UL>
843    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
844    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
845    <LI> Foreign characters are decoded correctly in IMAP folder names.
846    <LI> Question about breaking connection to slow servers includes their name.
847    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
848    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
849    <LI> Cygwin: Alpine builds without need of patch.
850    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
851    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
852    <LI> Add support for strong encryption of password file when S/MIME is built in.
853 </UL>
856 Bugs that have been addressed include:
859 <UL>
860    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
861    <LI> Double allocation of memory in Pico.
862    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
863    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
864    <LI> Not recognition of environment variables in some options.
865    <LI> Not display of login prompt during initial keystrokes.
866    <LI> justification of long urls breaks them.
867    <LI> Incorrect New Mail message when envelope is not available.
868    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
869    <LI> Crash when resizing the screen after display of LDAP search.
870    <LI> Crash when redrawing screen while opening a remote folder collection.
871    <LI> Infinite loop in scrolltool function during notification of new mail.
872    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
873    <LI> No display of signed and encrypted S/MIME messages.
874    <LI> Alpine will not build with OpenSSL.
875    <LI> Crash for double locking in calls to c-client.
876    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
877    <LI> Ignore the references header when threading messages
878    <LI> No update of colors in index screen after update to addressbook.
879 </UL>
882 Version 2.01 addresses bugs found in previous releases and has a few 
883 additions as well.
886 Additions include:
889 <UL>
890    <LI> Fixed non-ASCII web alpine handling
891    <LI> Added web alpine help.
892    <LI> Allow web alpine inbox on second IMAP server.
893    <LI> Allow web alpine config reset after bad inbox-path gets set.
894    <LI> Added web alpine ability to create group contact from contact list members.
895    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
896    <LI> Tidied up web alpine script layout.
897    <LI> Fixed web alpine status message ordering
898    <LI> Added web alpine Fcc setting via Contacts in Compose
899    <LI> Fixed web alpine autodraft attachment issues
900    <LI> Fixed web alpine problems with recent count maintenance
901    <LI> Fixed web alpine newmail arrival display in message list
902    <LI> Added web alpine confirmation to folder create for Move/Copy
903    <LI> Added web alpine user-domain support
904    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
905 </UL>
908 Bugs that have been addressed include:
911 <UL>
912    <LI> In web alpine fixed delete all selected within a search result to reorient
913         correctly to whole-mailbox message list.
914    <LI> Fixed web alpine delete in view page to be sensitive to sort
915    <LI> Fixed web alpine open of folder within directory from folder manager page.
916    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
917    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
918    <LI> Fixed web alpine adding contacts from message list and view
919    <LI> Fixed web alpine create of non-existent fcc
920    <LI> Remove mistakenly left debugger statement in web alpine javascript.
921    <LI> Some UNIX alpine build problems fixed
922    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
923         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
924         by locale charmap call on some Solaris 8 systems.
925    <LI> MacOS Keychain logins were not working correctly with generic host names, like
926         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
927         new password requests when not needed
928    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
929         last folder in the list
930    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
931         looked for along with the email address
932    <LI> Changes to configure to get spellcheck options with work with arguments.
933    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
934         returned by gethostname (iPhone can do this)
935    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
936         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
937    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
938         Jake Scott of marganstanley.com.
939    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
940         is not used in alpine.
941    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
942         Apparently this causes RIM Blackberry BIS service problems. This is not
943         used in alpine.
944    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
945    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
946         Fix from Ludwig Nussel of SUSE and from Crispin.
947    <LI> Include whole filename in export filename history
948    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
949 </UL>
952 Version 2.00
953 addressed bugs found in previous releases and had a few additions as well.
955 Additions included:
958 <UL>
959    <LI> Redesigned Web Alpine interface
960    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
961         in UNIX versions of Alpine
962    <LI> Attempt to include the attachment filename as part of the name of the
963         temporary file used when viewing an attachment with an external program.
964         Add some randomness to that filename to make it hard to predict the filename.
965         Add a filename extension, usually derived from the type/subtype, to the
966         temporary filename. This was previously done only on Windows and MacOS X.
967    <LI> Enhance address completion in the composer (TAB command) so that it looks
968         through nicknames, fullnames, and addresses from the address book; addresses
969         from the message being viewed, if any; and the results from
970         <A HREF="h_direct_config">LDAP Directory Server</A>
971         lookups for all of the defined directory servers that have the
972         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
973         feature set.
974    <LI> Make the default character set setting more liberal in what it will accept
975         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
976    <LI> Remove the Alpine revision number from the titlebar in released versions
977         while leaving it there in snapshot versions
978    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
979         display of asterisks when you type a password for Alpine
980    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
981    <LI> When the
982         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
983         feature is turned on convert not only the dates in the index screen but also
984         the dates in the MESSAGE VIEW
985 </UL>
988 Bugs addressed in the 2.00 release included:
991 <UL>
992    <LI> Crash when using tab-completion for selecting a Save filename
993    <LI> Make Web Alpine help text images relative for more portability
994    <LI> Fixed attach save of html parts in Web Alpine
995    <LI> Viewing, printing, exporting, replying, and bouncing of message
996         digests was broken. Replying and bouncing should not have been
997         allowed at all for digests. It would be nice to have a more standard
998         index-like view of a message digest but that has not been addressed
999         with this minor bug fix.
1000    <LI> Adjust wrapping of HTML messages so that the margins specified by
1001         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
1002         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
1003         are observed correctly
1004    <LI> Interrupt of WhereIs command in index was broken
1005    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1006         option did not work correctly interpreting unknown characters in message headers
1007    <LI> Long address lines could cause blank continuation lines
1008    <LI> Save to a local default INBOX failed if the primary collection was also local,
1009         which it is by default. The save went to  ~/mail/inbox instead.
1010    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
1011         inbox, not the inbox in the primary collection
1012    <LI> Address book entries with lots of addresses would be truncated when
1013         entered in the composer with a screen size wider than 270 or so charcters
1014    <LI> Some fields in the index screen were truncated when the screen width was
1015         wider than 256 characters
1016    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
1017         folder, and there is a more than 10 minute pause between typing the TAB
1018         and typing the Yes
1019 </UL>
1022 Version 1.10(962)
1023 addressed bugs found in previous releases and had a few additions as well.
1025 Additions included:
1028 <UL>
1029    <LI> Add the possibility of setting a default role
1030         (see <A HREF="h_role_select">Roles Screen</A>)
1031         which may be convenient if your work flow involves acting in one
1032         role for a while then switching to another role and staying in the
1033         new role for another period of time
1034    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
1035         is encountered, ask the user if he or she wants to continue with the
1036         risky Save anyway instead of aborting. This may be helpful if your
1037         IMAP server is broken in this way but be aware that it is possible there
1038         was a real error instead of just a broken server implementation.
1039    <LI> Some configure adjustments for Kerberos detection and
1040         for SCO OpenServer 5 support
1041    <LI> Hide INBOX in a collection if it also appears as an
1042         <A HREF="h_config_enable_incoming">Incoming Folder</A>
1043    <LI> Show asterisks for feedback when the user is typing a password
1044    <LI> Performance improvement for threading of large folders
1045    <LI> Previously, the search used to find
1046         Pattern matches containing To patterns searched for both To
1047         and Resent-To headers. The relatively complicated search this
1048         produces causes problems when using some deficient IMAP servers.
1049         Now the default is to look only for To headers and ignore the
1050         presence of Resent-To. The previous behavior may be restored
1051         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
1052    <LI> Add an
1053         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1054         to help with reading malformed unlabeled messages
1055    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
1056    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1057    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1058 </UL>
1061 Bugs addressed in the 1.10(962) release included:
1064 <UL>
1065    <LI> Crash when encountering certain errors from an SMTP server
1066    <LI> Crash in composer caused by overflow in replace_pat()
1067    <LI> Hang when authenticating to an SMTP server that fails with a
1068         &quot;connection disconnected&quot; error
1069    <LI> Bug in handling of trailing tab character in flowed text
1070    <LI> Security enhancement for mailcap parameter substitution
1071    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1072         did not work if the message being replied to was not flowed text
1073         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1074         was not turned on
1075    <LI> Don't allow printer to be changed through hidden config screen
1076         if system administrator didn't want it to be allowed
1077    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1078         should know that it won't work, causing error messages to appear
1079    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1080         of double-quote double-quote didn't work right
1081    <LI> Quoting wasn't being done to protect special characters from the
1082         MacOS X shell when
1083         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1084         was not defined
1085    <LI> On MacOS X message attachments should be shown internally instead of
1086         being shown using the Mail application
1087    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1088         sometimes set the outgoing charset to X-UNKNOWN, making the result
1089         unreadable
1090    <LI> When the sending of a message failed lines with leading spaces had one
1091         additional space inserted in each of those lines when the user
1092         was returned to the composer
1093    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1094         that contained non-ascii characters because it was truncating the
1095         line being searched so that it was shorter than what was visible on
1096         the screen
1097    <LI> When composing, an attachment with a long name that causes wrapping in
1098         just the wrong place would generate an error and cause the send
1099         of the attachment to fail
1100    <LI> After calling the file browser to attach a file in the composer, a resize
1101         of the window when back in the composer would redraw the last screen that
1102         had been shown in the browser instead of the current composer screen
1103    <LI> Possible crash in index screen when encountering unparseable addresses
1104         or when using one of the PRIORITY tokens or the HEADER token in the
1105         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1106    <LI> Problems with Header Color editing if the configuration option
1107         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1108         was inadvertently changed to the Empty Value in the hidden config screen
1109    <LI> When resuming the final postponed message from an Exchange server the user
1110         could get a certificate validation failure because alpine was trying
1111         to validate the canonical name of the folder instead of the name the
1112         user used
1113    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1114         failure to find a match
1115    <LI> Make matching of extension names case independent in mimetypes files
1116    <LI> Windows dialog boxes for entering text were not working correctly
1117    <LI> Replying to or Forwarding multipart/alternative messages which had a
1118         single text/html part did not work well
1119    <LI> Printing the print confirmation page caused a crash
1120    <LI> A To line with a long, quoted personal name could display incorrectly
1121         if it was close to the same width as the screen
1122    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1123         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1124         are turned on hide (0/0) when the folder is empty
1125    <LI> Folder completion while Saving didn't work if the collection being
1126         saved to was the local home directory
1127 </UL>
1130 Version 1.00
1131 was an evolutionary release based on
1132 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
1133 developed at the University of Washington.
1134 It is upwards-compatible for existing Pine users.
1137 Changes included:
1139 <UL>
1140    <LI> Ground-up reorganization of source code around addition
1141         of "pith/" core routine library.
1142    <LI> Fundamental improvement in Alpine's internal text handling, which
1143         is now based exclusively on Unicode. This allows displaying incoming
1144         messages and producing outgoing messages in many different languages.
1145    <LI> Ground-up reorganization of build and install procedures
1146         based on GNU Build System's autotools. NOTE, the included IMAP library
1147         build is not based on autotools, so some features will not work. However,
1148         it should get built automatically during the Alpine build process.
1149    <LI> Web-based version included built on TCL designed to run under
1150         a suitable CGI-supporting web server such as Apache.
1151 </UL>
1155 Details on changes in previous (prerelease) versions of Alpine
1156 may be found at the following URL:
1158 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1161 <HR WIDTH="75%"><P>
1163 <H2>Getting Help</H2>
1164 <DL>
1165 <DT>Online Help</DT>
1166 <DD>
1167 Every Alpine screen and command has associated help text
1168 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1169 </DD>
1171 <DT>Web Help</DT>
1172 <DD>
1173 The most current source of information about Alpine,
1174 including new version availability, is the web page at
1176 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1177 </DD>
1178 </DL>
1180 Frequently Asked Questions (and answers) may be found at the following
1181 URL:
1183 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
1186 <HR WIDTH="75%"><P>
1188 <H2>Additional Information</H2>
1190 General Alpine configuration information can be found
1191 <A HREF="h_news_config">here</A>.
1193 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1194 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1195 access is provided by the IMAP Toolkit Environment (c-client library)
1196 version <!--#echo var="C_CLIENT_VERSION"-->.
1197 <P> 
1198 Alpine was developed until 2009 by the Office of Computing 
1199 &amp; Communications at the University of Washington in Seattle.  
1200 Since then, the effort of developing Alpine has been continued by
1201 a community of volunteers who make good software even better!
1204 Alpine Copyright 2013-2018 Eduardo Chappa, 
1205 <BR> Copyright 2006-2008 University of Washington.
1208 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1209 or instead you can find the Apache License, version 2.0 at the web URL:
1212 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1215 &lt;End of Release Notes&gt;
1216 </BODY>
1217 </HTML>
1218 ====== h_password_file_support ======
1219 <HTML>
1220 <HEAD>
1221 <TITLE>Encryption for Password File Support Explained</TITLE>
1222 </HEAD>
1223 <BODY>
1224 <H1>Encryption for Password File Support Explained</H1>
1226 Index<BR>
1227 <OL>
1228 <LI><A HREF="#content">Explanation</A>
1229 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1230 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1231 </OL>
1233 <P><A NAME="content">Unix Alpine Only.</A>
1235 <P> If your version of Alpine has been built with password file support
1236 then you can use a special file to save your passwords, and avoid typing
1237 them every time you open a connection to a remote server.
1239 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1240 password file will be encrypted with a strong key. There are two ways in 
1241 which this can happen: Alpine will either use a matching private key and 
1242 public certificate pair that you already own, or it will create one for 
1243 you, just for purposes of encrypting this file. We describe both processes 
1244 below.
1246 <P> Initially, Alpine will scan your public and private directories for a 
1247 certificate/private key pair that works. Alpine will pick the first pair 
1248 that it finds that matches. 
1250 <P> Once a pair has been chosen, it will be copied to the directory 
1251 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1252 that directory. The first time this process is done, this directory will 
1253 be created, a key/certificate pair will be copied to it, from then on 
1254 this pair will be used to encrypt and decrypt your password file. 
1256 <P> If you want to use a specific key and certificate pair to encrypt
1257 your password file, you can create the directory ~/.alpine-smime/.pwd 
1258 manually, and then create your preferred key/certificate pair there.
1259 Alpine will use this key regardless of if it has expired, or if it is
1260 self-signed. These issues do not affect the encryption or decryption
1261 of the password file.
1263 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1264 your key/certificate pair, you can specify a different one with the 
1265 -pwdcertdir command line option in Alpine. If the directory specified by 
1266 this option is not found Alpine will fail to encrypt and decrypt your 
1267 password file. However if it exists, Alpine will search for a 
1268 key/certificate pair in that
1269 directory, and if it does not find one, it will create one and save it
1270 in that directory.
1272 <P> Alpine does not care about the names of the key and certificates in 
1273 this directory, but the private key must have &quot;.key&quot; extension 
1274 and your public certificate must have the &quot;.crt&quot; extension. The
1275 name of the private key will be used in the prompt when you are asked
1276 to unlock your key to decrypt your password.
1278 <P> If Alpine cannot find a suitable private key and public certificate 
1279 pair to encrypt your password, it will create one. You will be asked to 
1280 create a &quot;Master Password&quot; to protect such key. At this moment 
1281 there are no restrictions on passwords, other than they have to be at 
1282 least 8 characters long, but future versions of Alpine will include 
1283 functionality to restrict master passwords, as set up by the administrator 
1284 of the system in the pine.conf.fixed file.
1286 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1288 <P>Assume you have a private key called peter@address.com.key in your, 
1289 ~/.alpine-smime/private directory, and a public certificate called 
1290 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1291 are your only key/certificate pair.
1293 <P> When Alpine starts for the first time, without command line options, 
1294 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1295 it will create it. Then it will go through your keys and certificates and 
1296 find a pair that it can use, and copy the files peter@address.com.key,
1297 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1298 you can do the same by copying these files by yourself. This can be done
1299 with the sequence of commands
1301 <PRE>
1302 mkdir ~/.alpine-smime/.pwd
1303 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1304 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1305 </PRE>
1307 <P> When Alpine starts, you will be asked the password to unlock your
1308 private key with the prompt.
1310 <PRE>
1311 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1312 </PRE>
1314 <P> If you prefer to use different names for your private and public keys 
1315 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1316 preserve the extension of the files. For example, you can use the names 
1317 private_key.key and public_cert.crt instead. In this case, the prompt you 
1318 will see when you are asked to unlock your private key will read
1320 <PRE>
1321 Enter password of key &lt;private_key&gt; to unlock password file:
1322 </PRE>
1324 <P>Observe that you do not need to use an existing key/certificate pair, 
1325 and that you can create a new private key/public certificate pair to 
1326 encrypt and decrypt your password file. Alpine provides a mechanism to
1327 change the encryption key for this file in the S/MIME configuration
1328 screen.
1330 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1332 <P> If Alpine cannot find a suitable private key and public certificate pair
1333 to encrypt your password file, it will create one. When doing so, it will
1334 start the process with the following warning:
1336 <PRE>
1337 Creating a Master Password for your Password file.
1338 </PRE>
1340 <P> Then Alpine will ask you to enter your Master Password:
1342 <PRE>
1343 Create master password (attempt 1 of 3):
1344 </PRE>
1346 <P> Once you enter this password, and it validates according to system policy,
1347 you will be asked to confirm this password. 
1349 <PRE>
1350 Confirm master password (attempt 1 of 3):
1351 </PRE>
1353 <P> If you input the same password, then Alpine will set that as your 
1354 Master Password, and you will use this password to unlock your key in the 
1355 future.
1357 <P> If you would like to switch your Master Password in the future, you can 
1358 do so by creating a new public key and public certificate pair. You can do 
1359 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1360 Certificate for Password File&quot; section, simply enter your current 
1361 password to unlock your current key and then press &quot;C&quot; to create 
1362 a new key.
1365 &lt;End of help&gt;
1366 </BODY>
1367 </HTML>
1368 ====== h_tls_failure_details ======
1369 <HTML>
1370 <HEAD>
1371 <TITLE>Certificate Validation Details</TITLE>
1372 </HEAD>
1373 <BODY>
1374 <H1>Certificate Validation Details</H1>
1376 This screen gives details as to why the certificate validation failed: the
1377 name of the desired server system; the reason for failure; and the name on
1378 the certificate.  This is primarily of interest to experts.
1381 &lt;End of help&gt;
1382 </BODY>
1383 </HTML>
1384 ====== h_tls_failure ======
1385 <HTML>
1386 <HEAD>
1387 <TITLE>TLS or SSL Failure</TITLE>
1388 </HEAD>
1389 <BODY>
1390 <H1>TLS or SSL Failure</H1>
1392 An attempt was made to establish a secure, encrypted connection to the
1393 server system using either Transport Layer Security (TLS) or the older
1394 Secure Sockets Layer (SSL).  This attempt failed.
1397 You should contact your server system management for more assistance.
1398 The problem is probably at the server system and not in Alpine or your local
1399 system.  The text in this screen may be helpful for the server system
1400 management in debugging the problem,
1403 &lt;End of help&gt;
1404 </BODY>
1405 </HTML>
1406 ====== h_tls_validation_failure ======
1407 <HTML>
1408 <HEAD>
1409 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1410 </HEAD>
1411 <BODY>
1412 <H1>TLS and SSL Certificate Validation Failures</H1>
1414 An attempt was made to establish a secure, encrypted connection to the
1415 server system using either Transport Layer Security (TLS) or the older
1416 Secure Sockets Layer (SSL).
1419 An important part of this procedure is server certificate validation.  A
1420 server certificate is an &quot;electronic identification card&quot; for the server
1421 system that is signed by a well-known certificate authority (CA).  Alpine
1422 compares the server system identity in the server certificate with the
1423 name of the server system to which it is trying to connect.  Alpine also
1424 verifies that the CA signature is authentic.
1427 Some common failure conditions are:
1430 <UL>
1431   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1432 signed its own certificate.  This does not necessarily indicate anything
1433 bad; the server operators may simply have elected to not purchase a
1434 signed certificate from a certificate authority.
1436   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1437 the signature on the server system is from an unknown certificate authority.
1438 It can also mean that no certificate authority certificates have been
1439 installed on the local UNIX system.
1441   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1442 the same as either of the above two conditions in UNIX Alpine.  Note that
1443 Windows systems typically have a full set of certificate authority
1444 certificates installed, so it is more likely to be a self-signed
1445 certificate than an unknown certificate authority.
1447   <LI> Server name does not match certificate.  This means that the server
1448 presented a proper signed certificate for a name other than the desired
1449 name.
1450 </UL>
1453 Any of these conditions can indicate that you are being attacked and have
1454 been directed to an imposter server that will record your password and
1455 your private mail messages.  It can also mean something innocuous.
1458 If you are certain that the problem is innocuous, you can append the
1459 option
1462 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1465 to the server system name where it appears in your configuration (e.g. the
1466 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1467 a folder-collection, or a news or SMTP server).  This will
1468 disable certificate validation.  On the other hand, if you are attacked,
1469 you will get no warning if you do this.
1472 &lt;End of Cert Validation Failures help&gt;
1473 </BODY>
1474 </HTML>
1475 ====== h_release_tlscerts ======
1476 <HTML>
1477 <HEAD>
1478 <TITLE>TLS and SSL usage note</TITLE>
1479 </HEAD>
1480 <BODY>
1481 <H1>TLS and SSL usage note</H1>
1484 When using Alpine from Unix or Windows 2000,
1485 server certificates must be signed by a trusted certificate authority.
1486 You may relax this requirement (at the cost of some security) by using
1488 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1489 modifier in the mailbox name.
1492 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1495 The fully-qualified host name of the server should be used
1496 so that it matches the host name in the server certificate.
1498 Here is an example of a host specification that directs Alpine to use
1499 the SSL port (993) and an encrypted data stream.
1501 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1503 &lt;End of TLS usage help&gt;
1504 </BODY>
1505 </HTML>
1506 ====== h_news_config ======
1507 <HTML>
1508 <HEAD>
1509 <TITLE>Alpine Configuration</TITLE>
1510 </HEAD>
1511 <BODY>
1512 <H1>Alpine Configuration</H1>
1514 <H2>Using Environment Variables</H2>
1516 The values of Alpine configuration options may include environment variables
1517 that are replaced by the value of the variable at the time Alpine is run
1518 (and also at the time the config option is changed).
1519 The syntax to use environment variables is a subset of the common Unix
1520 shell dollar-syntax.
1521 For example, if
1523 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1525 appears in the value of an Alpine configuration option it is looked up in the
1526 environent (using getenv(&quot;VAR&quot;)) and its
1527 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1528 To include a literal dollar sign you may precede the dollar sign with another
1529 dollar sign.
1530 In other words, if the text
1532 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1534 is the value of a configuration option, it will be expanded to
1536 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1538 and no environment lookup will be done.
1539 For Unix Alpine it will also work to use a backslash character to
1540 escape the special meaning of the dollar sign, but $$ is preferable since
1541 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1542 to be in a shared configuration file.
1545 This all sounds more complicated than it actually is.
1546 An example may make it clearer.
1547 Unfortunately, the way in which environment variables are set is OS-dependent 
1548 and command shell-dependent.
1549 In some Unix command shells you may use
1551 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1552    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1554 Now, if you use Alpine's Setup/Config screen to set
1556 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1558 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1559 so that this would be equivalent to
1561 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1563 Note, environment variable substitution happens after configuration
1564 options that are lists are split into the separate elements of the list,
1565 so a single environment variable can't contain a list of values.
1568 The environment variable doesn't have to be the only thing
1569 after the equal sign.
1570 However, if the name of the variable is not at the end of the line or
1571 followed by a space (so that you can tell where the variable name ends),
1572 it must be enclosed in curly braces like
1574 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1576 It is always ok to use the braces even if you don't need to.
1578 It is also possible to set a default value for an environment variable.
1579 This default value will be used if the environment variable is not
1580 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1581 The syntax used to set a default value is
1583 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1585 If the config file contains
1587 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1589 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1590 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1591 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1592 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1593 the default value.
1594 (Note that the variable is called &quot;personal-name&quot; in the config
1595 file but is displayed in the config screen as
1596 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1597 In general, the value that goes into a config file is never exactly the
1598 same as the value you see on the screen.)
1601 An example where an environment variable might be useful is the
1602 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1603 Suppose most users used the server
1605 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1607 but that there were some exceptions who used
1609 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1611 In this case, the system manager might include the following line in
1612 the systemwide default Alpine configuration file
1614 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1616 For the exceptional users adding
1618 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1620 to their environment should work.
1622 Another example might be the case where a user has to use a different
1623 SMTP server from work and from home.
1624 The setup might be something as simple as
1626 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1628 or perhaps a default value could be given.
1629 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1630 a list of SMTP servers.
1633 <H2>Configuration precedence</H2>
1635 There are several levels of Alpine configuration.  Configuration values at
1636 a given level override corresponding values at lower levels.  In order of
1637 increasing precedence:
1639 <UL>
1640  <LI> built-in defaults
1641  <LI> system-wide
1642 <!--chtml if pinemode="os_windows"-->
1643       config file from command line or provided
1644       by "PINECONF" environment variable
1645 <!--chtml else-->
1646       pine.conf file
1647 <!--chtml endif-->
1648  <LI> personal configuration file
1649  <LI> personal exceptions configuration file
1650  <LI> command-line options
1651  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1652  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1653 </UL>
1655 The values in both the personal configuration file and the
1656 <A HREF="h_config_exceptions">exceptions</A>
1657 configuration file may be set using the Setup command.
1658 Setup/Config is the command to change most of the personal configuration
1659 options.
1660 The other Setup subcommands are also used to change the configuration,
1661 for example, Setup/AddressBook, Setup/Rules, and so on.
1662 Changing the personal exceptions configuration is very similar.
1663 To change a value in the Config screen you would use the command
1664 Setup/eXceptions/Config.
1665 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1667 There are a couple exceptions to the rule that configuration values are replaced
1668 by the value of the same option in a higher-precedence file.
1669 The Feature-List variable has values that are additive, but can be
1670 negated by prepending &quot;no-&quot; in front of an individual feature name.
1671 So for features, each individual feature's value is replaced by the value
1672 of the same feature in a higher-precedence file.
1673 Note that this is done automatically for you when you change these values via
1674 the Setup/Config command.
1675 The other exception to the <EM>replace</EM> semantics happens when you
1676 use <A HREF="h_config_inheritance">configuration inheritance</A>
1677 for option lists.
1680 <H2>File name defaults</H2>
1682 Notes:<P>
1684 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1685 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1686 <BR> # = default file name is overridable in pinerc.
1687 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1688 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1689 <BR> + between the mailcap paths implies that the two files are combined.
1690 <BR> ; between other default paths implies that the first one found is used.
1691 </P>
1692 Alpine looks for most support files in the same directory it finds its
1693 personal configuration file (pinerc).  The -p command-line flag may be
1694 used to specify a particular path name for the pinerc file.  If a
1695 pinerc file does not exist, it will be created (if directory permissions
1696 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1697 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1698 file does not exist in either one, it will create one in the first of those
1699 two directories that is writable.  In detail:
1700 <PRE>
1702 PC-Alpine:
1704  executable     &lt;DOS search path&gt;&#92;pine.exe
1705  help index     &lt;exe dir&gt;&#92;pine.ndx
1706  help text      &lt;exe dir&gt;&#92;pine.hlp
1708  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1709  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1710  global cfg     $PINECONF
1712  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1713  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1714  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1715  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1716  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1717  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1718  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1719  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1720  postponed#     $HOME&#92;mail&#92;postpond.mtx
1721  interrupted    $HOME&#92;mail&#92;intruptd
1723 Unix Alpine:
1725  executable     &lt;Unix search path&gt;/pine
1726  persnl cfg     ~/.pinerc
1727  except cfg     ~/.pinercex
1728  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1729  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1730  local help     <!--#echo var="PINE_INFO_PATH"-->
1732  interrupted    ~/.pine-interrupted-mail
1733  debug          ~/.pine-debugN
1734  crash          ~/.pine-crash
1735  newsrc#        ~/.newsrc
1736  signature#     &lt;pinerc dir&gt;/.signature
1737  addressbook#   &lt;pinerc dir&gt;/.addressbook
1738  postponed#     ~/mail/postponed-msgs
1739  sentmail#      ~/mail/sent-mail
1740  mailcap#       ~/.mailcap + /etc/mailcap
1741                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1742  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1744  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1745  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1746  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1747  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1748  password       /etc/passwd
1750 Unix Alpine and PC-Alpine:
1752  .ab*           remote addressbook support files
1753  a[1-9]*        temporary (while Alpine is running) addressbook files
1755 </PRE>
1758 <H2>Mailcap files</H2>
1760 Alpine honors the mailcap configuration system for specifying external
1761 programs for handling attachments.  The mailcap file maps MIME attachment
1762 types to the external programs loaded on your system that can display
1763 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1764 distribution.  It includes comments that explain the syntax you need to
1765 use for mailcap.  With the mailcap file, any program (mail readers,
1766 newsreaders, WWW clients) can use the same configuration for handling
1767 MIME-encoded data.
1770 <H2>MIME-Types files</H2>
1772 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1773 what Content-Type to use for labeling an attached file, based on
1774 the file extension.  That is, this file provides a mapping between
1775 filename extensions and MIME content-types.
1778 <H2>Environment variables</H2>
1780 PC-Alpine uses the following environment variables:
1781 <DL>
1782 <DT>PINERC</DT>
1783 <DD>Optional path to pinerc file.</DD>
1784 <DT>PINERCEX</DT>
1785 <DD>Optional path to personal exceptions configuration file.</DD>
1786 <DT>PINECONF</DT>
1787 <DD>Optional path to global pine config file.</DD>
1788 <DT>HOME</DT>
1789 <DT>TMPDIR, TMP, or TEMP</DT>
1790 <DT>COMSPEC</DT>
1791 <DT>MAILCAPS</DT>
1792 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1793 <DT>USER_DICTIONARY</DT>
1794 <DD>Used to specify the file to contain the user's spell check
1795 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1796 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1797 </DL>
1799 Unix Alpine uses the following environment variables:
1800 <DL>
1801 <DT>TERM</DT>
1802 <DD>Tells Alpine what kind of terminal is being used.</DD>
1803 <DT>DISPLAY</DT>
1804 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1805 <DT>SHELL</DT>
1806 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1807 <DT>TMPDIR, TMP, or TEMP</DT>
1808 <DT>MAILCAPS</DT>
1809 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1810 </DL>
1811 <!--chtml if pinemode="os_windows"-->
1813 <H2>Common PC-Alpine Configuration Problems</H2>
1815 <H3>Configuration settings aren't being saved</H3>
1817 <P>This problem can happen if you run pine from one directory and
1818 then decide to move your pine directory to another location.  PC-Alpine
1819 stores certain variables, including the configuration location, in the
1820 Windows Registry (which you shouldn't ever need to manually edit).  There
1821 are a couple of ways to go about removing or resetting the values in the
1822 registry.
1825 1) Run PC-Alpine's registry value deletion command.  This can be done by
1826 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1827 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1828 value to the above command.
1831 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1832 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1833 option, you can tell PC-Alpine the location of your pinerc.  An example of
1834 this would be to run: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-p&nbsp;C:&#92;pine&#92;mypinerc&quot;.
1835 Again, you can use the DOS prompt or the shortcut method explained in (1).
1838 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1839 set registry values to the current setting, and is therefore useful with
1840 the &quot;-p&nbsp;PINERC&quot; option.
1842 <!--chtml endif-->
1844 &lt;End of Configuration Notes&gt;
1845 </BODY>
1846 </HTML>
1847 ====== h_news_legal ======
1848 <html>
1849 <head>
1850 <TITLE>Alpine Legal Notices</TITLE>
1851 </head>
1852 <body>
1854 <H1>Alpine Legal Notices</H1>
1856 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1860 &lt;End of Alpine Legal Notices&gt;
1861 </BODY>
1862 </HTML>
1863 ===== h_info_on_mbox =====
1864 <HTML>
1865 <HEAD>
1866 <TITLE>Information on mbox driver</TITLE>
1867 </HEAD>
1868 <BODY>
1869 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1871 Beginning with Pine 4.00 (Pine came before Alpine)
1872 a new INBOX access method is
1873 available as part of the standard configuration.  It is called the
1874 &quot;mbox&quot; driver and it works like this:<P>
1877 <BLOCKQUOTE>
1878 If the file &quot;mbox&quot; exists in the user's home directory, and
1879 is in Unix mailbox format, then when INBOX is opened this file will be
1880 selected as INBOX instead of the mail spool file.  Messages will be
1881 automatically transferred from the mail spool file into the mbox
1882 file.
1883 </BLOCKQUOTE>
1886 The advantage of this method is that, after new mail has been copied
1887 from the system mail spool, all subsequent access is confined to the
1888 user's home directory, which is desirable on some systems.  However, a
1889 possible disadvantage is that mail tools other than those from the
1890 University of Washington will not know to look for mail in the user's
1891 mbox file.  For example, POP or IMAP servers other than those from the
1892 University of Washington, and many &quot;new mail notification&quot;
1893 programs may not work as expected with this driver enabled.<P>
1895 To disable this behavior, either remove/rename the &quot;mbox&quot;
1896 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1897 option in Setup/Config
1898 and add &quot;mbox&quot; to it:
1900 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1902 &lt;End of help on this topic&gt;
1903 </BODY>
1904 </HTML>
1905 ===== h_info_on_locking =====
1906 <HTML>
1907 <HEAD>
1908 <TITLE>FAQs on Alpine Locking</TITLE>
1909 </HEAD>
1910 <BODY>
1911 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1913 There is an extensive section on locking in the Alpine technical notes;
1914 this information is intended to provide answers to some common questions:<P>
1915 <OL>
1916 <LI> Why did locking change in Pine 4.00?<BR>
1917 The actual locking mechanisms did not change in 4.00.
1918 What changed is that when one particular locking mechanism used by Alpine 
1919 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1920 failure would occur, but no warning was issued.<P>
1922 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1923 Yes.  It means that Alpine was unable to create a lockfile in the
1924 spool directory, generally because of overly restrictive protections on the
1925 spool directory.  The correct permissions on the spool directory for
1926 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1927 with the sticky-bit set, so only owners of a file can delete them.<P>
1929 <LI> Why does Alpine require that the mail spool directory have 1777
1930    protections?<BR>
1931 Alpine was designed to run without special privileges.  This means that in
1932 order to create a lockfile in the spool directory, it is necessary to have
1933 the spool directory permissions be world-writable.<P>
1935 <LI> Can't you create the lockfile somewhere else?<BR>
1936 No.  The lockfile in question must be in the mail spool directory, because
1937 that's where the mail delivery program expects to find it, and the purpose
1938 of the file is to coordinate access between the mail client (Alpine) and the
1939 mail delivery program.<P>
1941 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1942 No.  Remember that the individual mail files in the spool directory are
1943 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1944 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1945 -- means that only the owner of the file (or root) can delete files in the 
1946 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1947 anyone could
1948 create a random file in the spool directory.  If the spool directory is
1949 under quota control along with home directories, there is little incentive
1950 for anyone to do this, and even without quotas a periodic scan for
1951 non-mail files usually takes care of the problem.  <P>
1953 <LI> Why not run Alpine as setgid mail?<BR>
1954 Alpine was never designed to run with privileges, and to do so introduces a
1955 significant security vulnerability.  For example, if a user suspends Alpine,
1956 the resulting shell will have group privileges.  This is one example of
1957 why we strongly recommend against running Alpine as a privileged program.
1958 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1959 users
1960 could not test Alpine versions or other mailers that had not been installed
1961 by the system administrators.<P>
1964 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1965 There are, but they all have different sets of tradeoffs, and not all will
1966 work on all systems.  Some examples:<UL>
1967  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1968    spool is local.   Doesn't work reliably if NFS is used.
1969    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1970    use the same calls.
1971  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1972    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1973 mail tools that always look in the spool directory for the mail.
1974 </UL><P>
1976 <LI> Are these spool directory lock files the only kinds of locks used by
1977    Alpine?<BR>
1978 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1979 mailbox format folders, these are used to coordinate access between
1980 multiple Alpine sessions.  <P>
1982 <LI> What about the 
1983 <A HREF="h_config_quell_lock_failure_warnings">&quot;<!--#echo var="FEAT_quell-lock-failure-warnings"-->&quot;</A> feature added in Pine 4.01?<BR>
1984 This is for people who are content to live dangerously, or who have
1985 specific knowledge that the spool directory lockfiles are superfluous on
1986 their system (because both Alpine and the mail delivery program are using 
1987 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1989 <LI> Where can I find more details on how Alpine locking works?<BR>
1990 See the Alpine Technical Notes.<P>
1992 </OL>
1994 &lt;End of help on this topic&gt;
1995 </BODY>
1996 </HTML>
1997 ===== h_finding_help ====
1998 <HTML>
1999 <HEAD>
2000 <TITLE>Finding more information and requesting help</TITLE>
2001 </HEAD>
2002 <BODY>
2003 <H1>Places to Look for More Answers</H1>
2004 If you have questions about or problems with Alpine that you cannot resolve 
2005 after consulting the program's internal, context-sensitive help screens, here 
2006 are additional information resources that you may find helpful:
2008 <UL>
2009   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
2011   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
2013   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
2014 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
2015   since the last version, which may be useful for you to be aware of, 
2016 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
2017 a change in the way an aspect of Alpine works.  There, you will also find notes 
2018 on Alpine configuration.<P>
2019 <!--
2020   <LI> The main site for Alpine contains information on configuring and solving problems
2021        with Alpine, it can be found at
2023 <CENTER><A HREF="http://alpine.x10host.com/alpine/">http://alpine.x10host.com/alpine/</A></CENTER>  
2025   <LI> The Alpine Information Center (maintained by the University of
2026            Washington) World Wide Web site contains, among other things
2027            <UL>
2028            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
2029            <LI>an overview of the basics for beginning Alpine users
2030            <LI>Technical Notes for systems administrators
2031            <LI>archives (including a searchable index) of the alpine-info 
2032 mailing list, on which matters of interest to systems/email administrators,
2033 developers, trainers, user support personnel, and others involved with Alpine 
2034 messaging on a &quot;technical&quot; level are discussed.
2035 </UL>
2036         The Alpine Information Center can be accessed with a WWW browser at:<P>
2037             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
2038 </UL>
2039 <P><HR WIDTH="75%">
2040 <H1>Requesting help</H1>
2041 If the internal help, the Release Notes, the Alpine Information Center, and your 
2042 local online and print resources do not help you resolve a problem, please
2043 start by contacting your local computer support staff and asking for help.
2045 This is especially true if:
2046 <ul>
2047   <li>You suddenly have trouble sending or receiving mail.
2048   <li>You receive a "disk quota exceeded" message.
2049   <li>You have forgotten your password.
2050   <li>You think your account may have been compromised.
2051   <li>You need help viewing an attachment.
2052   <li>You need to know how to configure your:
2053       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
2054       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
2055       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
2056       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2057   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2058   <li>You want to block email from a particular person.
2059   <li>You're going on vacation and need to autorespond to incoming mail.
2060   <li>You want to automatically file or filter incoming messages.
2061 </ul>
2063 In all of these cases,
2064 you should contact <B>your</B> support staff, because <B>only they</B> 
2065 will be able to assist you effectively. Your support staff may be, depending on who 
2066 provides you with the email account you use Alpine with, for example:<UL>
2067 <LI> the computing help desk of (a department of) your university, school, 
2068 employer, ... ; or
2069 <LI> the customer service center of your Internet Service Provider; or
2070 <LI> the friendly volunteer helpers of your Freenet; or
2071 <LI> the person who setup your computer and internet connection.
2072 </UL>
2074 Due to the large number of Alpine installations worldwide, and because we
2075 receive no funding for it, the University of Washington <B>cannot provide 
2076 individual support services outside the University of Washington</B>.
2078 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2079 newsgroup can be a valuable source of information and assistance for Alpine 
2080 user issues.
2082 For systems/email administrators, developers, trainers, user support
2083 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2084 level, the mailing list alpine-info is available; for information on
2085 subscribing and posting to it, see
2087 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
2090 Regardless of whom you are asking for help with Alpine, remember 
2091 to provide as much detail as you can about the
2092 nature of any problem you are encountering, such as
2093 <UL>
2094 <LI>when it first occurred;
2095 <LI>what, if anything, happened that might have brought it about;
2096 <LI>whether it still persists;
2097 <LI>whether it is reproducible, and if so, how;
2098 <LI>what, if anything, you already tried to solve it.
2099 </UL> 
2100 It may also be helpful if you specify what version of Alpine you are using 
2101 <!--chtml if pinemode="running"-->
2102 -- this is <!--#echo var="ALPINE_VERSION"--> --
2103 <!--chtml endif-->
2104 and on what system, and when the copy of Alpine you are using was created
2105 <!--chtml if pinemode="running"-->
2106 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2107 <!--chtml endif-->
2109 <!--chtml if pinemode="running"-->
2110 <P>   
2111 When the Alpine program you are currently using was installed, a support
2112 contact email address may have been set up; in that case, you can simply select
2113 this link now to send a message to it:<BR>
2114 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2115 <!--chtml endif-->
2116 <!--chtml if [ -r PINE_INFO_PATH ]-->
2117 <HR WIDTH="75%">Local Support Contacts:<P>
2118 <!--#include file="PINE_INFO_PATH"-->
2119 <HR WIDTH="75%">
2120 <!--chtml endif-->
2121 <P> 
2122 &lt;End of help on this topic&gt;
2123 </BODY>
2124 </HTML>
2125 ===== new_user_greeting ======
2126 <HTML>
2127 <HEAD>
2128 <TITLE>NEW USER GREETING</TITLE>
2129 </HEAD>
2130 <BODY>
2131 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2132 <BR>
2133 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2134 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2135 select Setup/Config to see many of the options available to you. Also note
2136 that all screens have context-sensitive help text available.<P>
2137 <!--chtml if pinemode="phone_home"-->
2138 SPECIAL REQUEST:
2139 This software was originally created and maintained as a public
2140 service by the University of Washington until 2009; updates are made 
2141 available as a public service of the Alpine community. It is always 
2142 helpful to have an idea of how many users are using Alpine. Are you 
2143 willing to be counted as an Alpine user? Pressing 
2144 <A HREF="X-Alpine-Phone-Home:">Return</A>
2145 will send an anonymous (meaning, your real email address will not be revealed) 
2146 message to the Alpine developers for purposes of tallying.
2148 <!--To Exit this screen and continue your Alpine session press "E".-->
2149 <!--chtml else-->
2150 To Exit this screen and continue your Alpine session press "Return".
2151 <!--chtml endif-->
2152 </BODY>
2153 </HTML>
2154 ===== new_alpine_user_greeting ======
2155 <HTML>
2156 <HEAD>
2157 <TITLE>NEW ALPINE USER GREETING</TITLE>
2158 </HEAD>
2159 <BODY>
2160 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2161 <BR>
2162 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2163 Your Alpine configuration file indicates that you may have used Pine before
2164 but not Alpine.
2165 If you are familiar with the way Pine works, you should be comfortable
2166 using Alpine.
2167 Your Pine configuration file is automatically used for Alpine.
2168 The Release Notes may be viewed by pressing 
2169 &quot;R&quot; now or while in the MAIN MENU.
2171 <!--chtml if pinemode="phone_home"-->
2172 SPECIAL REQUEST:
2173 This software was originally created and maintained as a public
2174 service by the University of Washington until 2009; updates are made 
2175 available as a public service of the Alpine community. It is always 
2176 helpful to have an idea of how many users are using Alpine. Are you 
2177 willing to be counted as an Alpine user? Pressing 
2178 <A HREF="X-Alpine-Phone-Home:">Return</A>
2179 will send an anonymous (meaning, your real email address will not be revealed) 
2180 message to the Alpine developers for purposes of tallying.
2182 <!--To Exit this screen and continue your Alpine session press "E".-->
2183 <!--chtml else-->
2184 To Exit this screen and continue your Alpine session press "Return".
2185 <!--chtml endif-->
2186 </BODY>
2187 </HTML>
2188 ===== new_version_greeting ======
2189 <HTML>
2190 <HEAD>
2191 <TITLE>NEW VERSION GREETING</TITLE>
2192 </HEAD>
2193 <BODY>
2194 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2195 <BR>
2196 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2197 Your Alpine configuration file indicates that you may not have used 
2198 this version of Alpine before.  This version's significant changes are
2199 documented in the Release Notes, which may be viewed by pressing 
2200 &quot;R&quot; now or while in the MAIN MENU.
2202 <!--chtml if pinemode="phone_home"-->
2203 SPECIAL REQUEST:
2204 This software was originally created and maintained as a public
2205 service by the University of Washington until 2009; updates are made 
2206 available as a public service of the Alpine community. It is always 
2207 helpful to have an idea of how many users are using Alpine. Are you 
2208 willing to be counted as an Alpine user? Pressing 
2209 <A HREF="X-Alpine-Phone-Home:">Return</A>
2210 will send an anonymous (meaning, your real email address will not be revealed) 
2211 message to the Alpine developers for purposes of tallying.
2213 <!--To Exit this screen and continue your Alpine session press "E".-->
2214 <!--chtml else-->
2215 To Exit this screen and continue your Alpine session press "Return".
2216 <!--chtml endif-->
2217 </BODY>
2218 </HTML>
2220 ===== main_menu_tx ======
2221 <HTML>
2222 <HEAD>
2223 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2224 </HEAD>
2225 <BODY>
2226 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2227 <DIV ALIGN=CENTER>
2228 Version <!--#echo var="ALPINE_VERSION"-->
2229 <!--chtml if pinemode="running"-->
2230 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2231 <!--chtml endif-->
2232 </DIV>
2233 <CENTER>Copyright 2013-2018 Eduardo Chappa,
2234 <BR>Copyright 2006-2008 University of Washington.
2235 </CENTER>
2238 When you are viewing a help screen, there may be links to
2239 other topics highlighted (in Reverse video) in the text.
2240 Here is an example.
2241 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2242 highlighted.
2243 If you type carriage return (or V for View Link, see the commands at the
2244 bottom of the screen) you will be taken to a new help screen to view the
2245 Introduction.
2246 The commands at the bottom of the screen should then include
2247 &quot;P Prev Help&quot;.
2248 If you type &quot;P&quot; you will end up back here.
2249 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2250 to the place you were in Alpine when you entered Help.
2251 In this case, you would go back to the MAIN MENU.
2252 There are also other links that are highlighted in bold (or the color used
2253 by your terminal to display bold).
2254 The items after the Introduction in the TABLE OF CONTENTS are all examples
2255 of such links.
2256 In order to view those links, you first have to make the link you want
2257 to view the current link.
2258 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2259 (see bottom of screen) can do that for you.
2262 <H2>TABLE OF CONTENTS</H2>
2263 <OL>
2264   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2265   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2266 <!--chtml if [ -r PINE_INFO_PATH ]-->
2267   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2268 <!--chtml endif-->
2269   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2270   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2271   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2272   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2273   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2274   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2275   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2276   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2277   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2278   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2279   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2280   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2281   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2282   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2283   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2284   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2285   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2286   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2287   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2288   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2289   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2290   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2291   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2292   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2293   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2294 </OL>
2297 &lt;End of help on this topic&gt;
2298 </BODY>
2299 </HTML>
2300 ===== h_mainhelp_intro ======
2301 <HTML>
2302 <HEAD>
2303 <TITLE>Introduction</TITLE>
2304 </HEAD>
2305 <BODY>
2306 <H1>Introduction</H1>
2308 Alpine is an &quot;Alternatively Licensed Program for Internet
2309 News and Email&quot; produced until 2009 by the University of Washington.
2310 It is intended to be an easy-to-use program for
2311 sending, receiving, and filing Internet electronic mail messages and
2312 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2313 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2314 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2315 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2316 Directory Access Protocol).<p>
2318 Although originally designed for inexperienced email users, Alpine has
2319 evolved to support many advanced features.  There are an ever-growing
2320 number of configuration and personal-preference options, though which of
2321 them are available to you is determined by your local system managers. 
2323 <H2>WHAT ALPINE DOES...</H2>
2325 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2326 allows you to
2327 compose and read messages using Internet mail standards.  (Whether you
2328 can correspond with others on the Internet depends on whether or not your
2329 computer is connected to the Internet.)  Alpine also allows reading and
2330 posting messages on the Internet &quot;net news&quot; system, provided
2331 that your site operates a suitable news server.
2333 <H2>WHAT ALPINE DOES NOT DO...</H2>
2335 A &quot;mail user agent&quot; such as Alpine is just one part of a
2336 messaging system. Here are some things that are <B>not</B> done by Alpine,
2337 but require other programs:<P>
2338 <UL>
2339  <LI> Actual relaying of email... which is done by &quot;message transfer 
2340 agents&quot;.
2341  <LI> Vacation messages... automatically responding to incoming messages
2342  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2343 email.
2344  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2345  <LI> List processing... resending one message to a list of recipients.
2346 </UL>
2349 &lt;End of help on this topic&gt;
2350 </BODY>
2351 </HTML>
2353 ===== h_mainhelp_pinehelp ======
2354 <HTML>
2355 <HEAD>
2356 <TITLE>Alpine Help</TITLE>
2357 </HEAD>
2358 <BODY>
2359 <H1>Alpine Help</H1>
2361 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2362 use will have its own help text, explaining the choices available for that
2363 screen. This general help section, on the other hand, attempts to give an 
2364 overall picture of what Alpine is capable of doing, as well as pointers to 
2365 additional help sections about specific topics.<p>
2367 Much of the help text contains links to further help topics, similar to
2368 how the World Wide Web works.
2369 You may choose a link to view using the &quot;NextLink&quot; and
2370 &quot;PrevLink&quot; commands to change the link that is highlighted.
2371 The &quot;View Link&quot; command will then show you the highlighted link.
2372 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2373 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2374 will return you to the location in Alpine before you asked for help.
2375 For example, if you are reading this text in Alpine you may return to the
2376 help table of contents with the &quot;Prev Help&quot; command or you may view the
2377 Release notes link in the next paragraph and then return here with
2378 &quot;Prev Help&quot;.
2381 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2382 on the current Alpine version are also available from the MAIN MENU: Press
2383 <!--chtml if pinemode="function_key"-->
2384 &quot;F9&quot;
2385 <!--chtml else-->
2386 &quot;R&quot;
2387 <!--chtml endif-->
2388 to browse the release notes.  These include changes since the last release,
2389 configuration information, the history of the Alpine
2390 project, credits, and legal notices.
2392 Alpine releases are available via the world wide web at
2394 <CENTER><SAMP><A 
2395 HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP
2396 ></CENTER>
2399 If you would like to print <EM>all</EM> of Alpine's internal help text
2400 (not recommended) for a little light bedtime reading, then press
2401 <!--chtml if pinemode="function_key"-->
2402 &quot;F12&quot;
2403 <!--chtml else-->
2404 &quot;Z&quot;
2405 <!--chtml endif-->
2406 now.  (This assumes that the
2407 copy of Alpine you are using has been properly configured for printing
2408 at your site.)
2410 &lt;End of help on this topic&gt;
2411 </BODY>
2412 </HTML>
2413 ===== h_mainhelp_localsupport ======
2414 <HTML>
2415 <HEAD>
2416 <TITLE>Local Support Contacts</TITLE>
2417 </HEAD>
2418 <BODY>
2419 <H1>Local Support Contacts</H1>
2421 <!--chtml if [ -r PINE_INFO_PATH ]-->
2422 <!--#include file="PINE_INFO_PATH"-->
2423 <!--chtml else-->
2424 No Local Support Contacts configured.
2425 <!--chtml endif-->
2428 &lt;End of help on this topic&gt;
2429 </BODY>
2430 </HTML>
2432 ===== h_mainhelp_cmds ======
2433 <HTML>
2434 <HEAD>
2435 <TITLE>Giving Commands in Alpine</TITLE>
2436 </HEAD>
2437 <BODY>
2438 <H1>Giving Commands in Alpine</H1>
2440 Unless configured otherwise
2441 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2442 the bottom two lines of the screen are always used to list the
2443 commands you can give.  You press the keys that are highlighted to give
2444 the command.  The commands for getting help and going back to the main
2445 menu are always present (except when viewing help as you are now).
2446 <!--chtml if pinemode="function_key"-->
2447 <!--chtml else-->
2449 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2450 you see at the bottom of any screen. In some cases there are 3 or
2451 even 4 different
2452 sets of keys that can be seen by using the O key. <EM>All commands are 
2453 active</EM>, even if they are not currently showing at the bottom of your 
2454 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2455 remind yourself of the proper key to press to perform an operation.
2457 <H2>Control Key Commands</H2>
2458 When composing mail, and in a few other places, in Alpine you
2459 have to use Control keys. This means pressing the Control key (usually labeled 
2460 &quot;Ctrl&quot;) and the
2461 letter indicated at the same time.  Usually, this is shown with a
2462 &quot;^&quot; in front of the letter.  On some systems, certain control
2463 characters are intercepted before they get to Alpine.  As a work-around,
2464 you can press the ESCAPE key twice followed by the desired key.  For
2465 example, if Ctrl-O (^O) does not work on your system, try typing
2466 &quot;ESC ESC O&quot;.
2467 <!--chtml endif-->
2468 <H2>Paging Up and Down</H2>
2469 The &quot;+&quot; and &quot;-&quot; keys are used for
2470 moving to the next or previous page.  The space bar is a synonym for
2471 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2472 up as you do in the message composer.  On screens with a WhereIs (search)
2473 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2474 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2475 of the message or list.
2477 <H2>Return Key</H2>
2478 The return key is usually a synonym for a frequently used
2479 command.  When viewing a message, there is currently not a default
2480 command, so RETURN does nothing; when in the index, it is synonymous with
2481 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2482 enclosed in square brackets [] is the same as the return key.
2484 <H2>Control Keys Not Used By Alpine</H2>
2485 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2486 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2487 at prompts for file/folder names, control keys must be used for editing and 
2488 navigation functions.
2491 Alpine has used nearly all the control keys available.  There are, however,
2492 certain control keys that are reserved by other programs or for technical
2493 reasons.  Alpine does not use any of these keys:
2494 <DL>
2495  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2496  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2497  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2498 </DL>
2500 Note: Ctrl-S and Ctrl-Q can be subject to 
2501 <A HREF="h_special_xon_xoff">special handling</A>.
2503 In addition, while the ESC key alone is not used for command input,
2504 Alpine will recognize two consecutive ESC key presses followed by a letter 
2505 key as a substitute for control key input.  For example, the control key
2506 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2507 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2508 This is useful if the communication program you are using
2509 (e.g. Telnet) has its own, conflicting, idea of what certain control
2510 characters mean.
2513 <H2>Repainting the Screen</H2>
2514 Sometimes what is displayed on the screen will be
2515 incorrect due to noise on the phone line or other causes and you will want
2516 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2517 command to do this.  It never hurts to do it when in doubt.
2520 &lt;End of help on this topic&gt;
2521 </BODY>
2522 </HTML>
2523 ===== h_mainhelp_status ======
2524 <HTML>
2525 <HEAD>
2526 <TITLE>Titlebar Line</TITLE>
2527 </HEAD>
2528 <BODY>
2529 <H1>Titlebar Line</H1>
2531 The top line of the screen is Alpine's titlebar line.  It will always display
2532 the current version of Alpine and will also convey information about the
2533 status of the program.  This is where you look to find out what
2534 collection, folder and message number is active and where you are in Alpine.
2537 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2538 (typically your INBOX) is &quot;locked&quot; by another mail session --
2539 most likely a more recent session of Alpine has taken the INBOX lock.
2542 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2543 access a
2544 folder on a remote mail server, and for some reason, communication with
2545 the mail server has either been lost, or never successfully established.
2546 This can be a result of trying to open a non-existent folder, or one
2547 stored on an invalid or non-operational server, or it can mean that Alpine
2548 has been suspended for more that 30 minutes while accessing a remote mail
2549 server.
2552 &lt;End of help on this topic&gt;
2553 </BODY>
2554 </HTML>
2555 ===== h_mainhelp_mainmenu ======
2556 <HTML>
2557 <HEAD>
2558 <TITLE>Main Menu</TITLE>
2559 </HEAD>
2560 <BODY>
2561 <H1>Main Menu</H1>
2563 The Main Menu lists Alpine's main options.
2564 The key or keys you must type to enter your
2565 choice are to the left of each option or command name.
2566 You can type either uppercase or lowercase letters,
2567 and you should not press &lt;Return&gt; after typing the
2568 letter (unless you are specifically asking for the default,
2569 highlighted command).
2572 From the Main Menu you can choose to read online help, write (compose) and 
2573 send a message, look at an index of your mail messages, open or maintain
2574 your mail folders, update your address book, configure Alpine, and quit Alpine.
2575 There are additional options listed at
2576 the bottom of the screen as well.
2579 The Help command usually returns context-sensitive help information.
2580 However, in the Main Menu you get the most general help, which includes
2581 a Table of Contents.
2582 The last entry in the Table of Contents is an Index of help topics,
2583 so this is a good place to go if you are having trouble finding how
2584 to do something.
2586 <H2>Main Menu Commands</H2>
2587 The Alpine main menu lists the most common Alpine functions. A <a
2588 href="h_main_menu_commands">full list of these
2589 commands</a> and what they do is available.
2591 &lt;End of help on this topic&gt;
2592 </BODY>
2593 </HTML>
2594 ===== h_mainhelp_abooks ======
2595 <HTML>
2596 <HEAD>
2597 <TITLE>Address Books</TITLE>
2598 </HEAD>
2599 <BODY>
2600 <H1>Address Books</H1>
2603 As you use email, you can build a list of your regular email correspondents 
2604 in your Alpine
2605 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2606 screen. Your
2607 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2608 You can use the address book to store email addresses for individuals or
2609 groups, to create easily
2610 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2611 address when you are composing a message.
2613 There are two ways to add addresses to your address book: you can add them 
2614 manually or take them from messages (by pressing T to access the Take command). 
2615 With either method, you specify nicknames for your correspondents. A single 
2616 address book entry (or nickname) can point to just one email address, or, it can
2617 point to more than one. When it points to more than one, it is called a 
2618 distribution list. Each distribution list has a nickname, a full name, and a 
2619 list of addresses. These
2620 addresses may be actual addresses, other nicknames in your address book, or 
2621 other
2622 distribution lists.
2625 Additional information is available in Alpine's online help:
2626 <ul>
2627   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2628 </ul>
2630 &lt;End of help on this topic&gt;
2631 </BODY>
2632 </HTML>
2633 ===== h_mainhelp_ldap ======
2634 <HTML>
2635 <HEAD>
2636 <TITLE>LDAP</TITLE>
2637 </HEAD>
2638 <BODY>
2639 <H1>LDAP</H1>
2641 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2642 an organization's shared
2643 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2644 large address
2645 books, rather like the White Pages provided by the phone company. As an Alpine 
2646 user, it is not
2647 necessary to know much about how this works, only how to use it and how to 
2648 configure
2651 More information on configuring LDAP is available in Alpine's online help:
2652 <ul>
2653   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2654 </ul>
2656 Additional help on using LDAP in Alpine is also available:
2657 <ul>
2658   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2659 </ul>
2661 &lt;End of help on this topic&gt;
2662 </BODY>
2663 </HTML>
2664 ===== h_mainhelp_index ======
2665 <HTML>
2666 <HEAD>
2667 <TITLE>Index of Messages</TITLE>
2668 </HEAD>
2669 <BODY>
2670 <H1>Index of Messages</H1>
2672 In Alpine's message index, the selected message is highlighted. The first 
2673 column on the left is blank, shows a &quot;+&quot; if the message was
2674 sent directly to you (i.e., it is not a
2675 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2677 The second column may be blank, or it may contain:
2678 <ul>
2679   <li>"N" if the message is new (unread), </li>
2680   <li>"A" if you have answered the message (using the Reply command), </li>
2681   <li>"D" if you have marked the message for deletion.</li>
2682 </ul>
2685 Note: If you answer a message as well as mark it deleted (in either order), 
2686 you will only see the &quot;D&quot;.
2689 The rest of the columns in the message line show you the message
2690 number, date sent, sender, size, and subject. For details, press ? (Help).  
2691 The behavior and appearance of the Index screen is highly configurable.
2692 In the Setup/Config screen search (with the WhereIs command) for options
2693 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2694 many of the configuration possibilities.
2695 In particular, the
2696 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2697 option may be used to configure the look of the standard MESSAGE INDEX lines
2698 in many different ways.
2699 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2700 read the help text there for more information.
2702 Most of the commands you need to handle your messages are visible at the
2703 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2704 commands that are available.
2705 You do not need to see these &quot;other commands&quot;
2706 on the screen to use them. That is, you never need to press O as a prefix
2707 for any other command.
2710 Additional information is available in Alpine's online help:
2711 <ul>
2712   <li><a href="h_mail_index">Message Index Commands</a></li>
2713 </ul>
2715 &lt;End of help on this topic&gt;
2716 </BODY>
2717 </HTML>
2718 ===== h_mainhelp_reading ======
2719 <HTML>
2720 <HEAD>
2721 <TITLE>Reading Messages</TITLE>
2722 </HEAD>
2723 <BODY>
2724 <H1>Reading Messages</H1>
2726 The message text screen shows you the text of the message along with
2727 its header. If a message has attachments, those will be listed (but not
2728 displayed) also.  The titlebar line displays information about the currently
2729 open message, folder and collection.  You see the name of the collection
2730 (if there is one) in angle brackets, then the name of the folder, then the
2731 message number and finally the position within the current message (in
2732 percent). If the message is marked for deletion
2733 &quot;DEL&quot; will appear in the
2734 upper right as well.
2737 As with every Alpine screen, the bottom two lines show you the commands 
2738 available.
2740 <P>Additional information is available in Alpine's online help:
2741 <ul>
2742   <li><a href="h_mail_view">Message Text Screen</a></li>
2743   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2744   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2745 </ul>
2747 &lt;End of help on this topic&gt;
2748 </BODY>
2749 </HTML>
2750 ===== h_mainhelp_composing ======
2751 <HTML>
2752 <HEAD>
2753 <TITLE>Composing Messages</TITLE>
2754 </HEAD>
2755 <BODY>
2756 <H1>Composing Messages</H1>
2758 To write a message, press C (Compose). You see the Compose Message
2759 screen, which is divided into two parts: the header area and the message
2760 text area. The header area is where information on the recipient (the To:
2761 field) and the subject line go, while the message text area contains the
2762 actual text of the email message. Different commands are available to you
2763 when your cursor is in different areas on this screen. To see additional
2764 help on commands in either the message text or header area, type
2765 <Control>G (Get help).
2768 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2769 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2771 <P>The following information from Alpine's online help may prove useful:
2772 <ul>
2773   <li><a href="h_composer_to">Message Header Commands</a></li>
2774   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2775   <li><a href="h_composer">Composer Commands</a></li>
2776   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2777   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2778   <li><a href="h_compose_send">Send Command</a></li>
2779   <li><a href="h_compose_spell">Spell Check Command</a></li>
2780 </ul>
2782 &lt;End of help on this topic&gt;
2783 </BODY>
2784 </HTML>
2785 ===== h_mainhelp_collections ======
2786 <HTML>
2787 <HEAD>
2788 <TITLE>Collection Lists</TITLE>
2789 </HEAD>
2790 <BODY>
2791 <H1>Collection Lists</H1>
2793 Collection lists are Alpine's way of organizing groups of folders. Each
2794 "collection" can reside on a different server, for example, and contain a
2795 different group of mail folders.
2798 For more information on this, see:
2799 <ul>
2800   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2801 </ul>
2803 Additional information relating to collection lists is also available in 
2804 Alpine's online
2805 help:
2806 <ul>
2807   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2808   <li><a href="h_collection_screen">Collection List Screen</a></li>
2809 </ul>
2811 &lt;End of help on this topic&gt;
2812 </BODY>
2813 </HTML>
2814 ===== h_mainhelp_folders ======
2815 <HTML>
2816 <HEAD>
2817 <TITLE>Folders</TITLE>
2818 </HEAD>
2819 <BODY>
2820 <H1>Folders</H1>
2822 Messages can quickly accumulate in your INBOX folder. If you use email
2823 often, you soon could have hundreds. You need to delete messages you do
2824 not want, and you can use folders to organize messages you wish to save. A
2825 folder is a collection of one or more messages that are stored (just like
2826 the messages in your INBOX) so you can access and manage them.
2829 You can organize your email messages into different folders by topic,
2830 correspondent, date, or any other category that is meaningful to you. You
2831 can create your own folders, and Alpine automatically provides three:
2832 <ul>
2833   <li>The INBOX folder: messages sent to you are listed in this folder.
2834       When you first start Alpine and go to the Message Index screen, you are
2835 looking at the list of messages in your INBOX folder. Every incoming
2836 message remains in your INBOX until you delete it or save it in another
2837 folder. </li>
2838   <li>The sent-mail folder: copies of messages you send are stored in this 
2839 folder. This is
2840 convenient if you cannot remember whether you actually sent a message and want 
2841 to check, or
2842 if you want to send a message again.</li>
2843   <li>The saved-messages folder: copies of messages you save are stored in this 
2844 folder
2845 unless you choose to save them to other folders you create yourself.</li>
2846 </ul>
2849 More information about folders is available in Alpine's online help:
2850 <ul>
2851   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2852   <li><a href="h_folder_maint">Help for Folder List</a></li>
2853   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2854   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2855 Explained</a></li>
2856   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2857 </ul>
2859 &lt;End of help on this topic&gt;
2860 </BODY>
2861 </HTML>
2862 ===== h_mainhelp_color ======
2863 <HTML>
2864 <HEAD>
2865 <TITLE>Color</TITLE>
2866 </HEAD>
2867 <BODY>
2868 <H1>Color</H1>
2870 If the terminal emulator you are using is capable of displaying color or if
2871 you are using PC-Alpine, then it is possible to set up Alpine so that various
2872 parts of the display will be shown in colors you configure. This is done
2873 using the Setup Color screen, available from the MAIN MENU by selecting
2874 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2875 stands for Config in this context).
2878 For example, you may color things like the titlebar, the current item,
2879 the keymenu, and the status messages.
2880 You may also color lines in the index, and headers and quoted text in the
2881 MESSAGE TEXT screen.
2882 You use the Color Setup screen for configuring most of this, but you must
2883 use the IndexColor setup for coloring whole index lines.
2884 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2887 The following entries in Alpine's online help provide additional information 
2888 about how to use color:
2889 <UL>
2890   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2891   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2892   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2893   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2894 </UL>
2896 &lt;End of help on this topic&gt;
2897 </BODY>
2898 </HTML>
2899 ===== h_mainhelp_mouse ======
2900 <HTML>
2901 <HEAD>
2902 <TITLE>Using a Mouse</TITLE>
2903 </HEAD>
2904 <BODY>
2905 <H1>Using a Mouse</H1>
2907 If you are using PC-Alpine mouse support is turned on automatically.
2908 If you are using UNIX Alpine within an X terminal window or within
2909 a terminal emulator that supports an xterm-style mouse, then you may
2910 turn on support for the mouse with the feature
2911 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2912 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2914 PC-Alpine offers considerable mouse support.  You can view what is
2915 &quot;clickable&quot; by dragging your mouse over any screen; when the
2916 arrow cursor changes into a hand, you found something. Mouse-click
2917 possibilities include navigating between screens and folders and
2918 double-clicking on hyperlinks to open your Web browser.
2919 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2920 screen.  Examples of right-click options include &quot;copy&quot; after
2921 selecting text to copy and &quot;View in New Window&quot; when you click
2922 on a particular message in the Message Index. The menu choices available
2923 to you will vary based upon what screen is open, where on the screen your
2924 cursor is located, and even what action you have already taken.
2925 Within a folder, you may set the &quot;Important&quot; flag on any
2926 message.
2928 X terminal mouse support is more limited but still quite powerful.
2929 As with PC-Alpine, clicking on any of the commands in the keymenu at
2930 the bottom of the screen will execute that command as if you typed it.
2931 Double-clicking on a link, for example the link to the
2932 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2933 will take you to that link.
2934 Double-clicking on an index line will view the message, and so on.
2936 &lt;End of help on this topic&gt;
2937 </BODY>
2938 </HTML>
2939 ===== h_mainhelp_keywords ======
2940 <HTML>
2941 <HEAD>
2942 <TITLE>Keywords</TITLE>
2943 </HEAD>
2944 <BODY>
2945 <H1>Keywords</H1>
2947 Within a folder, you may set the &quot;Important&quot; flag on any
2948 message.
2949 This doesn't have any system-defined meaning and is only called
2950 the Important flag because many users use it to signify that a message
2951 is important to them in some way.
2953 You may also define your own set of keywords.
2954 You might know these as user defined flags or as labels.
2955 These are similar to the Important flag but you choose the names for yourself.
2957 Alpine will only display keywords that
2958 have been added by you in the Flag Details screen or
2959 that have been configured by you using the Setup/Config option
2960 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2961 Keywords set by other means (for example, by another email client) will not
2962 show up in Alpine unless you configure Alpine to know about them.
2963 They will show up in the Flag Details screen, but will not show up, for example,
2964 in the index line.
2967 The following entries in Alpine's online help provide additional information 
2968 about how to use keywords:
2969 <ul>
2970   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2971   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2972 </ul>
2974 &lt;End of help on this topic&gt;
2975 </BODY>
2976 </HTML>
2977 ===== h_mainhelp_roles ======
2978 <HTML>
2979 <HEAD>
2980 <TITLE>Roles</TITLE>
2981 </HEAD>
2982 <BODY>
2983 <H1>Roles</H1>
2985 You may play different roles depending on who you are replying to. For
2986 example, if you are replying to a message addressed to help-desk you may
2987 be acting as a Help Desk Worker. That role may require that you use a
2988 different return address and/or a different signature.
2991 To configure roles, go to the MAIN MENU and use the Setup command
2992 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2993 The following entries in Alpine's online help provide additional information 
2994 about how to
2995 use roles:
2996 <ul>
2997   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2998   <li><a href="h_role_select">Roles Screen</a></li>
2999 </ul>
3001 &lt;End of help on this topic&gt;
3002 </BODY>
3003 </HTML>
3004 ===== h_mainhelp_filtering ======
3005 <HTML>
3006 <HEAD>
3007 <TITLE>Filtering</TITLE>
3008 </HEAD>
3009 <BODY>
3010 <H1>Filtering</H1>
3012 The software that actually delivers mail (the stuff that happens
3013 before Alpine is involved) for you is in a better position to do mail filtering
3014 than Alpine itself.
3015 If possible, you may want to look into using that sort of mail filtering to
3016 deliver mail to different folders, delete it, or forward it.
3017 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
3020 Filtering is a way to automatically move certain messages from one folder
3021 to another or to automatically delete messages.
3022 You may also automatically set the state (Important, New, Deleted, Answered) of messages
3023 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
3024 Alpine doesn't have the ability to forward mail to another address or
3025 to deliver vacation messages.
3028 To configure filtering, go to the MAIN MENU and use the Setup command
3029 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
3030 The following entries in Alpine's online help provide additional information 
3031 about how to use filtering:
3032 <UL>
3033   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
3034 </UL>
3036 &lt;End of help on this topic&gt;
3037 </BODY>
3038 </HTML>
3039 ===== h_mainhelp_patterns ======
3040 <HTML>
3041 <HEAD>
3042 <TITLE>Patterns</TITLE>
3043 </HEAD>
3044 <BODY>
3045 <H1>Patterns</H1>
3047 Patterns are used with Roles, Filtering, Index Coloring,
3048 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
3049 The following entries in Alpine's online help provide information 
3050 about using Patterns:
3051 <UL>
3052   <LI> <A HREF="h_rule_patterns">Patterns</A>
3053 </UL>
3055 &lt;End of help on this topic&gt;
3056 </BODY>
3057 </HTML>
3058 ===== h_mainhelp_cmdlineopts ======
3059 <HTML>
3060 <HEAD>
3061 <TITLE>Command Line Options</TITLE>
3062 </HEAD>
3063 <BODY>
3064 <H1>Command Line Options</H1>
3066 Alpine accepts a number of command line arguments, allowing you, for
3067 example, to start Alpine and immediately access a particular folder.
3068 Many of these arguments overlap with options in the Alpine configuration file.
3069 If there is a difference, then an option set on the command line takes
3070 precedence.
3071 Alpine expects command line arguments (other than addresses) to be
3072 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3073 A <a href="h_command_line_options">full list</a> of command line
3074 possibilities is available.
3076 &lt;End of help on this topic&gt;
3077 </BODY>
3078 </HTML>
3079 ===== h_mainhelp_config ======
3080 <HTML>
3081 <HEAD>
3082 <TITLE>Alpine Configuration</TITLE>
3083 </HEAD>
3084 <BODY>
3085 <H1>Alpine Configuration</H1>
3087 Unless it has been administratively disabled, the Setup command on the
3088 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3089 The possible subcommands are for general Configuration settings,
3090 Printer settings, Changing your Password, Signature setup,
3091 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3092 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3093 and Color configuration.
3094 In particular, the &quot;Config&quot; subcommand has many features you may
3095 set or unset and many other configuration variables that may be set to change
3096 the way Alpine works.
3097 Every one of the hundreds of options available in that configuration settings
3098 screen has help text associated with it.
3099 You may read that text by moving the cursor to highlight the option and then
3100 typing the Help command.
3102 These settings are stored in your personal
3103 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3104 <A HREF="h_config_remote_config">remotely</A>),
3105 but on shared systems these settings
3106 may be over-ridden by a system-wide control file (due to local site
3107 security or support policies).  A global pine configuration file can also
3108 be used to set default values for all Alpine users on a particular system.
3109 Power users may be interested in splitting their personal configuration
3110 data into two pieces, a generic piece and
3111 <A HREF="h_config_exceptions">exceptions</A> which apply to
3112 a particular platform.
3113 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3114 General Alpine configuration information can be found
3115 <A HREF="h_news_config">here</A>.
3117 &lt;End of help on this topic&gt;
3118 </BODY>
3119 </HTML>
3120 ===== h_mainhelp_aggops ======
3121 <HTML>
3122 <HEAD>
3123 <TITLE>Aggregate Operations</TITLE>
3124 </HEAD>
3125 <BODY>
3126 <H1>Aggregate Operations</H1>
3128 When you are in the MESSAGE INDEX, the available commands
3129 (for example, Delete, Undelete, Save, Reply, and so on)
3130 normally act on a single message.
3131 So, for example, if you press the Delete command, the currently highlighted
3132 message is marked Deleted.
3133 These commands that normally act on a single message may be applied to
3134 several messages at once instead.
3136 By default this feature is turned on, but it could be administratively turned
3137 off to reduce complexity.
3138 The feature
3139 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3140 in the Setup/Config screen is used to turn it off or on.
3141 When this feature is turned on, the four commands &quot;Select&quot;,
3142 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3143 are available.
3144 The two selection commands allow you to mark a set of
3145 messages as being &quot;selected&quot;.
3146 The &quot;ZoomMode&quot; command will toggle between
3147 displaying only the selected messages and displaying all the messages.
3148 The &quot;Apply&quot; command allows you to
3149 apply one of the regular MESSAGE INDEX commands to all of the selected
3150 messages instead of to only the highlighted message.
3152 An example aggregate operation would be to catch up when reading
3153 a news group.
3154 That is, get rid of all the messages in the news group so that you can
3155 start fresh.
3156 The easiest way to do this in Alpine is to use aggregate operations.
3157 You want to Delete all of the messages in the group.
3158 You could start at the top and type &quot;D&quot; once for every message.
3159 A much faster method is to first Select all of the messages in the group,
3160 and then Delete all of them.
3161 This would take four keystrokes:
3163 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3164 <BR>
3165 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3167 Another use of Select is to use it for searching for a particular message
3168 or set of messages in a large folder.
3169 You may know that the message was From a certain user.
3170 You could select all messages from that user to start, and use Zoom to
3171 look at only those messages.
3172 If there were still too many messages to look at you could Narrow the
3173 set of messages further by selecting from all of those messages only
3174 the ones that were after a certain date, or contained a particular phrase
3175 in the Subject, or were too a particular address, and so on.
3176 That may be the end of what you are doing, or you may want to use Apply to
3177 Save or Forward or Print all of the selected messages.
3179 Some related help topics are
3180 <UL>
3181 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3182 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3183 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3184 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3185 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3186 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3187 </UL>
3189 &lt;End of help on this topic&gt;
3190 </BODY>
3191 </HTML>
3192 ===== h_mainhelp_readingnews ======
3193 <HTML>
3194 <HEAD>
3195 <TITLE>Reading News</TITLE>
3196 </HEAD>
3197 <BODY>
3198 <H1>Reading News</H1>
3200 <H2>Background</H2>
3201 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3202 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3203 Usenet newsgroups allow groups of people with common interests to discuss 
3204 particular topics. You might find newsgroups related to your career, or you 
3205 might wish to check out the online discussion among the fans of your favorite 
3206 television show. 
3208 <H2>Configuring Alpine for Reading News</H2>
3209 Alpine often arrives
3210 pre-configured by your system administrator to automatically access the
3211 newsgroups offered by your organization, Internet Service Provider, or
3212 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3213 need additional details on <a href="h_configuring_news">how to
3214 configure Alpine to read news</a>.
3216 <H2>Accessing Newsgroups</H2>
3217 The first step in reading news is to access the newsgroups collections
3218 screen from Alpine. If everything is configured properly, you should be able
3219 to do this by first typing L (folder List), then selecting the folder
3220 collection listed as "News." The actual name of this collection may differ
3221 from system to system.
3223 <H2>Subscribing to Newsgroups</H2>
3225 Once you have accessed the news collection, you need to subscribe to a
3226 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3227 will keep a record of the newsgroups in which you are interested and which
3228 articles in those newsgroups have been read.
3230 <H2>Using Newsgroups</H2> 
3231 Alpine uses the similar commands to read news as to read mail. For example,
3232 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3233 and the R command Replies to a news posting. Basically, Alpine allows you to
3234 read news as if it were mail, so you don't need to change the way you
3235 interact with Alpine.
3237 There is also additional Alpine help available on 
3238 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3240 &lt;End of help on this topic&gt;
3241 </BODY>
3242 </HTML>
3243 ===== h_mainhelp_securing ======
3244 <HTML>
3245 <HEAD>
3246 <TITLE>Securing your Alpine Session</TITLE>
3247 </HEAD>
3248 <BODY>
3249 <H1>Securing your Alpine Session</H1>
3251 By default, Alpine will attempt to connect to an IMAP server on the normal
3252 IMAP service port (143).
3253 If the Alpine you are using has been built to
3254 support &quot;Transport Layer Security&quot; (TLS)
3255 and &quot;Secure Sockets Layer&quot; (SSL) 
3256 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3257 and the server offers the STARTTLS capability, then a secure (encrypted)
3258 session will be established.
3260 When you are connected to a remote folder the titlebar will contain a plus sign
3261 in the far right column if the connection is encrypted using TLS or SSL.
3262 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3263 if the connection is encrypted.
3265 <H2>More Information on Alpine with SSL and TLS</H2>
3266 <UL>
3267 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3268 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3269 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3270 <LI> <A HREF="h_config_quell_ssl_largeblocks"><!--#echo var="FEAT_quell-ssl-largeblocks"--></A> PC-Alpine feature for working around OS SSL-problems</A> </LI>
3271 </UL>
3272 <H2>Here are some other security-related features and options</H2>
3274 <UL>
3275 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3276 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3277 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3278 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3279 </UL>
3281 &lt;End of help on this topic&gt;
3282 </BODY>
3283 </HTML>
3284 ===== h_mainhelp_problems ======
3285 <HTML>
3286 <HEAD>
3287 <TITLE>Reporting Problems</TITLE>
3288 </HEAD>
3289 <BODY>
3290 <H1>Reporting Problems</H1>
3292 We ask that you first read the relevant help screens and then seek
3293 assistance from your own local support staff.  Once you are sure that your
3294 difficulty is not a local configuration problem, you might look at the
3295 help section explaining where to look for
3296 <A HREF="h_finding_help">more information</A> and where to 
3297 get assistance.
3300 <ADDRESS>
3301    Eduardo Chappa &lt;chappa@gmx.com&gt;
3302 </ADDRESS>
3305 &lt;End of help on this topic&gt;
3306 </BODY>
3307 </HTML>
3308 ===== h_main_menu_commands ======
3309 <HTML>
3310 <HEAD>
3311 <TITLE>MAIN MENU COMMANDS</TITLE>
3312 </HEAD>
3313 <BODY>
3314 <H1>MAIN MENU COMMANDS</H1>
3316 <!--chtml if pinemode="function_key"-->
3317 &nbsp;Available&nbsp;Commands&nbsp;--
3318 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3319 &nbsp;------------------------------
3320 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3321 ----------<BR>
3322 &nbsp;F1&nbsp;&nbsp;Show&nbsp;this&nbsp;help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F1&nbsp;&nbsp;Show&nbsp;this&nbsp;help&nbsp;text<BR>
3323 &nbsp;F2&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands&nbsp;&nbsp;&nbsp;F2&nbsp;&nbsp;Show&nbsp;other&nbsp;commands<BR>
3324 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3325 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3326 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3327 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3328 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3329 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3330 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3331 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3332 &nbsp;F7&nbsp;&nbsp;<A 
3333 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3334 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3335 &nbsp;F8&nbsp;&nbsp;<A 
3336 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3337 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3338 HREF="h_main_release_notes">Release&nbsp;Notes</A>&nbsp;notes&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F9&nbsp;&nbsp;<A 
3339 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3340 &nbsp;F10&nbsp;<A 
3341 HREF="h_main_kblock">Lock&nbsp;Keyboard</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F10&nbsp;<A 
3342 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3343 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3344 &nbsp;F11&nbsp;<A 
3345 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3346 <!--chtml else-->
3347 &nbsp;General&nbsp;Alpine&nbsp;Commands&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Main&nbsp;Menu&nbsp;Screen&nbsp;Commands<BR>
3348 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3349 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;Other&nbsp;available&nbsp;commands<BR>
3350 &nbsp;C&nbsp;&nbsp;<A 
3351 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;P&nbsp;&nbsp;Select&nbsp;Previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu<BR>
3352 &nbsp;I&nbsp;&nbsp;<A 
3353 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;N&nbsp;&nbsp;Select&nbsp;Next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu<BR>
3354 &nbsp;L&nbsp;&nbsp;<A 
3355 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;R&nbsp;&nbsp;Display&nbsp;Alpine&nbsp;<A HREF="h_main_release_notes">Release&nbsp;Notes</A><BR>
3356 &nbsp;A&nbsp;&nbsp;<A 
3357 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3358 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3359 &nbsp;S&nbsp;&nbsp;<A 
3360 HREF="h_main_setup">SETUP</A>&nbsp;functions&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;G&nbsp;&nbsp;<A 
3361 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3362 &nbsp;Q&nbsp;&nbsp;Quit&nbsp;Alpine&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;J&nbsp;&nbsp;<A HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3363 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;&nbsp;<A 
3364 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3365 <!--chtml endif-->
3368 NOTE:
3369 <OL>
3370  <LI>For help on a particular command, highlight the bold text associated
3371 with it above and hit Return.
3372  <LI> The availability of certain commands (e.g. some of the options under
3373 SETUP) is determined by Alpine configuration files and system capabilities.
3374 At some sites, certain commands may not be available due to security or
3375 support concerns.
3376 </OL>
3378 &lt;End of help on this topic&gt;
3379 </BODY>
3380 </HTML>
3382 ===== h_command_line_options ======
3383 <HTML>
3384 <HEAD>
3385 <TITLE>COMMAND LINE OPTIONS</TITLE>
3386 </HEAD>
3387 <BODY>
3388 <H1>COMMAND LINE OPTIONS</H1>
3389 Possible starting arguments for Alpine:
3391 <DL COMPACT>
3393 <DT> <EM>[addresses]</EM>
3395 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3396 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3397 <EM>Alpine</EM> will startup in
3398 the composer with a message started to the addresses specified.
3399 Once the message is sent, the <EM>Alpine</EM> session closes.
3400 Standard input redirection is allowed.
3401 Separate multiple addresses with a space between them.
3402 Addresses are placed in the &quot;To&quot; field only.
3405 <DT> &lt; <EM>file</EM>
3407 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3408 into the body of the message.
3409 Once the message is sent, the <EM>Alpine</EM> session closes. 
3412 <DT> -attach <EM>file</EM>
3414 <DD> Go directly into composer with given file attached.
3417 <DT> -attachlist <EM>file-list</EM>
3419 <DD> Go directly into composer with given files attached.
3420 This must be the last option on the command line.
3423 <DT> -attach_and_delete <EM>file</EM>
3425 <DD> Go directly into composer with given file attached, delete when finished.
3428 <DT> -aux <EM>local_directory</EM>
3430 <DD> <EM>PC-Alpine</EM> only.
3431 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3432 files, like debug files, address books, and signature files.  The pinerc may 
3433 be local or remote.
3436 <DT> -bail
3438 <DD> If the personal configuration file doesn't already exist, exit.
3439 This might be useful if the configuration file is accessed using some
3440 remote filesystem protocol. If the remote mount is missing this will cause
3441 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3444 <DT> -c <EM>n</EM>
3446 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3447 This is used when there are multiple folder collections (contexts) and you 
3448 want to open a folder not in the primary collection.
3451 <DT> -conf
3453 <DD> Configuration: Prints a sample system configuration file to the
3454 screen or standard output. To generate an initial system configuration 
3455 file, execute
3457 <PRE><CODE>
3458                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3459 </CODE></PRE>
3462 To generate a system configuration file using settings from an old
3463 system configuration file, execute
3465 <PRE><CODE>
3466                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3467 </CODE></PRE>
3469 A system configuration file is not required.
3472 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3474 <DD> Copy an address book file to a remote address book folder.
3475 If the remote folder doesn't exist, it will be created.
3476 If it exists but the first message in the folder isn't a remote address
3477 book header message, the copy will be aborted.
3478 This flag will not usually be used by a user.
3479 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3480 and copy entries from the local address book by using aggregate Save in
3481 the address book screen.
3484 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3486 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3487 If the remote folder doesn't exist, it will be created.
3488 If it exists but the first message in the folder isn't a remote pinerc
3489 header message, the copy will be aborted.
3490 This flag may be useful to users who already have a local pinerc file and
3491 would like to convert it to a remote pinerc folder and use that instead.
3492 This gives a way to bootstrap that conversion without having to manually
3493 reset all of the variables in the remote pinerc folder.
3496 <DT> -d <EM>debug-level</EM>
3498 <DD> Debug Level:  Sets the level of debugging information written by
3499 <EM>Alpine</EM>.
3500 <EM>debug-level</EM> can be set to any integer 0-9.
3501 A debug level of 0 turns off debugging for the session.
3502 (Actually there are some levels higher than 9, but you probably don't
3503 want to see them.)
3506 <DT> -d <EM>keywords</EM>
3508 <DD> You may use a more detailed version of the debugging flag to set
3509 the debug level in separate parts of <EM>Alpine</EM>.
3510 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3511 verbose=0..9.
3512 <EM>Flush</EM> causes debugging information to be flushed immediately to
3513 the debug file as it is written.
3514 <EM>Verbose</EM> is the general debugging verbosity level.
3515 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3516 is useful when you are trying to figure out what is responsible for delays.
3517 <EM>Numfiles</EM> sets the number of debug files saved.
3518 <EM>Imap</EM> sets the debug level for the debugging statements related
3519 to the conversation with the IMAP server, and more generally, for the
3520 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3521 <EM>Tcp</EM> turns on some TCP/IP debugging.
3524 <DT> -f <EM>folder</EM>
3526 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3527 of the standard INBOX.
3530 <DT> -F <EM>file</EM>
3532 <DD> Open named text file for viewing and forwarding.
3535 <DT> -h
3537 <DD> Help:  Prints the list of available command-line arguments to the
3538 screen.
3541 <DT> -i
3543 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3544 screen instead of the MAIN MENU.
3547 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3550 <DT> -I <EM>a,b,c,...</EM>
3552 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3553 sequence of commands upon startup.
3554 This allows users to get <EM>Alpine</EM> to start in any
3555 of its menus/screens.
3556 You cannot include any input to the composer in the initial keystrokes.
3557 The key &lt;Return&gt; is represented by a ``CR'' in
3558 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3559 Control keys are two character sequences beginning with ``^'', such as
3560 ``^I''.
3561 A tab character is ``TAB''.
3562 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3563 ``DOWN'', ``LEFT'', and ``RIGHT''.
3564 A restriction is that you can't mix function keys and character keys in this
3565 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3566 A user can always use only <EM>character</EM> keys in the startup list even
3567 if he or she is using <EM>function</EM> keys normally, or vice versa.
3568 If an element in this list is a string of characters surrounded by double
3569 quotes (&quot;) then it will be expanded into the individual characters in
3570 the string, excluding the double quotes.
3573 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3576 <DT> -install
3578 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3579 some basic information to help with getting properly set up.
3582 <DT> -k
3584 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3585 the input of commands to be function-keys.
3586 Otherwise, commands are linked to the regular character keys.
3589 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3590 <EM>Feature-List</EM>.
3593 <DT> -n <EM>n</EM>
3595 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3596 FOLDER INDEX screen with the current message being the specified
3597 message number.
3600 <DT> -nosplash
3602 <DD> <EM>PC-Alpine</EM> only.
3603 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3604 This may be helpful for certain troubleshooting or terminal server scenarios.
3607 <DT> -o <EM>folder</EM>
3609 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3612 <DT> -p <EM>pinerc</EM>
3614 <DD> Uses the named file as the personal configuration file instead of
3615 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3616 Alpinerc may be either a local file or a remote configuration folder.
3619 <DT> -P <EM>pinerc</EM>
3621 <DD> Uses the named file as the system wide configuration file instead of
3622 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3623 Alpinerc may be either a local file or a remote configuration folder.
3626 <DT> -passfile <EM>passfile</EM>
3628 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3629 This should be a fully-qualified filename.
3632 <DT> -pinerc <EM>file</EM>
3634 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3635 settings of variables that the user has made.
3636 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3639 <DT> -r
3641 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3642 <EM>Alpine</EM> in restricted mode can only send email to itself.
3643 Save and export are limited.
3646 <DT> -registry <EM>cmd</EM>
3648 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3649 <EM>Alpine</EM>'s registry entries.
3650 Possible values for <EM>cmd</EM> are set, clear, and dump.
3651 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3652 entries according to its current settings.
3653 <EM>Clear</EM> will clear the registry values.
3654 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3655 <EM>Dump</EM> will display the values of current registry settings.
3656 Note that the dump command is currently disabled.
3657 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3658 the registry only if there currently aren't any values set.
3661 <DT> -sort <EM>key</EM>
3663 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3664 FOLDER INDEX screen.
3665 <EM>Key</EM> can have the following values: 
3666 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3667 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3668 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3669 The default value is &quot;arrival&quot;.
3670 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3673 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3676 <DT> -uninstall
3678 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3679 in Windows settings.  The registry settings are removed and
3680 the password cache is cleared.
3683 <DT> -url <EM>url</EM>
3685 <DD> Open the given URL.
3688 <DT> -v
3690 <DD> Version:  Print version information to the screen.
3693 <DT> -x <EM>exceptions_config</EM>
3695 <DD> Configuration settings in the exceptions configuration override your normal
3696 default settings.
3697 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3700 <DT> -z
3702 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3703 will suspend the <EM>Alpine</EM> session.
3706 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3707 <EM>Feature-List</EM>.
3710 <DT> -<EM>option</EM>=<EM>value</EM>
3712 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3713 For example, <EM>-signature-file=sig1</EM> or
3714 <EM>-Feature-List=signature-at-bottom</EM>.
3715 Note:  Feature-List values are
3716 additive and features may be preceded with no- to turn them off.
3717 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3718 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3719 <EM>-Feature-List=signature-at-bottom</EM>.
3722 </DL>
3724 &lt;End of help on this topic&gt;
3725 </BODY>
3726 </HTML>
3727 ===== h_configuring_news ======
3728 <HTML>
3729 <HEAD>
3730 <TITLE>CONFIGURING NEWS</TITLE>
3731 </HEAD>
3732 <BODY>
3733 <H1>CONFIGURING NEWS</H1>
3734 Alpine can access news folders in any one of three different ways:
3735 <DL>
3736 <DT>REMOTE NNTP</DT>
3737 <DD>Using the Network News Transport Protocol (NNTP) to
3738 access news on a remote news server.  In this case the newsrc file is
3739 stored on the machine where Alpine is running.
3742 To specify a remote news-collection accessed via NNTP use the
3743 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3744 Server: value to the NNTP server's hostname appended with the
3745 communication method &quot;/service=NNTP&quot;, and set the Path:
3746 value to the &quot;#news.&quot; namespace (without the quotes).  See
3747 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3748 help text for a more complete explanation of access method, and the
3749 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3750 text for a more complete explanation of &quot;namespace&quot;.
3752 Instead of specifying a news-collection, you may simply set the
3753 <A HREF="h_config_nntp_server">NNTP Server</A>
3754 option, which will cause Alpine to create a default news-collection for you.
3755 Another NNTP option that may be of interest is
3756 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3758 <DT>REMOTE IMAP</DT>
3759 <DD>Using the Internet Message Access Protocol (IMAP) to
3760 access news on a remote news server.  In this case, your newsrc file is
3761 stored on the news server, in your home directory, so you must have an
3762 account on the news server, but you would be running Alpine on a different
3763 machine.  The news server must be running an IMAPd server process. 
3766 To specify a remote news-collection accessed via IMAP use the
3767 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3768 Server: value to the IMAP server's hostname, and set the Path: value
3769 to the &quot;#news.&quot; namespace (without the quotes).  See the
3770 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3771 text for a more complete explanation of &quot;namespace&quot;.
3773 </DD>
3775 <DT>LOCAL</DT>
3776 <DD>Using local file access to the news database.  In this
3777 case, your newsrc file is stored on the news server, in your home
3778 directory, so you must have an account on the news server, and you would
3779 be running Alpine on the same machine.
3782 To specify a local news-collection use the SETUP/collectionList
3783 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3784 set the Path: value to the &quot;#news.&quot; namespace (without the
3785 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3786 field's help text for a more complete explanation of &quot;namespace&quot;.
3788 </DD>
3789 </DL>
3793 NOTE: Should no news-collection be defined as above, Alpine will
3794 automatically create one using the Setup/Config screen's
3795 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3796 will be created as a &quot;Remote NNTP&quot; as described above.
3800 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3801 possible.  If you don't have an account on the news server, or if the news
3802 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3803 sure, ask your service provider, university, or company for help.)  In
3804 this case, your Unix .newsrc file can be transferred to your PC.  A good
3805 place to put it would be in the same directory as your PINERC file, under
3806 the name NEWSRC, but you can 
3807 <A HREF="h_config_newsrc_path">specify a different location</A>
3808 via Alpine's Setup/Config screen.
3811 Other configuration features related to news are
3812 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3813 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3814 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3815 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3816 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3817 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3818 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3819 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3822 &lt;End of help on this topic&gt;
3823 </BODY>
3824 </HTML>
3825 ===== h_reading_news ======
3826 <HTML>
3827 <HEAD>
3828 <TITLE>READING NEWS</TITLE>
3829 </HEAD>
3830 <BODY>
3831 <H1>READING NEWS</H1>
3833 Alpine uses almost the same commands for manipulating news folders as for
3834 mail folders.  This means, for example, that when you are done with a
3835 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3836 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3837 most newsreaders, wherein a message is implicitly dismissed after you have
3838 looked at it once. We strongly believe that Alpine should offer as much
3839 consistency as possible between mail and news, so the mail paradigm --
3840 wherein a message does not magically disappear without explicit action by
3841 the user -- is used for news as well. <P>
3843 If you answer a message in a news folder, the index view will show the
3844 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3845 keep track of what news as been read has no way of storing this flag, so
3846 it will not be preserved across sessions.  The Deleted flag is the only
3847 one that is preserved when you leave and then return to a newsgroup.  As an
3848 additional note on replies, when you Reply to a newsgroup message and say
3849 you want to reply to all recipients, Alpine will ask if you want to post the
3850 message to all the newsgroups listed in the original message. <P>
3852 If you would like Alpine to mark more-or-less recent news messages as
3853 &quot;New&quot;, then set the
3854 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3855 feature (which is set by default).  This will cause messages after the last one you have marked as
3856 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3857 &quot;N&quot; status often makes it easier to distinguish later news
3858 articles from those you've previously seen, but not yet disposed of via
3859 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3860 record of which messages you have not seen.
3863 A frequent operation in news-reading is &quot;catching up&quot; -- that
3864 is, getting rid of all the messages in the newsgroup so that you can
3865 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3866 Select command.  You would enter the following four keystrokes:
3867 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3868 dismiss) command to all of them.
3871 There are also additional details on 
3872 <A HREF="h_configuring_news">configuring news</a>.
3875 &lt;End of help on this topic&gt;
3876 </BODY>
3877 </HTML>
3878 ====== h_help_index ======
3879 <HTML>
3880 <HEAD>
3881 <TITLE>Help Index</TITLE>
3882 </HEAD>
3883 <BODY>
3884 <H1>Help Index</H1>
3885 <ul>
3886 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3887 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3888 <li><a href="h_main_addrbook">Address Book Command</a>
3889 <li><a href="h_abook_view">Address Book View Explained</a>
3890 <li><a href="h_compose_addrcomplete">Address Completion</a>
3891 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3892 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3893 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3894 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3895 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3896 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3897 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3898 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3899 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3900 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3901 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3902 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3903 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3904 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3905 <li><a href="h_news_legal">Alpine Legal Notices</a>
3906 <li><a href="h_compose_alted">Alt Editor Command</a>
3907 <li><a href="h_index_cmd_apply">Apply Command</a>
3908 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3909 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3910 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3911 <li><a href="h_composer_browse">BROWSER</a>
3912 <li><a href="h_common_bounce">Bounce Command</a>
3913 <li><a href="h_compose_cancel">Cancel Command</a>
3914 <li><a href="h_config_change_your_from">Changing your From Address</a>
3915 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3916 <li><a href="h_mainhelp_color">Color</a>
3917 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3918 <li><a href="h_composer">COMPOSER COMMANDS</a>
3919 <li><a href="h_mainhelp_composing">Composing Messages</a>
3920 <li><a href="h_mainhelp_collections">Collection Lists</a>
3921 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3922 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3923 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3924 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3925 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3926 <li><a href="h_common_compose">Compose Command</a>
3927 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3928 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3929 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3930 <li><a href="h_mainhelp_config">Configuration</a>
3931 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3932 <li><a href="h_config_dflt_color">Default Color</a>
3933 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3934 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3935 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3936 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3937 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3938 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3939 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3940 <li><a href="h_ge_export">Export File Selection</a>
3941 <li><a href="h_ge_allparts">Export Message File Selection</a>
3942 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3943 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3944 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3945 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3946 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3947 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3948 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
3949 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3950 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3951 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3952 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3953 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3954 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3955 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3956 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3957 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3958 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3959 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3960 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3961 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3962 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3963 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3964 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3965 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3966 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3967 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3968 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3969 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3970 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3971 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3972 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3973 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3974 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3975 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3976 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3977 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3978 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3979 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3980 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3981 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3982 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3983 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3984 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3985 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3986 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3987 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3988 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3989 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3990 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3991 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3992 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3993 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3994 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3995 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3996 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3997 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3998 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3999 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
4000 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
4001 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
4002 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
4003 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
4004 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
4005 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
4006 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
4007 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
4008 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
4009 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
4010 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
4011 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
4012 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
4013 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
4014 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
4015 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
4016 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
4017 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
4018 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
4019 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
4020 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
4021 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
4022 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
4023 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
4024 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
4025 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
4026 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
4027 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
4028 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
4029 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
4030 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
4031 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
4032 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
4033 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
4034 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
4035 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
4036 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
4037 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
4038 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
4039 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
4040 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
4041 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
4042 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
4043 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
4044 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
4045 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
4046 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
4047 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
4048 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
4049 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
4050 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
4051 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
4052 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
4053 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
4054 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
4055 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
4056 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4057 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4058 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4059 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4060 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4061 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4062 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4063 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4064 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4065 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4066 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4067 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4068 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4069 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4070 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4071 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4072 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4073 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4074 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4075 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4076 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4077 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4078 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4079 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4080 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4081 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4082 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4083 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4084 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4085 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4086 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4087 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4088 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4089 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4090 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4091 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4092 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4093 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4094 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4095 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4096 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4097 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4098 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4099 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4100 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4101 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4102 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4103 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4104 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4105 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4106 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4107 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4108 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4109 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4110 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4111 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4112 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4113 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4114 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4115 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4116 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4117 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4118 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4119 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4120 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4121 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4122 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4123 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4124 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4125 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4126 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4127 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4128 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4129 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4130 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4131 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4132 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4133 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4134 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4135 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4136 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4137 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4138 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4139 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4140 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4141 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4142 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4143 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4144 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4145 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4146 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4147 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4148 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4149 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4150 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4151 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4152 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4153 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4154 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4155 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4156 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4157 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4158 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4159 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4160 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4161 <li><a href="h_mainhelp_filtering">Filtering</a>
4162 <li><a href="h_finding_help">Finding more information and requesting help</a>
4163 <li><a href="h_common_flag">Flag Command</a>
4164 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4165 <li><a href="h_mainhelp_folders">Folders</a>
4166 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4167 <li><a href="h_common_folders">Folder List Command</a>
4168 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4169 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4170 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4171 <li><a href="h_config_change_your_from">From Address, Changing</a>
4172 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4173 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4174 <li><a href="h_common_goto">Goto Command</a>
4175 <li><a href="h_common_hdrmode">HdrMode Command</a>
4176 <li><a href="h_mainhelp_pinehelp">Help</a>
4177 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4178 <li><a href="h_folder_maint">Help for Folder List</a>
4179 <li><a href="h_valid_folder_names">IMAP</a>
4180 <li><a href="h_ge_import">Import File Selection</a>
4181 <li><a href="h_mainhelp_index">Index of Messages</a>
4182 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4183 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4184 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4185 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4186 <li><a href="h_mainhelp_intro">Introduction</a>
4187 <li><a href="h_main_journal">Journal Command</a>
4188 <li><a href="h_common_jump">Jump Command</a>
4189 <li><a href="h_compose_justify">Justify Command</a>
4190 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4191 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4192 <li><a href="h_mainhelp_ldap">LDAP</a>
4193 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4194 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4195 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4196 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4197 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4198 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4199 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4200 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4201 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4202 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4203 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4204 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4205 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4206 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4207 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4208 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4209 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4210 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4211 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4212 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4213 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4214 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4215 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4216 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4217 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4218 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4219 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4220 <li><a href="h_common_index">Message Index Command</a>
4221 <li><a href="h_mainhelp_mouse">Mouse</a>
4222 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4223 <li><a href="new_user_greeting">NEW USER GREETING</a>
4224 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4225 <li><a href="h_mainhelp_readingnews">News Reading</a>
4226 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
4227 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4228 <li><a href="h_common_nextnew">NextNew Command</a>
4229 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4230 <li><a href="h_mainhelp_readingnews">NNTP</a>
4231 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4232 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4233 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4234 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4235 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4236 <li><a href="h_config_color_style">OPTION: Color Style</a>
4237 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4238 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4239 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4240 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4241 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4242 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4243 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4244 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4245 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4246 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4247 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4248 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4249 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4250 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4251 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4252 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4253 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4254 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4255 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4256 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4257 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4258 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4259 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4260 <li><a href="h_config_font_name">OPTION: Font Name</a>
4261 <li><a href="h_config_font_size">OPTION: Font Size</a>
4262 <li><a href="h_config_font_style">OPTION: Font Style</a>
4263 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4264 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4265 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4266 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4267 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4268 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4269 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4270 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4271 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4272 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4273 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4274 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4275 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4276 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4277 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4278 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4279 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4280 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4281 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4282 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4283 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4284 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4285 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4286 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4287 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4288 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4289 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4290 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4291 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4292 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4293 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4294 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4295 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4296 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4297 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4298 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4299 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4300 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4301 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4302 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4303 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4304 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4305 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4306 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4307 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4308 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4309 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4310 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4311 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4312 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4313 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4314 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4315 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4316 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4317 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4318 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4319 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4320 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4321 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4322 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4323 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4324 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4325 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4326 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4327 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4328 <li><a href="h_config_printer">OPTION: Printer</a>
4329 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4330 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4331 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4332 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4333 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4334 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4335 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4336 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4337 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4338 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4339 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4340 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4341 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4342 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4343 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4344 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4345 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4346 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4347 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4348 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4349 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4350 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4351 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4352 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4353 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4354 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4355 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4356 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4357 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4358 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4359 <li><a href="h_config_status_color">OPTION: Status Color</a>
4360 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4361 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4362 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4363 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4364 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4365 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4366 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4367 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4368 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4369 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4370 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4371 <li><a href="h_config_title_color">OPTION: Title Color</a>
4372 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4373 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4374 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4375 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4376 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4377 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4378 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4379 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4380 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4381 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4382 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4383 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4384 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4385 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4386 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4387 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4388 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4389 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4390 <li><a href="h_mainhelp_patterns">Patterns</a>
4391 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4392 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4393 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4394 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4395 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4396 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4397 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4398 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4399 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4400 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4401 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4402 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4403 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4404 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4405 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4406 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4407 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4408 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4409 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4410 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4411 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4412 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4413 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4414 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4415 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4416 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4417 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4418 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4419 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4420 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4421 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4422 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4423 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4424 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4425 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4426 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4427 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4428 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4429 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4430 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4431 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4432 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4433 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4434 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4435 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4436 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4437 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4438 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4439 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4440 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4441 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4442 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4443 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4444 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4445 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4446 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4447 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4448 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4449 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4450 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4451 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4452 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4453 <li><a href="h_common_pipe">Pipe Command</a>
4454 <li><a href="h_valid_folder_names">POP</a>
4455 <li><a href="h_common_postpone">Postpone Command</a>
4456 <li><a href="h_common_print">Print Command</a>
4457 <li><a href="h_mainhelp_readingnews">Reading News</a>
4458 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4459 <li><a href="h_mainhelp_roles">Roles</a>
4460 <li><a href="h_role_select">ROLES SCREEN</a>
4461 <li><a href="h_compose_readfile">Read File Command</a>
4462 <li><a href="h_mainhelp_reading">Reading Messages</a>
4463 <li><a href="h_main_release_notes">Release Notes Command</a>
4464 <li><a href="h_common_reply">Reply and Forward Commands</a>
4465 <li><a href="h_compose_richhdr">Rich Header Command</a>
4466 <li><a href="h_common_role">Role Command</a>
4467 <li><a href="h_mainhelp_smime">S/MIME</a>
4468 <li><a href="h_index_cmd_select">Searching for Messages</a>
4469 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4470 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4471 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4472 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4473 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4474 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4475 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4476 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4477 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4478 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4479 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4480 <li><a href="h_common_save">Save and Export Commands</a>
4481 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4482 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4483 <li><a href="h_compose_send">Send Command</a>
4484 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4485 <li><a href="h_main_setup">Setup Command</a>
4486 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4487 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4488 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4489 <li><a href="h_mainhelp_smime">S/MIME</a>
4490 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4491 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4492 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4493 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4494 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4495 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4496 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4497 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4498 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4499 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4500 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4501 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4502 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4503 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4504 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4505 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4506 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4507 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4508 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4509 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4510 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4511 <li><a href="h_index_cmd_sort">Sort Command</a>
4512 <li><a href="h_compose_spell">Spell Check Command</a>
4513 <li><a href="h_common_suspend">Suspend Command</a>
4514 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4515 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4516 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4517 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4518 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4519 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4520 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4521 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4522 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4523 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4524 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4525 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4526 <li><a href="h_common_take">TakeAddr Command</a>
4527 <li><a href="h_mainhelp_status">Titlebar Line</a>
4528 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4529 <li><a href="h_config_usenone_color">Use None Color</a>
4530 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4531 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4532 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4533 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4534 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4535 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4536 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4537 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4538 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4539 </UL>
4542 &lt;End of Help Index&gt;
4543 </BODY>
4544 </HTML>
4547 ============== h_config_remote_config =============
4548 <HTML>
4549 <HEAD>
4550 <TITLE>Remote Configuration</TITLE>
4551 </HEAD>
4552 <BODY>
4553 <H1>Remote Configuration</H1>
4555 You may use the command line argument &quot;-p pinerc&quot; to tell
4556 Alpine to use a non-default configuration file.
4557 There are two types of storage for configuration information.
4558 <EM>Local</EM> configuration files are used by default.
4559 These are just regular files on the UNIX system or on the PC.
4560 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4561 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4562 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4563 The advantage of using a remote configuration is that the same information
4564 may be accessed from multiple platforms.
4565 For example, if you use one computer at work and another at home, the same
4566 configuration could be used from both places.
4567 A configuration change from one place would be seen in both places.
4568 To use a remote configuration you simply give a
4569 <A HREF="h_valid_folder_names">remote folder name</A>
4570 as the argument to the &quot;-p&quot; command line option.
4571 The command line might look something like:
4573 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4575 If there are special characters in the command shell you use, you may need to
4576 quote the last argument (to protect the curly braces from the shell).
4577 The command might look like:
4579 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4581 You should choose a folder name for a folder that does not yet exist.
4582 It will be created containing an empty configuration.
4583 Do not use a folder that you wish to store regular mail messages in.
4585 The Setup/RemoteConfigSetup command will help you convert from a local
4586 configuration to a remote configuration.
4587 It will create a remote configuration for you and copy your current local
4588 configuration to it.
4589 It will also help you convert local address books into remote address books
4590 and local signature files into literal signatures contained in the
4591 remote configuration file.
4593 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4594 may copy a local pinerc file to a remote configuration folder by hand
4595 by using the command line option &quot;-copy_pinerc&quot;.
4597 Another command line option, which is somewhat related to remote
4598 configuration, is the option &quot;-x exceptions_config&quot;.
4599 The configuration settings in the exceptions configuration override
4600 your default settings.
4601 It may be useful to store the default configuration (the -p argument) remotely
4602 and to have the exceptions configuration stored in a local file.
4603 You might put generic configuration information in the remote configuration
4604 and platform-specific configuration on each platform in the exceptions
4605 configuration.
4606 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4607 can be either remote folders or local files.
4609 There is another command line argument that works only with PC-Alpine and
4610 which may prove useful when using a remote configuration.
4611 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4612 to store your local auxiliary files.
4613 This only has an effect if your configuration file is remote.
4614 Some examples of auxiliary files are debug files, address book files, and
4615 signature files.
4617 &lt;End of help on this topic&gt;
4618 </BODY>
4619 </HTML>
4620 ============== h_config_exceptions =============
4621 <HTML>
4622 <HEAD>
4623 <TITLE>Generic and Exceptional Configuration</TITLE>
4624 </HEAD>
4625 <BODY>
4626 <H1>Generic and Exceptional Configuration</H1>
4628 If you use Alpine from more than one platform it may be convenient
4629 to split your configuration information into two pieces, a generic piece
4630 and exceptions that apply to a particular platform.
4631 For example, suppose you use Alpine from home and from work.
4632 Most of your configuration settings are probably the
4633 same in both locations, so those settings belong in the generic settings
4634 configuration.
4635 However, you may use a different SMTP server and INBOX
4636 from home than you do from work.
4638 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4640 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4641 options could be
4642 part of your exceptional configuration so that they could be different in the
4643 two places.
4645 The command line option &quot;-x exceptions_config&quot;
4646 may be used to split your configuration into generic and exceptional pieces.
4647 &quot;Exceptions_config&quot; may be either local or remote.
4648 The regular Alpine configuration file will contain the generic data, and
4649 &quot;exceptions_config&quot; will contain the exceptional data.
4651 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4652 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4653 in the same local directory that the regular config file is located in (usually
4654 the Unix home directory).
4655 If the regular config file is remote (because the command line option
4656 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4657 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4658 If the file does not already exist then no exceptions will be used.
4659 You can force exceptions to be used by using the &quot;-x&quot; option or
4660 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4662 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4663 PC-Alpine will use the value of the
4664 environment variable <CODE>$PINERCEX</CODE>.
4665 If that is not set, PC-Alpine will look for
4666 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4667 in the same local directory that the regular config file is located in.
4668 If the regular config file is remote (because the command line option
4669 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4670 local directory specified by the &quot;-aux local_directory&quot; command
4671 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4672 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4674 When you have an exception configuration there is a new command
4675 in the Alpine Setup screen, Setup/eXceptions.
4676 It toggles between exceptions and the regular configuration.
4677 This is the usual way to make changes in your exceptional configuration data.
4678 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4679 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4680 for Config or &quot;K&quot; for Kolor.
4682 For most people, splitting the configuration information into two pieces is
4683 going to be most useful if the generic information is accessed
4684 <A HREF="h_config_remote_config">remotely</A>).
4685 That data will be the same no matter where you access it from and if you
4686 change it that change will show up everywhere.
4687 The exceptional data will most commonly be in a local file, so that the
4688 contents may easily be different on each computing platform used.
4690 If you already have a local configuration file with settings you like
4691 you may find that the command Setup/RemoteConfigSetup is useful
4692 in helping you convert to a remote configuration.
4693 The command line flag &quot;-copy_pinerc&quot;
4694 may also be useful.
4696 &lt;End of help on this topic&gt;
4697 </BODY>
4698 </HTML>
4699 ============== h_config_inheritance =============
4700 <HTML>
4701 <HEAD>
4702 <TITLE>Configuration Inheritance</TITLE>
4703 </HEAD>
4704 <BODY>
4705 <H1>Configuration Inheritance</H1>
4707 Configuration inheritance is a power user feature.
4708 It is confusing and not completely supported by the configuration
4709 user interface.
4710 We start with an explanation of how configuration works in hopes of making
4711 it easier to describe how inheritance works.
4713 Alpine uses a hierarchy of configuration values from different locations.
4714 There are five ways in which each configuration option (configuration
4715 variable) can be set.
4716 In increasing order of precedence they are:
4718 <OL>
4719 <LI> the system-wide configuration file.
4721 <LI> the personal configuration file
4723 <LI> the personal exceptions file
4725 <LI> a command line argument
4727 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4728 </OL>
4730 The fixed configuration file is normally
4731 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4733 The system-wide configuration file is normally
4734 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4735 set for PC-Alpine.
4736 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4737 is used for the system-wide configuration.
4738 This location can be set or changed on the command line with the -P flag.
4739 The system-wide configuration file can be either a local file or a
4740 remote configuration folder.
4742 For Unix Alpine, the personal configuration file is normally the file
4743 <CODE>.pinerc</CODE> in the user's home directory.
4744 This can be changed with the -p command line flag.
4745 For PC-Alpine, the personal configuration file is in
4746 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4747 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4748 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4749 This can be changed with the -p command line flag.
4750 If -p is used, the configuration data may be in a local file or a remote config
4751 folder.
4753 For Unix Alpine, the personal exceptions configuration file is named
4754 <CODE>.pinercex</CODE> and is in the same directory as the personal
4755 configuration file, if that configuration file is not remote, and is in
4756 the home directory if the personal configuration file is remote.
4757 If the file exists, then exceptions are turned on.
4758 If it doesn't, then you are not using exceptions.
4759 Alternatively, you may change the location of the exceptions configuration
4760 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4761 Like the personal configuration data, exceptions_config may be
4762 either local or remote.
4764 For PC-Alpine, the personal exceptions configuration file is named
4765 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4766 configuration file unless the personal configuration file is remote.
4767 In that case, it is in the local directory specfied by the
4768 &quot;-aux local_directory&quot; command line argument.
4769 (In the case that the personal configuration is remote and there is no
4770 &quot;-aux&quot; command line argument, Alpine searches for
4771 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4772 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4773 If the file exists, then exceptions are turned on.
4774 If it doesn't, then you are not using exceptions.
4775 You may change the location of the exceptions configuration
4776 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4777 or with the
4778 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4779 option).
4781 To reiterate, the value of a configuration option is taken from the
4782 last location in the list above in which it is set.
4783 Or, thinking about it slightly differently, a default value for an option
4784 is established in the system-wide configuration file (or internally by Alpine
4785 if there is no value in the system-wide file).
4786 That default remains in effect until and unless it is overridden by a value in a
4787 location further down the list, in which case a new &quot;default&quot;
4788 value is established.
4789 As we continue down the list of locations we either retain the
4790 value at each step or establish a new value.
4791 The value that is still set after going through the whole list of
4792 configuration locations is the one that is used.
4794 So, for example, if an option is set in the system-wide configuration
4795 file and in the personal configuration file, but is not set in the
4796 exceptions, on the command line, or in the fixed file; then the value
4797 from the personal configuration file is the one that is used.
4798 Or, if it is set in the system-wide config, in the personal config, not
4799 in the exceptions, but is set on the command line; then the value
4800 on the command line is used.
4802 Finally we get to inheritance.
4803 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4804 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4805 the inheritance mechanism makes it possible to <EM>combine</EM>
4806 the values from different locations instead of <EM>replacing</EM> the value.
4807 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4808 for which you may already set whatever you want at
4809 any configuration location (by using the &quot;no-&quot; prefix if
4810 necessary).
4812 To use inheritance, set the first item in a configuration list to the
4813 token &quot;INHERIT&quot;, without the quotes.
4814 If the first item is &quot;INHERIT&quot;,
4815 then instead of replacing the default value established so far, the rest of
4816 the list is appended to the default value established so far and that is
4817 the new value.
4819 Here is an example which may make it clearer. Suppose we have:
4821 <PRE>
4822  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4823  Personal config    :   smtp-server = INHERIT, mysmtp.home
4824  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4825  Command line       :   smtp-server = &lt;No Value Set&gt;
4826  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4827 </PRE>
4830 This would result in an effective smtp-server option of
4832 <PRE>
4833  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4834 </PRE>
4836 The &quot;INHERIT&quot; token can be used in any of the configuration files
4837 and the effect cascades.
4838 For example, if we change the above example to:
4840 <PRE>
4841  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4842  Personal config    :   smtp-server = INHERIT, mysmtp.home
4843  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4844  Command line       :   smtp-server = &lt;No Value Set&gt;
4845  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4846 </PRE>
4849 This would result in:
4851 <PRE>
4852  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4853 </PRE>
4855 Unset variables are skipped over (the default value is carried forward) so
4856 that, for example:
4858 <PRE>
4859  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4860  Personal config    :   smtp-server = &lt;No Value Set&gt;
4861  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4862  Command line       :   smtp-server = &lt;No Value Set&gt;
4863  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4864 </PRE>
4867 produces:
4869 <PRE>
4870  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4871 </PRE>
4874 If any later configuration location has a value set (for a particular list
4875 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4876 then that value replaces whatever value has been defined up to that point.
4877 In other words, that cancels out any previous inheritance.
4879 <PRE>
4880  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4881  Personal config    :   smtp-server = INHERIT, mysmtp.org
4882  Exceptions config  :   smtp-server = yoursmtp.org
4883  Command line       :   smtp-server = &lt;No Value Set&gt;
4884  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4885 </PRE>
4888 results in:
4890 <PRE>
4891  smtp-server = yoursmtp.org
4892 </PRE>
4895 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4896 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4897 difficult to insert the value &quot;INHERIT&quot; into the list of values
4898 for the option using the normal Setup tools.
4899 In other words, the color setting screen (for example) does not
4900 provide a way to input the text &quot;INHERIT&quot; as the first
4901 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4902 The way to do this is to either edit the pinerc file directly and manually
4903 insert it, or turn
4904 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4905 feature and insert it using the Setup/Config screen.
4907 &lt;End of help on this topic&gt;
4908 </BODY>
4909 </HTML>
4910 ============== h_special_xon_xoff =============
4911 <HTML>
4912 <HEAD>
4913 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4914 </HEAD>
4915 <BODY>
4916 <H1>XOFF/XON Handling within Alpine</H1>
4918 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4919 and XON) as normal characters, even though Alpine does not use them.
4920 However, the printer, modem, or communication software you are using may
4921 be configured for &quot;software flow control,&quot; which means that
4922 XON/XOFF must be treated as special characters by the operating system.
4923 If you see messages such as &quot;^S not defined for this screen&quot;,
4924 then your system is probably using software flow control. In this case
4925 you will need to set the
4926 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4927 feature.
4929 If you <EM>do</EM> set this
4930 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4931 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4932 and see if that puts things right.  Printing via the
4933 &quot;attached-to-ansi&quot; or 
4934 &quot;attached-to-wyse&quot;
4935 option will automatically enable software
4936 flow-control handling for the duration of the printing.
4938 &lt;End of help on this topic&gt;
4939 </BODY>
4940 </HTML>
4941 ============= h_special_help_nav =============
4942 <HTML>
4943 <HEAD>
4944 <TITLE>Help Text Navigation Explained</TITLE>
4945 </HEAD>
4946 <BODY>
4947 <H1>Help Text Navigation Explained</H1>
4949 Alpine contains extensive context-sensitive help text.   At any point, 
4950 pressing the &quot;?&quot; key will bring up a page of help text
4951 explaining the options available to you.  You can leave the help
4952 text screen and return to normal Alpine operation by pressing
4954 <!--chtml if pinemode="function_key"-->
4955 F3 function
4956 <!--chtml else-->
4957 &quot;E&quot;
4958 <!--chtml endif-->
4959 key to Exit Help at any time.
4962 Within the help screen you might find a word or phrase displayed in 
4963 inverse text and others displayed in bold typeface.  Such words and
4964 phrases are used to tell you Alpine has more information available on
4965 the topic they describe.
4966 The inverted text is the &quot;selected&quot; topic.  
4967 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4968 displayed in bold type
4969 is &quot;selected&quot;.
4970 Hit the Return key to display the information Alpine has available on that
4971 topic.  While viewing such additional information, the 
4972 <!--chtml if pinemode="function_key"-->
4973 F3 function
4974 <!--chtml else-->
4975 &quot;P&quot;
4976 <!--chtml endif-->
4977 key will return you to the previous help screen, and the
4978 <!--chtml if pinemode="function_key"-->
4979 F2 function
4980 <!--chtml else-->
4981 &quot;E&quot;
4982 <!--chtml endif-->
4983 key will Exit the Help system altogether.
4986 The "N" command will tell you the internal name of the help text you are 
4987 reading each time, so that you can send this name in the text of a message 
4988 and create a direct link to that internal help using the x-pine-help URL 
4989 scheme. For example, the direct link to this item is 
4990 x-pine-help:h_special_help_nav. If you add this text to a message, then
4991 a person using Pine to read such message would have a direct link to this
4992 help text.
4995 When you are finished reading this help text, you can press the
4996 <!--chtml if pinemode="function_key"-->
4997 F3 function
4998 <!--chtml else-->
4999 &quot;P&quot;
5000 <!--chtml endif-->
5001 key to return to the previously displayed help text.
5004 &lt;End of help on this topic&gt;
5005 </BODY>
5006 </HTML>
5007 ============= h_special_list_commands =============
5008 <HTML>
5009 <HEAD>
5010 <TITLE>Email List Commands Explained</TITLE>
5011 </HEAD>
5012 <BODY>
5013 <H1>Email List Commands Explained</H1>
5015 Electonic mail lists provide a way for like-minded users to join in
5016 discussions on topics of interest.  The email list itself is 
5017 represented by a
5018 single address that participants send messages to when they have
5019 something of interest to share with other members of the list.  The
5020 receiving computer then, either automatically or after review by the
5021 list's owner (or moderator), sends a copy of that message to each
5022 member of the list.
5025 Usually, subscribing and unsubscribing is done by sending requests in
5026 an email message to a special address setup to handle managing list
5027 membership.  Often this is the name of the list followed by
5028 <I>-request</I>.  This address is almost <EM>never</EM> the same as
5029 the address used to send messages to the list.
5032 Unfortunately, email list participation commands are more a matter
5033 of convention than standard, and thus may vary from list to list.
5034 Increasingly, list management software is adding information to
5035 the copy of the postings as they're copied to the list members that
5036 explains how to do the various list management functions.
5039 Alpine will recognize this information and offer the management commands
5040 they represent in a simple display. One or more of the following
5041 operations will be made available:
5043 <DL>
5044 <DT>Help</DT>
5045 <DD>
5046 A method to get help on subscribing, unsubscribing, 
5047 an explanation of what the list is about, or special instructions
5048 for participation.  This may be in the form of a reply in response
5049 to an email message, or instructions on how to connect to a Web site.
5050 </DD>
5052 <DT>Unsubscribe</DT>
5053 <DD>
5054 A method to get your email addressed removed from the list of
5055 recipients of the email list.
5056 </DD>
5058 <DT>Subscribe</DT>
5059 <DD>
5060 A method to get your email address added to the list of recipients
5061 of the email list.  It may be in the form of a message sent to 
5062 a special address or you may be connected to a web site.
5063 <DD>
5064 </DD>
5066 <DT>Post</DT>
5067 <DD>
5068 A method used to post to the email list.  However, it might also 
5069 indicate that no posting is allowed directly to the list.
5070 </DD>
5072 <DT>Owner</DT>
5073 <DD>
5074 A method to contact the list owner for special questions you might
5075 have regarding the list.
5076 </DD>
5078 <DT>Archive</DT>
5079 <DD>
5080 A method to view an archive of previous messages posted to the list.
5081 This may be in the form of a mail folder on a remote computer, an
5082 IMAP mailbox or even a Web site.
5083 </DD>
5084 </DL>
5087 &lt;End of help on this topic&gt;
5088 </BODY>
5089 </HTML>
5090 ============= h_quota_command =============
5091 <HTML>
5092 <HEAD>
5093 <TITLE>Quota Screen Explained</TITLE>
5094 </HEAD>
5095 <BODY>
5096 <H1>Quota Screen Explained</H1>
5098 <P> This screen summarizes the quota report for this mailbox in the
5099 IMAP server. For each resource that you have a quota, this reports summarizes
5100 its use and limit.
5102 <P> Your IMAP server administrator may have set a quota based either on 
5103 the total size of your mailbox (STORAGE), or the number of messages in 
5104 your mailbox (MESSAGES), or some other criteria. This will be reported
5105 to you indicating the type of quota, its total use and its limit.
5107 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5108 1024 bytes. Each of the characters that you see in this help text is one 
5109 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5110 by Alpine are normally less than 4 kibibytes in size (which includes 
5111 headers and text). Other email programs may send messages with bigger 
5112 sizes when they send messages, since they send plain text and an 
5113 alternative part in HTML.
5115 <P> A convenient way to save space for the STORAGE type of quota is by 
5116 deleting attachments. This is done on each individual message by pressing 
5117 the &quot;V&quot; command while reading the message text, then moving the cursor 
5118 to the position of the attachment that is to be deleted, then pressing
5119 &quot;D&quot; to delete such attachment, going back to reading the 
5120 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5121 save the message in the same folder you are reading from. The saved 
5122 message will not have the attachment that was marked deleted. Now you
5123 can delete and expunge the message with the unwanted attachment.
5126 &lt;End of help on this topic&gt;
5127 </BODY>
5128 </HTML>
5129 ============= h_mail_thread_index =============
5130 <HTML>
5131 <HEAD>
5132 <TITLE>THREAD INDEX COMMANDS</TITLE>
5133 </HEAD>
5134 <BODY>                 
5135 <H1>THREAD INDEX COMMANDS</H1>
5136 <!--chtml if pinemode="function_key"-->
5137 Available&nbsp;&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
5138 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5139 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5140 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5141 F3&nbsp;&nbsp;<A HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;Screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F3&nbsp;&nbsp;MAIN&nbsp;MENU&nbsp;Screen<BR>
5142 F4&nbsp;&nbsp;View&nbsp;current&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
5143 F5&nbsp;&nbsp;Move&nbsp;to&nbsp;previous&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F5&nbsp;&nbsp;<A HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
5144 F6&nbsp;&nbsp;Move&nbsp;to&nbsp;next&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
5145 F7&nbsp;&nbsp;Show&nbsp;previous&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F7&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;thread<BR>
5146 F8&nbsp;&nbsp;Show&nbsp;next&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F8&nbsp;&nbsp;<A HREF="h_index_cmd_whereis">Whereis</A><BR>
5147 F9&nbsp;&nbsp;<A HREF="h_common_delete">Mark&nbsp;thread&nbsp;for&nbsp;deletion</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F9&nbsp;&nbsp;<A HREF="h_common_print">Print</A>&nbsp;index<BR>
5148 F10&nbsp;<A HREF="h_common_delete">Undelete</A>&nbsp;(remove&nbsp;delete&nbsp;mark)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F10&nbsp;<A HREF="h_common_take">Take&nbsp;Address</A>&nbsp;into&nbsp;address&nbsp;book<BR>
5149 F11&nbsp;<A HREF="h_common_reply">Reply</A>&nbsp;to&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F11&nbsp;<A HREF="h_common_save">Save</A>&nbsp;messages&nbsp;into&nbsp;an&nbsp;email&nbsp;folder<BR>
5150 F12&nbsp;<A HREF="h_common_reply">Forward</A>&nbsp;messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F12&nbsp;<A HREF="h_common_save">Export</A>&nbsp;messages&nbsp;into&nbsp;a&nbsp;plain&nbsp;file<BR>
5151 <BR>
5152 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5153 -----------------------------<BR>
5154 F3&nbsp;&nbsp;<A HREF="h_index_cmd_expunge">Expunge</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F7&nbsp;<A HREF="h_index_cmd_sort">Sort</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;(remail)&nbsp;msg<BR>
5155 F5&nbsp;&nbsp;<A HREF="h_index_cmd_select">Select</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F8&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;messages&nbsp;as&nbsp;important<BR>
5156 F6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F9&nbsp;<A HREF="h_common_hdrmode">Full&nbsp;Header&nbsp;Mode</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5157 <BR>
5158 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5159 -----------------------------<BR>
5160 F3&nbsp;&nbsp;Select&nbsp;Current&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A HREF="h_index_cmd_zoom">Zoom</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F5&nbsp;&nbsp;COLLECTION&nbsp;LIST&nbsp;Screen
5161 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5162 <BR>
5163 <!--chtml else-->
5164 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Threads&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Thread<BR>
5165 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5166 &nbsp;P&nbsp;&nbsp;&nbsp;Move&nbsp;to&nbsp;the&nbsp;previous&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;&nbsp;View&nbsp;Thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%&nbsp;&nbsp;<A HREF="h_common_print">Print</A><BR>
5167 &nbsp;N&nbsp;&nbsp;&nbsp;Move&nbsp;to&nbsp;the&nbsp;next&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;R&nbsp;&nbsp;<A HREF="h_common_reply">Reply</A>&nbsp;to&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F&nbsp;&nbsp;<A HREF="h_common_reply">Forward</A><BR>
5168 &nbsp;-&nbsp;&nbsp;&nbsp;Show&nbsp;previous&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;D&nbsp;&nbsp;<A HREF="h_common_delete">Mark&nbsp;thread&nbsp;for&nbsp;deletion</A><BR>
5169 Spc&nbsp;&nbsp;(space&nbsp;bar)&nbsp;Show&nbsp;next&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;U&nbsp;&nbsp;<A HREF="h_common_delete">Undelete</A>&nbsp;(remove&nbsp;deletion&nbsp;mark)<BR>
5170 &nbsp;J&nbsp;&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;a&nbsp;specific&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;T&nbsp;&nbsp;<A HREF="h_common_take">Take&nbsp;Address</A>&nbsp;into&nbsp;Address&nbsp;Book<BR>
5171 &nbsp;W&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_whereis">Whereis</A>&nbsp;--&nbsp;search&nbsp;for&nbsp;a&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;S&nbsp;&nbsp;<A HREF="h_common_save">Save</A>&nbsp;into&nbsp;an&nbsp;email&nbsp;folder<BR>
5172 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;specific&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E&nbsp;&nbsp;<A HREF="h_common_save">Export</A>&nbsp;as&nbsp;a&nbsp;plain&nbsp;text&nbsp;file<BR>
5173 Tab&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;B&nbsp;&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;&nbsp;<A HREF="h_common_flag">Flag</A><BR>
5174 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;Command<BR>
5175 <BR>
5176 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5177 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5178 &nbsp;G&nbsp;&nbsp;&nbsp;<A HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5179 &nbsp;$&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_sort">Sort</A>&nbsp;order&nbsp;of&nbsp;index&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;?&nbsp;&nbsp;Show&nbsp;Helptext&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5180 &nbsp;H&nbsp;&nbsp;&nbsp;<A HREF="h_common_hdrmode">Full&nbsp;header&nbsp;mode</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;M&nbsp;&nbsp;MAIN&nbsp;MENU&nbsp;Screen&nbsp;&nbsp;&nbsp;&lt;&nbsp;<A HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;Screen<BR>
5181 &nbsp;X&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_expunge">Expunge/Exclude</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;C&nbsp;&nbsp;<A HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;new&nbsp;message<BR>
5182 &nbsp;Z&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_zoom">Zoom</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5183 &nbsp;;&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_select">Select</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;<A HREF="h_index_cmd_apply">Apply</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;L&nbsp;&nbsp;COLLECTION&nbsp;LIST&nbsp;Screen<BR>
5184 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5185 <!--chtml endif-->
5188 NOTE:
5189 <OL>
5190  <LI>For help on a particular command, highlight the bold text associated
5191 with it above and hit Return.
5192  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5193 </OL>
5195 <H2>Description of the THREAD INDEX Screen</H2>
5197 The THREAD INDEX displays summary information from each
5198 thread (conversation) in the current folder.
5199 This is useful if you want to quickly
5200 scan new threads, or find a particular thread without having to go
5201 through the text of each message, or to quickly get rid of junk
5202 threads, etc.
5203 The current thread is always highlighted.
5204 Each line of the THREAD INDEX contains the following columns: <P>
5205 <DL>
5206  <DT>STATUS:</DT>
5207  <DD> The markings on the left side of the thread tell you about its
5208 status.  You may see one or more of the following codes on any given
5209 thread:
5210 <UL>
5211   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5212   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5213   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5214   <LI> &quot;+&quot; for direct-to-you. The &quot;+&quot; indicates that a message in the thread was sent directly to your account, your copy is not part of a cc: or a mailing list.
5215   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5216         message in the thread was sent to you as a cc:. This symbol will only show up if
5217         the feature
5218         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5219   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5220         &quot;select&quot; command.  (Some systems may optionally allow selected
5221         messages to be denoted by the index line being displayed in bold
5222         type instead.)
5223   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5224       to mark at least one message in this thread as &quot;important&quot;.
5225 </UL></DD><P>
5227  <DT>THREAD NUMBER:</DT>
5228  <DD>Threads in a folder are numbered, from one through the number
5229 of threads in the folder, to help you know where you are in the folder.
5230 </DD><P>
5232  <DT>DATE STARTED:</DT>
5233  <DD>The date the thread was started. This is actually from the Date header
5234 of the first message in the thread. It doesn't take different time zones
5235 into account.</DD><P>
5237  <DT>WHO STARTED THE THREAD:</DT>
5238  <DD>This is usually the name of the sender of the first message in the thread, taken from
5239 the From header of the message.
5240 If there is no personal name given in that
5241 address, then the email address is used instead.
5242 If the message is from you (or from one of your
5243 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5244 then the recipient's name is shown here instead, with the characters
5245 &quot;To: &quot; inserted before the name.
5246 (The idea of this is that if you started the thread you would rather see who
5247 the mail was sent to instead of that the mail was from you.)
5248 In Newsgroups, if you are
5249 the sender and there are no email recipients, the newsgroup name will be
5250 listed after the &quot;To: &quot;.
5251 </DD><P>
5253  <DT>SIZE:</DT>
5254  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5256  <DT>SUBJECT:</DT>
5257  <DD>As much of the thread's subject line as will fit on the screen.
5258 This is the subject of the first message in the thread.</DD>
5259 </DL>
5261 <P><UL>
5262 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5263 </UL>
5265 &lt;End of help on this topic&gt;
5266 </BODY>
5267 </HTML>
5268 ============= h_mail_index =============
5269 <HTML>
5270 <HEAD>
5271 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5272 </HEAD>
5273 <BODY>                 
5274 <H1>MESSAGE INDEX COMMANDS</H1>
5275 <!--chtml if pinemode="function_key"-->
5276 Available&nbsp;&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
5277 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5278 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5279 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5280 F3&nbsp;&nbsp;<A HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;Screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F3&nbsp;&nbsp;MAIN&nbsp;MENU&nbsp;Screen<BR>
5281 F4&nbsp;&nbsp;View&nbsp;current&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
5282 F5&nbsp;&nbsp;Move&nbsp;to&nbsp;previous&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F5&nbsp;&nbsp;<A HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
5283 F6&nbsp;&nbsp;Move&nbsp;to&nbsp;next&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
5284 F7&nbsp;&nbsp;Show&nbsp;previous&nbsp;screen&nbsp;of&nbsp;messages&nbsp;&nbsp;&nbsp;F7&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5285 F8&nbsp;&nbsp;Show&nbsp;next&nbsp;screen&nbsp;of&nbsp;messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F8&nbsp;&nbsp;<A HREF="h_index_cmd_whereis">Whereis</A><BR>
5286 F9&nbsp;&nbsp;<A HREF="h_common_delete">Mark&nbsp;message&nbsp;for&nbsp;deletion</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F9&nbsp;&nbsp;<A HREF="h_common_print">Print</A>&nbsp;message<BR>
5287 F10&nbsp;<A HREF="h_common_delete">Undelete</A>&nbsp;(remove&nbsp;delete&nbsp;mark)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F10&nbsp;<A HREF="h_common_take">Take&nbsp;Address</A>&nbsp;into&nbsp;address&nbsp;book<BR>
5288 F11&nbsp;<A HREF="h_common_reply">Reply</A>&nbsp;to&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F11&nbsp;<A HREF="h_common_save">Save</A>&nbsp;message&nbsp;into&nbsp;an&nbsp;email&nbsp;folder<BR>
5289 F12&nbsp;<A HREF="h_common_reply">Forward</A>&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F12&nbsp;<A HREF="h_common_save">Export</A>&nbsp;message&nbsp;into&nbsp;a&nbsp;plain&nbsp;file<BR>
5290 <BR>
5291 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5292 -----------------------------<BR>
5293 F3&nbsp;&nbsp;<A HREF="h_index_cmd_expunge">Expunge/Exclude</A>&nbsp;&nbsp;&nbsp;&nbsp;F7&nbsp;<A HREF="h_index_cmd_sort">Sort</A>&nbsp;order&nbsp;of&nbsp;index&nbsp;&nbsp;F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;(remail)&nbsp;msg<BR>
5294 F5&nbsp;&nbsp;<A HREF="h_index_cmd_select">Select</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F8&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message&nbsp;as&nbsp;important<BR>
5295 F6&nbsp;&nbsp;<A HREF="h_index_cmd_apply">Apply</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F9&nbsp;<A HREF="h_common_hdrmode">Full&nbsp;Header&nbsp;Mode</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5296 <BR>
5297 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5298 -----------------------------<BR>
5299 F3&nbsp;&nbsp;Select&nbsp;Current&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A HREF="h_index_cmd_zoom">Zoom</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F5&nbsp;&nbsp;COLLECTION&nbsp;LIST&nbsp;Screen
5300 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F10&nbsp;<A HREF="h_index_collapse_expand">Collapse/Expand</A>&nbsp;Thread<BR>
5301 <BR>
5302 <!--chtml else-->
5303 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5304 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5305 &nbsp;P&nbsp;&nbsp;&nbsp;Move&nbsp;to&nbsp;the&nbsp;previous&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;&nbsp;&nbsp;View&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%&nbsp;&nbsp;<A HREF="h_common_print">Print</A><BR>
5306 &nbsp;N&nbsp;&nbsp;&nbsp;Move&nbsp;to&nbsp;the&nbsp;next&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;R&nbsp;&nbsp;<A HREF="h_common_reply">Reply</A>&nbsp;to&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F&nbsp;&nbsp;<A HREF="h_common_reply">Forward</A><BR>
5307 &nbsp;-&nbsp;&nbsp;&nbsp;Show&nbsp;previous&nbsp;screen&nbsp;of&nbsp;messages&nbsp;&nbsp;&nbsp;&nbsp;D&nbsp;&nbsp;<A HREF="h_common_delete">Mark&nbsp;for&nbsp;deletion</A><BR>
5308 Spc&nbsp;&nbsp;(space&nbsp;bar)&nbsp;Show&nbsp;next&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U&nbsp;&nbsp;<A HREF="h_common_delete">Undelete</A>&nbsp;(remove&nbsp;deletion&nbsp;mark)<BR>
5309 &nbsp;J&nbsp;&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;a&nbsp;specific&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;T&nbsp;&nbsp;<A HREF="h_common_take">Take&nbsp;Address</A>&nbsp;into&nbsp;Address&nbsp;Book<BR>
5310 &nbsp;W&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_whereis">Whereis</A>&nbsp;--&nbsp;search&nbsp;for&nbsp;a&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;S&nbsp;&nbsp;<A HREF="h_common_save">Save</A>&nbsp;into&nbsp;an&nbsp;email&nbsp;folder<BR>
5311 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;specific&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E&nbsp;&nbsp;<A HREF="h_common_save">Export</A>&nbsp;as&nbsp;a&nbsp;plain&nbsp;text&nbsp;file<BR>
5312 Tab&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;B&nbsp;&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;&nbsp;<A HREF="h_common_flag">Flag</A><BR>
5313 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;Command<BR>
5314 Miscellaneous&nbsp;Operations<BR>
5315 ------------------------<BR>
5316 &nbsp;G&nbsp;&nbsp;&nbsp;<A HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5317 &nbsp;$&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_sort">Sort</A>&nbsp;order&nbsp;of&nbsp;index&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5318 &nbsp;H&nbsp;&nbsp;&nbsp;<A HREF="h_common_hdrmode">Full&nbsp;header&nbsp;mode</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5319 &nbsp;X&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_expunge">Expunge/Exclude</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5320 &nbsp;Z&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_zoom">Zoom</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;M&nbsp;&nbsp;MAIN&nbsp;MENU&nbsp;Screen&nbsp;&nbsp;&nbsp;&lt;&nbsp;<A HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;Screen<BR>
5321 &nbsp;;&nbsp;&nbsp;&nbsp;<A HREF="h_index_cmd_select">Select</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;<A HREF="h_index_cmd_apply">Apply</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;C&nbsp;&nbsp;<A HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;new&nbsp;message<BR>
5322 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Current&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5323 &nbsp;/&nbsp;&nbsp;&nbsp;<A HREF="h_index_collapse_expand">Collapse/Expand</A>&nbsp;Thread&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;L&nbsp;&nbsp;COLLECTION&nbsp;LIST&nbsp;Screen<BR>
5324 <!--chtml endif-->
5327 NOTE:
5328 <OL>
5329  <LI>For help on a particular command, highlight the bold text associated
5330 with it above and hit Return.
5331  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5332 </OL>
5334 <H2>Description of the MESSAGE INDEX Screen</H2>
5336 The MESSAGE INDEX displays summary information from each
5337 message in the current folder.
5338 This is useful if you want to quickly
5339 scan new messages, or find a particular message without having to go
5340 through the text of each message, or to quickly get rid of junk
5341 messages, etc.
5343 The current message is always highlighted
5344 and many commands operate on the current message.
5345 For example, the Delete command will delete the current message.
5346 If the folder is sorted by either Threads or OrderedSubject, then, depending
5347 on some of your configuration settings, a single line in the index may
5348 refer to an entire thread or to a subthread.
5349 If that is the case, then the commands that normally operate on the current
5350 message will operate on the thread or subthread instead.
5351 For example, the Delete command will delete the whole collapsed thread
5352 instead of just a single message.
5354 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5355 you can change this with the 
5356 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5357 in the SETUP CONFIGURATION screen): <P>
5358 <DL>
5359  <DT>STATUS:</DT>
5360  <DD> The markings on the left side of the message tell you about its
5361 status.  You may see one or more of the following codes on any given
5362 message:
5363 <UL>
5364   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5365          yet eXpunged the folder.
5366   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5367   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5368          to be answered.
5369   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5370          forward a message.
5371   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5372         directly to your account, your copy is not part of a cc: or a
5373         mailing list.
5374   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5375         message was sent to you as a cc:. This symbol will only show up if
5376         the feature
5377         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5378   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5379         &quot;select&quot; command.  (Some systems may optionally allow selected
5380         messages to be denoted by the index line being displayed in bold
5381         type.)
5382   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5383       to mark this message as &quot;important&quot;.
5384 </UL></DD><P>
5386  <DT>MESSAGE NUMBER:</DT>
5387  <DD>Messages in a folder are numbered, from one through the number
5388 of messages in the folder, to help you know where you are in the folder.
5389 These numbers are always in increasing order, even if you sort the folder
5390 in a different way.</DD><P>
5392  <DT>DATE SENT:</DT>
5393  <DD>The date the message was sent.  By default, messages are
5394 ordered by arrival time, not by date sent.  Most of the time, arrival time
5395 and date sent (effectively departure time) are similar.  Sometimes,
5396 however, the index will appear to be out of order because a message took a
5397 long time in delivery or because the sender is in a different time
5398 zone than you are. This date is just the date from the Date header
5399 field in the message.</DD><P>
5401  <DT>WHO SENT THE MESSAGE:</DT>
5402  <DD>This is usually the name of the sender of the message, taken from
5403 the From header of the message.
5404 If there is no personal name given in that
5405 address, then the email address is used instead.
5406 If the message is from you (or from one of your
5407 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5408 then the recipient's name is shown here instead, with the characters
5409 &quot;To: &quot; inserted before the name.
5410 (The idea of this is that if you sent the mail you would rather see who
5411 the mail was sent to instead of that the mail was from you.
5412 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5413 above.
5414 In particular, use the FROM token or the FROMORTONOTNEWS token
5415 in place of the FROMORTO token.)
5416 In Newsgroups, if you are
5417 the sender and there are no email recipients, the newsgroup name will be
5418 listed after the &quot;To: &quot;. </DD><P>
5420  <DT>SIZE:</DT>
5421  <DD>The number in parentheses is the number of characters in the message.
5422 It may have a suffix of K, M, or G which means the number should be
5423 multiplied by one thousand, one million, or one billion to get the
5424 size of the message.</DD><P>
5426  <DT>SUBJECT:</DT>
5427  <DD>As much of the message's subject line as will fit on the screen.</DD>
5428 </DL>
5430 <P><UL>
5431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5432 </UL>
5434 &lt;End of help on this topic&gt;
5435 </BODY>
5436 </HTML>
5437 ============= h_mail_view ========================
5438 <HTML>
5439 <HEAD>
5440 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5441 </HEAD>
5442 <BODY>
5443 <H1>MESSAGE TEXT SCREEN</H1>
5444 <!--chtml if pinemode="function_key"-->
5445 Available&nbsp;&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
5446 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5447 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5448 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5449 F3&nbsp;&nbsp;<A HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;Screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F3&nbsp;&nbsp;MAIN&nbsp;MENU&nbsp;Screen<BR>
5450 F4&nbsp;&nbsp;<A HREF="h_view_cmd_viewattch">View&nbsp;attachment</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
5451 F5&nbsp;&nbsp;Display&nbsp;previous&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F5&nbsp;&nbsp;<A HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;Screen<BR>
5452 F6&nbsp;&nbsp;Display&nbsp;next&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
5453 F7&nbsp;&nbsp;Previous&nbsp;screen&nbsp;of&nbsp;this&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;F7&nbsp;&nbsp;<A HREF="h_common_compose">Compose</A>&nbsp;message<BR>
5454 F8&nbsp;&nbsp;Next&nbsp;screen&nbsp;of&nbsp;this&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F8&nbsp;&nbsp;<A HREF="h_view_cmd_whereis">Whereis</A><BR>
5455 F9&nbsp;&nbsp;<A HREF="h_common_delete">Mark&nbsp;message&nbsp;for&nbsp;deletion</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F9&nbsp;&nbsp;<A HREF="h_common_print">Print</A>&nbsp;message<BR>
5456 F10&nbsp;<A HREF="h_common_delete">Undelete</A>&nbsp;(remove&nbsp;delete&nbsp;mark)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F10&nbsp;<A HREF="h_common_take">Take&nbsp;Address</A>&nbsp;into&nbsp;address&nbsp;book<BR>
5457 F11&nbsp;<A HREF="h_common_reply">Reply</A>&nbsp;to&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F11&nbsp;<A HREF="h_common_save">Save</A>&nbsp;message&nbsp;into&nbsp;an&nbsp;email&nbsp;folder<BR>
5458 F12&nbsp;<A HREF="h_common_reply">Forward</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F12&nbsp;<A HREF="h_common_save">Export</A>&nbsp;message&nbsp;into&nbsp;a&nbsp;plain&nbsp;file<BR>
5459 <BR>
5460 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5461 ------------------------------<BR>
5462 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5463 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5464 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5465 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5466 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5467 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5468 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5469 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5470 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5471 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5472 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5473 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5474 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5475 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5476 <!--chtml else-->
5477 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5478 ---------------------------------<BR>
5479 <BR>
5480 &nbsp;-&nbsp;&nbsp;&nbsp;Show&nbsp;previous&nbsp;page&nbsp;of&nbsp;this&nbsp;msg&nbsp;&nbsp;&nbsp;&nbsp;S&nbsp;&nbsp;<A HREF="h_common_save">Save</A>&nbsp;into&nbsp;an&nbsp;email&nbsp;folder<BR>
5481 Spc&nbsp;&nbsp;(space&nbsp;bar)&nbsp;Show&nbsp;next&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E&nbsp;&nbsp;<A HREF="h_common_save">Export</A>&nbsp;as&nbsp;a&nbsp;plain&nbsp;text&nbsp;file<BR>
5482 &nbsp;&gt;&nbsp;&nbsp;&nbsp;<A HREF="h_view_cmd_viewattch">View&nbsp;attachment</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;B&nbsp;&nbsp;<A HREF="h_common_bounce">Bounce</A><BR>
5483 &nbsp;R&nbsp;&nbsp;&nbsp;<A HREF="h_common_reply">Reply</A>&nbsp;to&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F&nbsp;&nbsp;<A HREF="h_common_reply">Forward</A>&nbsp;message<BR>
5484 &nbsp;D&nbsp;&nbsp;&nbsp;<A HREF="h_common_delete">Mark&nbsp;for&nbsp;deletion</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ret&nbsp;View&nbsp;<A HREF="h_view_cmd_hilite">hilited</A>&nbsp;item<BR>
5485 &nbsp;U&nbsp;&nbsp;&nbsp;<A HREF="h_common_delete">Undelete</A>&nbsp;(remove&nbsp;deletion&nbsp;mark)&nbsp;&nbsp;^F&nbsp;&nbsp;Select&nbsp;next&nbsp;<A HREF="h_view_cmd_hilite">hilited</A>&nbsp;item&nbsp;in&nbsp;message<BR>
5486 &nbsp;T&nbsp;&nbsp;&nbsp;<A HREF="h_common_take">Take&nbsp;Address</A>&nbsp;into&nbsp;Address&nbsp;Book&nbsp;&nbsp;&nbsp;^B&nbsp;&nbsp;Select&nbsp;previous&nbsp;<A HREF="h_view_cmd_hilite">hilited</A>&nbsp;item<BR>
5487 &nbsp;%&nbsp;&nbsp;&nbsp;<A HREF="h_common_print">Print</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5488 &nbsp;W&nbsp;&nbsp;&nbsp;<A HREF="h_view_cmd_whereis">Whereis</A>:&nbsp;search&nbsp;for&nbsp;text&nbsp;in&nbsp;msg&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5489 <BR>
5490 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5491 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5492 &nbsp;P&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Display&nbsp;previous&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;G&nbsp;&nbsp;&nbsp;<A HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
5493 &nbsp;N&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Display&nbsp;next&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;H&nbsp;&nbsp;&nbsp;<A HREF="h_common_hdrmode">Full&nbsp;header&nbsp;mode</A>&nbsp;on/off<BR>
5494 &nbsp;J&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;a&nbsp;specific&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Current&nbsp;message<BR>
5495 Tab&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;&nbsp;&nbsp;<A HREF="h_config_prefer_plain_text">Toggle&nbsp;Prefer&nbsp;Plain&nbsp;Text</A><BR>
5496 <BR>
5497 General&nbsp;Alpine&nbsp;Commands<BR>
5498 ---------------------<BR>
5499 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5500 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5501 &nbsp;M&nbsp;&nbsp;MAIN&nbsp;MENU&nbsp;Screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;L&nbsp;<A HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;Screen&nbsp;(or&nbsp;COLLECTION&nbsp;LIST&nbsp;Screen)<BR>
5502 &nbsp;&lt;&nbsp;&nbsp;<A HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;Screen&nbsp;&nbsp;C&nbsp;<A HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;new&nbsp;message<BR>
5503 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5504 <!--chtml endif-->
5507 NOTE:
5508 <OL>
5509  <LI>For help on a particular command, highlight the bold text associated
5510 with it above and hit Return.
5511  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5512 </OL>
5514 <H2>Description of the MESSAGE TEXT Screen</H2>
5516 The top line of the view message screen displays status
5517 information about the currently open collection and folder and about the
5518 current message.  It shows the name of the collection in angle brackets
5519 and then the name of the folder.  The line also displays the number
5520 of messages in the folder, the number of the current message and the
5521 percentage of the current message that has been displayed on the screen.
5522 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5523 right corner.
5524 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5525 in the corner.
5528 NOTE: to rapidly move to the end of a message, hit the
5529 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5530 (or Ctrl-W) key followed
5531 by Ctrl-V.  Similarly,
5532 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5533 followed by Ctrl-Y will take you to the beginning of
5534 a message.
5536 <H2>Explanation of Alternate Character Sets</H2>
5538 Alpine attempts to stay out of the way so that it won't prevent you from
5539 viewing mail in any character set.  It will simply send the message to
5540 your display device.  If the device is capable of displaying the
5541 message as it was written it will do so.  If not, the display may be
5542 partially or totally incorrect.
5543 If the message contains characters that are not representable in your 
5544 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5545 variable in your configuration, then a warning message will be printed
5546 to your screen at the beginning of the message display.
5547 It is probably best to use UNIX Alpine in a terminal emulator
5548 capable of displaying UTF-8 characters.
5549 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5550 more information about character set settings.
5552 <P><UL>
5553 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5554 </UL>
5556 &lt;End of help on this topic&gt;
5557 </BODY>
5558 </HTML>
5559 ======= h_index_cmd_select =======
5560 <HTML>
5561 <HEAD>
5562 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5563 </HEAD>
5564 <BODY>
5565 <H1>Selecting: Select and WhereIs/Select</H1>
5567 Aggregate operations give you the ability to process a group of messages
5568 at once.  Acting on multiple messages requires two steps: (1) selecting a
5569 set of messages and then; (2) applying a command to that set. The first
5570 part is handled by the select command.  Select allows you to
5571 select messages based on their status (read, answered, etc.), contents,
5572 date, size, or keywords.
5573 You may also select based on one of your Rules or based on threads,
5574 and there are quick options to select a specific message or range of messages,
5575 to select the current message, or to select all messages.
5578 We describe the various selection criteria briefly:
5581 <DL>
5582 <DT>select All</DT>
5583 <DD> Marks all the messages in the folder as selected.
5584 </DD>
5586 <DT>select Cur</DT>
5587 <DD> Selects the currently highlighted message or currently highlighted
5588 set of messages if in a threaded view.
5589 </DD>
5591 <DT>select by Number</DT>
5592 <DD> Select by message number. This may be a comma-separated list instead or
5593 a single entry.
5594 Each element in the list may be either a single message number or a range
5595 of numbers with a dash between the lowest and highest member of the range.
5596 Some examples are 7 to select only message number 7; 2-5 to select messages
5597 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5598 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5599 substitute for the highest numbered message in the folder, while the
5600 character &quot;.&quot; represents the message number holding the position
5601 of the cursor in the folder.
5602 If in a separate thread index where the numbers refer to threads instead of
5603 to messages, then you will be selecting all of the messages in the
5604 referenced threads instead of selecting by message number.
5605 </DD>
5607 <DT>select by Date</DT>
5608 <DD> Select by either the date stored in the Date headers of each message,
5609 or by the date when the messages arrived.
5610 This does not adjust for different time zones, but just checks to see what
5611 day the message was sent on.
5612 You may type in a date. If you do, the date should be in the form
5613 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5614 For example,
5615 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5617 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5618 If the date you want is close to the current date, it is probably
5619 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5620 is displayed, instead of typing in the date yourself.
5621 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5622 the date of the currently highlighted message. 
5624 There are six possible settings that are selected using the
5625 &quot;^W&nbsp;Toggle When&quot; command.
5626 Three of them select messages based on the Date headers.
5627 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5628 and &quot;SENT ON&quot;.
5629 SINCE is all messages with the selected date or later.
5630 BEFORE is all messages earlier than the selected date (not including the day
5631 itself).
5632 ON is all messages sent on the selected date.
5633 The other three select messages in the same way but they use the arrival
5634 times of the messages instead of the Date headers included in the messages.
5635 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5636 and &quot;ARRIVED ON&quot;.
5637 When you save a message from one folder to another the arrival time is
5638 preserved.
5639 </DD>
5641 <DT>select by Text</DT>
5642 <DD> Selects messages based on the message contents.
5643 This allows you to select a set of messages based on whether or not the
5644 message headers or message body contain specified text.
5645 You may look for text in the Subject, the From header,
5646 the To header, or the Cc header.
5647 You may also choose Recipient, which searches for the text in
5648 either the To or the Cc header;
5649 or Participant, which means To or Cc or From.
5650 Besides those specific header searches, you may also search the entire
5651 header and text of the message with &quot;All Text&quot;, or just the
5652 body of the message.
5654 To search for the absence of text, first type the &quot;! Not&quot; command
5655 before typing the specific type of text search.
5656 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5657 search for all messages that do not contain a particular word in their
5658 Subjects.
5660 If you choose a Subject search, you may use the subject from the current
5661 message by typing the &quot;^X Cur Subject&quot; command.
5662 You may then edit it further if you wish.
5663 For example, you might select the subject of a reply and edit the
5664 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5665 the original message being replied to.
5666 All of the other header searches allow you to use addresses from the
5667 headers of the current message if you want to.
5668 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5669 &quot;^W Cur Cc&quot;.
5670 In each case, if there is more than one address, only the first is offered.
5671 </DD>
5673 <DT>select by Status</DT>
5674 <DD> Selects messages based on their status.
5675 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5676 messages.
5677 Or, if you first type the &quot;! Not&quot; command, you get not New,
5678 or not Important, and so on.
5679 If you select Deleted messages, you will get all messages with their
5680 Deleted flag set.
5681 Likewise for Important messages, all messages that you have flagged as
5682 being Important with the
5683 <A HREF="h_common_flag">Flag</A> command.
5684 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5685 because they try to match what you see on the screen by default.
5686 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5687 and Unanswered.
5688 If you have looked at the message, or deleted it, or answered it; then it
5689 is not considered &quot;New &quot;.
5690 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5692 &quot;Answered&quot; is another one that is a little different.
5693 It means that the message has been Answered <EM>and</EM> is not deleted.
5694 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5695 the opposite of &quot;Answered&quot;!
5696 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5697 both Unanswered <EM>and</EM> not deleted.
5699 The other two types were added later because the special nature of the
5700 New flag was not what was wanted by all users.
5701 New does match what you see in the index by default, but if you use
5702 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5703 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5704 be exactly what you want.
5705 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5706 they are deleted or answered, and
5707 &quot;Recent&quot; selects all of the messages that have been added to
5708 the folder since you started this Alpine session.
5709 (That's not technically quite true. If there are multiple mail clients
5710 reading an IMAP mailbox, each message will be marked as Recent in only
5711 one of the client's sessions.)
5712 </DD>
5714 <DT>select by siZe</DT>
5715 <DD> Selects messages based on their size being smaller than or larger
5716 than the size you specify.
5717 The size is the number of bytes.
5718 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5719 the number.
5720 For example, 7K is the same as 7000.
5721 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5722 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5723 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5724 and Larger.
5725 </DD>
5727 <DT>select by Keyword</DT>
5728 <DD> Selects messages that either have or do not have
5729 (using the &quot;!&nbsp;Not&quot; command)
5730 a particular <A HREF="h_config_keywords">Keyword</A> set.
5731 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5732 command to select one from your list of keywords.
5734 <A HREF="h_config_flag_screen_kw_shortcut"><!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></A> option allows selecting by Keyword initials if set.
5735 </DD>
5737 <DT>select by Rule</DT>
5738 <DD> Selects messages that either match or don't match
5739 (using the &quot;!&nbsp;Not&quot; command)
5740 one of the Rules you have defined.
5741 The most likely method of filling in the Rule is to use the
5742 &quot;^T&nbsp;To&nbsp;List&quot;
5743 command to select one of your Rules.
5744 All of the Rules you have defined will be in the list, including
5745 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5746 They may not all make sense for this purpose, but they are all there for
5747 flexibility.
5748 You might find it useful to define some rules solely for the purpose
5749 of being used by the Select command.
5750 There is a special category for such Rules. They are called Search Rules.
5752 Unfortunately, Alpine does not allow all possible Rules to be defined.
5753 For example, there is no logical OR operation.
5754 OR is accomplished in the Filter Rules or the other types of Rules by
5755 simply defining two rules, one that matches the first part of the OR
5756 and another that matches the second part.
5757 But you can't do that here, since you only have a single Rule to work with.
5758 Likewise, the order of Rules is usually important.
5759 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5760 a message, then that stops the search for a further match.
5761 This means that you may be confused if you try to use Select by Rule to
5762 check your Filter rules because the order is important when filtering but
5763 is not considered here.
5764 </DD>
5766 <DT>select by tHread</DT>
5767 <DD> Selects all of the messages in the current thread.
5768 </DD>
5769 </DL>
5771 After you have an initial selection, the next and subsequent selection
5772 commands modify the selection.
5773 The select command changes. It first gives
5774 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5775 &quot;unselect Current&quot;,
5776 &quot;Broaden selection&quot; (implements a logical OR), and
5777 &quot;Narrow selection&quot; (implements a logical AND).
5778 After you choose either Broaden or Narrow, you then choose one of the
5779 selection criteria listed above (by Text or Number or ...).
5780 You may use select as many times as you wish to get the selected set right.
5783 The WhereIs command has a feature (Ctrl-X) to
5784 select all the messages that match the WhereIs search. WhereIs searches
5785 through just the text that appears on the MESSAGE INDEX screen.
5786 This method is often slower than using the select command itself, unless the
5787 line you are looking for is not too far away in the index.
5790 The availability of the aggregate operations commands is determined by the
5791 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5792 Feature-List option in your Alpine
5793 configuration, which defaults to set.
5794 The features
5795 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5797 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5798 affect the behavior of the Select command.
5801 &lt;End of help on this topic&gt;
5802 </BODY>
5803 </HTML>
5804 ======= h_select_rule =======
5805 <HTML>
5806 <HEAD>
5807 <TITLE>Select: Rule</TITLE>
5808 </HEAD>
5809 <BODY>
5810 <H1>Select: Rule</H1>
5812 You are selecting messages that either match or don't match
5813 one of the Rules you have defined.
5814 You may either type the nickname of the Rule at the prompt, or use the
5815 &quot;^T&nbsp;To&nbsp;List&quot;
5816 command to select one of your Rules.
5817 All of the Rules you have defined will be in the list, including
5818 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5819 They may not all make sense for this purpose, but they are all there for
5820 flexibility.
5821 Rules may be added by using the Setup/Rules screen off of the main Alpine
5822 menu.
5824 Unfortunately, Alpine does not allow all possible Rules to be defined.
5825 For example, there is no logical OR operation.
5826 OR is accomplished in the Filter Rules or the other types of Rules by
5827 simply defining two rules, one that matches the first part of the OR
5828 and another that matches the second part.
5829 But you can't do that here, since you only have a single Rule to work with.
5830 Likewise, the order of Rules is usually important.
5831 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5832 a message, then that stops the search for a further match.
5833 This means that you may be confused if you try to use Select by Rule to
5834 check your Filter rules because the order is important when filtering but
5835 is not considered here.
5838 &lt;End of help on this topic&gt;
5839 </BODY>
5840 </HTML>
5841 ======= h_select_text =======
5842 <HTML>
5843 <HEAD>
5844 <TITLE>Select: Text</TITLE>
5845 </HEAD>
5846 <BODY>
5847 <H1>Select: Text</H1>
5849 You are selecting messages based on the contents of the message.
5850 This allows you to select a set of messages based on whether or not the
5851 message headers or message body contain specified text.
5852 You may look for text in the Subject, the From header,
5853 the To header, or the Cc header.
5854 You may also choose Recipient, which searches for the text in
5855 either the To or the Cc header;
5856 or Participant, which means either the To header, or the Cc header,
5857 or the From header.
5858 Besides those specific header searches, you may also search the entire
5859 header and text of the message with &quot;All Text&quot;, or just the
5860 body of the message with &quot;Body&quot;.
5862 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5863 before typing the specific type of text search.
5864 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5865 search for all messages that do not contain a particular word in their
5866 Subjects.
5868 If you choose a Subject search, you may use the subject from the current
5869 message by typing the &quot;^X Cur Subject&quot; command.
5870 You may then edit it further if you wish.
5871 For example, you might select the subject of a reply and edit the
5872 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5873 the original message being replied to.
5874 All of the other header searches allow you to use addresses from the
5875 headers of the current message if you want to.
5876 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5877 &quot;^W Cur Cc&quot;.
5878 In each case, if there is more than one address, only the first is offered.
5881 &lt;End of help on this topic&gt;
5882 </BODY>
5883 </HTML>
5884 ======= h_select_status =======
5885 <HTML>
5886 <HEAD>
5887 <TITLE>Select: Status</TITLE>
5888 </HEAD>
5889 <BODY>
5890 <H1>Select: Status</H1>
5892 You are selecting messages based on the status of the message.
5893 For example, whether or not the message has been marked Deleted or Important,
5894 or whether or not it has been Answered or is New.
5895 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5896 opposite: not Deleted, not Important, and so on.
5898 If you select Deleted messages, you will get all messages with their
5899 Deleted flag set.
5900 Likewise for Important messages, all messages that you have flagged as
5901 being Important with the
5902 <A HREF="h_common_flag">Flag</A> command.
5903 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5904 because they try to match what you see on the screen by default.
5905 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5906 and Unanswered.
5907 If you have looked at the message, or deleted it, or answered it; then it
5908 is not considered &quot;New &quot;.
5909 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5911 &quot;Answered&quot; is another one that is a little different.
5912 It means that the message has been Answered <EM>and</EM> is not deleted.
5913 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5914 the opposite of &quot;Answered&quot;!
5915 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5916 both Unanswered <EM>and</EM> not deleted.
5918 (The New and Answered options may seem counter-intuitive.
5919 The reason it is done this way is
5920 because, by default, a Deleted message will show up with the &quot;D&quot;
5921 symbol in the MAIL INDEX screen even if it is New or Answered.
5922 The Delete symbol overrides the New and Answered symbols, because you
5923 usually don't care about the message anymore once you've deleted it.
5924 Similarly, you usually only care about whether a message is Answered or
5925 not if it is not Deleted.
5926 Once it is Deleted you've put it out of your mind.)
5928 The other two options were added later because the special nature of the
5929 New flag was not what was wanted by all users.
5930 New does match what you see in the index by default, but if you use
5931 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5932 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5933 be exactly what you expect.
5934 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5935 they are deleted or answered, and
5936 &quot;Recent&quot; selects all of the messages that have been added to
5937 the folder since you started this Alpine session.
5938 (That's not technically quite true. If there are multiple mail clients
5939 reading an IMAP mailbox, each message will be marked as Recent in only
5940 one of the client's sessions.
5941 That behavior can be convenienent for some purposes, like filtering, but
5942 it isn't usually what you expect when selecting.)
5945 &lt;End of help on this topic&gt;
5946 </BODY>
5947 </HTML>
5948 ======= h_index_cmd_apply =======
5949 <HTML>
5950 <HEAD>
5951 <TITLE>Apply Command</TITLE>
5952 </HEAD>
5953 <BODY>
5954 <H1>Apply Command</H1>
5956 Apply
5957 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5958 is the second step of most aggregate operations.  Apply
5959 becomes active any time there is a defined set of selected messages.  The
5960 following commands can be applied to a selected message set: delete,
5961 undelete, reply, forward,
5962 <!--chtml if pinemode="os_windows"-->
5963 <!--chtml else--> 
5964 pipe,
5965 <!--chtml endif-->
5966 print, take address, save, export, bounce, and flag.
5969 The behavior of some of these commands in an aggregate sense is not easy to
5970 explain.  Try them out to see what they do.
5971 The feature
5972 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5973 affects the behavior of the Apply command, as does the feature
5974 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5977 &lt;End of help on this topic&gt;
5978 </BODY>
5979 </HTML>
5980 ======= h_index_cmd_zoom =======
5981 <HTML>
5982 <HEAD>
5983 <TITLE>ZoomMode Command</TITLE>
5984 </HEAD>
5985 <BODY>
5986 <H1>ZoomMode Command</H1>
5988 Another action you might want to take on a set of selected messages is to
5989 zoom in on them.  Like apply, zoom only becomes active when messages have
5990 been selected.
5991 ZoomMode
5992 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5993 is a toggle command that allows you to
5994 zoom-in (and only see the selected messages) and zoom-out (to see all
5995 messages in the folder).  Neither apply nor zoom removes the markings that
5996 define the selected set; you need to use a select command in order
5997 to do that.
6000 &lt;End of help on this topic&gt;
6001 </BODY>
6002 </HTML>
6003 ======= h_index_collapse_expand =======
6004 <HTML>
6005 <HEAD>
6006 <TITLE>Collapse/Expand Command</TITLE>
6007 </HEAD>
6008 <BODY>
6009 <H1>Collapse/Expand Command</H1>
6011 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
6012 the folder is sorted by either Threads or OrderedSubject, and the
6013 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
6014 is set to something other than &quot;none&quot;.
6015 By default, this command collapses or expands the subthread that starts at
6016 the currently highlighted message, if any.
6017 If the subthread is already collapsed, then this command expands it.
6018 If the subthread is expanded, then this command collapses it.
6019 If there are no more messages below the current message in the
6020 thread tree (that is, there are no replies to the current message) then
6021 this command does nothing.
6024 The behavior of this command is affected by the option
6025 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
6026 Normally, this command Collapses or Expands the subthread that
6027 starts at the currently highlighted message.
6028 If the above option is set, then this command Collapses or Expands the
6029 entire current thread instead of just the subthread.
6030 The current thread is simply the top-level thread that contains the
6031 current message.
6034 &lt;End of help on this topic&gt;
6035 </BODY>
6036 </HTML>
6037 ======= h_index_cmd_sort =======
6038 <HTML>
6039 <HEAD>
6040 <TITLE>Sort Command</TITLE>
6041 </HEAD>
6042 <BODY>
6043 <H1>Sort Command</H1>
6045 In Alpine's generic configuration, messages are presented in the order in
6046 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
6047 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
6048 You can also re-sort the folder on demand with the sort
6049 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
6050 command.
6051 Your sorting options are:
6053 <UL>
6054  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
6055  <LI> <A HREF="h_index_sort_date">D</A>ate
6056  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6057  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6058  <LI> t<A HREF="h_index_sort_thread">H</A>read
6059  <LI> <A HREF="h_index_sort_from">F</A>rom
6060  <LI> si<A HREF="h_index_sort_size">Z</A>e
6061  <LI> scor<A HREF="h_index_sort_score">E</A>,
6062  <LI> <A HREF="h_index_sort_to">T</A>o
6063  <LI> <A HREF="h_index_sort_cc">C</A>c
6064 </UL>
6067 The Reverse option will toggle the order the index is currently
6068 sorted by, but will not change the relative sort order.
6071 Sorting a folder does not actually rearrange the way the folder is saved,
6072 it just re-arranges how the messages are presented to you.  This means
6073 that Alpine has to do the work of sorting every time you change sort order.
6074 Sometimes, especially with PC-Alpine or with large folders, this could take
6075 a while.
6078 &lt;End of help on this topic&gt;
6079 </BODY>
6080 </HTML>
6081 ======= h_index_sort_default =======
6082 <HTML>
6083 <HEAD>
6084 <TITLE>SORT OPTION: Default</TITLE>
6085 </HEAD>
6086 <BODY>
6087 <H1>SORT OPTION: Default</H1>
6089 The <EM>Default</EM> sort option just means to use the default sort order
6090 set in the
6091 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6092 option in Setup/Config.
6095 &lt;End of help on this topic&gt;
6096 </BODY>
6097 </HTML>
6098 ======= h_index_sort_arrival =======
6099 <HTML>
6100 <HEAD>
6101 <TITLE>SORT OPTION: Arrival</TITLE>
6102 </HEAD>
6103 <BODY>
6104 <H1>SORT OPTION: Arrival</H1>
6106 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6107 in the order that they exist in the folder.  This is usually the same as the
6108 order in which they arrived.  This option is comparable to not sorting
6109 the messages at all.
6112 &lt;End of help on this topic&gt;
6113 </BODY>
6114 </HTML>
6115 ======= h_index_sort_date =======
6116 <HTML>
6117 <HEAD>
6118 <TITLE>SORT OPTION: Date</TITLE>
6119 </HEAD>
6120 <BODY>
6121 <H1>SORT OPTION: Date</H1>
6123 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6124 according to the date and time they were
6125 sent.
6128 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6129 identical to sorting by &quot;Arrival&quot;.
6132 &lt;End of help on this topic&gt;
6133 </BODY>
6134 </HTML>
6135 ======= h_index_sort_subj =======
6136 <HTML>
6137 <HEAD>
6138 <TITLE>SORT OPTION: Subject</TITLE>
6139 </HEAD>
6140 <BODY>
6141 <H1>SORT OPTION: Subject</H1>
6143 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6144 by subject. 
6147 Messages with the same subject are
6148 first grouped together, and then the groups of like-subject messages
6149 are arranged alphabetically.
6152 Alpine ignores leading &quot;Re:&quot; and
6153 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6154 likeness and alphabetical order of subject lines.
6157 &lt;End of help on this topic&gt;
6158 </BODY>
6159 </HTML>
6160 ======= h_index_sort_ordsubj =======
6161 <HTML>
6162 <HEAD>
6163 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6164 </HEAD>
6165 <BODY>
6166 <H1>SORT OPTION: OrderedSubject</H1>
6168 The <EM>OrderedSubject</EM> sort option arranges messages in the
6169 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6170 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6173 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6174 messages by the date of the oldest message in the group.
6177 This sort method provides for pseudo threading of conversations within
6178 a folder.
6179 You may want to try sorting by Thread instead.
6182 &lt;End of help on this topic&gt;
6183 </BODY>
6184 </HTML>
6185 ======= h_index_sort_thread =======
6186 <HTML>
6187 <HEAD>
6188 <TITLE>SORT OPTION: Thread</TITLE>
6189 </HEAD>
6190 <BODY>
6191 <H1>SORT OPTION: Thread</H1>
6193 The <EM>Thread</EM> sort option arranges messages in the
6194 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6195 they are part of a conversation (discussion thread) taking
6196 place within a mailbox or newsgroup.  This indication is
6197 based on information in the message's header -- specifically
6198 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6201 &lt;End of help on this topic&gt;
6202 </BODY>
6203 </HTML>
6204 ======= h_index_sort_from =======
6205 <HTML>
6206 <HEAD>
6207 <TITLE>SORT OPTION: From</TITLE>
6208 </HEAD>
6209 <BODY>
6210 <H1>SORT OPTION: From</H1>
6212 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6213 by the name of the author of the message.
6216 Messages with the same author are grouped together. Groups of
6217 messages are then put into alphabetical order according to message
6218 author.
6221 &lt;End of help on this topic&gt;
6222 </BODY>
6223 </HTML>
6224 ======= h_index_sort_size =======
6225 <HTML>
6226 <HEAD>
6227 <TITLE>SORT OPTION: Size</TITLE>
6228 </HEAD>
6229 <BODY>
6230 <H1>SORT OPTION: Size</H1>
6232 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6233 by their relative sizes.
6236 &lt;End of help on this topic&gt;
6237 </BODY>
6238 </HTML>
6239 ======= h_index_sort_score =======
6240 <HTML>
6241 <HEAD>
6242 <TITLE>SORT OPTION: Score</TITLE>
6243 </HEAD>
6244 <BODY>
6245 <H1>SORT OPTION: Score</H1>
6247 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6248 by their scores.
6251 Messages with the same score are sorted in arrival order.
6252 Scores are something you create using the
6253 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6256 &lt;End of help on this topic&gt;
6257 </BODY>
6258 </HTML>
6259 ======= h_index_sort_to =======
6260 <HTML>
6261 <HEAD>
6262 <TITLE>SORT OPTION: To</TITLE>
6263 </HEAD>
6264 <BODY>
6265 <H1>SORT OPTION: To</H1>
6267 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6268 by the names of the recipients of the message.
6271 Messages with the same recipients are grouped together. Groups of
6272 messages are then put into alphabetical order according to message
6273 recipients.
6276 &lt;End of help on this topic&gt;
6277 </BODY>
6278 </HTML>
6279 ======= h_index_sort_cc =======
6280 <HTML>
6281 <HEAD>
6282 <TITLE>SORT OPTION: Cc</TITLE>
6283 </HEAD>
6284 <BODY>
6285 <H1>SORT OPTION: Cc</H1>
6287 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6288 the names of the carbon copy addresses of the message.
6291 &lt;End of help on this topic&gt;
6292 </BODY>
6293 </HTML>
6294 ======= h_index_cmd_whereis =======
6295 <HTML>
6296 <HEAD>
6297 <TITLE>WhereIs Command</TITLE>
6298 </HEAD>
6299 <BODY>
6300 <H1>WhereIs Command</H1>
6302 The WhereIs
6303 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6304 command lets you search the MESSAGE INDEX for a word.
6305 It scans through whatever you see, usually the name of the author
6306 and the Subject line.
6307 WhereIs has special subcommands to let you find the beginning of the
6308 index (Ctrl-Y -- first message)
6309 or the end of the index (Ctrl-V -- last message).
6311 Note that WhereIs only searches through the visible text on the screen.
6312 For example, if only part of the Subject of a message is shown because it
6313 is long, then only the visible portion of the Subject is searched.
6314 Also note that WhereIs does not &quot;see&quot; the 
6315 &quot;X&quot; in column one of Index entries for selected messages
6316 so it can't be used to search for
6317 selected messages (use &quot;Zoom&quot; instead).
6319 If the feature
6320 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6321 is turned on,
6322 WhereIs can also be used as a quick way to select messages that match the
6323 string being searched for.
6324 Instead of typing carriage return to search for the next match, type
6325 Ctrl-X to select all matches.
6326 Once again, this only selects matches that are (or would be if the right
6327 index line was on the screen) visible.
6328 Truncated From lines or Subjects will cause matches to be missed.
6329 Although WhereIs is sometimes convenient for quick matching, the Select
6330 command is usually more powerful and usually faster.
6333 &lt;End of help on this topic&gt;
6334 </BODY>
6335 </HTML>
6336 ======= h_view_cmd_whereis =======
6337 <HTML>
6338 <HEAD>
6339 <TITLE>WhereIs Command</TITLE>
6340 </HEAD>
6341 <BODY>
6342 <H1>WhereIs Command</H1>
6344 The WhereIs
6345 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6346 command does a &quot;find in current message&quot; operation.  You
6347 type in text and Alpine will try to find it in the message you are
6348 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6349 or end (Ctrl-V) of the message.
6350 That is, to rapidly move to the end of a message, hit the 
6351 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6352 (or Ctrl-W) key followed
6353 by Ctrl-V.  Similarly,
6354 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6355 followed by Ctrl-Y will take you to the beginning of a message.
6358 &lt;End of help on this topic&gt;
6359 </BODY>
6360 </HTML>
6361 ======= h_view_cmd_hilite =======
6362 <HTML>
6363 <HEAD>
6364 <TITLE>View Hilite and Next item/Previous item</TITLE>
6365 </HEAD>
6366 <BODY>
6367 <H1>View Hilite and Next item/Previous item</H1>
6369 Sometimes messages may be in the form of formatted HTML text
6370 or they may contain URLs or Web server hostnames.
6371 When any of the features
6372 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6373 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6374 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6376 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6377 are enabled, Alpine will represent such selectable items in the text
6378 in bold typeface.  One of the selectable items will be displayed in
6379 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6380 Press the Return key to view the currently selected item.
6383 The Up and Down Arrows keys can be used to change the selected item
6384 (also see the feature
6385 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6386 If there are no selectable items in the direction of the arrow you
6387 pressed, Alpine will scroll the display in that direction until one
6388 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6389 items in the message text, use the Previous and Next item commands,
6390 <!--chtml if pinemode="function_key"-->F5 and F6
6391 <!--chtml else-->^B and ^F<!--chtml endif-->.
6394 &lt;End of help on this topic&gt;
6395 </BODY>
6396 </HTML>
6397 ======= h_view_cmd_viewattch =======
6398 <HTML>
6399 <HEAD>
6400 <TITLE>ViewAttch Command</TITLE>
6401 </HEAD>
6402 <BODY>
6403 <H1>ViewAttch Command</H1>
6406 The View/Save Attachment
6407 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6408 command allows you to handle MIME attachments to a message you have
6409 received.  Alpine shows you a list of the message attachments -- you just
6410 choose the attachment you want.  You may either view or save the
6411 selected attachment.
6414 Because many attachments require external programs for display, there
6415 is some system configuration that has to happen before you can
6416 actually display attachments.  Hopefully much of that will have been
6417 done already by your system administrator.  MIME configuration is
6418 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6419 on configuration in the
6420 <A HREF="h_news">release notes</A> for more information.)
6423 &lt;End of help on this topic&gt;
6424 </BODY>
6425 </HTML>
6426 ======= h_index_cmd_expunge =======
6427 <HTML>
6428 <HEAD>
6429 <TITLE>Expunge/Exclude Command</TITLE>
6430 </HEAD>
6431 <BODY>
6432 <H1>Expunge/Exclude Command</H1>
6434 Expunge/Exclude
6435 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6436 is the command Alpine uses to actually remove all messages
6437 marked for deletion.  With regular email files, expunge literally deletes
6438 the text from the current folder.  With newsgroups or shared mailboxes,
6439 you don't have permission to actually remove the message, so it is an
6440 exclude -- Alpine removes the message from your view of the folder even
6441 though it is not technically gone.
6443 <P> A selective expunge command is available in IMAP folders that support 
6444 the UID EXPUNGE extension in <A 
6445 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6446 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6447 as a subcommand of the apply command. If some selected messages are marked 
6448 deleted, then the apply command will offer the eXpunge command, which when 
6449 executed will only expunge those messages that are selected and deleted.
6451 <P> 
6452 Observe that the expunge command (when not used from the apply command) 
6453 will expunge/exclude all deleted messages from the folder, and so all 
6454 messages marked deleted will be expunged, regardless of if they are 
6455 selected or not. In other words, there is no protection against 
6456 potentially expunging more messages than only those that have been 
6457 selected and deleted.
6460 The configuration features
6461 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6463 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6464 affect the behavior of the Expunge command.
6467 &lt;End of help on this topic&gt;
6468 </BODY>
6469 </HTML>
6470 ======= h_common_compose =======
6471 <HTML>
6472 <HEAD>
6473 <TITLE>Compose Command</TITLE>
6474 </HEAD>
6475 <BODY>
6476 <H1>Compose Command</H1>
6478 The Compose command takes you into the Alpine message composer where you
6479 can start a new message for sending.  This is where you type in the
6480 message's text and specify its recipient list (the &quot;To:&quot;
6481 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6482 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6483 be attached to the message.
6486 When you type this command, Alpine will also automatically check for any
6487 interrupted (i.e., a message that was being composed when your modem
6488 or network connection was broken) or previously postponed messages and
6489 offer you a chance to continue working on those.
6492 <UL>   
6493 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6494 </UL><P>
6495 &lt;End of help on this topic&gt;
6496 </BODY>
6497 </HTML>
6498 ======= h_common_index =======
6499 <HTML>
6500 <HEAD>
6501 <TITLE>Message Index Command</TITLE>
6502 </HEAD>
6503 <BODY>
6504 <H1>Message Index Command</H1>
6506 The Index command takes you to the MESSAGE INDEX screen that displays a
6507 summary caption for each message in the currently-open folder. One
6508 message will be highlighted; this is the &quot;Current&quot; message.
6509 The message commands available from this screen (e.g. View, Reply,
6510 Forward, Delete, Print, Save, etc) apply to the current message.
6513 &lt;End of help on this topic&gt;
6514 </BODY>
6515 </HTML>
6516 ======= h_common_folders =======
6517 <HTML>
6518 <HEAD>
6519 <TITLE>Folder List Command</TITLE>
6520 </HEAD>
6521 <BODY>
6522 <H1>Folder List Command</H1>
6524 This Folder List command takes you to the FOLDER LIST screen that displays
6525 the names of all your message folders and allows you to view, rename,
6526 delete, and add folders.  You can open (view) a different folder than the
6527 one currently open by highlighting the desired one (using the arrow keys
6528 or their control-key equivalents) and pressing RETURN.
6531 If you have multiple folder collections defined (see the Help text for
6532 the FOLDER LIST screen to learn more about Collections), you may need
6533 to press Return to expand the collection and display all of the
6534 folders in it.
6537 &lt;End of help on this topic&gt;
6538 </BODY>
6539 </HTML>
6540 ======= h_main_addrbook =======
6541 <HTML>
6542 <HEAD>
6543 <TITLE>Address Book Command</TITLE>
6544 </HEAD>
6545 <BODY>
6546 <H1>Address Book Command</H1>
6548 This command, available only from the MAIN MENU, takes you
6549 to the ADDRESS BOOK management screen.  From here, your personal address
6550 book(s) may be updated.
6553 &lt;End of help on this topic&gt;
6554 </BODY>
6555 </HTML>
6556 ======= h_main_setup =======
6557 <HTML>
6558 <HEAD>
6559 <TITLE>Setup Command</TITLE>
6560 </HEAD>
6561 <BODY>
6562 <H1>Setup Command</H1>
6564 The Setup command, available only from the MAIN MENU, prompts you for
6565 one of several configuration screens, including the SETUP CONFIGURATION 
6566 screen, by which you may activate optional Alpine features.
6569 &lt;End of help on this topic&gt;
6570 </BODY>
6571 </HTML>
6572 ======= h_main_release_notes =======
6573 <HTML>
6574 <HEAD>
6575 <TITLE>Release Notes Command</TITLE>
6576 </HEAD>
6577 <BODY>
6578 <H1>Release Notes Command</H1>
6580 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6581 as well as pointers to further information such as history and legal notes.
6584 &lt;End of help on this topic&gt;
6585 </BODY>
6586 </HTML>
6587 ======= h_main_kblock =======
6588 <HTML>
6589 <HEAD>
6590 <TITLE>Keyboard Lock Command</TITLE>
6591 </HEAD>
6592 <BODY>
6593 <H1>Keyboard Lock Command</H1>
6595 This command allows your Alpine session to be protected
6596 during a temporary absence from your terminal.
6599 &lt;End of help on this topic&gt;
6600 </BODY>
6601 </HTML>
6602 ======= h_main_journal =======
6603 <HTML>
6604 <HEAD>
6605 <TITLE>Journal Command</TITLE>
6606 </HEAD>
6607 <BODY>
6608 <H1>Journal Command</H1>
6610 This command displays a list of all the status messages Alpine has
6611 displayed (on the third line from the bottom of the screen). This may
6612 be useful if a message disappeared before you had a chance to read it.
6615 &lt;End of help on this topic&gt;
6616 </BODY>
6617 </HTML>
6618 ======= h_common_role =======
6619 <HTML>
6620 <HEAD>
6621 <TITLE>Role Command</TITLE>
6622 </HEAD>
6623 <BODY>
6624 <H1>Role Command</H1>
6626 The Role command is similar to the Compose command except that it starts
6627 off by letting you select a <A HREF="h_rules_roles">role</A>
6628 to be used for the composition.
6629 You may set up alternate roles by using Setup/Rules/Roles.
6632 &lt;End of help on this topic&gt;
6633 </BODY>
6634 </HTML>
6635 ======= h_common_conditional_cmds =======
6636 <HTML>
6637 <HEAD>
6638 <TITLE>Conditional Commands</TITLE>
6639 </HEAD>
6640 <BODY>
6641 <H1>Conditional Commands</H1>
6643 The presence or absence of certain commands, particularly in the
6644 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6645 whether or not specific features are set in your Alpine configuration.  
6646 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6647 Alpine's MAIN MENU.)  To see if a desired command's availability is
6648 conditioned on a feature setting, see the command's help text (highlight
6649 the phrase associated with the command and hit Return).
6652 Also note that some
6653 commands may be administratively disabled by your system manager;
6654 if they don't work, please check with your local help desk.
6657 <UL>   
6658 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6659 </UL><P>
6660 &lt;End of help on this topic&gt;
6661 </BODY>
6662 </HTML>
6663 ======= h_common_pipe =======
6664 <HTML>
6665 <HEAD>
6666 <TITLE>Pipe Command</TITLE>
6667 </HEAD>
6668 <BODY>
6669 <H1>Pipe Command</H1>
6671 Pipe
6672 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6673 allows you to send a message to a specified Unix command for external
6674 processing.
6675 This command's availability is controlled by the
6676 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6677 feature.
6678 By default, the processed text of the message is sent to the command
6679 you specify and the output is captured by Alpine and shown to you.
6680 When you run the pipe command, there are some sub-commands which may be
6681 used to alter this behavior.
6682 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6685 &lt;End of help on this topic&gt;
6686 </BODY>
6687 </HTML>
6688 ======= h_common_goto =======
6689 <HTML>
6690 <HEAD>
6691 <TITLE>Goto Command</TITLE>
6692 </HEAD>
6693 <BODY>
6694 <H1>Goto Command</H1>
6696 Goto
6697 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6698 is the command that lets you bypass Alpine's folder selection screens
6699 and jump directly to a new folder.  You can select any folder in the
6700 world: one in your current collection, one in a different collection or
6701 one in a collection you've never even used before.
6704 Alpine will help you as much as possible to narrow in on the folder you want.
6705 However, if the folder is outside of your defined collections, you are
6706 going to have to enter the exact folder location using the correct
6707 <A HREF="h_valid_folder_names">syntax</A>
6708 for a remote folder and/or fully-qualified path name.
6711 &lt;End of help on this topic&gt;
6712 </BODY>
6713 </HTML>
6714 ======= h_common_nextnew =======
6715 <HTML>
6716 <HEAD>
6717 <TITLE>NextNew Command</TITLE>
6718 </HEAD>
6719 <BODY>
6720 <H1>NextNew Command</H1>
6722 When you press the TAB key, Alpine advances to the next
6723 &quot;interesting&quot; message.
6724 This will be the next message you have not seen before, or the next message
6725 you have flagged Important, whichever comes first.
6726 Unread messages that have been deleted are not considered interesting.
6727 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6728 articles after you have read them if you want to remove them from future
6729 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6730 more information.)
6733 The NextNew command is affected by the feature
6734 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6735 which causes Alpine to only consider Unread messages interesting, not messages
6736 flagged Important.
6739 This command behaves a little differently when it finds there are no more
6740 interesting messages left in the current folder.
6741 If the current folder is one of your Incoming Message Folders
6742 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6743 or it is a newsgroup, then Alpine will try to find the next folder or
6744 newsgroup that contains <EM>Recent</EM> messages and will ask you
6745 if you want to open that folder.
6746 This behavior may be modified by using the
6747 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6748 feature that causes Alpine to look for Unseen messages instead of Recent
6749 messages.
6750 The NextNew command's behavior is also affected by the configuration features
6751 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6753 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6756 &lt;End of help on this topic&gt;
6757 </BODY>
6758 </HTML>
6759 ======= h_common_jump =======
6760 <HTML>
6761 <HEAD>
6762 <TITLE>Jump Command</TITLE>
6763 </HEAD>
6764 <BODY>
6765 <H1>Jump Command</H1>
6767 This is Alpine's way of allowing you to go straight to a specific message.
6768 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6769 configured such that typing in any number automatically jumps you to that
6770 message 
6771 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6772 in the SETUP CONFIGURATION).
6775 &lt;End of help on this topic&gt;
6776 </BODY>
6777 </HTML>
6778 ======= h_common_flag =======
6779 <HTML>
6780 <HEAD>
6781 <TITLE>Flag Command</TITLE>
6782 </HEAD>
6783 <BODY>
6784 <H1>Flag Command</H1>
6786 Flag
6787 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6788 is the command that allows users to manipulate the status flags that
6789 appear on the left side of the MESSAGE INDEX screen.  The most common
6790 use of this is to mark a message as important. This is something of a
6791 note to yourself to get back to that message.  You may also use the
6792 flag command to set (or unset) the flags that indicate that a message
6793 is new, answered, deleted, or forwarded.<P>
6795 Provided the mail server supports it,
6796 you may also manipulate user-defined keywords
6797 for a message using the flag command.
6798 These keywords will be available if you use the Flag Details screen that you
6799 can get to after typing the
6800 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6801 command.
6802 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6803 which are always present.
6804 You may add new keywords by using the Add KW command from the Flag Details screen
6805 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6807 The availability of the flag command is determined by the
6808 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6809 feature in your Alpine configuration. Also, it is possible that Flag could be
6810 administratively disabled by your system manager; if it doesn't work,
6811 please check with your local help desk before reporting a bug.
6812 The behavior of the flag command may be modified by the
6813 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6814 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6817 &lt;End of help on this topic&gt;
6818 </BODY>
6819 </HTML>
6820 ======= h_common_hdrmode =======
6821 <HTML>
6822 <HEAD>
6823 <TITLE>HdrMode Command</TITLE>
6824 </HEAD>
6825 <BODY>
6826 <H1>HdrMode Command</H1>
6828 Every email message comes with some header lines that you normally
6829 don't see (and don't want to see).
6830 These include anywhere from 3-20 lines (or more) added by the
6831 Internet mail transport system to record the route your message took,
6832 for diagnostic purposes.
6833 These are normally of no import and simply
6834 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6835 This also includes other non-standard headers the message may contain.
6836 If you want to see these headers, there is a way to reveal them.
6839 The Header Mode
6840 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6841 command is a toggle that controls Alpine's handling of these header
6842 lines.  Normally, full headers is &quot;off&quot; and you only see a
6843 few lines about who a message is to and who it is from.  When you
6844 press
6845 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6846 to turn full headers on, Alpine will show you
6847 the normal header lines as well as delivery headers, comment headers,
6848 MIME headers, and any other headers present.
6851 Several different Alpine commands honor the header mode -- it affects how
6852 messages are displayed, how they appear in forward and reply email, how
6853 they are printed, how they are saved, and how they are exported.
6854 <!--chtml if pinemode="os_windows"-->
6855 <!--chtml else--> 
6856 The pipe command is also affected.
6857 <!--chtml endif-->
6860 The presence or absence of the Header Mode command is determined by the
6861 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6862 Feature-List option in your Alpine configuration.
6865 If you have also turned on the
6866 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6867 option then the HdrMode command actually rotates through three states
6868 instead of just two.
6869 The first is the normal view with long quotes suppressed.
6870 The second is the normal view but with the long quotes included.
6871 The last enables the display of all headers in the message.
6872 When using Export, Pipe, Print, Forward, or Reply the quotes are
6873 never suppressed, so the first two states are identical.
6876 The behavior of the Header Mode command may be altered slightly by
6877 turning on the
6878 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6879 Feature-List option in your Alpine configuration.
6880 In particular, it will cause the Header Mode to be persistent when moving
6881 from message to message instead of resetting to the default for each message.
6884 <UL>   
6885 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6886 </UL><P>
6887 &lt;End of help on this topic&gt;
6888 </BODY>
6889 </HTML>
6890 ======= h_common_print =======
6891 <HTML>
6892 <HEAD>
6893 <TITLE>Print Command</TITLE>
6894 </HEAD>
6895 <BODY>
6896 <H1>Print Command</H1>
6898 The Print
6899 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6900 command allows you to print a copy of a message.
6901 There are many SETUP CONFIGURATION features that affect the
6902 Print command, including
6903 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6904 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6905 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6906 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6907 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6908 You set up for printing by using the Printer option of the Setup command
6909 on the MAIN MENU.
6913 &lt;End of help on this topic&gt;
6914 </BODY>
6915 </HTML>
6916 ======= h_common_take =======
6917 <HTML>
6918 <HEAD>
6919 <TITLE>TakeAddr Command</TITLE>
6920 </HEAD>
6921 <BODY>
6922 <H1>TakeAddr Command</H1>
6925 With the Take Address
6926 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6927 command, you can extract email addresses from an
6928 incoming message and save them in an address book.  This is an easy way
6929 to add to your address book and avoid having to remember the email
6930 addresses of the people who write to you.
6933 If the message is just to you individually, then you will only need to
6934 provide a nickname.  If the message contains more than one email address,
6935 then you will see an address
6936 selection screen that lets you choose the address you want to save into
6937 your address book, or lets you choose several of them add to a
6938 personal distribution list.
6941 Once you've added an entry to your address book, you can use it from the
6942 message composer by typing the nickname of the entry into one of the
6943 header fields (for example, into the To: field), or you can use ^T from
6944 the header field to select the entry from your address book.
6947 If the configuration feature
6948 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6949 is set, the behavior of the Take command is altered slightly.
6952 &lt;End of help on this topic&gt;
6953 </BODY>
6954 </HTML>
6955 ======= h_ge_import =======
6956 <HTML>
6957 <HEAD>
6958 <TITLE>Import File Selection</TITLE>
6959 </HEAD>
6960 <BODY>
6961 <H1>Import File Selection</H1>
6963 You are importing a file that you previously
6964 exported from Alpine.
6965 You are now being asked for the name of that file.
6966 The easiest way to select a file is probably with the &quot;^T&quot;
6967 &quot;To Files&quot; command.
6968 Alternatively, you may type in a file name.
6969 It may be an absolute pathname.
6970 Otherwise, it is a file located in your home directory
6971 or current working directory
6972 <!--chtml if pinemode="running"-->
6973 (which, at least for your current Alpine &quot;session,&quot; 
6974 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6975 <!--chtml endif-->, depending on the
6976 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6977 In any case, you finish by typing a carriage return to accept the
6978 file name that is displayed.
6979 When the feature
6980 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6981 is turned on you may use TAB to complete partially typed in names.
6983 You may cancel the import operation by typing &quot;^C&quot; after exiting
6984 this help.
6986 &lt;End of help on this topic&gt;
6987 </BODY>
6988 </HTML>
6989 ======= h_ge_allparts =======
6990 <HTML>
6991 <HEAD>
6992 <TITLE>Export Message File Selection</TITLE>
6993 </HEAD>
6994 <BODY>
6995 <H1>Export Message File Selection</H1>
6997 You are Exporting a message from an Alpine mail folder
6998 to a plain text file.
6999 You also have the option of exporting all of the attachments associated
7000 with the message.
7001 You are now being asked for the name of the file to export <EM>to</EM>.
7002 The easiest way to select a file is probably with the &quot;^T&quot;
7003 &quot;To Files&quot; subcommand.
7004 After returning from that subcommand you will still be allowed to
7005 edit the name you have selected.
7006 Alternatively, you may type in a file name.
7007 It may be an absolute pathname.
7008 Otherwise, it is a file located in your home directory
7009 or current working directory
7010 <!--chtml if pinemode="running"-->
7011 (which, at least for your current Alpine &quot;session,&quot; 
7012 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7013 <!--chtml endif-->, depending on the
7014 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7015 In any case, you finish by typing a carriage return to accept the
7016 file name that is displayed.
7017 When the feature
7018 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7019 is turned on you may use TAB to complete partially typed in names.
7021 The message you are exporting appears to have some attachments.
7022 If you wish to save <EM>all</EM> of the attachments at once,
7023 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
7024 saving of the attachments.
7025 You may turn it back off by typing &quot;^P&quot; again, which will now
7026 be labeled &quot;NoAllParts&quot; instead.
7027 If you want to save the parts the command displayed should be
7028 &quot;NoAllParts&quot;!
7029 When you choose to save attachments like this, the attachments will be saved
7030 in a newly created directory.
7031 That directory will have the same name as the file name you choose here,
7032 with the letters &quot;.d&quot; appended.
7033 If that directory already exists, then the letters &quot;.d_1&quot; will
7034 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
7035 is found.
7036 For example, if you select the file name
7038 <CENTER><SAMP>filename</SAMP></CENTER>
7040 to export the message to, then the directory used for the attachments will be
7042 <CENTER><SAMP>filename.d</SAMP></CENTER>
7044 or perhaps
7046 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
7048 The attachments will then be put into files inside that directory.
7049 The names for the attachment files will be derived from the attachments
7050 if possible.
7051 This is done in the same way as the default values are derived if you
7052 save them one at a time.
7053 (The &quot;filename&quot; parameter from the Content-Disposition header
7054 is the first choice. If that doesn't exist, the &quot;name&quot;
7055 parameter from the Content-Type header is used.)
7056 If a name for a particular attachment is not available, then the
7057 part number of the attachment is used, with the characters &quot;part_&quot;
7058 prepended.
7059 An example of that would be
7061 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7063 If you want to save only some of the attachments or if you want more control
7064 over the directory and filename where an attachment is saved you may
7065 cancel out of this command and View the attachment list.
7066 From there you can save each attachment individually.
7068 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7069 this help.
7071 &lt;End of help on this topic&gt;
7072 </BODY>
7073 </HTML>
7074 ======= h_ge_export =======
7075 <HTML>
7076 <HEAD>
7077 <TITLE>Export File Selection</TITLE>
7078 </HEAD>
7079 <BODY>
7080 <H1>Export File Selection</H1>
7082 You are Exporting or Saving something from within the Alpine world
7083 (a message, an attachment, etc.)
7084 to a plain text file.
7085 You are now being asked for the name of the file to export <EM>to</EM>.
7086 The easiest way to select a file is probably with the &quot;^T&quot;
7087 &quot;To Files&quot; subcommand.
7088 After returning from that subcommand you will still be allowed to
7089 edit the name you have selected.
7090 Alternatively, you may type in a file name.
7091 It may be an absolute pathname.
7092 Otherwise, it is a file located in your home directory
7093 or current working directory
7094 <!--chtml if pinemode="running"-->
7095 (which, at least for your current Alpine &quot;session,&quot; 
7096 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7097 <!--chtml endif-->, depending on the
7098 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7099 In any case, you finish by typing a carriage return to accept the
7100 file name that is displayed.
7101 When the feature
7102 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7103 is turned on you may use TAB to complete partially typed in names.
7105 If the object you are exporting is a message with some attachments,
7106 you may wish to save all of the attachments by typing the &quot;^P&quot;
7107 &quot;AllParts&quot; command to turn on saving of the attachments.
7108 This subcommand will only be visible if the message actually has attachments.
7109 You may also View the attachment list and save individual attachments from
7110 there.
7112 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7113 the Control-R subcommand to toggle if saving will be done in binary mode,
7114 meaning that the attachment will be decoded, but will not be transformed
7115 to UTF-8 for further processing (either in internal filters, or user
7116 supplied filters.) This is useful in case you either want to preserve
7117 the text as it was encoded originally to you, or the attachment was
7118 incorrectly attached (the attachment is not of text type) and you need
7119 the original text to process the attachment.
7121 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7122 this help.
7124 &lt;End of help on this topic&gt;
7125 </BODY>
7126 </HTML>
7127 ======= h_common_save =======
7128 <HTML>
7129 <HEAD>
7130 <TITLE>Save and Export Commands</TITLE>
7131 </HEAD>
7132 <BODY>
7133 <H1>Save and Export Commands</H1>
7135 Save
7136 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7137 and Export
7138 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7139 are the two alternatives Alpine gives you to keep a copy of the message
7140 you are reading. If you want to keep the message within Alpine's email
7141 world, use &quot;Save&quot;; if you want to use the message in another
7142 program, use &quot;Export&quot;.
7145 When you Save a message, it is put into an existing folder or into a new
7146 folder in one of your existing folder collections.  The message stays in
7147 email format and can be read by Alpine again.  Alpine may use a special format
7148 for its mail folders -- never edit an Alpine folder by hand or with any
7149 program other than Alpine.  The exact behavior of the Save command can be
7150 configured with the
7151 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7152 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7153 and 
7154 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7155 feature list settings.
7156 The name of the folder offered as a default is controlled by the option
7157 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7160 When you use Export, the message is placed in a plain text file in your
7161 home directory 
7162 <!--chtml if pinemode="running"-->
7163 (which, in the present configuration of your system, is
7164  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7165 <!--chtml endif-->
7166 or current working directory
7167 <!--chtml if pinemode="running"-->
7168 (which, at least for your current Alpine &quot;session,&quot; 
7169 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7170 <!--chtml endif-->, depending on the
7171 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7172 configuration setting.  In the normal case, only minimal
7173 headers are exported with the message; however, if the full header mode 
7174 (whose availability may be disabled  by setting the feature 
7175 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7176 in SETUP CONFIGURATION) is
7177 toggled on, then complete headers are exported along with the message
7178 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7179 defined, they may affect the contents of the exported file.)
7182 &lt;End of help on this topic&gt;
7183 </BODY>
7184 </HTML>
7185 ======= h_common_bounce =======
7186 <HTML>
7187 <HEAD>
7188 <TITLE>Bounce Command</TITLE>
7189 </HEAD>
7190 <BODY>
7191 <H1>Bounce Command</H1>
7193 The Bounce 
7194 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7195 command allows you to re-send, or &quot;remail&quot;, a
7196 message, as if you were never in the loop.  It is analogous to crossing
7197 out your address on a postal letter, writing a different address on the
7198 envelope, and putting it into the mailbox. Bounce is used primarily to
7199 redirect email that was sent to you in error.
7200 Also, some owners of email
7201 lists need the bounce command to handle list traffic.
7202 Bounce is not anonymous.
7203 A ReSent-From header is added to the message so that the recipient may
7204 tell that you Bounced it to them.
7207 The presence or absence of the Bounce command is determined by the
7208 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7209 feature in your Alpine configuration.
7210 The feature
7211 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7212 affects the behavior of the Bounce command.
7213 Also, it is possible that Bounce could be
7214 administratively disabled by your system manager; if it doesn't work,
7215 please check with your local help desk before reporting a bug.
7218 &lt;End of help on this topic&gt;
7219 </BODY>
7220 </HTML>
7221 ======= h_common_reply =======
7222 <HTML>
7223 <HEAD>
7224 <TITLE>Reply and Forward Commands</TITLE>
7225 </HEAD>
7226 <BODY>
7228 <H1>Reply and Forward Commands</H1>
7230 Replying 
7231 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7232 and Forwarding 
7233 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7234 are your two alternatives for following up on the
7235 message you are reading.  You would use reply if you want to get email
7236 back to the author of the message and/or the other people who have
7237 already seen it.  You use forward if you want somebody new to see the
7238 message.
7241 In the normal case, the only thing that you must supply when forwarding a
7242 message is the name/email address of the new recipient.
7243 Alpine will include the text of the forwarded message.
7244 Alpine will also include any attachments to the message.
7245 There is space above the forwarded text for you to include additional comments.
7248 When replying, you usually have to answer some questions.
7249 If the message is to multiple people and/or specified with a Reply-To: header,
7250 then you will have to decide who should get the reply.
7251 You also need to decide whether or not to include the previous
7252 message in your reply.
7253 Some of this is configurable.
7254 Specifically, see the
7255 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7256 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7257 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7259 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7260 configuration features.
7263 Both the Reply and Forward commands react to the full header mode toggle.
7264 If the full header mode is on, then all the header and delivery lines are
7265 included with the text of the message in your reply/forward.
7268 Other configuration features that affect the Reply command are
7269 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7270 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7271 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7274 &lt;End of help on this topic&gt;
7275 </BODY>
7276 </HTML>
7277 ======= h_common_delete =======
7278 <HTML>
7279 <HEAD>
7280 <TITLE>Delete and Undelete Commands</TITLE>
7281 </HEAD>
7282 <BODY>
7283 <H1>Delete and Undelete Commands</H1>
7285 Delete 
7286 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7287 and Undelete 
7288 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7289 allow you to change the Deleted flag for the current message.
7290 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7291 removes the mark.
7292 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7293 at the left hand edge of the index line.
7294 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7295 in the upper right hand corner of the screen.
7296 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7297 get rid of the message.
7298 The eXpunge command (available from the MESSAGE INDEX screen) actually
7299 removes all of the deleted messages in a folder.
7300 Once a message is eXpunged, it can't be retrieved.
7303 The Delete command is affected by the setting of the configuration feature
7304 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7307 &lt;End of help on this topic&gt;
7308 </BODY>
7309 </HTML>
7310 ======= h_common_postpone =======
7311 <HTML>
7312 <HEAD>
7313 <TITLE>Postpone Command</TITLE>
7314 </HEAD>
7315 <BODY>
7316 <H1>Postpone Command</H1>
7318 The postpone
7319 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7320 command allows you to temporarily stop working on the current
7321 message so you may read
7322 other messages or compose another message.  When you want to resume a
7323 message later, start to compose and answer &quot;yes&quot; to the
7324 &quot;Continue postponed composition?&quot; question.  You may
7325 postpone as many messages as you like.
7328 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7329 in the Setup/Config screen, then the Postpone command will prompt you for
7330 the folder in which to store your outgoing message.
7333 &lt;End of help on this topic&gt;
7334 </BODY>
7335 </HTML>
7336 ======= h_compose_cancel =======
7337 <HTML>
7338 <HEAD>
7339 <TITLE>Cancel Command</TITLE>
7340 </HEAD>
7341 <BODY>
7342 <H1>Cancel Command</H1>
7344 Cancel
7345 <!--chtml if pinemode="function_key"-->
7346 (F2)
7347 <!--chtml else-->
7348 (^C) 
7349 <!--chtml endif-->
7351 The Cancel command returns you to Alpine's normal mail processing and
7352 causes the message currently under composition to be thrown out.
7353 The message text <EM>will be lost</EM>.
7356 Note: Unless the <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A> has been set, the text of the most recent composition cancelled
7357 will be preserved in the file named
7358 <!--chtml if pinemode="os_windows"-->
7359 &quot;DEADLETR&quot;.
7360 <!--chtml else-->
7361 &quot;dead.letter&quot; in your home directory.
7362 <!--chtml endif-->
7363 If you unintentionally cancel a message, look there for its text.
7366 &lt;End of help on this topic&gt;
7367 </BODY>
7368 </HTML>
7369 ======= h_compose_addrcomplete =======
7370 <HTML>
7371 <HEAD>
7372 <TITLE>Address Completion</TITLE>
7373 </HEAD>
7374 <BODY>
7375 <H1>Address Completion</H1>
7377 When entering addresses in the address fields of the composer (To, Cc, etc.)
7378 the TAB key may be used to help complete the address.
7379 Type a partial nickname and tap the TAB key to complete the typing.
7380 The unambiguous part of the name will be filled in automatically.
7381 Typing TAB twice in succession will bring up a selection list of possibilities,
7382 making it easy to find and choose the correct address.
7385 The matching algorithm is rather ad hoc.
7386 The search starts with a search of your address book.
7387 It counts as a match if the nickname, address, or fullname field of an
7388 entry begins with the text typed in so far. It is also a match if
7389 a later word in the fullname (for example, the middle name or last name)
7390 begins with the entered text.
7392 Next comes an LDAP search.
7393 The search will happen for any servers that have the
7394 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7395 feature set. You can set or unset the feature for each server independently
7396 in the Setup/Directory screen.
7398 Finally, if you are replying to or forwarding a message, that message is
7399 searched for likely candidate addresses that match the typed-in text.
7402 &lt;End of help on this topic&gt;
7403 </BODY>
7404 </HTML>
7405 ======= h_compose_richhdr =======
7406 <HTML>
7407 <HEAD>
7408 <TITLE>Rich Header Command</TITLE>
7409 </HEAD>
7410 <BODY>
7411 <H1>Rich Header Command</H1>
7413 The Rich Header command allows you to toggle between the list of 
7414 all message headers available for editing and those that are most
7415 common.
7418 Use this toggle to expose headers that are not normally visible by
7419 default.
7420 This set usually includes the
7421 &quot;Bcc:&quot;,
7422 &quot;Fcc:&quot;,
7423 &quot;Lcc:&quot;,
7424 and &quot;Newsgroups&quot;
7425 headers.
7426 If you are posting to a newsgroup the set of defaults is a little different.
7427 Obviously, in that case, the Newsgroups header is of interest so is not
7428 hidden.
7429 For news posting the hidden set includes the
7430 &quot;To:&quot;,
7431 &quot;Cc:&quot;,
7432 &quot;Bcc:&quot;,
7433 &quot;Fcc:&quot;,
7434 and &quot;Lcc:&quot;
7435 headers.
7436 You won't normally want to edit these, which is why they are hidden,
7437 but it is sometimes useful to be able to set them manually.
7440 The default sets of headers listed above can be altered.
7441 Any header that you have added to the
7442 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7443 option, but not to the
7444 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7445 option will appear when you use the Rich Headers command to
7446 make the Rich Headers visible.
7447 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7448 even without toggling the Rich Headers command.)
7451 &lt;End of help on this topic&gt;
7452 </BODY>
7453 </HTML>
7454 ======= h_compose_send =======
7455 <HTML>
7456 <HEAD>
7457 <TITLE>Send Command</TITLE>
7458 </HEAD>
7459 <BODY>
7460 <H1>Send Command</H1>
7462 The Send command
7463 <!--chtml if pinemode="function_key"-->
7464 (F3)
7465 <!--chtml else-->
7466 (^X) 
7467 <!--chtml endif-->
7468 tells Alpine you are finished composing.
7469 Before actually sending it, though, Alpine will ask you to confirm 
7470 your intention, and, at the same time, redisplayed the message text
7471 with the recipients at the top of the screen to give you the opportunity
7472 to review and verify that the message is addressed to the people
7473 you intended.
7475 If the feature
7476 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7477 then this confirmation prompt and any options it allows are skipped.
7480 This confirmation prompt may also offer, depending
7481 on your particular Setup/Config, options allowing you to set
7482 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7483 include attachments in the &quot;Fcc&quot; (if you had previously
7484 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7485 observe details of the
7486 <A HREF="h_config_verbose_post">message submission process</A>,
7487 choose the filter through which the
7488 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7489 or turn of flowed text generation.
7492 &lt;End of help on this topic&gt;
7493 </BODY>
7494 </HTML>
7495 ======= h_compose_markcutpaste =======
7496 <HTML>
7497 <HEAD>
7498 <TITLE>Mark, Cut and Paste Commands</TITLE>
7499 </HEAD>
7500 <BODY>
7501 <H1>Mark, Cut and Paste Commands</H1>
7503 You can define a &quot;block&quot; of text, which can subsequently
7504  be deleted or
7505 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7506 then moving the cursor to the end of the desired text block.  You can then
7507 &quot;cut&quot; the block out 
7508 <!--chtml if pinemode="function_key"-->
7509 &quot;F9&quot;,
7510 <!--chtml else-->
7511 &quot;Ctrl-K&quot;,
7512 <!--chtml endif-->
7513 move the cursor, and &quot;paste&quot; it
7514 <!--chtml if pinemode="function_key"-->
7515 &quot;F10&quot;,
7516 <!--chtml else-->
7517 &quot;Ctrl-U&quot;,
7518 <!--chtml endif-->
7519 in the new location.  Also, you can paste more than once, allowing you
7520 to use this feature to copy a block of text.<P>
7522 If you press 
7523 <!--chtml if pinemode="function_key"-->
7524 &quot;F9&quot;
7525 <!--chtml else-->
7526 &quot;^K&quot;
7527 <!--chtml endif-->
7528 without having marked anything, Alpine will delete
7529 a single line.  If you delete a group of lines together, Alpine keeps them
7530 in the same buffer, so 
7531 <!--chtml if pinemode="function_key"-->
7533 <!--chtml else-->
7535 <!--chtml endif-->
7536 will restore them as a block.  About
7537 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7538 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7539 &quot;type the character ^&quot;.
7542 &lt;End of help on this topic&gt;
7543 </BODY>
7544 </HTML>
7545 ======= h_compose_justify =======
7546 <HTML>
7547 <HEAD>
7548 <TITLE>Justify Command</TITLE>
7549 </HEAD>
7550 <BODY>
7551 <H1>Justify Command</H1>
7553 The Justify
7554 <!--chtml if pinemode="function_key"-->
7555 (F4)
7556 <!--chtml else-->
7557 (^J) 
7558 <!--chtml endif-->
7559 command reformats the text in the paragraph the cursor is in.
7560 Paragraphs are separated by one blank line or a line beginning with a space.
7561 This is useful when you have been editing a paragraph and the lines become
7562 uneven.  The text is left aligned or justified and the right is ragged.  If
7563 the text is already justified as typed with auto-wrap, no justification will
7564 be done.
7567 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7568 block of text, the Justify command is modified.
7569 Instead of automatically justifying the current paragraph you will be
7570 asked if you want to justify the paragraph, justify the selected region,
7571 or adjust the quote level of the selected region.
7572 Adjusting the quote level only works if you are using standard
7573 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7574 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7577 When composing a reply containing included text, the justify command
7578 will reformat text to the right of the 
7579 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7580 adding or removing indented lines as needed.  Paragraphs are separated
7581 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7582 line containing the indent string and one or more blank spaces.
7583 Included text that was previously indented (or &quot;quoted&quot;) is
7584 not preserved.
7587 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7588 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7589 use the standard
7590 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7593 &lt;End of help on this topic&gt;
7594 </BODY>
7595 </HTML>
7596 ======= h_compose_spell =======
7597 <HTML>
7598 <HEAD>
7599 <TITLE>Spell Check Command</TITLE>
7600 </HEAD>
7601 <BODY>
7602 <H1>Spell Check Command</H1>
7604 The &quot;To Spell&quot;
7605 <!--chtml if pinemode="function_key"-->
7606 (F12)
7607 <!--chtml else-->
7608 (^T) 
7609 <!--chtml endif-->
7610 command calls an external spell checking program to look over the
7611 message you are composing.  By default, Alpine uses
7613 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7615 if it knows where to find &quot;aspell&quot;.
7616 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7617 then the command used is
7619 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7621 Otherwise, the ancient &quot;spell&quot; command is used.
7623 For PC-Alpine, you must install the aspell library code that you
7624 may get from
7625 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7628 &lt;End of help on this topic&gt;
7629 </BODY>
7630 </HTML>
7631 ======= h_compose_alted =======
7632 <HTML>
7633 <HEAD>
7634 <TITLE>Alt Editor Command</TITLE>
7635 </HEAD>
7636 <BODY>
7637 <H1>Alt Editor Command</H1>
7639 The &quot;Alt Editor&quot; command's availability depends on the
7640 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7643 When the variable specifies a valid editor on your system, this
7644 command will launch it with the current text of your message
7645 already filled in.
7648 &lt;End of help on this topic&gt;
7649 </BODY>
7650 </HTML>
7651 ======= h_compose_readfile =======
7652 <HTML>
7653 <HEAD>
7654 <TITLE>Read File Command</TITLE>
7655 </HEAD>
7656 <BODY>
7657 <H1>Read File Command</H1>
7659 The &quot;Read File&quot;
7660 <!--chtml if pinemode="function_key"-->
7661 (F5)
7662 <!--chtml else-->
7663 (^R) 
7664 <!--chtml endif-->
7665 command allows you to copy in text from an existing file. You will be
7666 prompted for the name of a file to be inserted into the message.  The file
7667 name is relative to your home directory 
7668 <!--chtml if pinemode="running"-->
7669 (which, in the present configuration of your system, is
7670  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7671 <!--chtml endif-->
7672 or current working directory
7673 <!--chtml if pinemode="running"-->
7674 (which, at least for your current Alpine &quot;session,&quot; 
7675 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7676 <!--chtml endif-->, depending on the
7677 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7678 configuration setting; or, the file name must be specified as a full path name 
7679 <!--chtml if pinemode="os_windows"-->
7680 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7681 <!--chtml else-->
7682 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7683 <!--chtml endif-->
7684 (without the quotation marks).
7687 The file will be inserted where the cursor is located.  <B>The
7688 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7689 Unix machine but have files on a PC or Mac, the files must be transferred
7690 to the system Alpine is running on before they can be read.  Please ask your
7691 local computer support people about the correct way to transfer a file to 
7692 your Alpine system.
7695 &lt;End of help on this topic&gt;
7696 </BODY>
7697 </HTML>
7698 ======= h_config_tray_icon =======
7699 <HTML>
7700 <HEAD>
7701 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7702 </HEAD>
7703 <BODY>
7704 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7706 PC-Alpine only.
7708 This option restores a behavior of previous versions of PC-Alpine.
7709 These
7710 versions, when started, installed a PC-Alpine icon in the notification 
7711 tray of Window's Taskbar.  The primary use of this icon was to indicate
7712 new mail arrival by turning red (while the Taskbar icon remained green).
7713 Additionally, the icon now changes to yellow to signify that a mail folder
7714 has been closed unexpectedly.
7717 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7718 color its Taskbar entry's icon red (as well as the icon in the Window
7719 Title).  This feature is only provided for backwards compatibility.
7722 &lt;End of help on this topic&gt;
7723 </BODY>
7724 </HTML>
7725 ======= h_common_suspend =======
7726 <HTML>
7727 <HEAD>
7728 <TITLE>Suspend Command</TITLE>
7729 </HEAD>
7730 <BODY>
7731 <H1>Suspend Command</H1>
7733 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7734 enabled, you can, at almost any time, temporarily halt your Alpine session,
7735 <!--chtml if pinemode="os_windows"-->
7736 minimizing it into an icon.
7737 <!--chtml else-->
7738 and return to your system prompt.
7739 <!--chtml endif-->
7742 &lt;End of help on this topic&gt;
7743 </BODY>
7744 </HTML>
7745 ======= h_pipe_command =======
7746 <HTML>
7747 <HEAD>
7748 <TITLE>Pipe Command SubOptions</TITLE>
7749 </HEAD>
7750 <BODY>
7751 <H1>Pipe Command SubOptions</H1>
7753 By default, when you use the Pipe command, the processed text of the
7754 message is sent to the Unix command
7755 you specify and the output is captured by Alpine and shown to you.
7756 (This command is available in PC-Alpine, as well, but there aren't many
7757 Windows commands that work well with piping.)
7758 There are some sub-commands that may be used to alter this behavior.
7759 These are toggles that switch the behavior between two possibilities.
7760 They can be combined in any way you wish.
7762 By default, the prompt at the bottom of the screen looks like
7764 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7768 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7770 if you are piping more than one message.
7772 The sub-command options are:
7773 <DL>
7774    <DT>Shown Text or Raw Text</DT>
7775    <DD>This option toggles between sending the shown (processed) text
7776 of the message to the Unix command, and sending the
7777 raw (unprocessed) text of the message to the Unix command.
7778 The default is to send the shown text.
7779 The raw version of the message will contain all of the headers and any
7780 MIME encoding that the message contains.
7781 If you've selected the Raw Text then the prompt will have the additional word
7782 &quot;RAW&quot; in it, like
7784 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7786 You can experiment with this option by piping to something simple like the
7787 Unix &quot;cat&quot; command.
7788    </DD>
7789    <DT>Captured Output or Free Output</DT>
7790    <DD>This option toggles between having Alpine capture the output of
7791 the Unix pipe command for display, and not capturing it.
7792 If the command you are piping to is a filter that will produce output
7793 you want to view, then you want to capture that output
7794 for display (the default).
7795 If the Unix command doesn't produce output or handles the display itself,
7796 then you want free output.
7797 When you've selected the Free Output option the prompt will change to
7799 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7801    </DD>
7802    <DT>No Delimiter or With Delimiter</DT>
7803    <DD>This option controls whether or not a Unix mailbox style delimiter
7804 will come before the text of the message.
7805 This is the delimiter used in the common Unix mailbox format.
7806 It's the single line that begins with the five characters
7807 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7808 You'll usually only want to include this if the Unix command requires
7809 input in the format of a traditional Unix mailbox file.
7810 When you've selected the With Delimiter option the prompt will change to
7812 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7814    </DD>
7815    <DT>To Same Pipe or To Individual Pipes</DT>
7816    <DD>This option only shows up if you are running an aggregate
7817 pipe command.
7818 That is, the command was Apply Pipe, not just Pipe.
7819 You have the option of piping all of the selected messages through a
7820 single pipe to a single instance of the Unix command,
7821 or piping each individual message through a separate pipe to separate
7822 instances of the Unix command.
7823 The default is that all of the output will go through a single pipe
7824 to a single instance of the command.
7825 You can try this option with a command like &quot;less&quot;, with Free
7826 Output enabled.
7827 When you've selected the Individual Pipes option the prompt will change to
7829 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7831    </DD>
7832 </DL>
7835 As mentioned earlier, the options can be combined in any way you wish.
7836 You may leave them all off, turn them all on, or turn some of them on
7837 and some of them off.
7838 If you use the pipe command a second time in the same session the default
7839 options will be what you used the last time.
7842 &lt;End of help on this topic&gt;
7843 </BODY>
7844 </HTML>
7845 ========== h_emptydir_subfolder_name =========
7846 <HTML>
7847 <HEAD>
7848 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7849 </HEAD>
7850 <BODY>
7851 <H1>Enter Subfolder Name</H1>
7853 <P> 
7854 This is the name of a new subfolder in the directory you are creating.
7855 Because empty directories are hidden and therefore not useful, you must also
7856 create a subfolder in the directory you are creating in order that the
7857 directory remains visible.
7859 Alternatively, you may turn off the configuration feature
7860 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7861 so that empty directories remain visible.
7862 If you do that, you will not be required to create the subfolder when you
7863 create a directory.
7866 &lt;End of help on this topic&gt;
7867 </BODY>
7868 </HTML>
7869 ========== h_incoming_add_folder_name =========
7870 <HTML>
7871 <HEAD>
7872 <TITLE>ENTER FOLDER NAME</TITLE>
7873 </HEAD>
7874 <BODY>
7875 <H1>Enter Folder Name</H1>
7877 <P> 
7878 This is the name of the folder on the previously specified server.
7879 By default the folder name is interpreted as defining a section of your personal
7880 folder area.  This area and how you specify it are defined by the
7881 server, if one is specified.
7884 To define a folder outside the default area, prefix
7885 the path with the namespace to use when interpreting the
7886 given path.  If a namespace is specified, the folder name begins with the
7887 sharp (#) character followed by the name of the namespace
7888 and then the namespace's path-element-delimiter.  Aside from the
7889 name's format, namespaces can also imply access rights, content
7890 policy, audience, location, and, occasionally, access methods.
7893 Each server exports its own set (possibly of size one) of 
7894 namespaces.
7895 For a more detailed explanation read about
7896 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7899 To specify the default for INBOX on the server you can usually just enter
7900 &quot;INBOX&quot;, and the server will understand the special meaning of
7901 that word.
7904 &lt;End of help on this topic&gt;
7905 </BODY>
7906 </HTML>
7907 ========== h_incoming_add_folder_host =========
7908 <HTML>
7909 <HEAD>
7910 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7911 </HEAD>
7912 <BODY>
7913 <H1>Enter Incoming Folder Server</H1>
7915 You are being asked for the name of the server for use with this incoming
7916 folder.
7917 If the folder is on the machine where Alpine is running, then just enter
7918 RETURN without typing a server name.
7921 If the folder is on an IMAP server then type the server's name followed
7922 by RETURN.
7923 You may use the ^X command if the server is the same as the server that
7924 the INBOX is on.
7927 You may have to add optional extra information to the server name.
7928 For example, if the IMAP server is using a non-standard port number you
7929 would specify that by appending a colon (:) followed by the port number
7930 to the server name
7933 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7936 or you may need to specify a different protocol if the server is not an
7937 IMAP server. For example:
7940 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7943 for a POP server or
7946 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7949 for an NNTP news server.
7950 For an explanation of all of the possibilities, see
7951 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7952 for folders.
7955 There is a special command (^W) if you want to set up a folder that gets its
7956 mail from a
7957 <A HREF="h_maildrop">Mail Drop</A>.
7958 If you type that command, you will be prompted for the information for
7959 both the Mail Drop folder and the destination folder.
7962 &lt;End of help on this topic&gt;
7963 </BODY>
7964 </HTML>
7965 ========== h_incoming_add_inbox =========
7966 <HTML>
7967 <HEAD>
7968 <TITLE>ENTER INBOX SERVER</TITLE>
7969 </HEAD>
7970 <BODY>
7971 <H1>Enter INBOX Server</H1>
7973 You are being asked for the name of the server for use with
7974 the INBOX folder.
7975 Type the server's name followed by RETURN.
7978 You may have to add optional extra information to the server name.
7979 For example, if the server is using a non-standard port number you
7980 would specify that by appending a colon (:) followed by the port number
7981 to the server name
7984 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7987 or you may need to specify a different protocol if the server is not an
7988 IMAP server. For example:
7991 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7994 for a POP server.
7997 For an explanation of all of the possibilities, see
7998 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7999 for folders.
8002 If the INBOX folder is on the machine where Alpine is running, then just enter
8003 RETURN without typing a server name.
8006 There is a special command (^W) if you want to set up a folder that gets its
8007 mail from a
8008 <A HREF="h_maildrop">Mail Drop</A>.
8009 If you type that command, you will be prompted for the information for
8010 both the Mail Drop folder and the destination folder, which will be used
8011 as your INBOX folder.
8014 &lt;End of help on this topic&gt;
8015 </BODY>
8016 </HTML>
8017 ========== h_incoming_add_maildrop_destn =========
8018 <HTML>
8019 <HEAD>
8020 <TITLE>ENTER DESTINATION SERVER</TITLE>
8021 </HEAD>
8022 <BODY>
8023 <H1>Enter Destination Server</H1>
8025 You are being asked for the name of the server where the destination
8026 folder is for use with this Mail Drop incoming folder.
8027 That is, you are using a Mail Drop for this incoming folder and
8028 you've already entered
8029 the server and folder name for the Mail Drop.
8030 Now you need to enter the server for the destination folder
8031 where the mail should be copied to.
8032 Mail will come from the Mail Drop and be copied to the destination folder.
8035 Type the server's name followed by RETURN.
8036 If the folder is local to this computer, just type RETURN without entering
8037 a server name.
8040 You may have to add optional extra information to the server name.
8041 For example, if the server is using a non-standard port number you
8042 would specify that by appending a colon (:) followed by the port number
8043 to the server name
8046 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8049 For an explanation of all of the possibilities, see
8050 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8051 for folders.
8054 &lt;End of help on this topic&gt;
8055 </BODY>
8056 </HTML>
8057 ========== h_inbox_add_maildrop_destn =========
8058 <HTML>
8059 <HEAD>
8060 <TITLE>ENTER DESTINATION SERVER</TITLE>
8061 </HEAD>
8062 <BODY>
8063 <H1>Enter Destination Server</H1>
8065 You are being asked for the name of the server where the destination
8066 folder is for use with your Mail Drop INBOX.
8067 That is, you are using a Mail Drop for your INBOX and you've already entered
8068 the server and folder name for the Mail Drop.
8069 Now you need to enter the server for the destination folder
8070 where the mail should be copied to.
8071 Mail will come from the Mail Drop and be copied to the destination folder.
8074 Type the server's name followed by RETURN.
8075 If the folder is local to this computer, just type RETURN without entering
8076 a server name.
8079 You may have to add optional extra information to the server name.
8080 For example, if the server is using a non-standard port number you
8081 would specify that by appending a colon (:) followed by the port number
8082 to the server name
8085 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8088 For an explanation of all of the possibilities, see
8089 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8090 for folders.
8093 &lt;End of help on this topic&gt;
8094 </BODY>
8095 </HTML>
8096 ========== h_inbox_add_maildrop =========
8097 <HTML>
8098 <HEAD>
8099 <TITLE>ENTER MAILDROP SERVER</TITLE>
8100 </HEAD>
8101 <BODY>
8102 <H1>Enter Mail Drop Server</H1>
8104 You are being asked for the name of the Mail Drop server for use with
8105 your INBOX.
8108 Type the server's name followed by RETURN.
8111 You may have to add optional extra information to the server name.
8112 For example, if the server is using a non-standard port number you
8113 would specify that by appending a colon (:) followed by the port number
8114 to the server name
8117 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8120 or you may need to specify a different protocol if the server is not an
8121 IMAP server. For example:
8124 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8127 for a POP server or
8130 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8133 for an NNTP news server.
8134 For an explanation of all of the possibilities, see
8135 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8136 for folders.
8139 &lt;End of help on this topic&gt;
8140 </BODY>
8141 </HTML>
8142 ========== h_incoming_add_maildrop =========
8143 <HTML>
8144 <HEAD>
8145 <TITLE>ENTER MAILDROP SERVER</TITLE>
8146 </HEAD>
8147 <BODY>
8148 <H1>Enter Mail Drop Server</H1>
8150 You are being asked for the name of the Mail Drop server for use with
8151 this incoming folder.
8154 Type the server's name followed by RETURN.
8155 You may use the ^X command if the server is the same as the server that
8156 the INBOX is on.
8159 You may have to add optional extra information to the server name.
8160 For example, if the server is using a non-standard port number you
8161 would specify that by appending a colon (:) followed by the port number
8162 to the server name
8165 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8168 or you may need to specify a different protocol if the server is not an
8169 IMAP server. For example:
8172 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8175 for a POP server or
8178 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8181 for an NNTP news server.
8182 For an explanation of all of the possibilities, see
8183 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8184 for folders.
8187 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8188 RETURN without typing a server name.
8191 &lt;End of help on this topic&gt;
8192 </BODY>
8193 </HTML>
8194 ========== h_maildrop =========
8195 <HTML>
8196 <HEAD>
8197 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8198 </HEAD>
8199 <BODY>
8200 <H1>What is a Mail Drop?</H1>
8202 In some situaions it may make sense to have your mail delivered to one
8203 folder (the Mail Drop) and then when you want to read mail that has been
8204 delivered to the Mail Drop folder Alpine will move it to another
8205 destination folder.
8206 Often the Mail Drop will be a remote folder and messages will be moved from
8207 there to a local destination folder.
8210 One example where this might make sense is if the Mail Drop folder is accessible
8211 only with the POP protocol.
8212 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8213 mail from there to a local (on the same machine Alpine is running on)
8214 destination folder, where you'll read it.
8217 A Mail Drop may only be used as your Inbox or as an
8218 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8221 There is no attempt to synchronize the contents of the destination folder
8222 with the contents of the Mail Drop folder.
8223 All that happens is that all of the messages in the Mail Drop folder are
8224 copied to the destination folder and then they are deleted and expunged (if possible)
8225 from the Mail Drop folder.
8226 The next time a check for new mail is made, any messages in the Mail 
8227 Drop folder are once again copied to the destination folder and deleted
8228 and expunged from the Mail Drop folder.
8229 (If the Mail Drop folder is a news group, then the messages can't be
8230 expunged from the newsgroup. Instead, only Recent messages are copied from
8231 the newsgroup to the destination folder.)
8234 Configuration of a Mail Drop is a little different from configuration of
8235 a folder that does not use a Mail Drop because you have to specify two
8236 folder names instead of one.
8237 The two folders may be any types of folders that Alpine can normally use.
8238 They don't have to be a remote folder and a local folder, that is
8239 simply the most common usage.
8240 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8241 Drop to check for new mail.
8242 The new-mail checks will happen at the frequency set with the
8243 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8244 but with a minimum time
8245 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8246 between checks.
8247 Because of this minimum you may notice that new mail does not
8248 appear promptly when you expect it.
8249 The reason for this is to protect the server from over-zealous opening and
8250 closing of the Mail Drop folder.
8251 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8252 the end of the folder index, then the check will happen, regardless of how
8253 long it has been since the previous check.
8255 If there is new mail, that mail will be copied to the destination folder
8256 and then will be deleted from the Mail Drop.
8257 Note that using a Mail Drop with a local destination folder does not make
8258 sense if you read mail from more than one machine, because the mail is
8259 downloaded to the destination folder (which is accessible from only one
8260 machine) and deleted from the Mail Drop.
8262 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8265 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8268 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8270 The brackets are not literal.
8272 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8274 is a single character that does not appear in the MailDropFolder name.
8275 If the name doesn't contain spaces then it can be a space character.
8276 The two folder names are full technical
8277 <A HREF="h_valid_folder_names">folder names</A>
8278 as used by Alpine.
8279 Here are a couple examples to give you an idea what is being talked about:
8282 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8284 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8287 A #move folder may only be used as an
8288 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8289 an Inbox.
8290 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8291 on the
8292 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8293 option)
8294 the Add command has a subcommand &quot;Use Mail Drop&quot;
8295 which may be helpful for defining the folder in your Alpine configuration.
8296 The same is true when you edit the
8297 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8298 option in Setup/Config.
8299 Each of these configuration methods will also create the DestinationFolder
8300 if it doesn't already exist.
8301 If you are having problems, make sure the DestinationFolder exists.
8304 &lt;End of help on this topic&gt;
8305 </BODY>
8306 </HTML>
8307 ========== h_save =========
8308 <HTML>
8309 <HEAD>
8310 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8311 </HEAD>
8312 <BODY>
8313 <H1>Choose a Folder to Save Into</H1>
8315 After Exiting from this help text,
8316 type the name of the folder you want to save into and press RETURN.
8318 Press ^T to get a list of your folders to choose from.
8319 Press ^C to cancel the Save.
8321 If you have Folder Collections defined you may use
8322 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8323 the collection being saved to.
8325 If Tab Completion is enabled (it is enabled by default)
8326 you may type a Tab character to have Alpine complete the folder name for you.
8328 If Partial Match Lists is enabled (it is enabled by default) you may type
8329 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8331 If the Ctrl-R subcommand is present that means you can decide to Delete or
8332 not Delete the message you are saving after you save it.
8333 The label on that key gives the action to switch to.
8334 If it says Delete and you type Ctrl-R the label displayed will change to
8335 No Delete and the source message will be deleted after the save. If it
8336 says No Delete and you type Ctrl-R the label displayed will change to
8337 Delete and the message will not be deleted.
8338 You can control the default for the Delete parameter with the
8339 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8341 Similarly, if the Ctrl-W subcommand is present that means you can decide
8342 to Preserve the order of the messages being saved or not.
8343 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8344 will be in the same order as you see them in the source folder now.
8345 The opposite action (which is usually the default) is that you don't care
8346 about the order.
8347 The Saved messages may or may not be in the same order in the destination folder.
8348 There may be a performance penalty for choosing to save the messages in order.
8349 You can control the default for the Preserve Order parameter with the
8350 configuration feature
8351 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8354 If you haven't disabled the Save Input History and you've already done a
8355 Save earlier in this session then you may use the Up and Down arrows to retrieve
8356 a folder name used in a previous Save.
8359 &lt;End of help on this topic&gt;
8360 </BODY>
8361 </HTML>
8362 ============= h_simple_index ========================
8363 <HTML>
8364 <HEAD>
8365 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8366 </HEAD>
8367 <BODY>
8368 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8369 <!--chtml if pinemode="function_key"-->
8370 <PRE>
8371 Navigating the List of Messages               General Alpine Commands
8372 -------------------------------               -----------------------
8373  F5   Move to previous message                 F1   Show this help text
8374  F6   Move to next message
8375  F7   Show previous screen of messages
8376  F8   Show next screen of messages
8378 Message Selection Commands
8379 --------------------------
8380  F3   Exit the Message Select menu (canceling Send command)
8381  F4   Select the currently highlighted message
8382  F9   Mark the currently highlighted message as deleted
8383  F10  Undelete (remove deletion mark from) the highlighted message
8384 </PRE>
8385 <!--chtml else-->
8386 <PRE>
8387 Navigating the List of Messages               General Alpine Commands
8388 -------------------------------               -----------------------
8389   P  Move to previous message                  ?  Show this help text
8390   N  Move to next message
8391   -  Show previous screen of messages
8392  Spc (space bar) Show next screen of messages
8394 Message Selection Commands
8395 --------------------------
8396   E  Exit the Message Select menu (canceling Send command)
8397   S  Select the currently highlighted message
8398   D  Mark the currently highlighted message as deleted
8399   U  Undelete (remove deletion mark from) the highlighted message
8400 </PRE>
8401 <!--chtml endif-->
8403 <H2>Description of the Select Postponed Message Screen</H2>
8405 This screen allows you to select one of several previously postponed
8406 messages in order to continue composition.  Your options are very limited
8407 -- the screen is not meant to let you manipulate these messages.  However,
8408 you may now delete messages from this list.  Once you choose a message,
8409 Alpine reads it in and puts you into the regular message composer.
8412 Messages do not stay in this postponed state automatically.  If you select
8413 a message and then want to postpone it again, use the normal postpone
8414 (Ctrl-O) command in the composer.
8417 If you exit this screen without selecting a message, the Compose command
8418 that got you here is canceled.  Other than messages explicitly marked
8419 &quot;Deleted&quot;, no messages will be removed.
8422 &lt;End of help on this topic&gt;
8423 </BODY>
8424 </HTML>
8425 ============= h_collection_screen ========================
8426 <HTML>
8427 <HEAD>
8428 <TITLE>COLLECTION LIST screen</TITLE>
8429 </HEAD>
8430 <BODY>
8431 <H1>COLLECTION LIST screen</H1>
8433 The COLLECTION LIST screen is used to select one of your  
8434 collection definitions to display the folders they contain.  See
8435 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8436 detailed explanation of collections.<P>
8438 To manage your collection definitions (Add, Change, Delete, etc.), use
8439 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8440 MAIN MENU.
8443 &lt;End of help on this topic&gt;
8444 </BODY>
8445 </HTML>
8446 ============= h_collection_maint ========================
8447 <HTML>
8448 <HEAD>
8449 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8450 </HEAD>
8451 <BODY>
8452 <H1>SETUP COLLECTION LIST screen</H1>
8454 The SETUP COLLECTION LIST screen lets you manage your collection
8455 definitions.  See 
8456 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8457 for detailed explanation of collections.<P>
8459 Maintenance commands include:
8460 <DL>
8461 <DT>Change
8462 <!--chtml if pinemode="function_key"-->
8463 (F4)
8464 <!--chtml else-->
8466 <!--chtml endif-->
8467 </DT>
8469 <DD>Modify attributes of the selected collection definition.
8471 <DT>Add Cltn
8472 <!--chtml if pinemode="function_key"-->
8473 (F9)
8474 <!--chtml else-->
8476 <!--chtml endif-->
8477 </DT>
8479 <DD>Create a new collection definition.
8480 </DD>
8482 <DT>Del Cltn
8483 <!--chtml if pinemode="function_key"-->
8484 (F10)
8485 <!--chtml else-->
8487 <!--chtml endif-->
8488 </DT>
8490 <DD>Delete the selected collection definition.<BR>
8491 NOTE: The folders and directories referred to by the
8492 collection definition are <EM>NOT</EM> deleted.  Folders must
8493 be deleted, if that's what you wish to do, from the 
8494 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8495 individual folders in a collection.
8496 </DD>
8498 <DT>Shuffle
8499 <!--chtml if pinemode="function_key"-->
8500 (F11)
8501 <!--chtml else-->
8503 <!--chtml endif-->
8504 </DT>
8506 <DD>Change the order of the displayed collections.  Alpine will offer
8507 to move the currently selected collection one position UP
8508 or DOWN.
8509 </DD>
8510 </DL>
8513 &lt;End of help on this topic&gt;
8514 </BODY>
8515 </HTML>
8516 ============ h_what_are_collections ==========
8517 <HTML>
8518 <HEAD>
8519 <TITLE>Folder Collections Explained</TITLE>
8520 </HEAD>
8521 <BODY>
8522 <H1>Folder Collections Explained</H1>
8525 Those of you with simple mail configurations will just see a list of all the
8526 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8527 The special folders for INBOX, sent mail and saved messages
8528 will appear at the top of the list.  All others are in alphabetical order.
8530 If you
8531 or your system administrator have defined more than one collection or if
8532 you have a collection (for newsgroups or email folders) defined on your 
8533 system, then you will see the COLLECTION LIST screen first when choosing 
8534 FOLDER LIST from Alpine's MAIN MENU.
8536 <H2>Why have multiple folder collections?</H2>
8538 For Alpine users who only maintain email folders (and not too many) on one host, 
8539 a single folder collection is probably sufficient.<P>
8541 However, people who have more than one email account - for example, one 
8542 at their university, and one with their personal Internet Service Provider - 
8543 will have different sets of folders on different hosts, and they may want to
8544 access them all from the same installation of Alpine, rather than use different 
8545 software and/or log into other hosts to manipulate messages in different 
8546 accounts.  (If in doubt whether one of your email accounts can be accessed 
8547 with Alpine, contact the technical support people for that account.)  Even people
8548 who have only one email account on one host, but have dozens or
8549 hundreds of email folders, may want to arrange these folders together in a 
8550 meaningful way.<BR>
8551 That is where multiple collections come in.
8553 <H2>Types of Collections</H2>
8554 <DL>
8555 <DT>INCOMING FOLDERS</DT>
8556 <DD>&quot;Incoming Message Folders&quot; 
8557 is a special collection typically used to supplement your single INBOX.  
8558 All the folders here are meant to be ones that receive incoming messages, 
8559 which you intend to check more or less frequently.  
8560 You may have multiple folders like this because you or your systems 
8561 administrator have set up an external program or you may have set up
8562 Alpine to filter incoming 
8563 messages into different folders, based on certain criteria such as 
8564 sender, recipient, or subject; or because you have multiple accounts and 
8565 wish to check their INBOXes easily.  This collection is established by 
8566 setting the 
8567 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8568 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8569 MAIN MENU.
8570 </DD>
8572 <DT>NEWS</DT>
8573 <DD>You can also define a collection specifically for
8574 newsgroups.  Alpine does this for you implicitly when you 
8575 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8576 in your Alpine configuration.  The news collection appears last in the 
8577 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8578 and Alpine knows not to save messages there.
8579 </DD>
8581 <DT>DEFAULT COLLECTION</DT>
8582 <DD>This is the default collection for your saved and sent messages folders.
8583 </DD>
8584 </DL>
8588 <H2>Defining Collections</H2>
8590 In the absence of any folder-collection definitions, Alpine will assume a
8591 single default folder collection.
8592 <!--chtml if pinemode="os_windows"-->
8593 <!--chtml else-->
8594 If necessary, Alpine will create the directory
8595 &quot;mail&quot; in your Unix home directory 
8596 to hold your folders.
8597 <!--chtml endif-->
8599 You can use the 
8600 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8601 the MAIN MENU, to manage your collection list.  
8603 &lt;End of help on this topic&gt;
8604 </BODY>
8605 </HTML>
8606 ===== h_select_address_screen =====
8607 <HTML>
8608 <HEAD>
8609 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8610 </HEAD>
8611 <BODY>
8612 <H1>SELECT AN ADDRESS SCREEN</H1>
8613 <H2>COMMANDS</H2>
8614 <!--chtml if pinemode="function_key"-->
8615 <PRE>
8616 Available  Commands                        
8617 -------------------------------            
8618 F1  Show Help Text
8619 F3  Exit without selecting anything
8620 F4  Select the highlighted address
8621 F5  Move highlight to previous address
8622 F6  Move highlight to next address
8623 F7  Previous page of addresses
8624 F8  Next page of addresses
8625 F11 Print
8626 F12 WhereIs
8627 </PRE>
8628 <!--chtml else-->
8629 <PRE>
8630 Navigation                     General Alpine Commands
8631 -------------------------      -----------------------
8632  P  Prev Address                ?  Display this help text
8633  N  Next Address                E  Exit without selecting anything
8634  -  Previous page               %  Print
8635 Spc (space bar) Next page
8636  W  WhereIs
8638 Select Command
8639 ------------------------------------------------
8640  S  Select the highlighted address
8641 </PRE>
8642 <!--chtml endif-->
8644 <H2>Description of the Select Address Screen</H2>
8646 This screen gives you an easy way to select an address from all of
8647 the address book entries that match the prefix typed so far.
8649 <P><UL>
8650 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8651 </UL>
8653 &lt;End of help on this topic&gt;
8654 </BODY>
8655 </HTML>
8656 ===== h_select_rule_screen =====
8657 <HTML>
8658 <HEAD>
8659 <TITLE>SELECT A RULE SCREEN</TITLE>
8660 </HEAD>
8661 <BODY>
8662 <H1>SELECT A RULE SCREEN</H1>
8663 <H2>COMMANDS</H2>
8664 <!--chtml if pinemode="function_key"-->
8665 <PRE>
8666 Available  Commands                        
8667 -------------------------------            
8668 F1  Show Help Text
8669 F3  Exit without selecting anything
8670 F4  Select the highlighted rule
8671 F5  Move highlight to previous rule
8672 F6  Move highlight to next rule
8673 F7  Previous page of rules
8674 F8  Next page of rules
8675 F11 Print
8676 F12 WhereIs
8677 </PRE>
8678 <!--chtml else-->
8679 <PRE>
8680 Navigation                     General Alpine Commands
8681 -------------------------      -----------------------
8682  P  Prev Rule                   ?  Display this help text
8683  N  Next Rule                   E  Exit without selecting anything
8684  -  Previous page               %  Print
8685 Spc (space bar) Next page
8686  W  WhereIs
8688 Select Command
8689 ------------------------------------------------
8690  S  Select the highlighted rule
8691 </PRE>
8692 <!--chtml endif-->
8694 <H2>Description of the Select Rule Screen</H2>
8696 This screen just gives you an easy way to select a rule from all of your
8697 defined rules.
8698 The list of rules presented is the list of nicknames of all of the rules
8699 defined using Setup/Rules.
8700 For selecting messages, it is likely that the Indexcolor rules and possibly
8701 the Roles rules will be most useful.
8702 The others are there also, in case you find a use for them.
8704 In order for this to be useful for selecting messages, the nicknames of
8705 the rules have to be different.
8706 Alpine actually just gets the nickname of the rule that you select and then
8707 looks up that rule using the nickname.
8708 So if there are duplicate nicknames, the first rule that has that
8709 nickname will be used.
8711 <P><UL>
8712 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8713 </UL>
8715 &lt;End of help on this topic&gt;
8716 </BODY>
8717 </HTML>
8718 ===== h_select_priority_screen =====
8719 <HTML>
8720 <HEAD>
8721 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8722 </HEAD>
8723 <BODY>
8724 <H1>SELECT A PRIORITY SCREEN</H1>
8725 <H2>COMMANDS</H2>
8726 <!--chtml if pinemode="function_key"-->
8727 <PRE>
8728 Available  Commands                        
8729 -------------------------------            
8730 F1  Show Help Text
8731 F3  Exit without selecting anything
8732 F4  Select the highlighted priority
8733 F5  Move highlight to previous priority
8734 F6  Move highlight to next priority
8735 F7  Previous page of priorities
8736 F8  Next page of priorities
8737 F11 Print
8738 F12 WhereIs
8739 </PRE>
8740 <!--chtml else-->
8741 <PRE>
8742 Navigation                     General Alpine Commands
8743 -------------------------      -----------------------
8744  P  Prev Priority               ?  Display this help text
8745  N  Next Priority               E  Exit without selecting anything
8746  -  Previous page               %  Print
8747 Spc (space bar) Next page
8748  W  WhereIs
8750 Select Command
8751 ------------------------------------------------
8752  S  Select the highlighted priority
8753 </PRE>
8754 <!--chtml endif-->
8756 <H2>Description of the Select Priority Screen</H2>
8758 This screen gives you a way to select a priority for the message you are sending.
8759 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8760 Some mail programs will display an indication of the priority level to
8761 the recipient of the message, some will ignore it.
8762 Even in cases where the mail programs of both the sender and the recipient
8763 agree on the meaning of this header, keep in mind that it is
8764 something that the sender sets so it is only an indication
8765 of the priority that the sender attaches to the mail.
8766 Alpine can be made to display an indication of this priority in incoming
8767 messages by use of one of the tokens
8768 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8769 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8770 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8772 <P><UL>
8773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8774 </UL>
8776 &lt;End of help on this topic&gt;
8777 </BODY>
8778 </HTML>
8779 ===== h_select_keyword_screen =====
8780 <HTML>
8781 <HEAD>
8782 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8783 </HEAD>
8784 <BODY>
8785 <H1>SELECT A KEYWORD SCREEN</H1>
8786 <H2>COMMANDS</H2>
8787 <!--chtml if pinemode="function_key"-->
8788 <PRE>
8789 Available  Commands                        
8790 -------------------------------            
8791 F1  Show Help Text
8792 F3  Exit without selecting anything
8793 F4  Select the highlighted keyword
8794 F5  Move highlight to previous keyword
8795 F6  Move highlight to next keyword
8796 F7  Previous page of keywords
8797 F8  Next page of keywords
8798 F11 Print
8799 F12 WhereIs
8800 </PRE>
8801 <!--chtml else-->
8802 <PRE>
8803 Navigation                     General Alpine Commands
8804 -------------------------      -----------------------
8805  P  Prev Keyword                ?  Display this help text
8806  N  Next Keyword                E  Exit without selecting anything
8807  -  Previous page               %  Print
8808 Spc (space bar) Next page
8809  W  WhereIs
8811 Select Command
8812 ------------------------------------------------
8813  S  Select the highlighted keyword
8814 </PRE>
8815 <!--chtml endif-->
8817 <H2>Description of the Select Keyword Screen</H2>
8819 This screen just gives you an easy way to select a keyword.
8820 The list of keywords presented is the list of all keywords defined in your 
8821 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8822 If you have given a keyword a nickname, that nickname is displayed
8823 instead of the actual keyword.
8825 <P><UL>
8826 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8827 </UL>
8829 &lt;End of help on this topic&gt;
8830 </BODY>
8831 </HTML>
8832 ===== h_select_charset_screen =====
8833 <HTML>
8834 <HEAD>
8835 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8836 </HEAD>
8837 <BODY>
8838 <H1>SELECT A CHARACTER SET SCREEN</H1>
8839 <H2>COMMANDS</H2>
8840 <!--chtml if pinemode="function_key"-->
8841 <PRE>
8842 Available  Commands                        
8843 -------------------------------            
8844 F1  Show Help Text
8845 F3  Exit without selecting anything
8846 F4  Select the highlighted character set
8847 F5  Move highlight to previous character set
8848 F6  Move highlight to next character set
8849 F7  Previous page of character sets
8850 F8  Next page of character sets
8851 F11 Print
8852 F12 WhereIs
8853 </PRE>
8854 <!--chtml else-->
8855 <PRE>
8856 Navigation                     General Alpine Commands
8857 -------------------------      -----------------------
8858  P  Prev Character Set          ?  Display this help text
8859  N  Next Character Set          E  Exit without selecting anything
8860  -  Previous page               %  Print
8861 Spc (space bar) Next page
8862  W  WhereIs
8864 Select Command
8865 ------------------------------------------------
8866  S  Select the highlighted character set
8867 </PRE>
8868 <!--chtml endif-->
8870 <H2>Description of the Select A Character Set Screen</H2>
8872 This screen just gives you an easy way to select a character set from the
8873 set of character sets Alpine knows about.
8874 The list presented will vary slightly depending on what option you are
8875 selecting the character set for.
8877 <P><UL>
8878 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8879 </UL>
8881 &lt;End of help on this topic&gt;
8882 </BODY>
8883 </HTML>
8884 ===== h_select_multcharsets_screen =====
8885 <HTML>
8886 <HEAD>
8887 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8888 </HEAD>
8889 <BODY>
8890 <H1>SELECT CHARACTER SETS SCREEN</H1>
8891 <H2>COMMANDS</H2>
8892 <!--chtml if pinemode="function_key"-->
8893 <PRE>
8894 Available  Commands
8895 -------------------------------            
8896 F1  Show Help Text
8897 F3  Exit without selecting anything
8898 F4  Select the highlighted charset (or chosen charsets in ListMode)
8899 F5  Move highlight to previous charset
8900 F6  Move highlight to next charset
8901 F7  Previous page of charsets
8902 F8  Next page of charsets
8903 F9  Toggle choices when using ListMode
8904 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8905 F11 Print
8906 F12 WhereIs
8907 </PRE>
8908 <!--chtml else-->
8909 <PRE>
8910 Navigation                     General Alpine Commands
8911 -------------------------      -----------------------
8912  P  Prev Charset                ?  Display this help text
8913  N  Next Charset                E  Exit without selecting anything
8914  -  Previous page               %  Print
8915 Spc (space bar) Next page
8916  W  WhereIs
8918 Select Command
8919 ------------------------------------------------
8920  S  Select the highlighted charset (or chosen charsets in ListMode)
8921  L  Turn on ListMode (makes it easy to choose multiple charsets)
8922  1  Turn off ListMode
8923  X  Toggle choices when using ListMode
8924 </PRE>
8925 <!--chtml endif-->
8927 <H2>Description of the Select Character Set Screen</H2>
8929 This screen just gives you an easy way to select a character set or a list of
8930 character sets.
8931 The list of character sets presented is the list of all character sets known to
8932 Alpine.
8933 You may select other character sets by typing them in directly.
8935 <P><UL>
8936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8937 </UL>
8939 &lt;End of help on this topic&gt;
8940 </BODY>
8941 </HTML>
8942 ===== h_select_multkeyword_screen =====
8943 <HTML>
8944 <HEAD>
8945 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8946 </HEAD>
8947 <BODY>
8948 <H1>SELECT KEYWORDS SCREEN</H1>
8949 <H2>COMMANDS</H2>
8950 <!--chtml if pinemode="function_key"-->
8951 <PRE>
8952 Available  Commands
8953 -------------------------------            
8954 F1  Show Help Text
8955 F3  Exit without selecting anything
8956 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8957 F5  Move highlight to previous keyword
8958 F6  Move highlight to next keyword
8959 F7  Previous page of keywords
8960 F8  Next page of keywords
8961 F9  Toggle choices when using ListMode
8962 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8963 F11 Print
8964 F12 WhereIs
8965 </PRE>
8966 <!--chtml else-->
8967 <PRE>
8968 Navigation                     General Alpine Commands
8969 -------------------------      -----------------------
8970  P  Prev Keyword                ?  Display this help text
8971  N  Next Keyword                E  Exit without selecting anything
8972  -  Previous page               %  Print
8973 Spc (space bar) Next page
8974  W  WhereIs
8976 Select Command
8977 ------------------------------------------------
8978  S  Select the highlighted keyword (or chosen keywords in ListMode)
8979  L  Turn on ListMode (makes it easy to choose multiple keywords)
8980  1  Turn off ListMode
8981  X  Toggle choices when using ListMode
8982 </PRE>
8983 <!--chtml endif-->
8985 <H2>Description of the Select Keyword Screen</H2>
8987 This screen just gives you an easy way to select a keyword or a list of
8988 keywords.
8989 The list of keywords presented is the list of all keywords defined in your 
8990 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8991 If you have given a keyword a nickname, that nickname is displayed
8992 instead of the actual keyword.
8994 <P><UL>
8995 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8996 </UL>
8998 &lt;End of help on this topic&gt;
8999 </BODY>
9000 </HTML>
9001 ===== h_select_incoming_to_monitor =====
9002 <HTML>
9003 <HEAD>
9004 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
9005 </HEAD>
9006 <BODY>
9007 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
9008 <H2>COMMANDS</H2>
9009 <!--chtml if pinemode="function_key"-->
9010 <PRE>
9011 Available  Commands
9012 -------------------------------            
9013 F1  Show Help Text
9014 F3  Exit without selecting anything
9015 F4  Select the marked folders
9016 F5  Move highlight to previous folder
9017 F6  Move highlight to next folder
9018 F7  Previous page of folders
9019 F8  Next page of folders
9020 F9  Toggle choices on or off
9021 F11 Print
9022 F12 WhereIs
9023 </PRE>
9024 <!--chtml else-->
9025 <PRE>
9026 Navigation                     General Alpine Commands
9027 -------------------------      -----------------------
9028  P  Prev Folder                 ?  Display this help text
9029  N  Next Folder                ^C  exit without changing anything
9030  -  Previous page               %  Print
9031 Spc (space bar) Next page
9032  W  WhereIs
9034 Select Command
9035 ------------------------------------------------
9036  S  Select the marked folders
9037  X  Toggle choices on or off
9038 </PRE>
9039 <!--chtml endif-->
9041 <H2>Description of the Select Folders to Check Screen</H2>
9043 This screen is only useful if the feature
9044 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
9045 is set.
9046 By default, when you set that feature all of your incoming folders
9047 will be checked periodically for Unseen messages.
9048 By using this screen, you may restrict the set of monitored folders to
9049 a subset of all of the incoming folders.
9051 Mark the folders you want to monitor for Unseen messages with
9052 an &quot;X&quot;.
9053 When you've finished marking all your selections use the Select
9054 command to register your choices.
9055 To return to the default of checking all incoming folders
9056 delete all folders or unmark all folders.
9058 <P><UL>
9059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9060 </UL>
9062 &lt;End of help on this topic&gt;
9063 </BODY>
9064 </HTML>
9065 ===== h_role_select =====
9066 <HTML>
9067 <HEAD>
9068 <TITLE>ROLES SCREEN</TITLE>
9069 </HEAD>
9070 <BODY>
9071 <H1>ROLES SCREEN</H1>
9072 <H2>ROLES COMMANDS</H2>
9073 <!--chtml if pinemode="function_key"-->
9074 <PRE>
9075 Available  Commands                        
9076 -------------------------------            
9077 F1  Show Help Text
9078 F3  Exit without a selection
9079 F4  Select a role to use in composition
9080 F5  Move to previous role
9081 F6  Move to next role
9082 F7  Previous page of roles
9083 F8  Next page of roles
9084 F11 Change Default Role
9085 F12 Whereis (search role nicknames)
9086 </PRE>
9087 <!--chtml else-->
9088 <PRE>
9089 Navigation                     General Alpine Commands
9090 -------------------------      -----------------------
9091  P  Prev Role                     ?  Display this help text
9092  N  Next Role                     E  Exit without a selection
9093  -  Previous page
9094 Spc (space bar) Next page
9095  W  WhereIs (search for word in role nicknames)
9097 Select Role Commands
9098 ------------------------------------------------
9099  [Return]  Select highlighted role
9100  D         Change Default Role
9101 </PRE>
9102 <!--chtml endif-->
9104 <H2>Description of the Roles Screen</H2>
9106 With this screen you select a role to be used in the composition of a
9107 message.
9108 Use the Previous and Next commands to highlight the role you wish to
9109 use.
9110 When you type carriage return you will be placed in the composer using the highlighted role.
9112 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9113 available unless you set them up.
9114 You may do so by using the Setup/Rules command on the MAIN MENU.
9116 By using the D command, you may set a default role that will persist until
9117 you change it or until you exit Alpine.
9118 The D command toggles through three states: set the default role, unset the
9119 default role, and leave the default role as it is.
9120 <P><UL>
9121 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9122 </UL>
9124 &lt;End of help on this topic&gt;
9125 </BODY>
9126 </HTML>
9127 ===== h_role_abook_select =====
9128 <HTML>
9129 <HEAD>
9130 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9131 </HEAD>
9132 <BODY>
9133 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9134 <H2>COMMANDS</H2>
9135 <!--chtml if pinemode="function_key"-->
9136 <PRE>
9137 Available  Commands                        
9138 -------------------------------            
9139 F1  Show Help Text
9140 F3  Exit screen without selecting anything
9141 F4  Select highlighted address book
9142 F5  Move to previous address book
9143 F6  Move to next address book
9144 F7  Previous page of address books
9145 F8  Next page of address books
9146 F12 Whereis
9147 </PRE>
9148 <!--chtml else-->
9149 <PRE>
9150 Navigation                     General Alpine Commands
9151 -------------------------      -----------------------
9152  P  Previous addrbook          ?  Display this help text
9153  N  Next addrbook
9154  -  Previous page
9155 Spc (space bar) Next page
9156  W  WhereIs
9158 Select Role Commands
9159 ------------------------------------------------
9160  S  Select highlighted address book
9161  E  Exit screen without selecting anything
9162 </PRE>
9163 <!--chtml endif-->
9165 <H2>Description of the Select Address Book Screen</H2>
9167 This screen helps you select one of your address books.
9168 Use the Previous and Next commands to highlight the address book you wish to
9169 select.
9170 <P><UL>
9171 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9172 </UL>
9174 &lt;End of help on this topic&gt;
9175 </BODY>
9176 </HTML>
9177 ======== h_rule_patterns =============
9178 <HTML>
9179 <HEAD>
9180 <TITLE>PATTERNS</TITLE>
9181 </HEAD>
9182 <BODY>
9183 <H1>PATTERNS</H1>
9184 Patterns are used with Roles, Filtering, Index Coloring,
9185 Scoring, Other Rules, and Search Rules.
9186 Patterns are compared with a message to see if there is a match.
9187 For Filtering, the messages being checked are all the messages in the
9188 folder, one at a time.
9189 For Index Line Coloring, each message that is visible on the screen is
9190 checked for matches with the Index Coloring Patterns.
9191 Roles are used with the Reply, Forward, and Compose commands.
9192 For Reply, the message used to compare the Pattern with is the message
9193 being replied to;
9194 for Forward, the message used to compare the Pattern with is the message
9195 being forwarded;
9196 and for Compose, there is no message, so the parts of the Pattern that depend
9197 on a message (everything other than Current Folder Type and the
9198 Beginning of Month and Year)
9199 are not used.
9200 Only the Current Folder Type matters for Compose (plus the Beginning of
9201 Month or Year, which you wouldn't usually use for a Role).
9202 For Scoring, the message being scored is compared with all of the Score
9203 Patterns, and the Score Values from the ones that match are added together to 
9204 get the message's score.
9205 For Other Rules, there is no message. Only the Current Folder Type is checked
9206 for Other Rules.
9208 Each Pattern has several possible parts, all of which are optional.
9209 In order for there to be a match, <EM>ALL</EM> of the
9210 <EM>defined</EM> parts of the Pattern must match the message.
9211 If a part is not defined it is considered a match, but note that a filtering
9212 Pattern must have at least one defined part or it will be ignored.
9213 For example, if the To pattern is not defined it will be
9214 displayed as
9216 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9218 That is considered a match because it is not defined.
9219 This means that the Pattern with nothing defined is a match if the
9220 Current Folder Type matches, but there is an exception that was mentioned
9221 in the previous paragraph.
9222 Because filtering is a potentially destructive action, filtering Patterns
9223 with nothing other than Current Folder Type defined are ignored.
9224 If you really want a filtering Pattern to match all messages (subject to
9225 Current Folder Type) the best way to do it is to define a Score interval
9226 that includes all possible scores.
9227 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9228 This can be used even if you haven't defined any rules to Set Scores.
9230 There are six predefined header patterns called the To, From, Sender, Cc, News,
9231 and Subject patterns.
9232 Besides those six predefined header patterns, you may add
9233 additional header patterns with header fieldnames of your choosing.
9234 You add an extra header pattern by placing the cursor on one of the
9235 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9236 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9237 and the Partic pattern is a header pattern that stands for
9238 Participant (From OR To OR Cc).
9239 (Defining the Recip pattern does not have the same effect as defining both
9240 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9241 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9242 Instead of comparing this pattern's text against only the contents of
9243 a particular header field, the text for the AllText pattern is compared
9244 with text anywhere in the message's header or body, and the text for the
9245 BodyText pattern is compared with text anywhere in the message's body.
9247 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9248 &quot;!&quot; &quot;toggle NOT&quot; command.
9249 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9250 &quot;!&quot; at the beginning of the pattern line.
9251 When the &quot;!&quot; is present, it reverses the meaning of the match.
9252 That is, if the pattern matches then it is considered to NOT be a match, and
9253 if it does not match it is considered to be a match.
9255 Don't make the mistake of putting the &quot;!&quot; in the data field for
9256 a pattern.
9257 For example, if you type the characters &quot;!urgent&quot; into the Subject
9258 pattern, the pattern will look like:
9260 <PRE>
9261  Subject pattern = !urgent
9262 </PRE>
9264 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9265 In order to match messages that do not have &quot;urgent&quot; in
9266 their Subject field, first type the characters &quot;urgent&quot; followed
9267 by carriage return for the value of the Subject pattern, then negate it
9268 by typing the &quot;!&quot; command.
9269 It should look like
9271 <PRE>
9272  ! Subject pattern = urgent
9273 </PRE>
9275 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9276 be a complete email address, part of an address, or a random set of
9277 characters to match against.
9278 It may also be a list of such patterns, which means you
9279 are looking for a match against the first pattern in the list <EM>OR</EM>
9280 the second pattern <EM>OR</EM> the third and so on.
9281 For example, a Subject pattern equal to
9283 <PRE>
9284  Subject pattern = urgent
9285                    emergency
9286                    alert
9287 </PRE>
9289 would match all messages with a subject that contained at least one
9290 of those words.
9291 It would also match subjects containing the words &quot;alerts&quot; or
9292 &quot;Urgently&quot;.
9294 The same example with &quot;NOT&quot; turned on would be
9296 <PRE>
9297  ! Subject pattern = urgent
9298                      emergency
9299                      alert
9300 </PRE>
9302 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9303 those words.
9304 You can use the &quot;Add Value&quot; command to add new words to the list,
9305 or you can enter them as a comma-separated list.
9307 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9308 present for a match.
9309 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9310 pattern2 must be present,
9311 and that is exactly what using a list does.)
9313 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9314 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9315 when checking for matches for Scoring.
9316 There are five similar settings that relate to the status of the message.
9317 These settings rely on the message being New or not, Deleted or not,
9318 Answered or not, Important or not, and Recent or not.
9319 There are also some other miscellaneous settings.
9320 The first is the Age of the message in days.
9321 Another is the Size of the message, in bytes.
9322 The third is a setting that detects whether or not the Subject of a
9323 message contains raw 8-bit characters (unencoded characters with the most
9324 significant bit set).
9325 There is a setting that detects whether or not this is the first time
9326 Alpine has been run this month (doesn't depend on individual messages),
9327 and another that detects whether or not this is the first time Alpine has
9328 been run this year.
9329 Other parts of the Pattern detect whether or not the From address of a
9330 message appears in your address book, whether or not certain keywords
9331 are set for a message, and whether or not certain character sets are
9332 used in a message.
9334 <H2>Parts of a Pattern</H2>
9336 <H3>Header patterns</H3>
9338 A header pattern is simply text that is searched for in the corresponding
9339 header field.
9340 For example, if a Pattern has a From header pattern with the value
9341 &quot;@company.com&quot;, then only messages that have a From header
9342 that contains the text &quot;@company.com&quot; will be possible
9343 matches.
9344 Matches don't have to be exact.
9345 For example, if the relevant field of a message contains the text
9346 &quot;mailbox@domain&quot; somewhere
9347 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9348 &quot;mailbox@domain&quot; are all matches.
9350 All parts of the Pattern must match so, for example,
9351 if a message matches a defined
9352 From pattern, it still must be checked against the other parts of the
9353 Pattern that have been defined.
9354 The To header pattern is a slightly special case.
9355 If the message being checked has a Resent-To header
9356 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9357 there are used in place of the addresses in the To header.
9358 This is only true for the To header.
9359 Resent-cc and Resent-From headers are never used unless you add them
9360 with the eXtraHdrs command.
9362 The meaning of a header pattern may be negated with the
9363 &quot;!&quot; &quot;toggle NOT&quot; command.
9364 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9365 &quot;!&quot; at the beginning of the pattern line.
9366 It would look something like
9368 <PRE>
9369  ! From pattern = susan@example.com
9370 </PRE>
9372 When the &quot;!&quot; is present, it reverses the meaning of the match.
9374 If you want to check for the presence of a header field but don't care
9375 about its value, then
9376 the empty pattern that you get by entering a pair of
9377 double quotes (&quot;&quot;) should match any message that
9378 has the corresponding header field.
9380 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9382 AllText patterns are just like header patterns except that the text is
9383 searched for anywhere in the message's headers or body, not just in the
9384 contents of a particular header field.
9387 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9389 BodyText patterns are just like header patterns except that the text is
9390 searched for anywhere in the message's body, not just in the
9391 contents of a particular header field.
9394 If there is more than one header pattern or AllText pattern or BodyText pattern
9395 for which you want to take the
9396 same action there is a shorthand notation that may be used.
9397 Any of these patterns may be a list of patterns instead of
9398 just a single pattern.
9399 If any one of the patterns in the list matches the message
9400 then it is considered a match.
9401 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9402 you to use the same role when replying to messages, you might have
9403 a To pattern that looks like
9405 <PRE>
9406  To pattern = company1.com
9407               company2.com
9408 </PRE>
9410 This means that if the mail you are replying to was addressed to
9411 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9412 then this Pattern is a match and the same actions will be taken.
9414 The meaning of an AllText or BodyText pattern may be negated with the
9415 &quot;!&quot; &quot;toggle NOT&quot; command.
9416 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9417 &quot;!&quot; at the beginning of the pattern line.
9418 When the &quot;!&quot; is present, it reverses the meaning of the match.
9420 A technicality: Since comma is the character used to separate multiple values
9421 in any of the fields that may have multiple values (such as header patterns,
9422 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9423 you must escape comma with a
9424 backslash (&#92;) if you want to include a literal comma in one of those fields.
9425 In other words, if you type a backslash followed by a comma it will
9426 be interpreted as a comma by Alpine, instead of as a separator between
9427 pattern values.
9428 All other backslashes (those not followed by a comma) are literal
9429 backslashes and should not be escaped.
9430 It's unlikely you'll ever need to enter a literal comma or backslash in
9431 any of the patterns.
9433 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9435 The &quot;Current Folder Type&quot; may be set to one of four different
9436 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9437 &quot;Specific&quot;.
9438 If the value is set to &quot;News&quot;, then the
9439 Pattern will only match if the currently open folder is a newsgroup.
9440 The value &quot;Email&quot; only matches if the current folder is not news and
9441 the value &quot;Any&quot; causes any folder to match.
9442 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9443 then you must fill in a value for &quot;Folder&quot;, which is on the line
9444 below the &quot;Specific&quot; line.
9445 In this case you will only get a match if the currently open folder is
9446 the specific folder you list.
9447 You may give a list of folders instead of just a single
9448 folder name, in which case the Pattern will match if the open folder is
9449 any one of the folders in the list.
9450 The name of each folder in the list may be either &quot;INBOX&quot;,
9451 the technical specification
9452 of the folder (like what appears in your configuration file) or, if the
9453 folder is one of your incoming folders, it may be the nickname you've given
9454 the folder.
9455 Here are some samples of specific folder names:
9457 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9459 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9461 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9463 The easiest way to fill in the &quot;Folder&quot; field is to use
9464 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9465 highlighted, or to use the &quot;Take&quot; command with the configuration
9466 feature
9467 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9468 turned on.
9470 When reading a newsgroup, there may be a performance penalty
9471 incurred when collecting the information necessary to check whether
9472 or not a Pattern matches a message.
9473 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9474 If you have Patterns with a Current Folder Type of either
9475 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9476 Index Line Coloring or Scoring, you may experience
9477 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9479 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9481 The &quot;Age Interval&quot; may be set to an interval of message
9482 ages that should be considered a match.
9483 Like the other parts of the Pattern, if it is unset it will be ignored.
9484 The Age Interval looks like
9486 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9488 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9489 than or equal to zero.
9490 The special value &quot;INF&quot; may be used for
9491 the max value. It represents infinity.
9493 Actually, this option may be defined as a list of intervals instead
9494 of just a single interval.
9495 The list is separated by commas.
9496 It can look like
9498 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9500 When there is an Age Interval defined, it is a match if the age, in days, of
9501 the message is contained in any of the intervals.
9502 The intervals include both endpoints.
9504 Even though this option is called Age, it isn't actually
9505 the <EM>age</EM> of the message.
9506 Instead, it is how many days ago the message arrived in one of your folders.
9507 If the current time is a little past midnight, then a message that arrived
9508 just before midnight arrived yesterday, even though the message is only
9509 a few minutes old.
9510 By default, the date being used is not the date in the Date
9511 header of the message.
9512 It is the date that the message arrived in one of your folders.
9513 When you Save a message from one folder to another that arrival date
9514 is preserved.
9515 If you would like to use the date in the Date header that is possible.
9516 Turn on the option
9517 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9518 near the bottom of the rule definition.
9519 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9521 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9523 The &quot;Size Interval&quot; may be set to an interval of message
9524 sizes that should be considered a match.
9525 Like the other parts of the Pattern, if it is unset it will be ignored.
9526 The Size Interval looks like
9528 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9530 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9531 than or equal to zero.
9532 The special value &quot;INF&quot; may be used for
9533 the max value. It represents infinity.
9535 Actually, this option may be defined as a list of intervals instead
9536 of just a single interval.
9537 The list is separated by commas.
9538 It can look like
9540 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9542 When there is a Size Interval defined, it is a match if the size, in bytes, of
9543 the message is contained in any of the intervals.
9544 The intervals include both endpoints.
9546 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9548 The &quot;Score Interval&quot; may be set to an interval of message
9549 scores that should be considered a match.
9550 Like the other parts of the Pattern, if it is unset it will be ignored.
9551 The Score Interval looks like
9553 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9555 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9556 negative integers, with min_score less than or equal to max_score.
9557 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9558 the min and max values to represent negative and positive infinity.
9560 Actually, a list of intervals may be used if you wish.
9561 A list would look like
9563 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9565 When there is a Score Interval defined, it is a match if the score for
9566 the message is contained in any of the intervals in the list.
9567 The intervals include the endpoints.
9568 The score for a message is calculated by looking at every Score rule defined and
9569 adding up the Score Values for the ones that match the message.
9570 When deciding whether or not a Pattern matches a message for purposes of
9571 calculating the score, the Score Interval is ignored.
9573 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9575 There are five separate message status settings.
9576 By default, all five are set to the value &quot;Don't care&quot;, which
9577 will match any message.
9578 The value &quot;Yes&quot; means that the particular status must be true
9579 for a match, and the value &quot;No&quot; means that the particular
9580 status must not be true for a match.
9581 For example, one of the five Message Status settings is whether a message
9582 is marked Important or not.
9583 A &quot;Yes&quot; means that the message must be Important to be
9584 considered a match and &quot;No&quot; means that the message must not be
9585 Important to be considered a match.
9586 The same is true of the other four message status settings that depend
9587 on whether or not the message is New; whether the message has 
9588 been Answered or not; whether the message has been Deleted or not, and
9589 whether the message is Recent or not. 
9591 The nomenclature for New and Recent is a bit confusing:
9593 New means that the message is Unseen.
9594 It could have been in your mailbox for a long time but if you haven't looked
9595 at it, it is still considered New.
9596 That matches the default Alpine index display that shows an N for such a
9597 message.
9599 Recent means that the message was added to this folder since the last time
9600 you opened the folder.
9601 Alpine also shows an N by default for these types of messages.
9602 If you were to run two copies of Alpine that opened a folder one right after
9603 the other, a message would only show up as Recent in (at most) the first
9604 Alpine session.
9606 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9608 Keywords are similar to Message Status, but they are chosen by the user.
9609 Provided the mail server allows for it, you may add a set of possible keywords
9610 to a folder and then you may set those keywords or not for each message
9611 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9612 The syntax of this part of the Pattern is similar to the header patterns.
9613 It is a list of keywords.
9614 The Keyword part of the Pattern is a match if the message has any of
9615 the keywords in the list set.
9616 Like other parts of the Pattern, if this is unset it will be ignored.
9618 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9620 A message may use one or more character sets.
9621 This part of the Pattern matches messages that make use of one or more of
9622 the character sets specified in the pattern.
9623 It will be considered a match if a message uses any of the character
9624 sets in the list you give here.
9627 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9628 GB2312) you may also use some shorthand names that Alpine provides.
9629 These names are more understandable shorthand names for sets of 
9630 character set names.
9631 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9632 Selecting one of these shorthand names is equivalent to selecting all of
9633 the character sets that make up the set.
9634 You can see all of these shorthand names and the lists of character sets
9635 they stand for by typing the &quot;T&quot; command with the Character
9636 Set pattern highlighted.
9637 The syntax of this part of the Pattern is similar to the header patterns
9638 and the Message Keywords pattern.
9639 It is a list of character sets (or shorthand names).
9640 The Character Set part of the Pattern is a match if the message uses any
9641 of the character sets in the list.
9642 Like other parts of the Pattern, if this is unset it will be ignored.
9644 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9646 It seems that lots of unwanted email contains unencoded 8-bit characters
9647 in the Subject.
9648 Normally, characters with the 8th bit set are not allowed in the Subject
9649 header unless they are MIME-encoded.
9650 This option gives you a way to match messages that have Subjects that
9651 contain unencoded 8-bit characters.
9652 By default, the value of this option is &quot;Don't care&quot;, which
9653 will match any message.
9654 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9655 the Subject of the message in order for there to be a match,
9656 and the value &quot;No&quot; is the opposite.
9657 Setting this option will affect performance in large folders because the
9658 subject of each message in the folder has to be checked.
9660 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9662 This option gives you a way to take some action once per month.
9663 By default, the value of this option is &quot;Don't care&quot;, which
9664 will always match.
9665 The value &quot;Yes&quot; means that this must be the first time Alpine has
9666 been run this month in order to count as a match,
9667 and the value &quot;No&quot; is the opposite.
9669 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9671 This option gives you a way to take some action once per year.
9672 By default, the value of this option is &quot;Don't care&quot;, which
9673 will always match.
9674 The value &quot;Yes&quot; means that this must be the first time Alpine has
9675 been run this year in order to count as a match,
9676 and the value &quot;No&quot; is the opposite.
9678 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9680 This option gives you a way to match messages that have an address
9681 that is in one of your address books.
9682 Only the simple entries in your address books are searched.
9683 Address book distribution lists are ignored!
9684 By default, the value of this option is &quot;Don't care&quot;, which
9685 will match any message.
9686 The value &quot;Yes, in any address book&quot; means the address
9687 from the message must be in at least one of your
9688 address books in order to be a match.
9689 The value &quot;No, not in any address book&quot;
9690 means none of the addresses may
9691 be in any of your address books in order to be a match.
9692 The values &quot;Yes, in specific address books&quot; and
9693 &quot;No, not in any of specific address books&quot; are similar but instead
9694 of depending on all address books you are allowed to give a list of address
9695 books to look in.
9696 The addresses from the message that are checked for are determined by the
9697 setting you have for &quot;Types of addresses to check for in address book&quot;.
9698 If you set this to &quot;From&quot; the From address from the message will
9699 be looked up in the address book.
9700 If you set it to only &quot;To&quot; then the To addresses will be used.
9701 If any of the To addresses are in the address book then it is considered
9702 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9703 You could set it to both From and To, in which case all of the From and To
9704 addresses are used.
9705 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9706 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9707 exists or the From address if there is no Reply-To address.
9708 Same for the Sender address.
9709 Setting this option may affect performance in large folders because the
9710 From and Reply-To of each message in the folder have to be checked.
9712 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9714 This is a command that is run with its standard input set to the message
9715 being checked and its standard output discarded.
9716 The full directory path should be specified.
9717 The command will be run and then its exit status will be checked against
9718 the Exit Status Interval, which defaults to just the value zero.
9719 If the exit status of the command falls in the interval, it is considered
9720 a match, otherwise it is not a match.
9723 This option may actually be a list of commands.
9724 The first one that exists and is executable is used.
9725 That makes it possible to use the same configuration with Unix Alpine and
9726 PC-Alpine.
9729 If none of the commands in the list exists and is executable then the rule
9730 is <EM>not</EM> a match.
9731 If it is possible that the command may not exist, you should be careful
9732 to structure your rules so that nothing destructive
9733 happens when the command does not exist.
9734 For example, you might have a filter that filters away spam when there is
9735 a match but does nothing when there is not a match.
9736 That would continue to work correctly if the command didn't exist.
9737 However, if you have a filter that filters away spam when there is not
9738 a match and keeps it when there is a match, that would filter everything
9739 if the categorizer command didn't exist.
9741 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9742 setup for the bogofilter filter.
9745 &lt;End of help on this topic&gt;
9746 </BODY>
9747 </HTML>
9748 ===== h_rules_roles =====
9749 <HTML>
9750 <HEAD>
9751 <TITLE>SETUP ROLES SCREEN</TITLE>
9752 </HEAD>
9753 <BODY>
9754 <H1>SETUP ROLES SCREEN</H1>
9755 <H2>SETUP ROLES COMMANDS</H2>
9756 <!--chtml if pinemode="function_key"-->
9757 <PRE>
9758 Available  Commands -- Group 1         Available Commands -- Group 2   
9759 -------------------------------        ------------------------------  
9760 F1  Show Help Text                      F1  Show Help Text             
9761 F2  See commands in next group          F2  See commands in next group
9762 F3  Back to MAIN Alpine menu
9763 F4  Change configuration for role
9764 F5  Move to previous role               F5  Include file in role config
9765 F6  Move to next role                   F6  Exclude file from config
9766 F7  Previous page of roles
9767 F8  Next page of roles
9768 F9  Add new role                        F9  Replicate existing role
9769 F10 Delete existing role
9770 F11 Shuffle the order of roles
9771 F12 Whereis (search role nicknames)
9772 </PRE>
9773 <!--chtml else-->
9774 <PRE>
9775 Navigation                     General Alpine Commands
9776 -------------------------      -----------------------
9777  P  Prev Role                     ?  Display this help text
9778  N  Next Role                     E  Back to MAIN Alpine menu
9779  -  Previous page
9780 Spc (space bar) Next page
9781  W  WhereIs (search for word in role nicknames)
9783 Setup Roles Commands
9784 ------------------------------------------------
9785  A  Add new role                  $  Shuffle the order of roles
9786  D  Delete existing role          C  Change configuration for highlighted role
9787  R  Replicate existing role
9788  I  Include file in role config   X  Exclude file from role config
9789 </PRE>
9790 <!--chtml endif-->
9792 <H2>Description of the Setup Roles Screen</H2>
9794 This screen lets you add, delete, modify, or change the order of the rules
9795 that determine the role you are playing when composing a message.
9797 You may play different roles depending on who you are replying to.
9798 For example, if you are replying to a message addressed to help-desk you
9799 may be acting as a Help Desk Worker.
9800 That role may require that you use a different return address and/or
9801 a different signature.
9803 Roles are optional.
9804 If you set up roles they work like this:  Each role has a set of
9805 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9806 considered for a particular use; a &quot;Pattern&quot;,
9807 which is used to decide which of the eligible roles is used; and a set
9808 of &quot;Actions&quot;, which are taken when that role is used.
9809 When you reply to a message, the message you are replying to is compared
9810 with the Patterns of the roles marked as eligible for use when replying.
9811 The comparisons start with the first eligible role and keep going until there
9812 is a match.
9813 If a match is found, the matching role's Actions are taken.
9815 It is also possible to set a default role and to change that role during
9816 your Alpine session.
9817 When you start Alpine no default role will be set.
9818 You may set or change the current default role by using the &quot;D&quot;
9819 command in the role selection screen.
9820 You'll see that screen while composing a message and being asked to select
9821 a role.
9822 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9823 compose a message.
9824 You may find a default role useful if you normally perform the duties of one
9825 of your roles for a while, then you switch to another role and stay in the
9826 new role for another period of time.
9827 It may be easier than using the Role Command to select the role each time you
9828 compose a message.
9830 <H2>Role Uses</H2>
9832 There are three types of use to be configured;
9833 one for Replying, one for Forwarding, and one for Composing.
9834 These indicate whether or not you want a role to be considered when you
9835 type the Reply, Forward, or Compose commands.
9836 (The Role command is an alternate form of the Compose command, and it is
9837 not affected by these settings.)
9838 Each of these Use types has three possible values.
9839 The value &quot;Never&quot;
9840 means that the role will never be considered as a candidate for use with
9841 the corresponding command.
9842 For example, if you set a role's Reply Use to Never, then when you Reply to
9843 a message, that role won't even be considered.
9844 (That isn't quite true. If the message you are replying to matches some other
9845 role that requires confirmation,
9846 then there will be a ^T command available which allows you to select a role
9847 from all of your roles, not just the reply-eligible roles.)
9850 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9851 both mean that you do want to consider this role when using the corresponding
9852 command.
9853 For either of these settings the role's Pattern will
9854 be checked to see if it matches the message.
9855 For Reply Use, the message used to compare the Pattern with is the message
9856 being replied to.
9857 For Forward Use, the message used to compare the Pattern with is the message
9858 being forwarded.
9859 For Compose Use, there is no message, so the parts of the Pattern that depend
9860 on a message (everything other than Current Folder Type) are ignored.
9861 In all cases, the Current Folder Type is checked if defined.
9862 If there is a match then this role will either be used without confirmation
9863 or will be the default when confirmation is asked for, depending on
9864 which of the two options is selected.
9865 If confirmation is requested, you will have a chance to
9866 choose No Role instead of the offered role, or to
9867 change the role to any one of your other roles (with the ^T command).
9869 <H2>Role Patterns</H2>
9871 In order to determine whether or not a message matches a role the message is
9872 compared with the Role's Pattern.
9873 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9874 Scoring, Other Rules, and Search Rules, so are described in only one place,
9875 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9877 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9878 a role that has all header patterns unset, the AllText pattern unset,
9879 the BodyText pattern unset,
9880 the Score Interval unset, and the Current Folder Type set to
9881 &quot;Any&quot; may be used as a default role.
9882 It should be put last in the list of roles since the matching
9883 starts at the beginning and proceeds until one of the roles is a match.
9884 If no roles at all match, then Alpine will
9885 use its regular methods of defining the role.
9886 If you wanted to, you could define a different &quot;default&quot; role
9887 for Replying, Forwarding, and Composing by setting the
9888 &quot;Use&quot; fields appropriately.
9890 <H2>Role Actions</H2>
9892 Once a role match is found, the role's Actions are taken.
9893 For each role there are several possible actions that may be defined.
9894 They are actions to set the From address, the Reply-To address,
9895 the Fcc, the Signature, the Template file, and Other Headers.
9897 <H3>Set From</H3>
9899 The From address is the address used on the From line of the message
9900 you are sending.
9902 <H3>Set Reply-To</H3>
9904 The Reply-To address is the address used on the Reply-To line of the message
9905 you are sending.
9906 You don't need a Reply-To address unless it is different from the From address.
9908 <H3>Set Other Headers</H3>
9910 If you want to set the value of the From or Reply-To headers, use
9911 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9912 If you want to set the values of other headers, use this field.
9913 This field is similar to the
9914 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9915 Each header you specify here must include the header tag
9916 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9917 and may optionally include a value for that header.
9918 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9919 for a header here will replace any value that already exists.
9920 For example, if you are Replying to a message there will be at least one
9921 address in the To header (the address you are Replying to).
9922 However, if you Reply using a role that sets the To header, that role's
9923 To header value will be used instead.
9925 <H3>Set Fcc</H3>
9927 The Fcc is used as the Fcc for the message you are sending.
9929 <H3>Set Signature or Set LiteralSig</H3>
9931 The Signature is the name of a file to be used as the signature file when
9932 this role is being used.
9933 If the name of the file has a vertical bar following it (|)
9934 then it is assumed that the file is a program that should be run to
9935 produce the signature.
9936 If the LiteralSig is set, then it is used instead of the signature file.
9937 LiteralSig is just a different way to store the signature.
9938 It is stored in the pine configuration file instead of in a separate
9939 signature file.
9940 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9941 either in the role or as the default signature in the Setup/Config screen,
9942 then the signature file is ignored.
9944 <H3>Set Template</H3>
9946 A Template is the name of a file to be included in the message when this
9947 role is being used.
9948 If the name of the file has a vertical bar following it (|)
9949 then it is assumed that the file is a program that should be run to
9950 produce the template.
9953 Both signature files and template files may be stored remotely on an IMAP
9954 server.
9955 In order to do that you just give the file a remote name.
9956 This works just like the regular
9957 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9958 option that is configured from the Setup/Configuration screen.
9959 A remote signature file name might look like:
9961 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9963 Once you have named the remote signature or template file you create its
9964 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9965 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9966 line of the role editor.
9969 Both signature files and template files (or the output of signature programs
9970 and template file programs) may contain special tokens
9971 that are replaced with contents
9972 that depend on the message being replied to or forwarded.
9973 See the help for the individual fields inside the role editor for more
9974 information on tokens.
9976 <H3>Use SMTP Server</H3>
9978 If this field has a value, then it will be used as the SMTP server
9979 to send mail when this role is being used (unless the SMTP server variable
9980 is set in the system-wide fixed configuration file).
9981 It has the same semantics as the
9982 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9983 variable in the Setup/Config screen.
9984 When you postpone the composition this SMTP server list will be saved
9985 with the postponed composition and it cannot be changed later.
9986 Because of that, you may want to make this a list of SMTP servers
9987 with the preferred server at the front of the list and alternate servers
9988 later in the list.
9991 If any of the actions are left unset, then the action depends on what
9992 is present in the &quot;Initialize settings using role&quot; field.
9993 If you've listed the nickname of another one of your roles there, then the
9994 corresponding action from that role will be used here.
9995 If that action is also blank, or if there is no nickname specified,
9996 then Alpine will do whatever it normally does to set these actions.
9997 This depends on other configuration options and features you've set.
9999 <H2>Command Descriptions</H2>
10001 <H3>Add</H3>
10003 The Add command is used to add a new role definition to your set of
10004 roles.
10005 The new role will be added after the highlighted role.
10007 <H3>Delete</H3>
10009 The Delete command deletes the currently highlighted role.
10011 <H3>Change</H3>
10013 The Change command lets you edit the nickname, Uses, Pattern,
10014 and Actions of the currently highlighted role.
10016 <H3>Shuffle</H3>
10018 The Shuffle command allows you to change the order of the roles.
10019 You may move the currently highlighted role up or down in the list.
10020 The order of the roles is important since the roles are tested for a
10021 match starting with the first role and continuing until a match is found.
10022 You should place the roles with more specific Patterns near the beginning
10023 of the list, and those with more general Patterns near the end so that
10024 the more specific matches will happen when appropriate.
10026 <H3>Replicate</H3>
10028 The Replicate command is used to copy an existing role and modify it.
10029 The new role will be added after the highlighted role.
10031 <H3>IncludeFile</H3>
10033 The IncludeFile command allows you to add a roles file to your configuration.
10034 Usually, your roles will be contained in your Alpine configuration file.
10035 If you wish, some or all of your roles may be stored in a separate file.
10036 If a roles file already exists (maybe it was made by somebody else using
10037 Alpine), you may insert it before the currently highlighted role.
10038 You may also insert an empty file or a file that does not yet exist.
10039 Once you have an empty roles file in your configuration, you may use
10040 the Shuffle command to move roles into it.
10041 In fact, that's the only way to get the initial role into the file.
10043 <H3>eXcludeFile</H3>
10045 The eXcludeFile command removes a roles file from your roles configuration.
10046 A limitation of the program is that in order to exclude a roles file
10047 that file must have at least one role
10048 in it, otherwise you won't be able to highlight a line in the file.
10049 So you may have to add a dummy role to the file in order to exclude the file.
10050 <P><UL>
10051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10052 </UL>
10054 &lt;End of help on this topic&gt;
10055 </BODY>
10056 </HTML>
10057 ===== h_rules_other =====
10058 <HTML>
10059 <HEAD>
10060 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10061 </HEAD>
10062 <BODY>
10063 <H1>SETUP OTHER RULES SCREEN</H1>
10064 <H2>SETUP OTHER RULES COMMANDS</H2>
10065 <!--chtml if pinemode="function_key"-->
10066 <PRE>
10067 Available  Commands -- Group 1         Available Commands -- Group 2   
10068 -------------------------------        ------------------------------  
10069 F1  Show Help Text                      F1  Show Help Text             
10070 F2  See commands in next group          F2  See commands in next group
10071 F3  Back to MAIN Alpine menu
10072 F4  Change configuration for rule
10073 F5  Move to previous rule               F5  Include file in rule config
10074 F6  Move to next rule                   F6  Exclude file from config
10075 F7  Previous page of rules
10076 F8  Next page of rules
10077 F9  Add new rule                        F9  Replicate existing rule
10078 F10 Delete existing rule
10079 F11 Shuffle the order of rules
10080 F12 Whereis (search rule nicknames)
10081 </PRE>
10082 <!--chtml else-->
10083 <PRE>
10084 Navigation                     General Alpine Commands
10085 -------------------------      -----------------------
10086  P  Prev rule                     ?  Display this help text
10087  N  Next rule                     E  Back to MAIN Alpine menu
10088  -  Previous page
10089 Spc (space bar) Next page
10090  W  WhereIs (search for word in rule nicknames)
10092 Setup Other Rules Commands
10093 ------------------------------------------------
10094  A  Add new rule                  $  Shuffle the order of rules
10095  D  Delete existing rule          C  Change configuration for highlighted rule
10096  R  Replicate existing rule
10097  I  Include file in rule config   X  Exclude file from rule config
10098 </PRE>
10099 <!--chtml endif-->
10101 <H2>Description of the Setup Other Rules Screen</H2>
10103 This is where you may set various actions that do not fit well into the
10104 other Rules categories.
10106 <H2>Patterns</H2>
10108 Other Rules are a little different from the rest of the Rules because
10109 they depend only on the current folder, and not on a particular message.
10110 In order to determine whether or not a rule's actions should be applied
10111 the current folder is compared with the rule's Pattern, which consists
10112 of only the Current Folder Type.
10113 Current Folder Type works the same for Other Rules as it does for Roles,
10114 Filtering, Index Coloring, and Scoring.
10115 Keep in mind that the only part of the Pattern that applies to Other
10116 Rules is the Current Folder Type when looking at the description of
10117 Patterns given
10118 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10120 <H2>The Actions</H2>
10122 <H3>Set Sort Order</H3>
10124 When you enter a new folder, these rules will be checked to see if you
10125 have set a sort order that is different from your default sort order.
10126 The default is set in the Setup/Config screen with
10127 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10128 If the Sort Order action is set, then the folder will be displayed sorted in
10129 that sort order instead of in the default order.
10131 A possible point of confusion arises when you change the configuration
10132 of the Sort Order for the currently open folder.
10133 The folder will normally be re-sorted when you go back to viewing the
10134 index.
10135 However, if you have manually sorted the folder with the
10136 Sort
10137 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10138 command, then it will not be re-sorted until the next time it is opened.
10140 <H3>Set Index Format</H3>
10142 When you enter a new folder, these rules will be checked to see if you
10143 have set an Index Format that is different from your default Index Format,
10144 which is set with the
10145 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10146 If so, the index will be displayed with this format instead of the default.
10148 <H3>Set Startup Rule</H3>
10150 When you enter a new folder, these rules will be checked to see if you
10151 have set a startup rule that is different from the default startup rule.
10152 The default for incoming folders is set in the Setup/Config screen with
10153 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10154 The default for folders other than INBOX that are not part of your
10155 incoming collection
10156 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10157 is to start with the last message in the folder.
10158 If the Startup Rule is set to something other than &quot;default&quot;,
10159 then the rule will determine which message will be the current message when
10160 the folder is first opened.
10162 The various startup rule possibilities work the same here as they do in
10163 the incoming collection, so check
10164 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10165 for more help.
10167 <H2>Command Descriptions</H2>
10169 <H3>Add</H3>
10171 The Add command is used to add a new rule definition to your set of
10172 rules.
10173 The new rule will be added after the highlighted rule.
10175 <H3>Delete</H3>
10177 The Delete command deletes the currently highlighted rule.
10179 <H3>Change</H3>
10181 The Change command lets you edit the nickname, Pattern,
10182 and Action of the currently highlighted rule.
10184 <H3>Shuffle</H3>
10186 The Shuffle command allows you to change the order of the rules.
10187 You may move the currently highlighted rule up or down in the list.
10188 The order of the rules is important since the rules are tested for a
10189 match starting with the first rule and continuing until a match is found.
10190 You should place the rules with more specific Patterns near the beginning
10191 of the list, and those with more general Patterns near the end so that
10192 the more specific matches will happen when appropriate.
10194 <H3>Replicate</H3>
10196 The Replicate command is used to copy an existing rule definition and modify it.
10197 The new rule will be added after the highlighted rule.
10199 <H3>IncludeFile</H3>
10201 The IncludeFile command allows you to add a rules file to your configuration.
10202 Usually, your rules will be contained in your Alpine configuration file.
10203 If you wish, some or all of your rules may be stored in a separate file.
10204 If a rules file already exists (maybe it was made by somebody else using
10205 Alpine), you may insert it before the currently highlighted rule.
10206 You may also insert an empty file or a file that does not yet exist.
10207 Once you have an empty rules file in your configuration, you may use
10208 the Shuffle command to move rules into it.
10209 In fact, that's the only way to get the initial rule into the file.
10211 <H3>eXcludeFile</H3>
10213 The eXcludeFile command removes a rules file from your rules configuration.
10214 A limitation of the program is that in order to exclude a rules file
10215 that file must have at least one rule
10216 in it, otherwise you won't be able to highlight a line in the file.
10217 So you may have to add a dummy rule to the file in order to exclude the file.
10218 <P><UL>
10219 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10220 </UL>
10222 &lt;End of help on this topic&gt;
10223 </BODY>
10224 </HTML>
10225 ===== h_rules_srch =====
10226 <HTML>
10227 <HEAD>
10228 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10229 </HEAD>
10230 <BODY>
10231 <H1>SETUP SEARCH RULES SCREEN</H1>
10232 <H2>SETUP SEARCH RULES COMMANDS</H2>
10233 <!--chtml if pinemode="function_key"-->
10234 <PRE>
10235 Available  Commands -- Group 1         Available Commands -- Group 2   
10236 -------------------------------        ------------------------------  
10237 F1  Show Help Text                      F1  Show Help Text             
10238 F2  See commands in next group          F2  See commands in next group
10239 F3  Back to MAIN Alpine menu
10240 F4  Change configuration for rule
10241 F5  Move to previous rule               F5  Include file in rule config
10242 F6  Move to next rule                   F6  Exclude file from config
10243 F7  Previous page of rules
10244 F8  Next page of rules
10245 F9  Add new rule                        F9  Replicate existing rule
10246 F10 Delete existing rule
10247 F11 Shuffle the order of rules
10248 F12 Whereis (search rule nicknames)
10249 </PRE>
10250 <!--chtml else-->
10251 <PRE>
10252 Navigation                     General Alpine Commands
10253 -------------------------      -----------------------
10254  P  Prev rule                     ?  Display this help text
10255  N  Next rule                     E  Back to MAIN Alpine menu
10256  -  Previous page
10257 Spc (space bar) Next page
10258  W  WhereIs (search for word in rule nicknames)
10260 Setup Search Rules Commands
10261 ------------------------------------------------
10262  A  Add new rule                  $  Shuffle the order of rules
10263  D  Delete existing rule          C  Change configuration for highlighted rule
10264  R  Replicate existing rule
10265  I  Include file in rule config   X  Exclude file from rule config
10266 </PRE>
10267 <!--chtml endif-->
10269 <H2>Description of the Setup Search Rules Screen</H2>
10271 One of the commands that becomes available when that feature is turned on
10272 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10273 screen to select a set of messages.
10274 One way of selecting messages is to use a Rule.
10275 All of the messages that match (or don't match if you wish)
10276 a Rule's Pattern will be selected.
10278 Any of your Rules may be used for this purpose.
10279 You might already have Rules set up for filtering, index line color, scores, or roles;
10280 and you may use any of those Rules with the Select command.
10281 However, you might find it more convenient to set up a separate set of Rules
10282 just for this purpose without having to worry about what other effects
10283 they may cause.
10284 That is the purpose of these Select Rules.
10287 Each rule has a &quot;Pattern&quot;
10288 that is used to decide which messages are selected when you use it with
10289 the Select command.
10291 <H2>Patterns</H2>
10293 In order to determine whether or not a message should be selected
10294 the message is compared with the rule's Pattern.
10295 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10296 Scoring, Other Rules, and Search Rules, so are described in only one place,
10297 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10299 <H2>Command Descriptions</H2>
10301 <H3>Add</H3>
10303 The Add command is used to add a new rule definition to your set of
10304 rules.
10305 The new rule will be added after the highlighted rule.
10307 <H3>Delete</H3>
10309 The Delete command deletes the currently highlighted rule.
10311 <H3>Change</H3>
10313 The Change command lets you edit the nickname and Pattern
10314 of the currently highlighted rule.
10316 <H3>Shuffle</H3>
10318 The Shuffle command allows you to change the order of the rules.
10319 This affects only the order they are presented in when you use the
10320 ^T subcommand of the Select by Rule command.
10321 You may move the currently highlighted rule up or down in the list.
10323 <H3>Replicate</H3>
10325 The Replicate command is used to copy an existing rule definition and modify it.
10326 The new rule will be added after the highlighted rule.
10328 <H3>IncludeFile</H3>
10330 The IncludeFile command allows you to add a rules file to your configuration.
10331 Usually, your rules will be contained in your Alpine configuration file.
10332 If you wish, some or all of your rules may be stored in a separate file.
10333 If a rules file already exists (maybe it was made by somebody else using
10334 Alpine), you may insert it before the currently highlighted rule.
10335 You may also insert an empty file or a file that does not yet exist.
10336 Once you have an empty rules file in your configuration, you may use
10337 the Shuffle command to move rules into it.
10338 In fact, that's the only way to get the initial rule into the file.
10340 <H3>eXcludeFile</H3>
10342 The eXcludeFile command removes a rules file from your rules configuration.
10343 A limitation of the program is that in order to exclude a rules file
10344 that file must have at least one rule
10345 in it, otherwise you won't be able to highlight a line in the file.
10346 So you may have to add a dummy rule to the file in order to exclude the file.
10347 <P><UL>
10348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10349 </UL>
10351 &lt;End of help on this topic&gt;
10352 </BODY>
10353 </HTML>
10354 ===== h_rules_incols =====
10355 <HTML>
10356 <HEAD>
10357 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10358 </HEAD>
10359 <BODY>
10360 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10361 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10362 <!--chtml if pinemode="function_key"-->
10363 <PRE>
10364 Available  Commands -- Group 1         Available Commands -- Group 2   
10365 -------------------------------        ------------------------------  
10366 F1  Show Help Text                      F1  Show Help Text             
10367 F2  See commands in next group          F2  See commands in next group
10368 F3  Back to MAIN Alpine menu
10369 F4  Change configuration for rule
10370 F5  Move to previous rule               F5  Include file in rule config
10371 F6  Move to next rule                   F6  Exclude file from config
10372 F7  Previous page of rules
10373 F8  Next page of rules
10374 F9  Add new rule                        F9  Replicate existing rule
10375 F10 Delete existing rule
10376 F11 Shuffle the order of rules
10377 F12 Whereis (search rule nicknames)
10378 </PRE>
10379 <!--chtml else-->
10380 <PRE>
10381 Navigation                     General Alpine Commands
10382 -------------------------      -----------------------
10383  P  Prev rule                     ?  Display this help text
10384  N  Next rule                     E  Back to MAIN Alpine menu
10385  -  Previous page
10386 Spc (space bar) Next page
10387  W  WhereIs (search for word in rule nicknames)
10389 Setup Index Color Commands
10390 ------------------------------------------------
10391  A  Add new rule                  $  Shuffle the order of rules
10392  D  Delete existing rule          C  Change configuration for highlighted rule
10393  R  Replicate existing rule
10394  I  Include file in rule config   X  Exclude file from rule config
10395 </PRE>
10396 <!--chtml endif-->
10398 <H2>Description of the Setup Index Line Colors Screen</H2>
10400 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10401 This action is only available if your terminal is capable of displaying
10402 color and color display has been enabled with the
10403 <A HREF="h_config_color_style">Color Style</A> option within the
10404 Setup Color screen.
10405 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10406 This screen lets you add, delete, modify, or change the order of the rules
10407 that cause the lines in the MESSAGE INDEX to be displayed in different
10408 colors.
10410 Each rule has a &quot;Pattern&quot;,
10411 which is used to decide which of the rules is used; and the color that
10412 is used if the Pattern matches a particular message.
10414 <H2>Index Color Patterns</H2>
10416 In order to determine whether or not a message matches an Index Color Rule
10417 the message is compared with the rule's Pattern.
10418 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10419 Scoring, Other Rules, and Search Rules, so are described in only one place,
10420 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10423 If none of the Index Color rules is a match for a particular index line,
10424 then the color used is set using
10425 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10427 <H2>Index Line Color</H2>
10429 This is the color that index lines are colored when there is a matching
10430 Pattern.
10431 This colors the whole index line, except possibly the status letters,
10432 which may be colored separately using
10433 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10435 <H2>Command Descriptions</H2>
10437 <H3>Add</H3>
10439 The Add command is used to add a new rule definition to your set of
10440 rules.
10441 The new rule will be added after the highlighted rule.
10443 <H3>Delete</H3>
10445 The Delete command deletes the currently highlighted rule.
10447 <H3>Change</H3>
10449 The Change command lets you edit the nickname, Pattern,
10450 and Index Line Color of the currently highlighted rule.
10452 <H3>Shuffle</H3>
10454 The Shuffle command allows you to change the order of the rules.
10455 You may move the currently highlighted rule up or down in the list.
10456 The order of the rules is important since the rules are tested for a
10457 match starting with the first rule and continuing until a match is found.
10458 You should place the rules with more specific Patterns near the beginning
10459 of the list, and those with more general Patterns near the end so that
10460 the more specific matches will happen when appropriate.
10462 <H3>Replicate</H3>
10464 The Replicate command is used to copy an existing rule definition and modify it.
10465 The new rule will be added after the highlighted rule.
10467 <H3>IncludeFile</H3>
10469 The IncludeFile command allows you to add a rules file to your configuration.
10470 Usually, your rules will be contained in your Alpine configuration file.
10471 If you wish, some or all of your rules may be stored in a separate file.
10472 If a rules file already exists (maybe it was made by somebody else using
10473 Alpine), you may insert it before the currently highlighted rule.
10474 You may also insert an empty file or a file that does not yet exist.
10475 Once you have an empty rules file in your configuration, you may use
10476 the Shuffle command to move rules into it.
10477 In fact, that's the only way to get the initial rule into the file.
10479 <H3>eXcludeFile</H3>
10481 The eXcludeFile command removes a rules file from your rules configuration.
10482 A limitation of the program is that in order to exclude a rules file
10483 that file must have at least one rule
10484 in it, otherwise you won't be able to highlight a line in the file.
10485 So you may have to add a dummy rule to the file in order to exclude the file.
10486 <P><UL>
10487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10488 </UL>
10490 &lt;End of help on this topic&gt;
10491 </BODY>
10492 </HTML>
10493 ===== h_rules_filter =====
10494 <HTML>
10495 <HEAD>
10496 <TITLE>SETUP FILTERING SCREEN</TITLE>
10497 </HEAD>
10498 <BODY>
10499 <H1>SETUP FILTERING SCREEN</H1>
10500 <H2>SETUP FILTERING COMMANDS</H2>
10501 <!--chtml if pinemode="function_key"-->
10502 <PRE>
10503 Available  Commands -- Group 1         Available Commands -- Group 2   
10504 -------------------------------        ------------------------------  
10505 F1  Show Help Text                      F1  Show Help Text             
10506 F2  See commands in next group          F2  See commands in next group
10507 F3  Back to MAIN Alpine menu
10508 F4  Change configuration for filter
10509 F5  Move to previous filter             F5  Include file in filter config
10510 F6  Move to next filter                 F6  Exclude file from config
10511 F7  Previous page of filters
10512 F8  Next page of filters
10513 F9  Add new filter                      F9  Replicate existing filter
10514 F10 Delete existing filter
10515 F11 Shuffle the order of filters
10516 F12 Whereis (search filter nicknames)
10517 </PRE>
10518 <!--chtml else-->
10519 <PRE>
10520 Navigation                     General Alpine Commands
10521 -------------------------      -----------------------
10522  P  Prev Filter                   ?  Display this help text
10523  N  Next Filter                   E  Back to MAIN Alpine menu
10524  -  Previous page
10525 Spc (space bar) Next page
10526  W  WhereIs (search for word in filter nicknames)
10528 Setup Filters Commands
10529 ------------------------------------------------
10530  A  Add new filter                $  Shuffle the order of filters
10531  D  Delete existing filter        C  Change configuration for highlighted filter
10532  R  Replicate existing filter
10533  I  Include file in filter config X  Exclude file from filter config
10534 </PRE>
10535 <!--chtml endif-->
10537 <H2>Description of the Setup Filtering Screen</H2>
10539 This screen lets you add, delete, modify, or change the order of the rules
10540 that determine the filtering Alpine does on folders you view.
10542 The software that actually delivers mail (the stuff that happens
10543 before Alpine is involved) for you is in a better position to do mail filtering
10544 than Alpine itself.
10545 If possible, you may want to look into using that sort of mail filtering to
10546 deliver mail to different folders, delete it, or forward it.
10547 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10549 Filtering is a way to automatically move certain messages from one folder
10550 to another or to delete messages.
10551 It can also be used to set message status (Important, Deleted, New,
10552 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10553 Alpine doesn't have the ability to forward mail to another address or
10554 to deliver vacation messages.
10556 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10557 When a folder is opened, when new mail arrives in an open folder, or
10558 when mail is Expunged from a folder; each
10559 message is compared with the Patterns of your filtering rules.
10560 The comparisons start with the first rule and keep going until there
10561 is a match.
10562 If a match is found, the message may be deleted or moved, depending on
10563 the setting of the Filter Action.
10564 If the message is not deleted, it may have its status altered.
10567 <EM>NOTE:</EM>
10568 When setting up a Pattern used to delete messages,
10569 it is recommended that you test the Pattern first with a &quot;Move&quot;
10570 folder specified in
10571 case unintended matches occur.  Messages that are deleted will be removed 
10572 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10573 next Expunge command or once the folder being filtered has been closed.
10575 <H2>Filter Patterns</H2>
10577 In order to determine whether or not a message matches a filter the message is
10578 compared with the Filter's Pattern.
10579 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10580 Scoring, Other Rules, and Search Rules, so are described in only one place,
10581 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10583 Since filtering is a potentially destructive action, if you have a filtering
10584 Pattern with nothing other than Current Folder Type set, that filtering
10585 rule is ignored.
10587 <H2>Filter Actions</H2>
10589 Once a filter match is found for a particular message, there are some actions
10590 that may be taken.
10591 First, the message may have its status changed.
10592 This is the same message status that you can manipulate manually using the
10593 <a href="h_common_flag">Flag Command</a>.
10594 There are always four elements of message status that you can control.
10595 You can set or clear the Important status, the New status, the Deleted
10596 status, and the Answered status.
10597 Of course, if the filter is going to delete the message,
10598 then there is no point in setting message status.
10599 You may also be able to set user-defined keywords for a message.
10600 Read a little about keywords in the help text for the
10601 <A HREF="h_common_flag">Flag</A> command.
10603 Second, the filter may delete or move the message.
10604 Deleting the message marks it Deleted and removes it from view.
10605 It is effectively gone forever (though it technically is still there until
10606 the next expunge command, which may happen implicitly).
10607 Moving the message moves it from the open folder into the folder
10608 listed on the &quot;Folder List&quot; line of the filter configuration.
10609 If you list more than one folder name (separated by commas) then the message
10610 will be copied to each of those folders.
10611 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10612 message is removed from the current folder.
10613 If you just want to set the messages status without deleting it from
10614 the folder, then set the filter action to
10615 &quot;Just Set Message Status&quot;.
10617 (There is no way to do a Copy instead of a Move, due to the difficulties
10618 involved in keeping track of whether or not a message has
10619 already been copied.)
10621 <H2>Command Descriptions</H2>
10623 <H3>Add</H3>
10625 The Add command is used to add a new filter definition to your set of
10626 filters.
10627 The new filter will be added after the highlighted filter.
10629 <H3>Delete</H3>
10631 The Delete command deletes the currently highlighted filter.
10633 <H3>Change</H3>
10635 The Change command lets you edit the nickname, Pattern,
10636 and Folder of the currently highlighted filter.
10638 <H3>Shuffle</H3>
10640 The Shuffle command allows you to change the order of the filters.
10641 You may move the currently highlighted filter up or down in the list.
10642 The order of the filters is important since the filters are tested for a
10643 match starting with the first filter and continuing until a match is found.
10644 You should place the filters with more specific Patterns near the beginning
10645 of the list, and those with more general Patterns near the end so that
10646 the more specific matches will happen when appropriate.
10648 <H3>Replicate</H3>
10650 The Replicate command is used to copy an existing filter and modify it.
10651 The new filter will be added after the highlighted filter.
10653 <H3>IncludeFile</H3>
10655 The IncludeFile command allows you to add a filters file to your configuration.
10656 Usually, your filters will be contained in your Alpine configuration file.
10657 If you wish, some or all of your filters may be stored in a separate file.
10658 If a filters file already exists (maybe it was made by somebody else using
10659 Alpine), you may insert it before the currently highlighted filter.
10660 You may also insert an empty file or a file that does not yet exist.
10661 Once you have an empty filters file in your configuration, you may use
10662 the Shuffle command to move filters into it.
10663 In fact, that's the only way to get the initial filter into the file.
10665 <H3>eXcludeFile</H3>
10667 The eXcludeFile command removes a filters file from your filters configuration.
10668 A limitation of the program is that in order to exclude a filters file
10669 that file must have at least one filter
10670 in it, otherwise you won't be able to highlight a line in the file.
10671 So you may have to add a dummy filter to the file in order to exclude the file.
10672 <P><UL>
10673 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10674 </UL>
10676 <H3>Performance Considerations</H3>
10677 The number and type of patterns being tested can 
10678 adversely effect performance.  Issues to be aware
10679 of include:
10681 <UL>
10682   <LI> The more filters you have defined the longer it will take to run down
10683 the list.  Deleting unused filters is a good idea.
10684   <LI> Filtering in newsgroups served by an NNTP server will be slow
10685 if your patterns include tests other than &quot;From:&quot;
10686 or &quot;Subject:&quot;.
10687 </UL>
10689 &lt;End of help on this topic&gt;
10690 </BODY>
10691 </HTML>
10692 ===== h_rules_score =====
10693 <HTML>
10694 <HEAD>
10695 <TITLE>SETUP SCORING SCREEN</TITLE>
10696 </HEAD>
10697 <BODY>
10698 <H1>SETUP SCORING SCREEN</H1>
10699 <H2>SETUP SCORING COMMANDS</H2>
10700 <!--chtml if pinemode="function_key"-->
10701 <PRE>
10702 Available  Commands -- Group 1         Available Commands -- Group 2   
10703 -------------------------------        ------------------------------  
10704 F1  Show Help Text                      F1  Show Help Text             
10705 F2  See commands in next group          F2  See commands in next group
10706 F3  Back to MAIN Alpine menu
10707 F4  Change configuration for rule
10708 F5  Move to previous rule               F5  Include file in rule config
10709 F6  Move to next rule                   F6  Exclude file from config
10710 F7  Previous page of rules
10711 F8  Next page of rules
10712 F9  Add new rule                        F9  Replicate existing rule
10713 F10 Delete existing rule
10714 F11 Shuffle the order of rules
10715 F12 Whereis (search rule nicknames)
10716 </PRE>
10717 <!--chtml else-->
10718 <PRE>
10719 Navigation                     General Alpine Commands
10720 -------------------------      -----------------------
10721  P  Prev rule                     ?  Display this help text
10722  N  Next rule                     E  Back to MAIN Alpine menu
10723  -  Previous page
10724 Spc (space bar) Next page
10725  W  WhereIs (search for word in rule nicknames)
10727 Setup Scoring Commands
10728 ------------------------------------------------
10729  A  Add new rule                  $  Shuffle the order of rules
10730  D  Delete existing rule          C  Change configuration for highlighted rule
10731  R  Replicate existing rule
10732  I  Include file in rule config   X  Exclude file from rule config
10733 </PRE>
10734 <!--chtml endif-->
10736 <H2>Description of the Setup Scoring Screen</H2>
10738 Most people will not use scores at all, but if you do use them, here's how
10739 they work in Alpine.
10740 Using this screen, you may define Scoring rules.
10741 The score for a message is calculated by looking at every Score rule defined
10742 and adding up the Score Values for the ones that match the message.
10743 If there are no matches for a message, it has a score of zero.
10744 Message scores may be used a couple of ways in Alpine.
10746 <H3>Sorting by Score</H3>
10748 One of the methods you may use to sort message indexes is to sort by
10749 score.
10750 The scores of all the messages in a folder will be calculated and then
10751 the index will be ordered by placing the messages in order of ascending or
10752 descending score.
10754 <H3>Scores for use in Patterns</H3>
10756 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10757 category labeled &quot;Score Interval&quot;.
10758 When a message is being compared with a Pattern to check for a match, if
10759 the Score Interval is set only messages that have a score somewhere in
10760 the interval are a match.
10762 <H2>Scoring Rule Patterns</H2>
10764 In order to determine whether or not a message matches a scoring rule
10765 the message is compared with the rule's Pattern.
10766 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10767 Scoring, Other Rules, and Search Rules, so are described in only one place,
10768 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10771 Actually, Scoring rule Patterns are slightly different from the other types of
10772 Patterns because Scoring rule Patterns don't contain a Score Interval.
10773 In other words, when calculating the score for a message, which is done
10774 by looking at the Scoring rule Patterns, scores aren't used.
10776 <H2>Score Value</H2>
10778 This is the value that will be added to the score for a message if the
10779 rule's Pattern is a match.
10780 Each individual Score Value is an integer between -100 and 100, and the
10781 values from matching rules are added together to get a message's score.
10782 There is also a way to extract the value from a particular header of each
10783 message. See the help text for Score Value for further information.
10785 <H2>Command Descriptions</H2>
10787 <H3>Add</H3>
10789 The Add command is used to add a new scoring rule definition.
10790 The new rule will be added after the highlighted rule.
10792 <H3>Delete</H3>
10794 The Delete command deletes the currently highlighted scoring rule.
10796 <H3>Change</H3>
10798 The Change command lets you edit the nickname, Pattern,
10799 and Score Value of the currently highlighted scoring rule.
10801 <H3>Shuffle</H3>
10803 The Shuffle command allows you to change the order of the scoring rules.
10804 You may move the currently highlighted rule up or down in the list.
10805 The order of the rules is important since the rules are tested for a
10806 match starting with the first rule and continuing until a match is found.
10807 You should place the rules with more specific Patterns near the beginning
10808 of the list, and those with more general Patterns near the end so that
10809 the more specific matches will happen when appropriate.
10811 <H3>Replicate</H3>
10813 The Replicate command is used to copy an existing rule and modify it.
10814 The new rule will be added after the highlighted rule.
10816 <H3>IncludeFile</H3>
10818 The IncludeFile command allows you to add a rules file to your configuration.
10819 Usually, your rules will be contained in your Alpine configuration file.
10820 If you wish, some or all of your rules may be stored in a separate file.
10821 If a rules file already exists (maybe it was made by somebody else using
10822 Alpine), you may insert it before the currently highlighted rule.
10823 You may also insert an empty file or a file that does not yet exist.
10824 Once you have an empty rules file in your configuration, you may use
10825 the Shuffle command to move rules into it.
10826 In fact, that's the only way to get the initial rule into the file.
10828 <H3>eXcludeFile</H3>
10830 The eXcludeFile command removes a rules file from your rules configuration.
10831 A limitation of the program is that in order to exclude a rules file
10832 that file must have at least one rule
10833 in it, otherwise you won't be able to highlight a line in the file.
10834 So you may have to add a dummy rule to the file in order to exclude the file.
10835 <P><UL>
10836 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10837 </UL>
10839 &lt;End of help on this topic&gt;
10840 </BODY>
10841 </HTML>
10842 ===== h_direct_config =====
10843 <HTML>
10844 <HEAD>
10845 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10846 </HEAD>
10847 <BODY>
10848 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10849 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10850 <!--chtml if pinemode="function_key"-->
10851 <PRE>
10852 Available  Commands                        
10853 -------------------------------            
10854 F1  Show Help Text                         
10855 F3  Back to MAIN Alpine menu                 
10856 F4  Change configuration for directory server  
10857 F5  Move to previous directory server          
10858 F6  Move to next directory server              
10859 F7  Previous page of directory servers         
10860 F8  Next page of directory servers
10861 F9  Add new directory server
10862 F10 Delete existing directory server
10863 F11 Shuffle the order of directory servers
10864 F12 Whereis (search directory server titles)   
10865 </PRE>
10866 <!--chtml else-->
10867 <PRE>
10868 Navigation                     General Alpine Commands
10869 -------------------------      -----------------------
10870  P  Prev Directory Server         ?  Display this help text
10871  N  Next Directory Server         E  Back to MAIN Alpine menu
10872  -  Previous page
10873 Spc (space bar) Next page
10874  W  WhereIs (search for word in directory server titles)
10876 Setup LDAP Directory Server Commands
10877 ------------------------------------------------
10878  A  Add new directory server      $  Shuffle the order of directory servers
10879  D  Delete existing dir server    C  Change configuration for highlighted server
10880 </PRE>
10881 <!--chtml endif-->
10883 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10885 This screen lets you add, delete, modify, or change the order of your
10886 directory servers. You may also set some optional behavior for each server.
10887 The &quot;Add Dir&quot; command brings up a blank form to 
10888 fill in. You will have to supply at least the name of the LDAP server.
10889 You will often have to supply a search base to be used with that server,
10890 as well. Once the form has been brought up on your screen, there is help
10891 available for each of the options you may set.
10893 The &quot;Del Dir&quot; command allows you to remove a directory server
10894 from your configuration.
10896 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10897 The difference is that instead of bringing up a form for a new server
10898 configuration, you are changing the configuration of an existing entry.
10899 For example, you might want to correct a typing error, change a
10900 nickname, or change one of the options set for that server.
10902 The &quot;Shuffle&quot; command is used to change the order of directory
10903 servers.
10904 <P><UL>
10905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10906 </UL>
10908 &lt;End of help on this topic&gt;
10909 </BODY>
10910 </HTML>
10911 ============= h_address_display ========================
10912 <HTML>
10913 <HEAD>
10914 <TITLE>SEARCH RESULTS INDEX</TITLE>
10915 </HEAD>
10916 <BODY>
10917 <H1>SEARCH RESULTS INDEX</H1>
10918 This screen shows the results, if any, of your Directory Server search.  
10919 Commands (besides those for screen navigation) are:
10920 <DL>
10921 <DT>View
10922 <!--chtml if pinemode="function_key"-->
10923 (F4)
10924 <!--chtml else-->
10926 <!--chtml endif-->
10927 </DT>
10928 <DD>See the full information for the selected entry.
10930 <DT>Compose
10931 <!--chtml if pinemode="function_key"-->
10932 (F9)
10933 <!--chtml else-->
10935 <!--chtml endif--></DT>
10936 <DD>Compose a message with the selected entry as the recipient.
10938 <DT>Role
10939 <!--chtml if pinemode="function_key"-->
10940 (F2)
10941 <!--chtml else-->
10943 <!--chtml endif--></DT>
10944 <DD>Compose a message with the selected entry as the recipient. This differs
10945 from Compose in that you may select a role before beginning your composition.
10947 <DT>Forward
10948 <!--chtml if pinemode="function_key"-->
10949 (F10)
10950 <!--chtml else-->
10952 <!--chtml endif--></DT>
10953 <DD>Send the full information for the selected entry as an 
10954 email message to someone else.
10956 <DT>Save
10957 <!--chtml if pinemode="function_key"-->
10958 (F11)
10959 <!--chtml else-->
10961 <!--chtml endif-->
10962 </DT>
10963 <DD>Save to your address book:
10964 <UL>
10965 <LI>the result of the search (as just found through your query) for the 
10966 selected entry; or 
10967 <LI>the selected entry for repeated Directory Server searching when used 
10968 in the future.
10969 </UL>
10970 or<BR>
10971 Export to a file (external to Alpine):
10972 <UL>
10973 <LI>the full information for the selected entry; or
10974 <LI>the email address from the selected entry; or
10975 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10976 </UL>
10977 <DT>WhereIs
10978 <!--chtml if pinemode="function_key"-->
10979 (F12)
10980 <!--chtml else-->
10982 <!--chtml endif-->
10983 </DT>
10984 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10985 displayed text, not the full records for each entry.)  
10986 </DL>
10987 &lt;End of help on this topic&gt;
10988 </BODY>
10989 </HTML>
10990 ============= h_address_select ========================
10991 <HTML>
10992 <HEAD>
10993 <TITLE>SEARCH RESULTS INDEX</TITLE>
10994 </HEAD>
10995 <BODY>
10996 <H1>SEARCH RESULTS INDEX</H1>
10997 This screen shows the results, if any, of your Directory Server search.  
10998 Commands (besides those for screen navigation) are:
10999 <DL>
11000 <DT>Select
11001 </DT>
11002 <DD>Select this entry for use.
11004 <DT>ExitSelect
11005 <DD>Exit without selecting any of the entries.
11007 <DT>WhereIs
11008 </DT>
11009 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11010 displayed text, not the full records for each entry.)  
11011 </DL>
11012 &lt;End of help on this topic&gt;
11013 </BODY>
11014 </HTML>
11015 ===== h_folder_maint =====
11016 <HTML>
11017 <HEAD>
11018 <TITLE>Help for Folder List</TITLE>
11019 </HEAD>
11020 <BODY>
11021 <H1>FOLDER LIST COMMANDS</H1>
11022 <!--chtml if pinemode="function_key"-->
11023 <PRE>
11024 Available Commands -- Group 1        Available Commands -- Group 2
11025 -------------------------------      ------------------------------
11026 F1  Show Help Text                    F1  Show Help Text               
11027 F2  See commands in next group        F2  See commands in next group  
11028 F3  MAIN MENU Screen                  F3  Quit Alpine                    
11029 F4  Select folder and view it         F4  MAIN MENU Screen
11030 F5  Move to previous folder
11031 F6  Move to next folder               F6  Specify a folder to go to
11032 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
11033 F8  Show next screen of listing       F8  Compose a message
11034 F9  Add a new folder                  F9  Print folder listing
11035 F10 Delete selected folder
11036 F11 Rename selected folder
11037 F12 Whereis (search folder names)
11039 Available Commands -- Group 3
11040 F1  Show Help Text
11041 F2  See commands in next group
11042 F5  Go to next new message
11043     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
11044 F8  Compose a message using roles
11045 F9  Export folder to a file
11046 F10 Import the file back to a folder
11047 </PRE>
11048 <!--chtml else-->
11049 <PRE>
11050 Navigating the Folder Screen            Operations on the Selected Folder
11051 ----------------------------            ---------------------------------
11052  P   Move to previous folder              V  View Index of selected folder
11053  N   Move to next folder                  D  Delete
11054  -   Show previous page of listing        R  Rename
11055 Spc  (space bar) Show next page           E  Export to file
11056                                           U  Import from file to folder
11058 FOLDER LIST Screen Commands              General Alpine Command
11059 ---------------------------              -----------------------
11060  A  Add a folder                          O  Show all other available commands
11061  G  Specify a folder to go to             ?  Show Help text
11062  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11063  W  Whereis (search folder names)         Q  Quit Alpine
11064  %  Print folder listing                  C  Compose a message
11065                                           #  Compose a message using roles
11066 </PRE>
11067 <!--chtml endif-->
11069 These commands are only available in the FOLDER LIST screen when the 
11070 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11071 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11072 <DT>Select:</DT>
11073 <DD>Select folders by certain criteria:<UL>
11074 <LI>All: of limited use, since there is no Apply command.
11075 <LI>by Property: <UL>
11076         <LI>folder contains messages not yet seen 
11077         <LI>folder contains new messages
11078         <LI>folder contains exactly as many, more, or fewer messages 
11079 than a given number
11080         </UL>
11081 <LI>by Text: <UL>
11082         <LI>contained in name of folder (Name Select)
11083         <LI>contained in messages in folder (Content Select)
11084         </UL>
11085 </UL></DD>
11087 <DT>Select current:</DT>
11088 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11089 add one or more folders to a set created with the Select command described 
11090 above.)</DD>
11091 <DT>Zoom mode:</DT>
11092 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11093 </DL>
11095 If the feature
11096 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11097 is set then the TAB key will display the number of recent messages and
11098 the total number of messages in the highlighted folder.
11100 The &quot;Export&quot; command causes the lowest common denominator style
11101 mailbox to be written to a file.
11102 If the file already exists, you are asked if you want to delete it.
11103 If you say No, then the operation is aborted.
11104 Export might be a reasonable way to store a backup or an archival copy of
11105 a folder.
11106 The exported-to file is a local file on the system where you are running Alpine.
11107 The &quot;Import&quot; command is the opposite of the Export command.
11108 It reads a file created by Export and asks where it should save it in your
11109 folders.
11110 This could be a new folder or an existing folder.
11111 If the folder already exists, the messages from the exported file will be
11112 appended to the folder.
11114 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11116 The purpose of the FOLDER LIST screen is to help you browse and manage
11117 the folders and directories (also known as &quot;hierarchy&quot;)
11118 contained within a collection.
11121 Folders and directories are arranged alphabetically across lines of
11122 the screen.  Directories, if present, are denoted by a special
11123 character at the end of the name known as the hierarchy delimiter
11124 (typically, &quot;/&quot;).  By default, folders and directories are
11125 mixed together.  The
11126 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11127 configuration option can be used to group directories toward the 
11128 beginning or end of the list.
11131 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11132 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11133 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11134 selected item.  Folder and directory management is provided via the
11135 Rename, Delete and Add commands.
11137 <P><CENTER>About Folders</CENTER>
11138 What are Folders?<P>
11140 Folders are simply files where messages are kept.  Every message has to be
11141 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11142 folder for sent mail and a folder for saved messages.<P>
11144 You may create as many other folders as you wish.  They must be given
11145 names that can be filenames on the filesystem.  
11148 You can move messages from one folder to another by opening the original
11149 folder and saving messages into the other folder just as you can save
11150 message from your INBOX to any other folder.<P>
11152 Folders are typically just files in the filesystem.  However, the files
11153 that are
11154 folders have some special formatting in them (so that Alpine knows where one
11155 message ends and another begins) and should <EM>not</EM> be edited outside of
11156 Alpine.  If you want copies of your messages in text files that you can edit
11157 or otherwise manipulate, use the Export command to copy them from Alpine into
11158 your regular file area.
11161 FOR MORE INFORMATION: See the section on
11162 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11164 <CENTER>About Directories</CENTER>
11166 A directory is simply a container used to group folders within a
11167 folder list.  You can create as many directories as you like.  And 
11168 directories can even contain directories themselves.
11171 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11172 to note that not all IMAP servers support directories.  If you find that
11173 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11174 then it's likely that directories are not supported by the server serving
11175 in that collection.
11178 Similarly, servers that do provide for directories may not do so in
11179 the same way.  On some servers, for example, each folder name you
11180 create is at the same time capable of being a directory.  When this
11181 happens, Alpine will display both the folder name and the name of the
11182 directory (with trailing hierarchy delimiter) in the folder list.
11185 Another issue with IMAP access, though with a much smaller set of servers,
11186 is that not all servers accept the request to list out the available
11187 folders and directories in the same way.  If you find yourself having
11188 trouble viewing folders on your server, you might investigate the
11189 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11190 feature.
11192 <UL>
11193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11194 </UL>
11196 &lt;End of help on this topic&gt;
11197 </BODY>
11198 </HTML>
11199 ========= h_valid_folder_names ========
11200 <HTML>
11201 <HEAD>
11202 <TITLE>Explanation of Valid Folder Names</TITLE>
11203 </HEAD>
11204 <BODY>
11205 <H1>Folder Name Syntax Explained</H1>
11207 Once your folder collections are defined, you can usually refer to
11208 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11209 display.  However, understanding the complete syntax for folder names,
11210 both local and remote, is handy when using the Goto command and when
11211 you are adding new folder collections via the Setups/collectionList screen.
11213 An Alpine folder name looks like
11216 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11219 The square brackets ([]) mean that the part is optional.
11222 If there is no remote-specification, then the folder name is interpreted
11223 locally on the computer running Alpine.
11224 Local folder names depend on the operating system used by the computer 
11225 running Alpine, as well as the configuration of that system.  For example,
11226 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11227 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11228 system running Unix.
11231 Alpine users have the option of using folders that are stored on some other
11232 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11233 Access Protocol), or in the case of news, via NNTP (the Network News
11234 Transport Protocol).  To be able to access remote folders in Alpine, the
11235 remote host must be running the appropriate server software (imapd or
11236 nntpd) and you must correctly specify the name of the folder to Alpine,
11237 including the domain name of the remote machine. For example,
11239 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11241 could be a remote folder specification, and so could
11243 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11246 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11248 Note that in the case of remote folders, the directory/file path in the specification is 
11249 determined by the operating system of the remote computer, <B>not</B> by
11250 the operating system of the computer on which you are running Alpine.
11252 As you can tell, the name of the computer is in &#123;} brackets
11253 followed immediately by the name of the folder.  (In each of these cases the
11254 optional namespace is missing.)  If, as in these
11255 examples, there is no remote access protocol specified, then IMAP is
11256 assumed.  Check
11257 <A HREF="h_folder_server_syntax">here</A>
11258 for a more detailed look at what options can be placed between the brackets.
11259 If there are no brackets at all, then the folder name is interpreted locally
11260 on the computer on which you are running Alpine.
11263 To the right of the brackets when a server name is present, or at the
11264 start of the foldername if no server is present, the sharp sign,
11265 &quot;#&quot;, holds special meaning.  It indicates a folder name
11266 outside the area reserved for your personal folders.  In fact, it's
11267 used to indicate both the name of the folder, and a special phrase
11268 telling Alpine how to interpret the name that follows.
11271 So, for example, Alpine can be used to access a newsgroup that might be 
11272 available on your computer using:
11274 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11276 The sharp sign indicates the folder name is outside your personal
11277 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11278 interpret the remainder of the name as a newsgroup.
11281 Similarly, to access a newsgroup on your IMAP server, you might
11282 use something like:
11284 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11287 There are a number of such special phrases (or &quot;namespaces&quot;)
11288 available.  For a more detailed explanation read about
11289 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11292 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11293 names.  The name INBOX refers to your &quot;principal incoming
11294 message folder&quot; and will be mapped to the actual file name used for your
11295 INBOX on any given host.  Therefore, a name like
11296 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11297 store incoming mail for you on that particular host.
11300 &lt;End of help on this topic&gt;
11301 </BODY>
11302 </HTML>
11303 ======= h_folder_name_namespaces =======
11304 <HTML>
11305 <HEAD>
11306 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11307 </HEAD>
11308 <BODY>
11309 <H1>Folder Name Namespaces Explained</H1>
11311 An Alpine folder name looks like
11314 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11317 The local part of a folder name has an optional &quot;Namespace&quot; which
11318 tells Alpine how to interpret the rest of the name.
11320 <P> 
11321 By default the folder name is interpreted as defining a section of your personal
11322 folder area.  This area and how you specify it are defined by the
11323 server, if one is specified, or, typically, the home
11324 directory, if no server is defined.
11327 If a namespace is specified, it begins with the
11328 sharp, &quot;#&quot;, character followed by the name of the namespace
11329 and then the namespace's path-element-delimiter.  Aside from the
11330 path's format, namespaces can also imply access rights, content
11331 policy, audience, location, and, occasionally, access methods.
11334 Each server exports its own set (possibly of size one) of 
11335 namespaces.  Hence, it's likely communication with your server's
11336 administrator will be required for specific configurations.  Some of
11337 the more common namespaces, however, include:
11339 <DL>
11340 <DT>#news.</DT>
11341 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11342 names are hierarchically defined with each level delimited by a period.
11344 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11346 </DD>
11347 <DT>#public/</DT>
11348 <DD>This specifies a folder area that the server may export to the general
11349 public.
11350 </DD>
11351 <DT>#shared/</DT>
11352 <DD>This specifies a folder area that the server may export to groups
11353 of users.
11354 </DD>
11355 <DT>#ftp/</DT>
11356 <DD>This specifies a folder area that is the same as that it may have 
11357 exported via the &quot;File Transfer Protocol&quot;.
11358 </DD>
11359 <DT>#mh/</DT>
11360 <DD>This specifies the personal folder area associated with folders
11361 and directories that were created using the MH message handling system.
11362 </DD>
11363 <DT>#move/</DT>
11364 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11366 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11368 The #move namespace is followed by two folder names separated by a delimiter
11369 character.
11370 The delimiter character may be any character that does not appear in
11371 the MailDropFolder name.
11372 The meaning of #move is that mail will be copied from the MailDropFolder to
11373 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11374 Periodic checks at frequency
11375 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11376 time between checks set by
11377 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11378 are made for new mail arriving in the MailDropFolder.
11379 An example that copies mail from a POP inbox to a local folder follows
11381 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11383 To you it appears that mail is being delivered to the local folder when it
11384 is copied from the MailDropFolder, and you read mail from the local folder.
11386 Note that if the DestinationFolder does not exist then the messages are not
11387 copied from the MailDropFolder.
11388 A #move folder may only be used as an
11389 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11390 an Inbox.
11391 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11392 on the
11393 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11394 option)
11395 the Add command has a subcommand &quot;Use Mail Drop&quot;
11396 which may be helpful for defining the folder in your Alpine configuration.
11397 The same is true when you edit the
11398 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11399 option in Setup/Config.
11400 Each of these configuration methods will also create the DestinationFolder
11401 if it doesn't already exist.
11402 If you are having problems, make sure the DestinationFolder exists.
11403 You may find some more useful information about Mail Drops at
11404 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11405 </DD>
11406 </DL>
11409 In addition, the server may support access to other user's folders,
11410 provided you have suitable permissions.  Common methods use a prefix
11411 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11412 indicate the root of the other user's folder area.
11415 No, nothing's simple.
11418 &lt;End of help on this topic&gt;
11419 </BODY>
11420 </HTML>
11421 ============= h_whatis_vcard ========================
11422 <HTML>
11423 <HEAD>
11424 <TITLE>VCARD EXPLAINED</TITLE>
11425 </HEAD>
11426 <BODY>
11427 <H1>What is the vCard format?</H1>
11428 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11429 information about and among people and organizations electronically.  
11430 More information about vCard can be found (as of May 1998) on the WWW site 
11431 of the Internet Mail Consortium at the URL:
11433 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11435 &lt;End of help on this topic&gt;
11436 </BODY>
11437 </HTML>
11438 ===== h_folder_open =====
11439 <HTML>
11440 <HEAD>
11441 <TITLE>Explanation of Folder Selection</TITLE>
11442 </HEAD>
11443 <BODY>
11444 <BR>
11445 <BR>
11446 This screen is designed to allow you to quickly and easily survey your
11447 folders and select one to open.
11448 <!--chtml if pinemode="function_key"-->
11449 <PRE>
11450 Navigating the List of Folders             General Alpine Commands
11451 ------------------------------             -----------------------
11452  P   Move to previous folder               ?   Show this help text
11453  N   Move to next folder
11454  -   Show previous screen of folders
11455 Spc  (space bar) Show next screen
11456  W   WhereIs (search folder names)
11458 Folder Selection Commands
11459 -------------------------
11460  E   Exit the Folder Select menu (without selecting a folder)
11461  S   Select the currently highlighted folder
11462 </PRE>
11463 <!--chtml else-->
11464 <PRE>
11465 Navigating the List of Folders             General Alpine Commands
11466 ------------------------------             -----------------------
11467 F5   Move to previous folder               F1  Show this help text
11468 F6   Move to next folder
11469 F7   Show previous screen of folders
11470 F8   Show next screen of folders
11471 F12  WhereIs (search folder names)
11473 Folder Selection Commands
11474 -------------------------
11475 F3   Exit the Folder Select menu (without selecting a folder)
11476 F4   Select the currently highlighted folder
11477 </PRE>
11478 <!--chtml endif-->
11480 FOR MORE INFORMATION: See the section on
11481 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11483 &lt;End of help on this topic&gt;
11484 </BODY>
11485 </HTML>
11486 ===== h_folder_subscribe =====
11487 <HTML>
11488 <HEAD>
11489 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11490 </HEAD>
11491 <BODY>
11492 <H1>FOLDER SUBSCRIBE HELP</H1>
11494 This screen is designed to help you subscribe to newsgroups you are
11495 not currently subscribed to.  The screen display is a list of all
11496 available newsgroups (or possibly a partial list if you specified a
11497 partial name when entering the screen).  Groups you have already
11498 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11499 select a single new group to subscribe to by moving the cursor to that
11500 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11501 you may change into ListMode with the &quot;ListMode&quot; command.
11502 The display will change slightly so that each group has a checkbox in
11503 front of it.  Use the cursor and the Set/Unset command to place an
11504 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11507 When you are finished marking groups, the &quot;Subscribe&quot;
11508 command will subscribe you to those groups you have marked.  Note, you
11509 may not unsubscribe to groups with this command.  Instead of the
11510 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11511 UnSbscrbe command.
11514 <!--chtml if pinemode="function_key"-->
11515 <PRE>
11516 Navigating the List of Newsgroups          General Alpine Commands
11517 ---------------------------------          -----------------------
11518 F5   Move to previous group                F1   Show this help text
11519 F6   Move to next group
11520 F7   Show previous screen of groups
11521 F8   Show next screen of groups
11522 F12  WhereIs (search group names)
11523 F9   Use ListMode
11525 Group Selection Commands
11526 -------------------------
11527 F3  Exit the News Subscribe menu (without selecting any groups)
11528 F4  Subscribe to the currently highlighted newsgroup
11529 </PRE>
11530 <!--chtml else-->
11531 <PRE>
11532 Navigating the List of Newsgroups          General Alpine Commands
11533 ---------------------------------          -----------------------
11534  P   Move to previous group                ?   Show this help text
11535  N   Move to next group
11536  -   Show previous screen of groups
11537 Spc  (space bar) Show next screen
11538  W   WhereIs (search group names)
11539  L   Use ListMode
11541 Group Selection Commands
11542 -------------------------
11543  E   Exit the News Subscribe menu (without selecting any groups)
11544  S   Subscribe to the currently highlighted newsgroup
11545 </PRE>
11546 <!--chtml endif-->
11548 When in ListMode, there is an additional command for marking groups to
11549 subscribe to:
11551 <!--chtml if pinemode="function_key"-->
11552 <PRE>
11553 ListMode Commands
11554 -------------------------
11555 F9  Set or unset the highlighted group
11556 </PRE>
11557 <!--chtml else-->
11558 <PRE>
11559 ListMode Commands
11560 -------------------------
11561 X   Set or unset the highlighted group
11562 </PRE>
11563 <!--chtml endif-->
11565 &lt;End of help on this topic&gt;
11566 </BODY>
11567 </HTML>
11568 ===== h_folder_postnews =====
11569 <HTML>
11570 <HEAD>
11571 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11572 </HEAD>
11573 <BODY>
11574 This screen is designed to allow you to quickly and easily survey
11575 the available newsgroups and select one to post news to.
11577 <!--chtml if pinemode="function_key"-->
11578 <PRE>
11579 Navigating the List of Newsgroups          General Alpine Commands
11580 ---------------------------------          -----------------------
11581 F5   Move to previous group                F1  Show this help text
11582 F6   Move to next group
11583 F7   Show previous screen of groups
11584 F8   Show next screen of groups
11585 F12  WhereIs (search group names)
11587 Group Selection Commands
11588 -------------------------
11589 F3   Exit the Selection menu (without selecting a group)
11590 F4   Select the currently highlighted newsgroup
11591 </PRE>
11592 <!--chtml else-->
11593 <PRE>
11594 Navigating the List of Newsgroups          General Alpine Commands
11595 ---------------------------------          -----------------------
11596  P   Move to previous group                ?  Show this help text
11597  N   Move to next group
11598  -   Show previous screen of groups
11599 Spc  (space bar) Show next screen of groups
11600  W   WhereIs (search group names)
11602 Group Selection Commands
11603 -------------------------
11604  E   Exit the Selection menu (without selecting a group)
11605  S   Select the currently highlighted newsgroup
11606 </PRE>
11607 <!--chtml endif-->
11609 &lt;End of help on this topic&gt;
11610 </BODY>
11611 </HTML>
11612 ===== h_folder_save =====
11613 <HTML>
11614 <HEAD>
11615 <TITLE>Folder Select for Save Explained</TITLE>
11616 </HEAD>
11617 <BODY>
11618 This screen is designed to allow you to quickly and easily survey your
11619 folders and select one to use for saving the current message.
11622 <!--chtml if pinemode="function_key"-->
11623 <PRE>
11624 Navigating the List of Folders             General Alpine Commands
11625 ------------------------------             -----------------------
11626 F5   Move to previous folder               F1  Show this help text
11627 F6   Move to next folder
11628 F7   Show previous screen of folders
11629 F8   Show next screen of folders
11630 F12  WhereIs (search folder names)
11632 Folder Selection Commands
11633 -------------------------
11634 F3   Exit the Folder Select menu (without selecting a folder)
11635 F4   Select the currently highlighted folder
11636 F11  AddNew folder (just like Select, but you type in a new folder name)
11637 </PRE>
11638 <!--chtml else-->
11639 <PRE>
11640 Navigating the List of Folders             General Alpine Commands
11641 ------------------------------             -----------------------
11642  P   Move to previous folder               ?  Show this help text
11643  N   Move to next folder
11644  -   Show previous screen of folders
11645 Spc  (space bar) Show next screen of folders
11646  W   WhereIs (search folder names)
11648 Folder Selection Commands
11649 -------------------------
11650  E   Exit the Folder Select menu (without selecting a folder)
11651  S   Select the currently highlighted folder
11652  A   AddNew folder (just like Select, but you type in a new folder name)
11653 </PRE>
11654 <!--chtml endif-->
11656 FOR MORE INFORMATION: See the section on
11657 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11659 &lt;End of help on this topic&gt;
11660 </BODY>
11661 </HTML>
11662 ===== h_folder_fcc =====
11663 <HTML>
11664 <HEAD>
11665 <TITLE>Folder Select for Fcc Explained</TITLE>
11666 </HEAD>
11667 <BODY>
11668 This screen is designed to allow you to quickly and easily survey your
11669 folders and select one to use as the file carbon copy (fcc) for the
11670 current message.
11673 <!--chtml if pinemode="function_key"-->
11674 <PRE>
11675 Navigating the List of Folders             General Alpine Commands
11676 ------------------------------             -----------------------
11677 F5   Move to previous folder               F1  Show this help text
11678 F6   Move to next folder
11679 F7   Show previous screen of folders
11680 F8   Show next screen of folders
11681 F12  WhereIs (search folder names)
11683 Folder Selection Commands
11684 -------------------------
11685 F3   Exit the Folder Select menu (without selecting a folder)
11686 F4   Select the currently highlighted folder
11687 F11  AddNew folder (just like Select, but you type in a new folder name)
11688 </PRE>
11689 <!--chtml else-->
11690 <PRE>
11691 Navigating the List of Folders             General Alpine Commands
11692 ------------------------------             -----------------------
11693  P   Move to previous folder               ?  Show this help text
11694  N   Move to next folder
11695  -   Show previous screen of folders
11696 Spc  (space bar) Show next screen of folders
11697  W   WhereIs (search folder names)
11699 Folder Selection Commands
11700 -------------------------
11701  E   Exit the Folder Select menu (without selecting a folder)
11702  S   Select the currently highlighted folder
11703  A   AddNew folder (just like Select, but you type in a new folder name)
11704 </PRE>
11705 <!--chtml endif-->
11707 FOR MORE INFORMATION: See the section on
11708 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11710 &lt;End of help on this topic&gt;
11711 </BODY>
11712 </HTML>
11713 ===== h_folder_pattern_roles =====
11714 <HTML>
11715 <HEAD>
11716 <TITLE>Folder Select for Current Folder Explained</TITLE>
11717 </HEAD>
11718 <BODY>
11719 This screen is designed to allow you to quickly and easily survey your
11720 folders and select one to use as the specific Current Folder
11721 in a Pattern.
11724 <!--chtml if pinemode="function_key"-->
11725 <PRE>
11726 Navigating the List of Folders             General Alpine Commands
11727 ------------------------------             -----------------------
11728 F5   Move to previous folder               F1  Show this help text
11729 F6   Move to next folder
11730 F7   Show previous screen of folders
11731 F8   Show next screen of folders
11732 F12  WhereIs (search folder names)
11734 Folder Selection Commands
11735 -------------------------
11736 F3   Exit the Folder Select menu (without selecting a folder)
11737 F4   Select the currently highlighted folder
11738 F11  AddNew folder (just like Select, but you type in a new folder name)
11739 </PRE>
11740 <!--chtml else-->
11741 <PRE>
11742 Navigating the List of Folders             General Alpine Commands
11743 ------------------------------             -----------------------
11744  P   Move to previous folder               ?  Show this help text
11745  N   Move to next folder
11746  -   Show previous screen of folders
11747 Spc  (space bar) Show next screen of folders
11748  W   WhereIs (search folder names)
11750 Folder Selection Commands
11751 -------------------------
11752  E   Exit the Folder Select menu (without selecting a folder)
11753  S   Select the currently highlighted folder
11754  A   AddNew folder (just like Select, but you type in a new folder name)
11755 </PRE>
11756 <!--chtml endif-->
11758 FOR MORE INFORMATION: See the section on
11759 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11761 &lt;End of help on this topic&gt;
11762 </BODY>
11763 </HTML>
11764 ===== h_folder_stayopen_folders =====
11765 <HTML>
11766 <HEAD>
11767 <TITLE>Folder Select Explained</TITLE>
11768 </HEAD>
11769 <BODY>
11770 This screen is designed to allow you to quickly and easily survey your
11771 folders and select one to use as a Stay-Open folder.
11774 <!--chtml if pinemode="function_key"-->
11775 <PRE>
11776 Navigating the List of Folders             General Alpine Commands
11777 ------------------------------             -----------------------
11778 F5   Move to previous folder               F1  Show this help text
11779 F6   Move to next folder
11780 F7   Show previous screen of folders
11781 F8   Show next screen of folders
11782 F12  WhereIs (search folder names)
11784 Folder Selection Commands
11785 -------------------------
11786 F3   Exit the Folder Select menu (without selecting a folder)
11787 F4   Select the currently highlighted folder
11788 F11  AddNew folder (just like Select, but you type in a new folder name)
11789 </PRE>
11790 <!--chtml else-->
11791 <PRE>
11792 Navigating the List of Folders             General Alpine Commands
11793 ------------------------------             -----------------------
11794  P   Move to previous folder               ?  Show this help text
11795  N   Move to next folder
11796  -   Show previous screen of folders
11797 Spc  (space bar) Show next screen of folders
11798  W   WhereIs (search folder names)
11800 Folder Selection Commands
11801 -------------------------
11802  E   Exit the Folder Select menu (without selecting a folder)
11803  S   Select the currently highlighted folder
11804  A   AddNew folder (just like Select, but you type in a new folder name)
11805 </PRE>
11806 <!--chtml endif-->
11808 FOR MORE INFORMATION: See the section on
11809 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11811 &lt;End of help on this topic&gt;
11812 </BODY>
11813 </HTML>
11814 ===== h_folder_action_roles =====
11815 <HTML>
11816 <HEAD>
11817 <TITLE>Folder Select Explained</TITLE>
11818 </HEAD>
11819 <BODY>
11820 This screen is designed to allow you to quickly and easily survey your
11821 folders and select one to use as the folder into which messages
11822 matching this filter will be moved.
11825 <!--chtml if pinemode="function_key"-->
11826 <PRE>
11827 Navigating the List of Folders             General Alpine Commands
11828 ------------------------------             -----------------------
11829 F5   Move to previous folder               F1  Show this help text
11830 F6   Move to next folder
11831 F7   Show previous screen of folders
11832 F8   Show next screen of folders
11833 F12  WhereIs (search folder names)
11835 Folder Selection Commands
11836 -------------------------
11837 F3   Exit the Folder Select menu (without selecting a folder)
11838 F4   Select the currently highlighted folder
11839 F11  AddNew folder (just like Select, but you type in a new folder name)
11840 </PRE>
11841 <!--chtml else-->
11842 <PRE>
11843 Navigating the List of Folders             General Alpine Commands
11844 ------------------------------             -----------------------
11845  P   Move to previous folder               ?  Show this help text
11846  N   Move to next folder
11847  -   Show previous screen of folders
11848 Spc  (space bar) Show next screen of folders
11849  W   WhereIs (search folder names)
11851 Folder Selection Commands
11852 -------------------------
11853  E   Exit the Folder Select menu (without selecting a folder)
11854  S   Select the currently highlighted folder
11855  A   AddNew folder (just like Select, but you type in a new folder name)
11856 </PRE>
11857 <!--chtml endif-->
11859 FOR MORE INFORMATION: See the section on
11860 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11862 &lt;End of help on this topic&gt;
11863 </BODY>
11864 </HTML>
11865 ===== h_abook_config =====
11866 <HTML>
11867 <HEAD>
11868 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11869 </HEAD>
11870 <BODY>
11871 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11872 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11873 <!--chtml if pinemode="function_key"-->
11874 <PRE>
11875 Available  Commands                        
11876 -------------------------------            
11877 F1  Show Help Text                         
11878 F3  Back to MAIN Alpine menu                 
11879 F4  Change configuration for address book  
11880 F5  Move to previous address book          
11881 F6  Move to next address book              
11882 F7  Previous page of address books         
11883 F8  Next page of address books             
11884 F9  Add new address book                   
11885 F10 Delete existing address book           
11886 F11 Shuffle the order of address books     
11887 F12 Whereis (search address book titles)   
11888 </PRE>
11889 <!--chtml else-->
11890 <PRE>
11891 Navigation                     General Alpine Commands
11892 -----------------------        -----------------------
11893  P  Prev Address Book           ?  Display this help text
11894  N  Next Address Book           E  Back to MAIN Alpine menu
11895  -  Previous page
11896 Spc (space bar) Next page
11897  W  WhereIs (search for word in address book titles)
11899 Setup Address Books Commands
11900 ------------------------------------------------
11901  A  Add new address book          $  Shuffle the order of address books
11902  D  Delete existing address book  C  Change configuration for address book
11903 </PRE>
11904 <!--chtml endif-->
11906 <H2>Description of the Setup Address Books Screen</H2>
11908 This screen lets you add, delete, modify, or change the order of your
11909 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11910 fill in.  If you are adding a remote address book on an IMAP server
11911 you should fill in the name of the IMAP server.  Otherwise, leave
11912 that field blank.  (Note that remote IMAP address books are an Alpine
11913 concept and are unlikely to interoperate with other mail clients.)
11914 For a remote address book, fill in the name of the remote folder
11915 in the Folder field.  This should be a folder that is used only for
11916 this one purpose, not a general purpose folder you expect to store
11917 messages in.
11918 <P>If you are adding a local address book, fill in the
11919 Folder Name field with a local file name (e.g., .addressbook).
11921 <B>Please note:</B> Remote address books stored on an IMAP server are 
11922 of an entirely different format (namely, a special-purpose 
11923 &quot;mail folder&quot;) than that of the local addressbook familiar 
11924 to Alpine users.  Therefore, 
11925 you cannot use &quot;add a remote address book&quot; to make an existing 
11926 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11927 Alpine running on a different host.  
11930 The &quot;Del Abook&quot; command allows you to remove an address book
11931 from your configuration.  It will also ask you if you wish to remove
11932 the data for that address book, which would erase all traces of the
11933 address book if you answer Yes.
11936 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11937 The difference is that instead of adding a new address book to your
11938 configuration, you are changing the configuration of an existing entry.
11939 For example, you might want to correct a typing error or change a
11940 nickname.  The &quot;Change&quot; command is not a move command.  If you
11941 change the folder name or server name the data will not be moved for you.
11944 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11945 an address book toward another address book in the same group then
11946 the order of those two address books will be swapped.  If you shuffle
11947 the last Personal address book down towards the Global address book
11948 section, it will become a Global address book.  If you shuffle
11949 the first Global address book up it will become a Personal address
11950 book.  The main difference between Personal and Global address
11951 books is that Global address books are forced read-only.
11952 <P><UL>
11953 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11954 </UL>
11956 &lt;End of help on this topic&gt;
11957 </BODY>
11958 </HTML>
11959 ===== h_abook_top =====
11960 <HTML>
11961 <HEAD>
11962 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11963 </HEAD>
11964 <BODY>
11965 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11966 <!--chtml if pinemode="function_key"-->
11967 <PRE>
11968 Available  Commands -- Group 1         Available Commands -- Group 2
11969 -------------------------------        ------------------------------
11970 F1  Show Help Text                      F1  Show Help Text
11971 F2  See commands in next group          F2  See commands in next group
11972 F3  Exit to MAIN MENU                   F3  Quit Alpine
11973 F4  View/Edit selected address book
11974 F5  Move to previous address book       F5  FOLDER LIST screen
11975 F6  Move to next address book           F6  Specify a folder to go to
11976 F7  Previous page                       F7  MESSAGE INDEX screen
11977 F8  Next page                           F9  Print list of address books
11978 F12 Whereis (search for word)
11979 </PRE>
11980 <!--chtml else-->
11981 <PRE>
11982 Navigation                       General Alpine Commands
11983 -----------------------          -----------------------
11984  P  Previous Entry                ?  Display this help text
11985  N  Next Entry                    O  Show all other available commands
11986  -  Previous page                 &lt;  Back to MAIN Alpine menu
11987 Spc (space bar) Next page         Q  Quit Alpine
11988  W  WhereIs (search for word)     L  FOLDER LIST screen
11989                                   G  Specify a folder to go to
11990 Address Book Commands             I  MESSAGE INDEX screen
11991 ------------------------------------------------
11992  &gt;  View/Edit selected address book
11993               or
11994  &gt;  Search on selected directory server
11996  %  Print list of address books and directory servers
11997 </PRE>
11998 <!--chtml endif-->
12000 <H2>Description of the Address Book List Screen</H2>
12002 From this screen you may choose which address book you wish to view
12003 or edit. For more information on address books, view one of your
12004 address books (with
12005 <!--chtml if pinemode="function_key"-->
12007 <!--chtml else-->
12008 &quot;&gt;&quot;
12009 <!--chtml endif-->)
12010 and see the Help Text there.<P>
12012 You may also choose a directory server on which to search for entries.
12013 You do that by highlighting the directory server line and using
12014 <!--chtml if pinemode="function_key"-->
12016 <!--chtml else-->
12017 &quot;&gt;&quot;
12018 <!--chtml endif-->.<P>
12020 If you wish to define new address books or directory servers go to the Main
12021 menu and choose Setup. You may then either choose to setup AddressBooks or
12022 Directory (among other things). It's possible that the Directory option
12023 will not be there if the Alpine you are using does not contain LDAP directory
12024 lookup functionality.
12026 <P><UL>
12027 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12028 </UL><P>
12029 &lt;End of help on this topic&gt;
12030 </BODY>
12031 </HTML>
12032 ===== h_abook_opened =====
12033 <HTML>
12034 <HEAD>
12035 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
12036 </HEAD>
12037 <BODY>
12038 <H1>THE ALPINE ADDRESS BOOK</H1>
12039 <H2>ADDRESS BOOK COMMANDS</H2>
12040 <PRE>
12041 <!--chtml if pinemode="function_key"-->
12042 Available  Commands -- Group 1         Available Commands -- Group 2   
12043 -------------------------------        ------------------------------  
12044 F1  Show Help Text                      F1  Show Help Text             
12045 F2  See commands in next group          F2  See commands in next group
12046 F3  Exit this screen                    F3  Quit Alpine                  
12047 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
12048 F5  Move to previous entry              F5  FOLDER LIST screen         
12049 F6  Move to next entry                  F6  Specify a folder to go to  
12050 F7  Previous page of address book       F7  MESSAGE INDEX screen        
12051 F8  Next page of address book           F8  Compose to entry using roles
12052 F9  Add new entry to address book       F9  Print address book         
12053 F10 Delete selected entry               F10 TakeAddr to another addrbook
12054 F11 Compose to selected entry           F11 Save or Export addrbook selections
12055 F12 Whereis (search address book)       F12 Forward entry by mail       
12057 Available Commands -- Group 3                                           
12058 ------------------------------                                          
12059 F3  Select                              F6  Zoom (or unZoom)            
12060 F5  Select Current                      F7  Apply Command to Selection  
12061 <!--chtml else-->
12062 Address Book Navigation        General Alpine Commands
12063 -----------------------        -----------------------
12064  P  Prev Address                  ?  Display this help text
12065  N  Next Address                  O  Show all other available commands
12066  -  Previous page of address book M  Back to MAIN MENU
12067 Spc (space bar) Next page         Q  Quit Alpine
12068  W  WhereIs (search for word      C  Compose message to selected addr
12069      or name in address book)     #  Compose to addr using roles
12070  &lt;  To List of Address Books if   L  FOLDER LIST screen
12071      more than one, else to MAIN  G  Specify a folder to go to
12072                                   I  MESSAGE INDEX screen
12074 Address Book Commands
12075 ----------------------------------------------------
12076  &gt;  View/Update selected entry    D  Delete selected entries
12077  %  Print address book            S  Save or Export address book selections
12078  F  Forward entries by mail       @  Add new entry to address book
12080  ;  Select command                Z  Toggle Zoom Mode
12081  :  Select highlighted entry      A  Apply command to selected entries
12083 <!--chtml endif-->
12084 </PRE>
12085 Note:  The presence or absence of the final four commands above is
12086 controlled by the option 
12087 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12090 <H2>Description of the Address Book Screen</H2>
12092 This screen lets you edit and manage entries in your address book.  It
12093 also acts as a short-cut for composing messages to people in the address
12094 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12095 message starts &quot;pre-addressed&quot; to whatever address book entry is
12096 currently selected.  If you use the <!--chtml if pinemode="function_key"-->F8<!--chtml else-->&quot;#&quot;<!--chtml endif--> for Role, you may first select a
12097 role to use in your composition.
12099 Alpine's address book helps you keep a list of addresses you send email to so
12100 you do not have to remember addresses that are often complex.  Each entry
12101 in the address book has five fields, all of them optional.  The three
12102 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12104         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12105         This is what you type in as you are addressing the message in the
12106         composer.  If there is a matching entry in your address book(s),
12107         Alpine will extract the corresponding FullName and Address fields to
12108         generate the actual address for your message.
12110         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12111 of the
12112         person or organization.  Usually the full names are put in last
12113         name first so they sort nicely in alphabetical order.  Whatever
12114         you put as the name here will appear on the message when it is
12115         finally delivered.  Examples:<PRE>
12116            Garcia Marquez, Gabriel
12117            Henscheid, Eckhard
12118            Alpine-Info mailing list
12119            Library materials renewal requests
12120            Kim An-guk
12121            &quot;George III, King of Great Britain, 1738-1820&quot;
12122 </PRE>
12123 (In the second-to-last example, no comma is used in the name so that 
12124 the family name appears first in the address book and when the entry is 
12125 used in the composer.
12126 In the last example, retaining the commas is intended; 
12127 double-quotation marks surround the name to 
12128 prevent the transposition of its parts when the entry is used in 
12129 the composer.)
12131         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12132         a valid Internet address that conforms to the Internet message
12133         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12135 The two fields that aren't usually visible are:<DL>
12137   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12138         message to this address to be saved in.  If this field is set, and
12139         this address is the first one in the message's To: header, then
12140         Alpine will use this folder name for the FCC in lieu of the normal
12141         FCC folder name.
12143   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12144         </DL>
12146 Due to screen width limitations, these last two fields do not show up in
12147 the normal ADDRESS BOOK display.  You may select the 
12148 &quot;View/Update&quot; command to
12149 view or modify them.  You may use the configuration variable
12150 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12151 to add these fields to your ADDRESS BOOK 
12152 display, or to modify the format of the display.
12154 <H2>Sorting the Address book</H2>
12156 By default, address book entries are sorted alphabetically on the full
12157 name with distribution lists sorted to the end.  Sorting can be changed by
12158 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12159 --assuming you have &quot;write&quot; permission for the address book file.
12161 Unlike the sorting of folders (which only changes presentation), sorting an
12162 address book actually changes the file as it is kept on the computer.  For
12163 this reason you won't be able to sort a shared or system-wide address
12164 book.
12166 <H2>Adding New Entries</H2>
12168 The easiest way to add new entries to your address book is to use the
12169 &quot;TakeAddr&quot; command when viewing a message.
12170 This command allows you to take addresses from the header and body of the
12171 message and put them into your address book, without having to type
12172 them in.
12175 To manually add a new entry from within the address book screen, use the AddNew
12176 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12177 Use this command both for adding a simple alias and for adding a
12178 distribution list.
12180 <H2>Distribution Lists</H2>
12182 Address book entries can be simple cases of aliases (a single nickname is linked
12183 to a single email address) or distribution lists (a single nickname
12184 pointing at more than one email address).  Each distribution list has a
12185 nickname, a full name and a list of addresses.  The addresses may be
12186 actual addresses or they may be other nicknames in your address book.
12187 They may even refer to other distribution lists.
12188 There's really no difference between a simple alias and a distribution list,
12189 other than the number of addresses.
12190 Therefore, you can turn a simple alias with one address into a distribution
12191 list simply by adding more addresses.
12192 To add entries to an existing list or alias
12193 use the View/Update (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->&quot;&gt;&quot;<!--chtml endif-->) command.  Delete (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->&quot;D&quot;<!--chtml endif-->) will delete
12194 a single address from the list if the cursor is placed on the address;
12195 it will delete the entire distribution list if the cursor is on the
12196 nickname/fullname line.  View/Update may also be used to delete addresses
12197 from a list.
12199 Address field entries in distribution lists may take any one of three
12200 forms: a nickname existing in any of the defined address books, a normal
12201 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12202 fullname/address combination, e.g. &quot;John Smith
12203 &lt;jsmith@art.example.com&gt;&quot;.
12205 Distribution lists in Alpine address books can only be used by the person or
12206 people who have access to that address book.  They are not usually used to
12207 implement discussion groups, but can be used to facilitate small
12208 discussion groups if all the participants have access to the same shared
12209 address book.
12211 <H2>FCC and Comments</H2>
12213 As mentioned above, each entry in the address book also has two other optional
12214 fields, Fcc and Comments.  The command to look at or change either of these
12215 is the same View/Update command used for all of the fields (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->&quot;&gt;&quot;<!--chtml endif-->).  The
12216 Comments field is just for your own use.  The Fcc field overrides the
12217 default Fcc if this address is the first one on the To line.  The WhereIs
12218 command may be used to search for particular strings in the address book,
12219 including fields that are not visible (like Comment and Fcc by default).
12221 <H2>Aggregate Operations</H2>
12223 If the feature
12224 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12225 is turned on (the default), then the four commands &quot;Select&quot;,
12226 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12227 are available.  The two selection commands allow you to mark a set of
12228 address book entries as being selected.  If you have more than one address
12229 book, the selections may be in more than one of those address books.
12230 The &quot;Zoom&quot; command will toggle between displaying only the selected
12231 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12232 apply one of the regular address book commands to all of the selected
12233 entries.  Usually the address book commands apply to only the entry
12234 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12235 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12236 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12238 <H2>Exporting and Forwarding Address book entries</H2>
12240 Under the save option, when you use the Export (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;X&quot;<!--chtml endif-->) command, the currently highlighted
12241 address book entry is placed in a plain text file in your home directory
12242 <!--chtml if pinemode="running"-->
12243 (which, in the present configuration of your system, is
12244  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12245 <!--chtml endif-->
12246 or current working directory
12247 <!--chtml if pinemode="running"-->
12248 (which, at least for your current Alpine &quot;session,&quot; 
12249 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12250 <!--chtml endif-->, depending on the 
12251 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12252 configuration setting.  If you have some entries selected and use the
12253 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12254 placed in the text file.
12256 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12257 address book entry is placed in a special attachment and you are put into
12258 the composer.  You can fill in some comments in the body of the message,
12259 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12260 may use the TakeAddr command on that message to insert the address book
12261 entry you sent in their own address book.  If you have some entries
12262 selected and use the Apply Forward command all of the selected entries
12263 will be forwarded in a single message.  You may
12264 use Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Forward to forward a copy of an entire address book.
12265 The recipient must be using Alpine in order to receive this correctly.
12266 One way for the recipient to handle this might be to create an empty
12267 address book and then &quot;Take&quot; your forwarded address book entries into
12268 that empty address book.
12270 <H2>Multiple and/or Site-Wide Address books</H2>
12272 You may have more than one personal address book.  In addition, there may
12273 be one or more global address books.  This capability allows you to have
12274 multiple personal address books (some of which may be shared) and it also
12275 allows system administrators to implement site-wide address books that
12276 contain entries for users on multiple machines within the organization.
12277 <P><DL>
12278 <DT>Searching
12279   <DD> If you enter a nickname when composing a message, your
12280   personal address books will be searched through in order, and then the
12281   global address book(s) searched. If more than one address book has an entry
12282   for the nickname, Alpine uses the first one that it finds, so an entry in
12283   your personal address book would override a global address book entry. If
12284   after searching all the address books there is still no match, (Unix) Alpine
12285   then searches the local host password file on the assumption that you have
12286   entered a local user name rather than an address book nickname.
12287   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12288   command, but global address books are always searched after personal
12289   address books.
12291   <P><DT>Tab completion
12292   <DD> If the
12293   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12294   feature is turned on (the default) then the Tab key may be used
12295   in the composer to complete partially typed nicknames in the To
12296   or Cc lines. You type the first few letters of a nickname and then
12297   press the Tab key. It there is only one nickname that matches it will
12298   be filled in by Alpine. If there is more than one the unambiguous part
12299   of the nicknames will be filled in. For example, if your address book or
12300   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12301   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12302   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12303   If you then type a second Tab character you will be presented with a list
12304   of matching nicknames to select from. Alternatively, you could type another
12305   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12306   in the entire &quot;barbecue&quot; entry.
12308   <P><DT>Defining
12309   <DD> You define multiple personal address books in the 
12310   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12311   from the MAIN MENU.  
12312   You may add as many as you like.  Global address books are usually
12313   site-wide address books defined by the System administrator, but
12314   you may define global address books of your own just like you define
12315   personal address books.
12317   <P><DT>Creating and updating
12318   <DD> Personal address books are normally created empty
12319   and populated by explicit additions from within Alpine, e.g. via the
12320   TakeAddr command.  Unlike personal address books, global address books may
12321   not be modified/updated from within Alpine; that is, they are Read-Only.
12322   Thus, global address books are created, populated and updated outside of
12323   Alpine. They might be hand-edited, generated by a program from another
12324   database, or by copying an existing address book.  They might also be
12325   some other user's personal address book, and so be modified normally by
12326   that user but accessed Read-Only by you.  See the Alpine Technical
12327   Notes document (included in the Alpine distribution) for more information on
12328   this.
12330   <P><DT>Accessing
12331   <DD>There are two different types of address books in Alpine.
12332   A local address book is stored in a regular file and the normal file
12333   access permissions apply.  A remote address book is stored on an IMAP
12334   server in a special folder that contains only messages pertaining to
12335   that address book.  The last message in the remote folder contains a
12336   copy of the address book data, and that data is copied to a local cache
12337   file in your home directory.  From there it is accessed just like a local
12338   address book.  The name of the cache file is kept track of in a special
12339   file called the
12340   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12341   the name of which is stored in
12342   your Alpine configuration file the first time you use a remote address book.
12343   Just as local Alpine address books use a format that only Alpine understands,
12344   remote Alpine address books do the same and other mail reading programs
12345   are unlikely to be able to understand them.<P>
12346   While global address books are explicitly intended to be shared, there is
12347   nothing to prevent you from sharing a personal address book with other
12348   Alpine users. This might be useful in the case of a small workgroup.
12349   However, it is recommended that updates to shared personal address books
12350   be done when other Alpine users are not accessing the address book. Alpine
12351   does not do any file-locking to manage concurrent updates to the
12352   addressbook, but it does check to see if the file has been modified before
12353   making any changes.  Consequently, inadvertent concurrent updates will
12354   only cause other Alpine users to have to restart their address book
12355   operation, which will cause Alpine to reopen the updated file.
12357   <P><DT>Converting to Remote
12358   <DD>The easiest way to convert an existing local
12359   address book into a remote address book is to create an empty new remote
12360   personal address book by typing &quot;A&quot; to execute the
12361   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12362   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12363   address book.
12364   After you have added the empty
12365   remote address book, go into the screen for the address book you wish
12366   to copy and &quot;Select&quot; &quot;All&quot;.
12367   This selects every entry in that
12368   address book.  Then type the command &quot;Apply Save&quot;.
12369   You will be asked for the address book to save to.  You may use ^P and ^N
12370   to get to the new empty address book, then hit RETURN and the addresses
12371   will be copied.
12372   At this point you'll probably want to unselect all the entries in the local
12373   address book before proceeding. You do that with
12374   &quot;Select&quot; &quot;unselect All&quot;.
12376 </DL>
12377 <UL>
12378 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12379 </UL>
12380 <P><UL>
12381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12382 </UL>
12384 &lt;End of help on this topic&gt;
12385 </BODY>
12386 </HTML>
12387 ===== h_abook_select_addr =====
12388 <HTML>
12389 <HEAD>
12390 <TITLE>Addressbook Selection Explained</TITLE>
12391 </HEAD>
12392 <BODY>
12393 <H1>SELECT ADDRESS</H1>
12394 <!--chtml if pinemode="function_key"-->
12395 <PRE>
12396 Navigating the List of Messages               General Alpine Commands
12397 -------------------------------               -----------------------
12398 F5   Move to previous entry                   F1  Show this help text
12399 F6   Move to next entry
12400 F7   Show previous screen of address book
12401 F8   Show next screen of address book
12402 F12  WhereIs (search through address book)
12404 Address Selection Commands
12405 --------------------------
12406 F3   Exit the Address Select screen (without selecting an address)
12407 F4   Select the currently highlighted entry
12408 </PRE>
12409 <!--chtml else-->
12410 <PRE>
12411 Navigating the List of Messages               General Alpine Commands
12412 -------------------------------               -----------------------
12413  P   Move to previous entry                    ?  Show this help text
12414  N   Move to next entry
12415  -   Show previous screen of address book
12416 Spc  (space bar) Show next screen of address book
12417  W   WhereIs (search through address book)
12419 Address Selection Commands
12420 --------------------------
12421  E   Exit the Address Select screen (without selecting an address)
12422  S   Select the currently highlighted entry
12423 </PRE>
12424 <!--chtml endif-->
12427 This screen is designed to let you easily scan your address book(s) in
12428 order to select an entry for the message you are composing.  You cannot
12429 edit your address book in any way at this time, for address book
12430 maintenance, select the address book command when not composing a message.
12433 If you are composing a message and know the nickname of the person/list you
12434 want, you can bypass this screen by simply typing in the nickname on the
12435 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12436 selecting an entry does not cancel your message.
12439 FOR MORE INFORMATION on addressing see
12440 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12441 <A HREF="h_abook_opened">Address Book Screen's</A>
12442 help text.
12444 &lt;End of help on this topic&gt;
12445 </BODY>
12446 </HTML>
12447 ===== h_abook_select_top =====
12448 <HTML>
12449 <HEAD>
12450 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12451 </HEAD>
12452 <BODY>
12453 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12454 <!--chtml if pinemode="function_key"-->
12455 <PRE>
12456 Navigating the List of Address Books       General Alpine Commands
12457 ------------------------------------       -----------------------
12458 F4   View the highlighted address book
12459 F5   Move to previous address book         F1  Show this help text
12460 F6   Move to next address book
12461 F7   Show previous screen of address books
12462 F8   Show next screen of address books
12463 F12  WhereIs (search through address books)
12465 Address Selection Commands
12466 --------------------------
12467 F3   Exit the Address Select screen (without selecting an address)
12468 F4   Select the currently selected entries (if using ListMode)
12469 F9   Change to ListMode
12470 </PRE>
12471 <!--chtml else-->
12472 <PRE>
12473 Navigating the List of Address Books       General Alpine Commands
12474 ------------------------------------       -----------------------
12475  &gt;   View the highlighted address book
12476  P   Move to previous address book         ?  Show this help text
12477  N   Move to next address book
12478  -   Show previous screen of address books
12479 Spc  (space bar) Show next screen of address books
12480  W   WhereIs (search through address books)
12482 Address Selection Commands
12483 --------------------------
12484  E   Exit the Address Select screen (without selecting an address)
12485  S   Select the currently selected entries (if using ListMode)
12486  L   Change to ListMode
12487 </PRE>
12488 <!--chtml endif-->
12491 This screen is designed to let you easily scan your address book(s) in
12492 order to select entries for the message you are composing.  You cannot
12493 edit your address book in any way at this time.  For address book
12494 maintenance, select the address book command when not composing a message.
12497 If you are composing a message and know the nickname of the person/list you
12498 want, you can bypass this screen by simply typing in the nickname on the
12499 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12500 selecting an entry does not cancel your message.
12503 The ListMode command will add a column at the left edge of the screen.
12504 You mark the entries that you wish to select with the &quot;X&quot; command.
12505 This allows you to choose more than one entry at a time.
12508 An alternative method of composing a message to entries in your
12509 address book(s) is to first use the &quot;Select&quot; command from
12510 the address book maintenance screen and then the &quot;Apply&quot;
12511 &quot;ComposeTo&quot; command to start the composer composing to the
12512 selected entries.
12515 FOR MORE INFORMATION on addressing see
12516 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12517 <A HREF="h_abook_opened">Address Book Screen's</A>
12518 help text.
12520 &lt;End of help on this topic&gt;
12521 </BODY>
12522 </HTML>
12523 ===== h_abook_select_listmode =====
12524 <HTML>
12525 <HEAD>
12526 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12527 </HEAD>
12528 <BODY>
12529 <H1>COMPOSER: SELECT ADDRESSES</H1>
12530 <!--chtml if pinemode="function_key"-->
12531 <PRE>
12532 Navigating the List of Messages                 General Alpine Commands
12533 -------------------------------                 -----------------------
12534 F5   Move to previous entry                     F1  Show this help text
12535 F6   Move to next entry
12536 F7   Show previous screen of address book
12537 F8   Show next screen of address book
12538 F12  WhereIs (search through address book)
12540 Address Selection Commands
12541 --------------------------
12542 F3   Exit the Address Select screen (without selecting an address)
12543 F4   Select the currently highlighted entry
12544 F9   Change to ListMode
12545 </PRE>
12546 <!--chtml else-->
12547 <PRE>
12548 Navigating the List of Messages                 General Alpine Commands
12549 -------------------------------                 -----------------------
12550  P   Move to previous entry                     ?  Show this help text
12551  N   Move to next entry
12552  -   Show previous screen of address book
12553 Spc  (space bar) Show next screen of address book
12554  W   WhereIs (search through address book)
12556 Address Selection Commands
12557 --------------------------
12558  E   Exit the Address Select screen (without selecting an address)
12559  S   Select the currently highlighted entry
12560  L   Change to ListMode
12561 </PRE>
12562 <!--chtml endif-->
12565 This screen is designed to let you easily scan your address book(s) in
12566 order to select entries for the message you are composing.  You cannot
12567 edit your address book in any way at this time, for address book
12568 maintenance, select the address book command when not composing a message.
12571 If you are composing a message and know the nickname of the person/list you
12572 want, you can bypass this screen by simply typing in the nickname on the
12573 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12574 selecting an entry does not cancel your message.
12577 The ListMode command will add a column at the left edge of the screen.
12578 You mark the entries that you wish to select with the &quot;X&quot; command.
12579 This allows you to choose more than one entry at a time.
12582 An alternative method of composing a message to entries in your
12583 address book(s) is to first use the &quot;Select&quot; command from
12584 the address book maintenance screen and then the &quot;Apply&quot;
12585 &quot;ComposeTo&quot; command to start the composer composing to the
12586 selected entries.
12589 FOR MORE INFORMATION on addressing see
12590 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12591 <A HREF="h_abook_opened">Address Book Screen's</A>
12592 help text.
12594 &lt;End of help on this topic&gt;
12595 </BODY>
12596 </HTML>
12597 ===== h_abook_select_checks =====
12598 <HTML>
12599 <HEAD>
12600 <TITLE>Address Selection from Composer Explained</TITLE>
12601 </HEAD>
12602 <BODY>
12603 <H1>COMPOSER: SELECT ADDRESSES</H1>
12604 <!--chtml if pinemode="function_key"-->
12605 <PRE>
12606 Navigating the List of Messages                 General Alpine Commands
12607 -------------------------------                 -----------------------
12608 F5   Move to previous entry                     F1  Show this help text
12609 F6   Move to next entry
12610 F7   Show previous screen of address book
12611 F8   Show next screen of address book
12612 F12  WhereIs (search through address book)
12614 Address Selection Commands
12615 --------------------------
12616 F3   Exit the Address Select screen (without selecting an address)
12617 F4   Select the currently highlighted entry
12618 F8   Either Sets or Unsets all entries in this address book
12619 F9   Set or Unset the highlighted entry
12620 </PRE>
12621 <!--chtml else-->
12622 <PRE>
12623 Navigating the List of Messages                 General Alpine Commands
12624 -------------------------------                 -----------------------
12625  P   Move to previous entry                     ?  Show this help text
12626  N   Move to next entry
12627  -   Show previous screen of address book
12628 Spc  (space bar) Show next screen of address book
12629  W   WhereIs (search through address book)
12631 Address Selection Commands
12632 --------------------------
12633  E   Exit the Address Select screen (without selecting an address)
12634  S   Select the currently highlighted entry
12635  X   Set or Unset the highlighted entry
12636  A   Either Sets or Unsets all entries in this address book
12637 </PRE>
12638 <!--chtml endif-->
12641 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12642 command.  Type &quot;S Select&quot; to select all of the entries you
12643 have marked, just as if you had typed them in by hand.
12646 An alternative method of composing a message to entries in your
12647 address book(s) is to first use the &quot;Select&quot; command from
12648 the address book maintenance screen and then the &quot;Apply&quot;
12649 &quot;ComposeTo&quot; command to start the composer composing to the
12650 selected entries.
12653 FOR MORE INFORMATION on addressing see
12654 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12655 <A HREF="h_abook_opened">Address Book Screen's</A>
12656 help text.
12658 &lt;End of help on this topic&gt;
12659 </BODY>
12660 </HTML>
12661 ===== h_abook_select_nicks_take =====
12662 <HTML>
12663 <HEAD>
12664 <TITLE>Take Address Nickname Selection Explained</TITLE>
12665 </HEAD>
12666 <BODY>
12667 <H1>TAKEADDR: SELECT NICKNAME</H1>
12668 <!--chtml if pinemode="function_key"-->
12669 <PRE>
12670 Navigating the List of Messages                 General Alpine Commands
12671 -------------------------------                 -----------------------
12672 F5   Move to previous entry                     F1  Show this help text
12673 F6   Move to next entry
12674 F7   Show previous screen of address book
12675 F8   Show next screen of address book
12676 F12  WhereIs (search through address book)
12678 Message Selection Commands
12679 --------------------------
12680 F3   Exit the Nickname Select screen (without selecting an address)
12681 F4   Select the currently highlighted entry
12682 </PRE>
12683 <!--chtml else-->
12684 <PRE>
12685 Navigating the List of Messages                 General Alpine Commands
12686 -------------------------------                 -----------------------
12687  P   Move to previous entry                     ?  Show this help text
12688  N   Move to next entry
12689  -   Show previous screen of address book
12690 Spc  (space bar) Show next screen of address book
12691  W   WhereIs (search through address book)
12693 Message Selection Commands
12694 --------------------------
12695  E   Exit the Nickname Select screen (without selecting an address)
12696  S   Select the currently highlighted entry
12697 </PRE>
12698 <!--chtml endif-->
12701 This screen is designed to let you modify or add to an existing
12702 address book entry.  You have already selected the name(s) and
12703 address(es) through &quot;Take Address&quot;.  This screen simply lets
12704 you scan your address books and select the nickname to be
12705 changed/augmented.  If you want to add a new entry, then you are in
12706 the wrong place-- Select &quot;Exit&quot; command.
12709 FOR MORE INFORMATION on addressing see
12710 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12711 <A HREF="h_abook_opened">Address Book Screen's</A>
12712 help text.
12714 &lt;End of help on this topic&gt;
12715 </BODY>
12716 </HTML>
12717 ===== h_abook_select_nick =====
12718 <HTML>
12719 <HEAD>
12720 <TITLE>Nickname Selection Explained</TITLE>
12721 </HEAD>
12722 <BODY>
12723 <H1>SELECT NICKNAME</H1>
12724 <!--chtml if pinemode="function_key"-->
12725 <PRE>
12726 Navigating the List of Messages                 General Alpine Commands
12727 -------------------------------                 -----------------------
12728 F5   Move to previous entry                     F1  Show this help text
12729 F6   Move to next entry
12730 F7   Show previous screen of address book
12731 F8   Show next screen of address book
12732 F12  WhereIs (search through address book)
12734 Message Selection Commands
12735 --------------------------
12736 F3   Exit the Nickname Select screen (without selecting an address)
12737 F4   Select the currently highlighted entry
12738 </PRE>
12739 <!--chtml else-->
12740 <PRE>
12741 Navigating the List of Messages                 General Alpine Commands
12742 -------------------------------                 -----------------------
12743  P   Move to previous entry                     ?  Show this help text
12744  N   Move to next entry
12745  -   Show previous screen of address book
12746 Spc  (space bar) Show next screen of address book
12747  W   WhereIs (search through address book)
12749 Message Selection Commands
12750 --------------------------
12751  E   Exit the Nickname Select screen (without selecting an address)
12752  S   Select the currently highlighted entry
12753 </PRE>
12754 <!--chtml endif-->
12757 This screen is designed to let you look at the nicknames in your address
12758 books before choosing a new one.
12761 FOR MORE INFORMATION on addressing see
12762 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12763 <A HREF="h_abook_opened">Address Book Screen's</A>
12764 help text.
12766 &lt;End of help on this topic&gt;
12767 </BODY>
12768 </HTML>
12769 ===== h_takeaddr_screen =====
12770 <HTML>
12771 <HEAD>
12772 <TITLE>Take Address Screen Explained</TITLE>
12773 </HEAD>
12774 <BODY>
12775 <H1>TAKE ADDRESS COMMANDS</H1>
12776 <!--chtml if pinemode="function_key"-->
12777 <PRE>
12778 Navigating the List of Addresses       Address Selection Commands        
12779 --------------------------------       --------------------------        
12780  F5  Move to previous entry            F3  Exit without taking address
12781  F6  Move to next entry                F4  Take current address(es)
12782  F7  Show previous page of address list
12783  F8  Show next page of address list
12784  F2  WhereIs (search list)
12785                                --------------
12786 Mode Toggle            F9  Set/Unset current address
12787 -----------            F10 Set all
12788  F12 Toggle between List and single mode       F11 Unset all
12789 </PRE>
12790 <!--chtml else-->
12791 <PRE>
12792 Navigating the List of Addresses       Address Selection Commands
12793 --------------------------------       --------------------------
12794  P  Move to previous entry              &lt;  Exit without taking address
12795  N  Move to next entry                  T  Take address
12796  -  Show previous page of address list
12797 Spc (space bar) Show next page of address list
12798  W  WhereIs (search list)              List Mode
12799                                        ---------
12800 Single Mode                             X  Set/Unset current address
12801 -----------                             A  Set all addresses
12802  L  Switch to list mode                 U  Unset all addresses
12803                                         S  Switch to single mode
12804 </PRE>
12805 <!--chtml endif-->
12807 <H2>Description of the Take Address Screen</H2>
12809 This screen is designed to let you select one or more address/name
12810 combinations from the current message and put them into your address book.
12811 The cursor is initially placed on the line with the message author.
12812 Other lines include the names of people and/or mailing lists who also
12813 received the message.  Other people &quot;involved&quot; in the
12814 message (e.g. the person named as Reply-To:) are also listed here.
12817 The simple case is adding a new, single entry into your address book. To
12818 do this, simply highlight the correct line and press 
12819 <!--chtml if pinemode="function_key"-->
12821 <!--chtml else-->
12822 &quot;T&quot;.
12823 <!--chtml endif-->
12824 To create a new list or add to an existing list, switch the screen display
12825 into List Mode by pressing
12826 <!--chtml if pinemode="function_key"-->
12827 F12.
12828 <!--chtml else-->
12829 &quot;L&quot;.
12830 <!--chtml endif-->
12831 In List Mode, you select the
12832 group of addresses you wish to manipulate by marking them with an
12833 &quot;X&quot;.
12834 The Set/Unset
12835 <!--chtml if pinemode="function_key"-->
12836 (F9)
12837 <!--chtml else-->
12838 (&quot;X&quot;)
12839 <!--chtml endif-->
12840 command will turn the &quot;X&quot; on for the
12841 highlighted address if it was off or turn it off if it was previously on.
12842 The SetAll command will select all of the addresses, and the UnSetAll
12843 command will turn off all the selections.  Once you've gotten the
12844 selection the way you want it, you may create a new list by pressing
12845 <!--chtml if pinemode="function_key"-->
12847 <!--chtml else-->
12848 &quot;T&quot;.
12849 <!--chtml endif-->
12852 In both the simple and list cases, after choosing to take the address,
12853 you will be asked for the nickname of the entry.  Typing in a new name
12854 creates the new entry/list.  Entering an existing nickname will replace
12855 the entry (simple case) or add to the list (list case).  Alternatively,
12856 you can press Ctrl-T at the nickname prompt and select an existing
12857 nickname from your address book.
12860 You will normally start in Single Mode, unless you used the Apply command
12861 to startup the TakeAddr screen, in which case you will start in List Mode.
12862 You may switch between the two modes at any time.  If you've already
12863 selected several addresses in List Mode, those will be remembered when you
12864 switch to Single Mode and then back to List Mode.  The set of addresses
12865 that are pre-selected when you start in List Mode are the From addresses
12866 of all of the messages you are operating on.  You may, of course, easily
12867 erase those selections with the UnSetAll command.
12870 If you have more than one writable address book, you will be prompted for
12871 the name of the address book you wish to add the new entry to before
12872 anything else. You can use ^N and ^P to choose among the defined address
12873 books, or type in the address book name.
12876 FOR MORE INFORMATION on addressing see
12877 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12878 <A HREF="h_abook_opened">Address Book Screen's</A>
12879 help text.
12881 &lt;End of help on this topic&gt;
12882 </BODY>
12883 </HTML>
12884 ===== h_takeexport_screen =====
12885 <HTML>
12886 <HEAD>
12887 <TITLE>Take Export Screen Explained</TITLE>
12888 </HEAD>
12889 <BODY>
12890 <H1>TAKE EXPORT COMMANDS</H1>
12891 <!--chtml if pinemode="function_key"-->
12892 <PRE>
12893 Navigating the List of Addresses       Address Selection Commands        
12894 --------------------------------       --------------------------        
12895  F5  Move to previous entry            F3  Exit without taking address
12896  F6  Move to next entry                F4  Take current address(es)
12897  F7  Show previous page of address list
12898  F8  Show next page of address list
12899  F2  WhereIs (search list)
12900                                --------------
12901 Mode Toggle            F9  Set/Unset current address
12902 -----------            F10 Set all
12903  F12 Toggle between List and single mode       F11 Unset all
12904 </PRE>
12905 <!--chtml else-->
12906 <PRE>
12907 Navigating the List of Addresses       Address Selection Commands
12908 --------------------------------       --------------------------
12909  P  Move to previous entry              &lt;  Exit without taking address
12910  N  Move to next entry                  T  Take address
12911  -  Show previous page of address list
12912 Spc (space bar) Show next page of address list
12913  W  WhereIs (search list)              List Mode
12914                                        ---------
12915 Single Mode                             X  Set/Unset current address
12916 -----------                             A  Set all addresses
12917  L  Switch to list mode                 U  Unset all addresses
12918                                         S  Switch to single mode
12919 </PRE>
12920 <!--chtml endif-->
12922 <H2>Description of the Take Export Screen</H2>
12924 This screen is designed to let you select one or more addresses
12925 from the current message and put them into a file.
12926 Only the user@domain_name part of each address is put into the file.
12929 To put a single entry into a file simply highlight the correct line and press 
12930 <!--chtml if pinemode="function_key"-->
12932 <!--chtml else-->
12933 &quot;T&quot;.
12934 <!--chtml endif-->
12935 To put more than one entry into a file
12936 switch the screen display
12937 into List Mode by pressing
12938 <!--chtml if pinemode="function_key"-->
12939 F12.
12940 <!--chtml else-->
12941 &quot;L&quot;.
12942 <!--chtml endif-->
12943 In List Mode, you select the
12944 group of addresses you wish to manipulate by marking them with an
12945 &quot;X&quot;.
12946 The Set/Unset
12947 <!--chtml if pinemode="function_key"-->
12948 (F9)
12949 <!--chtml else-->
12950 (&quot;X&quot;)
12951 <!--chtml endif-->
12952 command will turn the &quot;X&quot; on for the
12953 highlighted address if it was off or turn it off if it was previously on.
12954 The SetAll command will select all of the addresses, and the UnSetAll
12955 command will turn off all the selections.  Once you've gotten the
12956 selection the way you want it, you may put the addresses in a file by typing
12957 <!--chtml if pinemode="function_key"-->
12959 <!--chtml else-->
12960 &quot;T&quot;.
12961 <!--chtml endif-->
12964 You will be asked for the name of a file to put the addresses in.
12965 If the file already exists, you will be asked whether you want to Overwrite
12966 (replace) the contents of the file or Append to the contents of the file.
12969 &lt;End of help on this topic&gt;
12970 </BODY>
12971 </HTML>
12972 ============= h_abook_view ========================
12973 <HTML>
12974 <HEAD>
12975 <TITLE>Address Book View Explained</TITLE>
12976 </HEAD>
12977 <BODY>
12978 This function allows you to view the contents of an address book entry. You
12979 can only view one entry at a time.
12981 <DL>
12982 <DT>Help
12983 <!--chtml if pinemode="function_key"-->
12984 (F1)
12985 <!--chtml else-->
12987 <!--chtml endif-->
12988 </DT>
12989 <DD>
12990 Display this help text.
12992 <DT>Abook
12993 <!--chtml if pinemode="function_key"-->
12994 (F3)
12995 <!--chtml else-->
12996 (&lt;)
12997 <!--chtml endif-->
12998 </DT>
12999 <DD>
13000 Go back to index of address book entries.
13002 <DT>Update
13003 <!--chtml if pinemode="function_key"-->
13004 (F4)
13005 <!--chtml else-->
13007 <!--chtml endif-->
13008 </DT>
13009 <DD>
13010 Update (modify) this entry.
13012 <DT>ComposeTo
13013 <!--chtml if pinemode="function_key"-->
13014 (F5)
13015 <!--chtml else-->
13017 <!--chtml endif-->
13018 </DT>
13019 <DD>Compose a message to the address(es) in this entry.
13021 <DT>Role
13022 <!--chtml if pinemode="function_key"-->
13023 (F6)
13024 <!--chtml else-->
13026 <!--chtml endif-->
13027 </DT>
13028 <DD>Compose a message to the address(es) in this entry using roles.
13030 <DT>Prev Page
13031 <!--chtml if pinemode="function_key"-->
13032 (F7)
13033 <!--chtml else-->
13035 <!--chtml endif-->
13036 </DT>
13037 <DD>
13038 Show the previous page of the current entry.
13040 <DT>Next Page
13041 <!--chtml if pinemode="function_key"-->
13042 (F8)
13043 <!--chtml else-->
13044 (Space)
13045 <!--chtml endif-->
13046 </DT>
13047 <DD>
13048 Show the next page of the current entry.
13050 <DT>Print
13051 <!--chtml if pinemode="function_key"-->
13052 (F9)
13053 <!--chtml else-->
13055 <!--chtml endif-->
13056 </DT>
13057 <DD>Print the current entry.  You can select the
13058 printer or the print command via the &quot;Setup&quot; command
13059 on the MAIN MENU.
13061 <DT>WhereIs
13062 <!--chtml if pinemode="function_key"-->
13063 (F10)
13064 <!--chtml else-->
13066 <!--chtml endif-->
13067 </DT>
13068 <DD>Search the entry for a string of letters.  If it is
13069 found, move to it.  The string can be one word or a phrase.
13070 If there are multiple occurrences, the cursor moves to the
13071 first occurrence beyond the current cursor position.
13073 <DT>Fwd Email
13074 <!--chtml if pinemode="function_key"-->
13075 (F11)
13076 <!--chtml else-->
13078 <!--chtml endif-->
13079 </DT>
13080 <DD>Begin composition of a new mail message with the displayed
13081 text already inserted in the message body.
13083 </DL>
13085 &lt;End of help on this topic&gt;
13086 </BODY>
13087 </HTML>
13088 ============= h_ldap_view ========================
13089 <HTML>
13090 <HEAD>
13091 <TITLE>LDAP Response View Explained</TITLE>
13092 </HEAD>
13093 <BODY>
13094 This function allows you to view the contents of a directory entry. You
13095 can only view one entry at a time.
13097 <DL>
13098 <DT>Help
13099 <!--chtml if pinemode="function_key"-->
13100 (F1)
13101 <!--chtml else-->
13103 <!--chtml endif-->
13104 </DT>
13105 <DD>
13106 Display this help text.
13108 <DT>Results Index
13109 <!--chtml if pinemode="function_key"-->
13110 (F3)
13111 <!--chtml else-->
13112 (&lt;)
13113 <!--chtml endif-->
13114 </DT>
13115 <DD>Go back to index of search results.
13117 <DT>ComposeTo
13118 <!--chtml if pinemode="function_key"-->
13119 (F5)
13120 <!--chtml else-->
13122 <!--chtml endif-->
13123 </DT>
13124 <DD>Compose a message to the address(es) in this entry.
13126 <DT>Role
13127 <!--chtml if pinemode="function_key"-->
13128 (F6)
13129 <!--chtml else-->
13131 <!--chtml endif-->
13132 </DT>
13133 <DD>Compose a message to the address(es) in this entry using roles.
13135 <DT>Prev Page
13136 <!--chtml if pinemode="function_key"-->
13137 (F7)
13138 <!--chtml else-->
13140 <!--chtml endif-->
13141 </DT>
13142 <DD>
13143 Show the previous page of the current entry.
13145 <DT>Next Page
13146 <!--chtml if pinemode="function_key"-->
13147 (F8)
13148 <!--chtml else-->
13149 (Space)
13150 <!--chtml endif-->
13151 </DT>
13152 <DD>
13153 Show the next page of the current entry.
13155 <DT>Print
13156 <!--chtml if pinemode="function_key"-->
13157 (F9)
13158 <!--chtml else-->
13160 <!--chtml endif-->
13161 </DT>
13162 <DD>Print the current entry on paper.  You can select the
13163 printer or the print command via the &quot;Setup&quot; command
13164 on the MAIN MENU.
13166 <DT>WhereIs
13167 <!--chtml if pinemode="function_key"-->
13168 (F10)
13169 <!--chtml else-->
13171 <!--chtml endif-->
13172 </DT>
13173 <DD>Search the entry for a string of letters.  If it is
13174 found, move to it.  The string can be one word or a phrase.
13175 If there are multiple occurrences, the cursor moves to the
13176 first occurrence beyond the current cursor position.
13178 <DT>Fwd Email
13179 <!--chtml if pinemode="function_key"-->
13180 (F11)
13181 <!--chtml else-->
13183 <!--chtml endif-->
13184 </DT>
13185 <DD>Begin composition of a new mail message with the displayed
13186 text already inserted in the message body.
13188 <DT>Save
13189 <!--chtml if pinemode="function_key"-->
13190 (F12)
13191 <!--chtml else-->
13193 <!--chtml endif-->
13194 </DT>
13195 <DD>Save the displayed entry to one of your address books or export
13196 it to a file.
13197 </DL>
13199 &lt;End of help on this topic&gt;
13200 </BODY>
13201 </HTML>
13202 ===== h_attachment_screen =====
13203 <HTML>
13204 <HEAD>
13205 <TITLE>Attachment Index Screen Explained</TITLE>
13206 </HEAD>
13207 <BODY>
13208 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13209 message's attachments, and allows various operations on them.  The
13210 first attachment is usually the message text, but does not include the
13211 header portion of the message.
13213 Available commands include:
13215 <DL>
13217 <DT>Help</DT>
13218 <DD>Show this help text.
13220 <DT>Msg #<I>num</I></DT>
13221 <DD>Leave this screen without displaying or saving any attachments.
13223 <DT>View</DT>
13224 <DD>View the currently selected attachment.
13226 <DT>Prev Attach</DT>
13227 <DD>Move to previous attachment.
13229 <DT>Next Attach</DT>
13230 <DD>Move to next attachment.
13232 <DT>Prev Page</DT>
13233 <DD>Previous page of the listed attachments.
13235 <DT>Next Page</DT>
13236 <DD>Next page of the listed attachments.
13238 <DT>Delete</DT>
13239 <DD>Mark the currently selected attachment for Deletion.
13240 This does not modify the current message by deleting the attachment from
13241 it, but instead the delete flag <EM>only</EM> has an effect when saving
13242 the message to a folder.
13243 Attachments marked for deletion are not copied to the destination folder
13244 along with the rest of the message when it is saved.
13245 It is ok for the destination folder to be the same as the current folder.
13246 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13248 <DT>Undelete</DT>
13249 <DD>Turn off the Delete flag for the selected attachment.
13251 <DT>Save</DT>
13252 <DD>Save the selected attachment to a file.  If the attachment is of
13253 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13254 the specified mail folder.
13256 <DT>Export</DT>
13257 <DD>If the attachment is of
13258 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13259 copy the message to a file in the same way this command works on 
13260 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13262 <DT>Pipe</DT>
13263 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13264 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13266 <DT>WhereIs</DT>
13267 <DD>Find a matching string in the attachment list.
13269 <DT>AboutAttch</DT>
13270 <DD>Examine various aspects of the selected attachment.
13272 <DT>Print</DT>
13273 <DD>Print the selected attachment.
13275 <DT>Forward</DT>
13276 <DD>Forward the selected attachment as an attachment.
13277 </DL>
13281 All attachments can be saved or piped into a UNIX command, but some may
13282 not be readily displayed by either Alpine or an external tool.  In such
13283 cases, the reason why the message cannot be displayed is displayed on
13284 Alpine's message line.
13286 &lt;End of help on this topic&gt;
13287 </BODY>
13288 </HTML>
13289 ============= h_mail_text_att_view ========================
13290 <HTML>
13291 <HEAD>
13292 <TITLE>Attachment View Screen Explained</TITLE>
13293 </HEAD>
13294 <BODY>
13295 This function allows you to view the contents of a text attachment. You
13296 can only view one attachment at a time.
13298 Available commands include:
13300 <DL>
13302 <DT>Help</DT>
13303 <DD>Display this help text
13305 <DT>AttchIndex</DT>
13306 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13308 <DT>Prev Page</DT>
13309 <DD>Show the previous page of the current attachment.
13311 <DT>Next Page</DT>
13312 <DD>Show the next page of the current attachment by pressing the space bar.
13314 <DT>Delete</DT>
13315 <DD>Mark the viewed attachment for Deletion.  The delete
13316 flag <EM>only</EM> has affect when saving the message to a folder.
13317 Attachments marked for deletion are exluded from the messsage when
13318 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13319 this Alpine session.
13321 <DT>Undelete</DT>
13322 <DD>Turn off the Delete flag for the selected attachment.
13324 <DT>Save</DT>
13325 <DD>Copy the current attachment to a file.  If you just enter
13326 a filename, the attachment will be saved with that name in
13327 your home directory 
13328 <!--chtml if pinemode="running"-->
13329 (which, in the present configuration of your system, is
13330  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13331 <!--chtml endif-->
13332 or current working directory
13333 <!--chtml if pinemode="running"-->
13334 (which, at least for your current Alpine &quot;session,&quot; 
13335 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13336 <!--chtml endif-->, depending on the
13337 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13338 configuration setting.  You may enter the full
13339 path and filename to save it in another directory instead.
13341 <DT>Export</DT>
13342 <DD>If the attachment is of
13343 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13344 copy the message to a file in the same way this command works on 
13345 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13346 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13347 defined, they may affect the contents of the exported file.)
13349 <DT>Pipe</DT>
13350 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13352 <DT>WhereIs</DT>
13353 <DD>Search the attachment for a string of letters.  If it is
13354 found, move to it.  The string can be one word or a phrase.
13355 If there are multiple occurrences, the cursor moves to the
13356 first occurrence beyond the current cursor position.
13358 <DT>Print</DT>
13359 <DD>Print the current attachment on paper.  You can select the
13360 printer or the print command via the &quot;Setup&quot; command
13361 on the MAIN MENU.
13363 <DT>Forward</DT>
13364 <DD>Forward the selected attachment as an attachment.
13365 </DL>
13367 &lt;End of help on this topic&gt;
13368 </BODY>
13369 </HTML>
13370 ============= h_journal ==============
13371 <HTML>
13372 <HEAD>
13373 <TITLE>Recent Message Journal Explained</TITLE>
13374 </HEAD>
13375 <BODY>
13377 The following commands are available on this screen:
13379 <DL>
13380 <DT>Help</DT>
13381 <DD>Show this help text
13383 <DT>Exit</DT>
13384 <DD>Exit Viewer, and go back to mail processing
13386 <DT>Prev Page</DT>
13387 <DD>Show the previous page text
13389 <DT>Next Page</DT>
13390 <DD>Show the next page of text by pressing the space bar
13392 <DT>Print</DT>
13393 <DD>Print the displayed text on paper.  You can select the
13394 printer or the print command via the &quot;Setup&quot; command
13395 on the MAIN MENU.
13397 <DT>Fwd Email</DT>
13398 <DD>Begin composition of a new mail message with the displayed
13399 text already inserted in the message body.
13401 <DT>Save</DT>
13402 <DD>Copy the displayed text to a file.  If you just enter
13403 a filename, the text will be saved with that name in
13404 your 
13405 home directory 
13406 <!--chtml if pinemode="running"-->
13407 (which, in the present configuration of your system, is
13408  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13409 <!--chtml endif-->
13410 or current working directory
13411 <!--chtml if pinemode="running"-->
13412 (which, at least for your current Alpine &quot;session,&quot; 
13413 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13414 <!--chtml endif-->, depending on the
13415 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13416 configuration setting.   You may enter the full
13417 path and filename to save it in another directory instead.
13419 <DT>WhereIs</DT>
13420 <DD>Search the text for a string of letters.  If it is
13421 found, move to it.  The string can be one word or a phrase.
13422 If there are multiple occurrences, the cursor moves to the
13423 first occurrence beyond the current cursor position.
13424 </DL>
13426 &lt;End of help on this topic&gt;
13427 </BODY>
13428 </HTML>
13429 ============= h_debugjournal ==============
13430 <HTML>
13431 <HEAD>
13432 <TITLE>Debug Journal Explained</TITLE>
13433 </HEAD>
13434 <BODY>
13436 The following commands are available on this screen:
13438 <DL>
13439 <DT>Help</DT>
13440 <DD>Show this help text
13442 <DT>Exit</DT>
13443 <DD>Exit Viewer, and go back to mail processing
13445 <DT>Timestamps</DT>
13446 <DD>Turn on or off timestamps.
13448 <DT>DebugView</DT>
13449 <DD>Set the level of debugging you want to see. The level may be any number
13450 in the range 0-9. Higher numbers show more debugging detail. Note that the
13451 debugging information has already been captured. This setting just causes the
13452 debugging information that you see to be filtered. If you set this to
13453 the number &quot;5&quot; then you will be shown all of the debugging information
13454 at levels 5 and below.
13455 It's actually a bit more complicated than that. A fixed amount of memory
13456 is used to store the debug information.
13457 Since the amount of memory used is limited the debugging information
13458 has to be trimmed back when it gets too large.
13460 <DT>Prev Page</DT>
13461 <DD>Show the previous page text
13463 <DT>Next Page</DT>
13464 <DD>Show the next page of text by pressing the space bar
13466 <DT>Print</DT>
13467 <DD>Print the displayed text on paper.  You can select the
13468 printer or the print command via the &quot;Setup&quot; command
13469 on the MAIN MENU.
13471 <DT>Fwd Email</DT>
13472 <DD>Begin composition of a new mail message with the displayed
13473 text already inserted in the message body.
13475 <DT>Save</DT>
13476 <DD>Copy the displayed text to a file.  If you just enter
13477 a filename, the text will be saved with that name in
13478 your 
13479 home directory 
13480 <!--chtml if pinemode="running"-->
13481 (which, in the present configuration of your system, is
13482  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13483 <!--chtml endif-->
13484 or current working directory
13485 <!--chtml if pinemode="running"-->
13486 (which, at least for your current Alpine &quot;session,&quot; 
13487 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13488 <!--chtml endif-->, depending on the
13489 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13490 configuration setting.   You may enter the full
13491 path and filename to save it in another directory instead.
13493 <DT>WhereIs</DT>
13494 <DD>Search the text for a string of letters.  If it is
13495 found, move to it.  The string can be one word or a phrase.
13496 If there are multiple occurrences, the cursor moves to the
13497 first occurrence beyond the current cursor position.
13498 </DL>
13500 &lt;End of help on this topic&gt;
13501 </BODY>
13502 </HTML>
13503 ============= h_simple_text_view ==============
13504 <HTML>
13505 <HEAD>
13506 <TITLE>Simple Text View Screen Explained</TITLE>
13507 </HEAD>
13508 <BODY>
13510 The following commands are available on this screen:
13512 <DL>
13513 <DT>Help</DT>
13514 <DD>Show this help text
13516 <DT>Exit</DT>
13517 <DD>Exit Viewer, and go back to mail processing
13519 <DT>Prev Page</DT>
13520 <DD>Show the previous page text
13522 <DT>Next Page</DT>
13523 <DD>Show the next page of text by pressing the space bar
13525 <DT>Print</DT>
13526 <DD>Print the displayed text on paper.  You can select the
13527 printer or the print command via the &quot;Setup&quot; command
13528 on the MAIN MENU.
13530 <DT>Fwd Email</DT>
13531 <DD>Begin composition of a new mail message with the displayed
13532 text already inserted in the message body.
13534 <DT>Save</DT>
13535 <DD>Copy the displayed text to a file.  If you just enter
13536 a filename, the attachment will be saved with that name in
13537 your 
13538 home directory 
13539 <!--chtml if pinemode="running"-->
13540 (which, in the present configuration of your system, is
13541  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13542 <!--chtml endif-->
13543 or current working directory
13544 <!--chtml if pinemode="running"-->
13545 (which, at least for your current Alpine &quot;session,&quot; 
13546 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13547 <!--chtml endif-->, depending on the
13548 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13549 configuration setting.   You may enter the full
13550 path and filename to save it in another directory instead.
13552 <DT>WhereIs</DT>
13553 <DD>Search the attachment for a string of letters.  If it is
13554 found, move to it.  The string can be one word or a phrase.
13555 If there are multiple occurrences, the cursor moves to the
13556 first occurrence beyond the current cursor position.
13557 </DL>
13559 &lt;End of help on this topic&gt;
13560 </BODY>
13561 </HTML>
13562 ======= h_pine_for_windows ========
13563 <HTML>
13564 <HEAD>
13565 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13566 </HEAD>
13567 <BODY>
13568 <H1>Getting Help In PC-Alpine</H1>
13571 PC-Alpine offers general and specific help text. From the <A
13572 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13573 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13574 specific help for that screen is available from the toolbar Help menu or
13575 with the 
13576 <!--chtml if pinemode="function_key"-->
13577 &quot;F1&quot; key.
13578 <!--chtml else-->
13579 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13580 typing &quot;?&quot; would be mistaken as entering text.
13581 <!--chtml endif-->
13584 Although this version of Alpine is for Microsoft Windows, it is not
13585 considered a full &quot;Graphical User Interface&quot; application. 
13586 Yet, many of the controls that Windows users are accustomed to seeing, 
13587 such as scrollbars and toolbars, are available.
13590 PC-Alpine offers considerable mouse support.  You can view what is
13591 &quot;click-able&quot; by dragging your mouse over any screen; when the
13592 arrow cursor changes into a hand, you found something. Mouse-click
13593 possibilities include navigating between screens and folders and
13594 double-clicking on hyperlinks to open your Web browser.
13595 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13596 screen.  Examples of right-click options include &quot;copy&quot; after
13597 selecting text to copy and &quot;View in New Window&quot; when you click
13598 on a particular message in the Message Index. The menu choices available
13599 to you will vary based upon what screen is open, where on the screen your
13600 cursor is located, and even what action you have already taken.
13603 &lt;End of help on this topic&gt;
13604 </BODY>
13605 </HTML>
13606 ===== h_composer =====
13607 <HTML>
13608 <HEAD>
13609 <TITLE>COMPOSER COMMANDS</TITLE>
13610 </HEAD>
13611 <BODY>
13612 <H1>COMPOSER COMMANDS</H1>
13614 CURSOR&nbsp;MOTION&nbsp;KEYS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|EDITING&nbsp;KEYS<BR>
13615 &nbsp;&nbsp;^B&nbsp;(Left&nbsp;Arrow)&nbsp;&nbsp;&nbsp;Back&nbsp;character&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Delete&nbsp;current&nbsp;character<BR>
13616 &nbsp;&nbsp;^F&nbsp;(Right&nbsp;Arrow)&nbsp;&nbsp;Forward&nbsp;character&nbsp;&nbsp;|&nbsp;^H&nbsp;(DEL)&nbsp;Delete&nbsp;previous&nbsp;character<BR>
13617 &nbsp;&nbsp;^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^^&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;a&nbsp;<A HREF="h_compose_markcutpaste">mark</A><BR>
13618 &nbsp;&nbsp;^N&nbsp;(Down&nbsp;Arrow)&nbsp;&nbsp;&nbsp;Next&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<!--chtml if pinemode="function_key"-->F9<!--chtml else-->^K<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_markcutpaste">Cut</A>&nbsp;marked&nbsp;text&nbsp;or<BR>
13619 &nbsp;&nbsp;^A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Beginning&nbsp;of&nbsp;line&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;delete&nbsp;current&nbsp;line<BR>
13620 &nbsp;&nbsp;^E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End&nbsp;of&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<!--chtml if pinemode="function_key"-->F10<!--chtml else-->^U<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_markcutpaste">Paste</A>&nbsp;text,&nbsp;undelete&nbsp;lines<BR>
13621 &nbsp;&nbsp;^Y&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cut&nbsp;with&nbsp;^K,&nbsp;or&nbsp;unjustify<BR>
13622 &nbsp;&nbsp;^V&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|-------------------------------------<BR>
13623 &nbsp;&nbsp;^@&nbsp;(Ctrl-SPACE)&nbsp;&nbsp;&nbsp;Next&nbsp;word&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|SCREEN/COMPOSITION&nbsp;COMMANDS<BR>
13624 ---------------------------------------|&nbsp;<!--chtml if pinemode="function_key"-->F6<!--chtml else-->^W<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_composer_search">Whereis</A>&nbsp;(search&nbsp;for&nbsp;string)<BR>
13625 MESSAGE&nbsp;COMMANDS&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<!--chtml if pinemode="function_key"-->F12<!--chtml else-->^T&nbsp;<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_spell">Spell&nbsp;checker</A><BR>
13626 &nbsp;<!--chtml if pinemode="function_key"-->F3<!--chtml else-->^C<!--chtml endif-->&nbsp;&nbsp;&nbsp;<A HREF="h_compose_cancel">Cancel</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;<!--chtml if pinemode="function_key"-->F1<!--chtml else-->^G<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;Get&nbsp;help&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<!--chtml if pinemode="function_key"-->F4<!--chtml else-->^J<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_justify">Justify</A>&nbsp;paragraph<BR>
13627 &nbsp;<!--chtml if pinemode="function_key"-->F11<!--chtml else-->^O&nbsp;<!--chtml endif-->&nbsp;&nbsp;<A HREF="h_common_postpone">Postpone</A>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;^Z&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_common_suspend">Suspend</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^L&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Redraw&nbsp;Screen<BR>
13628 &nbsp;<!--chtml if pinemode="function_key"-->F2<!--chtml else-->^X<!--chtml endif-->&nbsp;&nbsp;&nbsp;<A HREF="h_compose_send">Send</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;<!--chtml if pinemode="function_key"-->F6<!--chtml else-->^_<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_alted">Alt.&nbsp;editor</A>&nbsp;&nbsp;|&nbsp;<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_readfile">Read&nbsp;in&nbsp;a&nbsp;file</A><BR>
13631 NOTE:
13632 <OL>
13633  <LI>For help on a particular command, highlight the bold text associated
13634 with it above and hit Return.
13635  <LI> The availability of certain commands
13636 is determined by Alpine configuration files and system capabilities.
13637 At some sites, certain commands may not be available due to security or
13638 support concerns.
13639  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13640 Ctrl-&#92;, ESC.
13641  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13642 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13643 </OL>
13646 HINT: To move rapidly to the bottom of a message you are composing,
13647 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13648 with the Mark and Cut commands to eliminate large amounts of unwanted
13649 text in a Reply.
13651 <H2>Description of Composer</H2>
13653 Alpine has a built-in editing program that allows you to compose messages
13654 without having to leave Alpine.  The editor is designed to be very simple to
13655 use so that you can get started writing email right away.
13658 Messages are usually just text, about 80 columns wide.  Using upper and
13659 lower case is encouraged.  On some systems the size limit of the message
13660 is about 100,000 characters, which is about 2,000 lines.  You can include
13661 punctuation and special characters found on most keyboards, but you can't
13662 include characters with diacritical marks and certain special symbols.
13665 Text automatically wraps as you type past the end of a line so you do not
13666 have to hit return.  Using the
13667 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13668 you can also reformat text explicitly, perhaps after you have
13669 deleted some text.
13672 You can include other text files with the 
13673 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13674 which will prompt you for the name of the file to insert at the
13675 current cursor postion.
13678 <UL>
13679 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13680 </UL>
13682 &lt;End of help on this topic&gt;
13683 </BODY>
13684 </HTML>
13685 ====== h_composer_browse =====
13686 <HTML>
13687 <HEAD>
13688 <TITLE>BROWSER</TITLE>
13689 </HEAD>
13690 <BODY>
13691 <H1>BROWSER</H1>
13692 This screen lets you browse your files and directories.  To go to another 
13693 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13694 choose &quot;Select&quot; (the default choice on the menu); 
13695 or choose &quot;Goto&quot; and enter the name of the directory.
13696 <!--chtml if pinemode="os_windows"-->
13697 <!--chtml else--> 
13698 In Unix Alpine, you may use 
13699 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13700 to another's home directory.  
13701 <!--chtml endif--><P>
13702 To select a file, move the cursor to it and 
13703 choose &quot;Select&quot; (the default choice on the menu).  
13705 <UL>
13706 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13707 inclusion in the 
13708 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13709 the 
13710 &quot;----- Message Text -----&quot; line
13711 while composing, then &quot;To Files&quot;):  Since the file 
13712 selected will become part of the message text, it must be in a format 
13713 suitable for that (Alpine does not check!), such as a plain text file.
13714 Files of other formats (for example, graphics, databases, software 
13715 programs) should be 
13716 <B>attached</B> to the message instead --
13717 by moving the cursor in the COMPOSE MESSAGE screen into the 
13718 message header area and pressing 
13719 <!--chtml if pinemode="function_key"-->
13721 <!--chtml else-->
13722 Ctrl-J.
13723 <!--chtml endif--> 
13725 <P><LI>
13726 Note <B>if</B> you are currently using the BROWSER for saving a message 
13727 attachment, or exporting a message, to a file: You can use the Add command to 
13728 provide the name for a new file to save/export to, and then select that name 
13729 to use it for the save/export operation.  Back at the prompt 
13730 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13731 either Overwrite or Append (it doesn't make a difference, since the file is 
13732 so far empty).  Note: If you cancel the 
13733 operation at that point, the file created with the Add command will remain 
13734 0 bytes in size.
13736 </UL>
13737 <P><UL>
13738 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13739 </UL>
13741 &lt;End of help on this topic&gt;
13742 </BODY>
13743 </HTML>
13744 ====== h_composer_ins =====
13745 <HTML>
13746 <HEAD>
13747 <TITLE>INSERT TEXT FILE</TITLE>
13748 </HEAD>
13749 <BODY>
13750 <H1>INSERT TEXT FILE</H1>
13752 Use this function to insert a text file. The file name
13753 given can be an absolute file path name for your system
13754 <!--chtml if pinemode="os_windows"-->
13755 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13756 with a relative pathname, or simply a file name without
13757 drive or directory specification.  
13758 <!--chtml else-->
13759 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13760 a file in your home directory, or a file path relative to your 
13761 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13762 your home directory or &quot;~user&quot; to refer to another
13763 account's home directory.
13764 <!--chtml endif-->
13766 No wild card characters may be used.  
13767 The file must reside on the system running Alpine.
13769 If the 
13770 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13771 feature is set, names are relative to your current working directory 
13772 <!--chtml if pinemode="running"-->
13773 (which, at least for your current Alpine &quot;session,&quot; 
13774 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13775 <!--chtml endif-->
13776 rather than your home directory
13777 <!--chtml if pinemode="running"-->
13778 (which, in the present configuration of your system, is
13779  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13780 <!--chtml endif-->
13782 <P><UL>
13783 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13784 </UL>
13786 &lt;End of help on this topic&gt;
13787 </BODY>
13788 </HTML>
13789 ====== h_composer_ins_m =====
13790 <HTML>
13791 <HEAD>
13792 <TITLE>INSERT MESSAGE</TITLE>
13793 </HEAD>
13794 <BODY>
13795 <H1>INSERT MESSAGE</H1>
13797 Type in the number of a message in the currently open folder to insert it
13798 into your message.
13799 <P><UL>
13800 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13801 </UL>
13803 &lt;End of help on this topic&gt;
13804 </BODY>
13805 </HTML>
13806 ====== h_composer_search =====
13807 <HTML>
13808 <HEAD>
13809 <TITLE>Explanation of Composer Whereis Command </TITLE>
13810 </HEAD>
13811 <BODY>
13812 <H1>Help For Whereis Command</H1>
13814 Whereis is used to search the message for a word or part of a word.
13815 When searching in the composer, only the message part of your mail is
13816 searched, and the cursor is put on the first occurrence appearing
13817 after the location of the cursor.  The search will wrap to the
13818 beginning of the message when it no longer finds matches in the
13819 remainder of the message.
13821 To search for the same string a second time, press 
13822 <!--chtml if pinemode="function_key"-->
13823 &quot;F6&quot;
13824 <!--chtml else-->
13825 &quot;^W&quot;
13826 <!--chtml endif-->
13827 to begin search and then just press RETURN to accept the previous
13828 search string shown in square brackets rather than entering a new
13829 search string.<P>
13831 The &quot;Search&quot; prompt has several sub-command available:
13833 <DL>
13834 <DT>Get Help</DT>
13835 <DD> Takes you to this help page.
13837 <DT>Cancel</DT>
13838 <DD> Cancels the prompt.  No search takes place.
13840 <DT>First Line</DT>
13841 <DD> Takes you back to the composer with the cursor on the first character
13842 of the first line of text.
13844 <DT>Last Line</DT>
13845 <DD> Takes you back to the composer with the cursor on the last character
13846 of the last line of text.
13848 <DT>Replace (Optional)</DT>
13849 <DD> This sub-command is enabled by the 
13850 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13851 feature (which is on by default); see its help screen for details on how replacing works.
13853 </DL>
13855 &lt;End of help on this topic&gt;
13856 </BODY>
13857 </HTML>
13858 ====== h_sigedit_search =====
13859 <HTML>
13860 <HEAD>
13861 <TITLE>Explanation of Whereis Command </TITLE>
13862 </HEAD>
13863 <BODY>
13864 <H1>Help For Whereis Command</H1>
13866 Whereis is used to search for a word or part of a word.
13867 When searching the cursor is put on the first occurrence appearing
13868 after the location of the cursor.  The search will wrap to the
13869 beginning of the signature when it no longer finds matches in the
13870 remainder of the signature.
13872 To search for the same string a second time, press 
13873 <!--chtml if pinemode="function_key"-->
13874 &quot;F6&quot;
13875 <!--chtml else-->
13876 &quot;^W&quot;
13877 <!--chtml endif-->
13878 to begin search and then just press RETURN to accept the previous
13879 search string shown in square brackets rather than entering a new
13880 search string.<P>
13882 The &quot;Search&quot; prompt has several sub-command available:
13884 <DL>
13885 <DT>Get Help</DT>
13886 <DD> Takes you to this help page.
13888 <DT>Cancel</DT>
13889 <DD> Cancels the prompt.  No search takes place.
13891 <DT>First Line</DT>
13892 <DD> Takes you back to the composer with the cursor on the first character
13893 of the first line of text.
13895 <DT>Last Line</DT>
13896 <DD> Takes you back to the composer with the cursor on the last character
13897 of the last line of text.
13899 <DT>Replace (Optional)</DT>
13900 <DD> This sub-command is enabled by the 
13901 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13902 feature (which is on by default); see its help screen for details on how replacing works.
13904 </DL>
13906 &lt;End of help on this topic&gt;
13907 </BODY>
13908 </HTML>
13909 ======= h_composer_to ====
13910 <HTML>
13911 <HEAD>
13912 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13913 </HEAD>
13914 <BODY>
13915 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13917 <H2>The &quot;To:&quot; field</H2>
13918 The address you enter here must be a valid email address that is reachable
13919 from your site. 
13921 <H2>Email Address Format</H2>
13922 You may enter a full name and email address, 
13923 <!--chtml if pinemode="os_windows"-->
13924 <!--chtml else-->
13925 a local (meaning, on the same 
13926 host as the one you are running Alpine on) username that Alpine will
13927 complete for you, 
13928 <!--chtml endif-->
13929 the nickname of someone in a 
13930 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13931 mail alias defined by your system administrator.  When you move the cursor
13932 out of this field, the nicknames will be expanded to the addresses in your
13933 address book, and the local usernames will be expanded to include the 
13934 persons' actual names.  You may enter as many addresses as you wish, but they 
13935 must be separated by commas.  You can move around this and other header fields
13936 with the arrow keys and use many of the usual composer editing keys.
13938 <UL>
13939 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13940 </UL>
13943 <H2>MESSAGE HEADER COMMANDS</H2>
13944 <!--chtml if pinemode="function_key"-->
13945 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13946 ^B&nbsp;(Left&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;Back&nbsp;character&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Delete&nbsp;current&nbsp;character<BR>
13947 ^F&nbsp;(Right&nbsp;Arrow)&nbsp;&nbsp;&nbsp;Forward&nbsp;character&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^H&nbsp;(DEL)&nbsp;Delete&nbsp;previous&nbsp;character<BR>
13948 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13949 ^N&nbsp;(Down&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cut&nbsp;marked&nbsp;text&nbsp;or<BR>
13950 ^A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Beginning&nbsp;of&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;delete&nbsp;current&nbsp;line<BR>
13951 ^E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End&nbsp;of&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Undelete&nbsp;line(s)<BR>
13952 F7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^W&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_composer_search">Whereis</A>&nbsp;(search&nbsp;text)<BR>
13953 F8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|-------------------------------------<BR>
13954 ^@&nbsp;(Ctrl-SPACE)&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;word&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|SCREEN/COMPOSITION&nbsp;COMMANDS<BR>
13955 ----------------------------------------|<BR>
13956 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13957 F3&nbsp;&nbsp;&nbsp;<A HREF="h_compose_cancel">Cancel</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;F1&nbsp;&nbsp;&nbsp;&nbsp;Get&nbsp;help&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Attach&nbsp;File<BR>
13958 F11&nbsp;&nbsp;<A HREF="h_common_postpone">Postpone</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;^Z&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_common_suspend">Suspend</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^L&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Redraw&nbsp;Screen<BR>
13959 F2&nbsp;&nbsp;&nbsp;<A HREF="h_compose_send">Send</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13960 <!--chtml else-->
13961 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13962 ^B&nbsp;(Left&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;Back&nbsp;character&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Delete&nbsp;current&nbsp;character<BR>
13963 ^F&nbsp;(Right&nbsp;Arrow)&nbsp;&nbsp;&nbsp;Forward&nbsp;character&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^H&nbsp;(DEL)&nbsp;Delete&nbsp;previous&nbsp;character<BR>
13964 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13965 ^N&nbsp;(Down&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^K&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cut&nbsp;marked&nbsp;text&nbsp;or<BR>
13966 ^A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Beginning&nbsp;of&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;delete&nbsp;current&nbsp;line<BR>
13967 ^E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End&nbsp;of&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^U&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Undelete&nbsp;line(s)<BR>
13968 ^Y&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13969 ^V&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;page&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|-------------------------------------<BR>
13970 ^@&nbsp;(Ctrl-SPACE)&nbsp;&nbsp;&nbsp;&nbsp;Next&nbsp;word&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|SCREEN/COMPOSITION&nbsp;COMMANDS<BR>
13971 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13972 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^T&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13973 ^C&nbsp;&nbsp;&nbsp;<A HREF="h_compose_cancel">Cancel</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;^G&nbsp;&nbsp;&nbsp;&nbsp;Get&nbsp;help&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^J&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Attach&nbsp;File<BR>
13974 ^O&nbsp;&nbsp;&nbsp;<A HREF="h_common_postpone">Postpone</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;^Z&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_common_suspend">Suspend</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;^L&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Redraw&nbsp;Screen<BR>
13975 ^X&nbsp;&nbsp;&nbsp;<A HREF="h_compose_send">Send</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;TAB&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_addrcomplete">Address&nbsp;Completion</A><BR>
13976 <!--chtml endif-->
13979 NOTE:
13980 <OL>
13981  <LI>For help on a particular command, highlight the bold text associated
13982 with it above and hit Return.
13983  <LI> The availability of certain commands 
13984 is determined by Alpine configuration files and system capabilities.
13985 At some sites, certain commands may not be available due to security or
13986 support concerns.
13987 </OL>
13990 <UL>   
13991 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13992 </UL><P>
13993 &lt;End of help on this topic&gt;
13994 </BODY>
13995 </HTML>
13996 ======= h_composer_cc ====
13997 <HTML>
13998 <HEAD>
13999 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
14000 </HEAD>
14001 <BODY>
14002 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
14003 The Cc: field is just like the To: field, except it is used for addressees
14004 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
14005 not directly meant directly &quot;for&quot; these recipients, but you wanted 
14006 them to see the message.  The only difference the recipients see is that their 
14007 name is in the Cc: field, rather than the To: field.
14009 For help with Cc: field editing
14010 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14012 <UL>
14013 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14014 </UL>
14016 <UL>   
14017 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14018 </UL><P>
14019 &lt;End of help on this topic&gt;
14020 </BODY>
14021 </HTML>
14022 ======= h_composer_bcc ====
14023 <HTML>
14024 <HEAD>
14025 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
14026 </HEAD>
14027 <BODY>
14028 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
14029 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
14030 a copy of the message to one or more people whose addresses you do not
14031 wish disclosed, either to reduce clutter or for confidentiality.
14033 The format of the Bcc: field is just the same as the To: and Cc: fields in
14034 the way the addresses are entered.  The recipients listed here will
14035 receive a copy of the message, but --assuming your site's mail transport
14036 software is properly configured-- their addresses will not show up in the
14037 headers of the message, as delivered to all of the recipients.  The To:
14038 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
14040 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
14041 will automatically generate and place in the To: field a pseudo-address of 
14042   &quot;undisclosed-recipients: ;&quot;
14043 or whatever string has been specified in the 
14044 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14045 variable.
14047 The reason for this is to avoid embarrassment caused by some Internet
14048 mail transfer software that interprets a &quot;missing&quot; To: header as 
14049 an error and replaces it with an Apparently-to: header that may contain
14050 the addresses you entered on the Bcc: line.  In addition, it may be
14051 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
14053 You can manipulate what text ends up on the (originally) empty To:
14054 field.  Just remember to put a colon and semicolon at the end of the
14055 field, which is a special notation denoting that it is not a real address.
14057 For information on message header editing
14058 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14060 <UL>
14061 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14062 </UL>
14064 <UL>   
14065 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14066 </UL><P>
14067 &lt;End of help on this topic&gt;
14068 </BODY>
14069 </HTML>
14070 ======= h_composer_lcc ====
14071 <HTML>
14072 <HEAD>
14073 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14074 </HEAD>
14075 <BODY>
14076 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14077 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14078 you wish to send a message to a list of people but avoid having all
14079 of their addresses visible, in order to reduce clutter when the
14080 message is received.
14082 It is similar to the 
14083 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14084 in that individual
14085 addressees are hidden, but Lcc is designed to work specifically with
14086 distribution lists you have created in your 
14087 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14088 the nickname of the list on the Lcc line will result in the full name of
14089 your Alpine Address Book list being placed on the To: line of the message,
14090 using a special notation that distinguishes it from a real address. You
14091 must leave the To: line blank for your list name to appear there.
14093 For example, if you have this list entered in your Address Book:<PRE>
14095         largo         Key Largo List       DISTRIBUTION LIST:
14096                                            bogie@mgm.com
14097                                            lauren@mgm.com
14098                                            walter@mgm.com</PRE>
14101 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14102 the result is:<PRE>
14104         To      : Key Largo List: ;
14105         Cc      :
14106         Bcc     :
14107         Fcc     : sent-mail
14108         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14109                   lauren@mgm.com,
14110                   walter@mgm.com
14111         Subject :</PRE>
14113 Each recipient listed on the Lcc: line receives a copy of the message
14114 without their address being visible (as though they were listed on the
14115 Bcc: line). The colon-semicolon notation used to put the full-name of the
14116 list on the To: line is a special address format that doesn't specify any
14117 actual addressees, but does give some information to the recipients of the
14118 message.
14120 Note: if after entering an LCC, you delete the list name that is placed
14121 on the To: line, then recipients will see <PRE>
14122        To: undisclosed-recipients: ;</PRE>
14124 (or whatever string is defined in the 
14125 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14126 variable) just as in the BCC case. 
14128 For help with Lcc: field editing
14129 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14131 <UL>
14132 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14133 </UL>
14135 <UL>   
14136 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14137 </UL><P>
14138 &lt;End of help on this topic&gt;
14139 </BODY>
14140 </HTML>
14141 ======= h_composer_from =======
14142 <HTML>
14143 <HEAD>
14144 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14145 </HEAD>
14146 <BODY>
14147 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14149 This header carries your return address.  It is the address toward which
14150 replies (and often, future unrelated correspondence) will be directed,
14151 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14152 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14153 sure this address is correct.
14155 For help with message header editing
14156 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14158 <UL>
14159 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14160 </UL>
14162 <UL>   
14163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14164 </UL><P>
14165 &lt;End of help on this topic&gt;
14166 </BODY>
14167 </HTML>
14168 ======= h_composer_reply_to =======
14169 <HTML>
14170 <HEAD>
14171 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14172 </HEAD>
14173 <BODY>
14174 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14176 Most people should not need this header. The Reply-To: header is used in
14177 cases where you would like replies to your messages to be directed to an
14178 address other than your normal &quot;From:&quot; address.  This is atypical, 
14179 but can happen when you use multiple machines and do not have the same account
14180 name on each one, or when you wish to direct certain replies to accounts
14181 or folders designated for specific classes of correspondence.
14183 For help with message header editing
14184 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14186 <UL>
14187 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14188 </UL>
14191 <UL>   
14192 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14193 </UL><P>
14194 &lt;End of help on this topic&gt;
14195 </BODY>
14196 </HTML>
14197 ======= h_composer_custom_addr ====
14198 <HTML>
14199 <HEAD>
14200 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14201 </HEAD>
14202 <BODY>
14203 <H1>CUSTOMIZED HEADER FIELD</H1>
14204 This is a customized header, i.e. not one that is part of Alpine's normal
14205 set of Compose headers.
14207 For help with message header editing
14208 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14210 <UL>
14211 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14212 </UL>
14214 <UL>   
14215 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14216 </UL><P>
14217 &lt;End of help on this topic&gt;
14218 </BODY>
14219 </HTML>
14220 ======= h_composer_custom_free ====
14221 <HTML>
14222 <HEAD>
14223 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14224 </HEAD>
14225 <BODY>
14226 <H1>CUSTOMIZED HEADER FIELD</H1>
14227 This is a customized header, i.e. not one that is part of Alpine's normal
14228 set of Compose headers.
14230 This field consists of arbitrary text.
14232 For help with message header editing
14233 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14235 <UL>   
14236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14237 </UL><P>
14238 &lt;End of help on this topic&gt;
14239 </BODY>
14240 </HTML>
14241 ====== h_composer_news =====
14242 <HTML>
14243 <HEAD>
14244 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14245 </HEAD>
14246 <BODY>
14247 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14248 Use the newsgroups line to specify any and all USENET newsgroups to which
14249 your message should be posted.  When composing a message from scratch, this
14250 line may be hidden.  If so, just press the rich headers command
14251 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14252 to make it visible.
14254 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14255 people will be reading your message.  Also, you or your system manager
14256 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14257 in order for you to be able to post.
14259 For help with message header editing
14260 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14261 <P><UL>
14262 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14263 </UL>
14265 &lt;End of help on this topic&gt;
14266 </BODY>
14267 </HTML>
14268 ======= h_composer_fcc ====
14269 <HTML>
14270 <HEADER>
14271 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14272 </HEADER>
14273 <BODY>
14274 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14275 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14276 each outgoing message.  The default value can be configured with the
14277 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14278 the file carbon copy on any message you send by editing the FCC header.<p>
14280 You may type ^T to get a list of all your folders and select one to use as
14281 the FCC for this message.<P>
14283 For help with message header editing
14284 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14286 <UL>   
14287 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14288 </UL><P>
14289 &lt;End of help on this topic&gt;
14290 </BODY>
14291 </HTML>
14292 ======= h_composer_subject ====
14293 <HTML>
14294 <HEADER>
14295 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14296 </HEADER>
14297 <BODY>
14298 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14300 The subject header provides a place to enter a few words that summarize
14301 the topic of the message you are sending.  You may leave this line blank,
14302 but it is considered a courtesy to use a meaningful subject.<p>
14304 For help with message header editing
14305 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14307 <UL>   
14308 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14309 </UL><P>
14310 &lt;End of help on this topic&gt;
14311 </BODY>
14312 </HTML>
14313 ======= h_composer_attachment ====
14314 <HTML>
14315 <HEAD>
14316 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14317 </HEAD>
14318 <BODY>
14319 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14321 The &quot;Attchmnt:&quot; field is where you specify what file or
14322 files you'd like attached to
14323 the message you are composing.  Those files must reside on the machine
14324 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14325 account on a Unix machine, you'll have to transfer it before attaching it.
14326 Contact local computer support people for assistance with transferring.
14329 The file name
14330 given can be an absolute file path name for your system
14331 <!--chtml if pinemode="os_windows"-->
14332 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14333 with a relative pathname, or simply a file name without
14334 drive or directory specification.  
14335 <!--chtml else-->
14336 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14337 a file in your home directory, or a file path relative to your 
14338 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14339 your home directory or &quot;~user&quot; to refer to another
14340 account's home directory.
14341 <!--chtml endif--><P>
14342 No wild card characters may be used.
14343 <P>If the 
14344 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14345 feature is set, names are relative to your current working directory 
14346 <!--chtml if pinemode="running"-->
14347 (which, at least for your current Alpine &quot;session,&quot; 
14348 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14349 <!--chtml endif-->
14350 rather than your home directory
14351 <!--chtml if pinemode="running"-->
14352 (which, in the present configuration of your system, is
14353  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14354 <!--chtml endif-->
14357 Alpine uses MIME encoding for attachments, so binaries and files of any
14358 length can safely be delivered to any MIME-capable mail reading program.
14359 If you send an attachment to someone who does not have a MIME-capable mail
14360 reading program yet, then the main message text will be readable, but
14361 attachments (even attachments that are just plain text) are not.
14364 Typing the filename on the Attchmnt: line achieves the same
14365 result as using the 
14366 <!--chtml if pinemode="function_key"-->
14368 <!--chtml else-->
14369 Ctrl-J
14370 <!--chtml endif--> command.
14373 If you Forward a message with attachments, you may delete them from your
14374 Forwarded message by editing the Attchmnt header line.
14377 For help with message header editing
14378 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14380 <UL>   
14381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14382 </UL><P>
14383 &lt;End of help on this topic&gt;
14384 </BODY>
14385 </HTML>
14386 ======= h_composer_ctrl_j ====
14387 <HTML>
14388 <HEAD>
14389 <TITLE>COMPOSER ATTACH</TITLE>
14390 </HEAD>
14391 <BODY>
14392 After the
14393 <!--chtml if pinemode="function_key"-->
14395 <!--chtml else-->
14396 Ctrl-J
14397 <!--chtml endif--> command:
14398 At the &quot;File to attach:&quot; prompt, enter the name of the 
14399 existing file to attach to your message.  
14400 When the feature
14401 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14402 is set
14403 you need only enter the beginning of the filename (enough of it to uniquely 
14404 identify the file) and press TAB to complete it.
14406 Or, press ^T to use the BROWSER screen for 
14407 selecting the file.  <P>
14408 For more information on attaching files, see the help screen for the 
14409 composer's 
14410 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14411 but can be revealed using the 
14412 <!--chtml if pinemode="function_key"-->
14414 <!--chtml else-->
14415 Ctrl-R
14416 <!--chtml endif--> 
14417 command with the cursor positioned above the
14418 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14420 &lt;End of help on this topic&gt;
14421 </BODY>
14422 </HTML>
14423 ======= h_edit_nav_cmds =========
14424 <HTML>
14425 <HEAD>
14426 <TITLE>Composer Editing Commands Explained</TITLE>
14427 </HEAD>
14428 <BODY>
14429 <H1>EDITING and NAVIGATION COMMANDS</H1>
14430 <!--chtml if pinemode="function_key"-->
14431 <PRE>
14432 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14433 ^B (Left Arrow)    Back character       | ^D       Delete current character
14434 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14435 ^P (Up Arrow)      Previous line        |
14436 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14437 ^A                 Beginning of line    |            delete current line
14438 ^E                 End of line          | F10      Undelete line(s)
14439 F7                 Previous page        |
14440 F8                 Next page            |-------------------------------------
14441 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14442 ----------------------------------------|
14443 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14444 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14445 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14446 </PRE>
14447 <!--chtml else-->
14448 <PRE>
14449 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14450 ^B (Left Arrow)    Back character       | ^D       Delete current character
14451 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14452 ^P (Up Arrow)      Previous line        |
14453 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14454 ^A                 Beginning of line    |            delete current line
14455 ^E                 End of line          | ^U       Undelete line(s)
14456 ^Y                 Previous page        |
14457 ^V                 Next page            |-------------------------------------
14458 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14459 ----------------------------------------|
14460 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14461 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14462 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14463 </PRE>
14464 <!--chtml endif-->
14465 &lt;End of help on this topic&gt;
14466 </BODY>
14467 </HTML>
14468 ===== h_composer_sigedit =====
14469 <HTML>
14470 <HEAD>
14471 <TITLE>Signature Editor Commands Explained</TITLE>
14472 </HEAD>
14473 <BODY>
14474 <H1>SIGNATURE EDITOR COMMANDS</H1>
14475 <!--chtml if pinemode="function_key"-->
14476 <PRE>
14477 CURSOR MOTION KEYS                     |EDITING KEYS
14478   ^B (Left Arrow)   Back character     | ^D       Delete current character
14479   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14480   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14481   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14482   ^A                Beginning of line  |           delete current line
14483   ^E                End of line        | F10       Paste text, undelete lines
14484   F7                Previous page      |           cut with ^K, or unjustify
14485   F8                Next page          |-------------------------------------
14486   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14487 ---------------------------------------| F6       Whereis (search for string)
14488 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14489  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14490                  |  ^Z    Suspend      | ^L       Redraw Screen
14491  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14492 </PRE>
14493 <!--chtml else-->
14494 <PRE>
14495 CURSOR MOTION KEYS                     |EDITING KEYS
14496   ^B (Left Arrow)   Back character     | ^D       Delete current character
14497   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14498   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14499   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14500   ^A                Beginning of line  |           delete current line
14501   ^E                End of line        | ^U        Paste text, undelete lines
14502   ^Y                Previous page      |           cut with ^K, or unjustify
14503   ^V                Next page          |-------------------------------------
14504   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14505 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14506 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14507  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14508                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14509  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14510 </PRE>
14511 <!--chtml endif-->
14513 NOTE: The presence or absence of the following commands is determined
14514 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14515 some of these commands may be administratively disabled by your system
14516 manager; if they don't work, please check with your local help desk
14517 before reporting a bug.
14519 <UL>
14520  <LI>Suspend (suspends Alpine and gives a system prompt)
14521  <LI>Alternate editor (allows you to compose with your own editor)
14522 </UL>
14525 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14526 Ctrl-&#92;, ESC
14529 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14530 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14532 &lt;End of help on this topic&gt;
14533 </BODY>
14534 </HTML>
14535 ===== h_composer_commentedit =====
14536 <HTML>
14537 <HEAD>
14538 <TITLE>Comment Editor Commands Explained</TITLE>
14539 </HEAD>
14540 <BODY>
14541 <H1>COMMENT EDITOR COMMANDS</H1>
14542 <!--chtml if pinemode="function_key"-->
14543 <PRE>
14544 CURSOR MOTION KEYS                     |EDITING KEYS
14545   ^B (Left Arrow)   Back character     | ^D       Delete current character
14546   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14547   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14548   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14549   ^A                Beginning of line  |           delete current line
14550   ^E                End of line        | F10       Paste text, undelete lines
14551   F7                Previous page      |           cut with ^K, or unjustify
14552   F8                Next page          |-------------------------------------
14553   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14554 ---------------------------------------| F6       Whereis (search for string)
14555 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14556  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14557                  |  ^Z    Suspend      | ^L       Redraw Screen
14558  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14559 </PRE>
14560 <!--chtml else-->
14561 <PRE>
14562 CURSOR MOTION KEYS                     |EDITING KEYS
14563   ^B (Left Arrow)   Back character     | ^D       Delete current character
14564   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14565   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14566   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14567   ^A                Beginning of line  |           delete current line
14568   ^E                End of line        | ^U        Paste text, undelete lines
14569   ^Y                Previous page      |           cut with ^K, or unjustify
14570   ^V                Next page          |-------------------------------------
14571   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14572 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14573 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14574  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14575                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14576  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14577 </PRE>
14578 <!--chtml endif-->
14580 NOTE: The presence or absence of the following commands is determined
14581 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14582 some of these commands may be administratively disabled by your system
14583 manager; if they don't work, please check with your local help desk
14584 before reporting a bug.
14586 <UL>
14587  <LI>Suspend (suspends Alpine and gives a system prompt)
14588  <LI>Alternate editor (allows you to compose with your own editor)
14589 </UL>
14592 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14593 Ctrl-&#92;, ESC
14596 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14597 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14599 &lt;End of help on this topic&gt;
14600 </BODY>
14601 </HTML>
14602 ======= h_composer_abook_nick =======
14603 <HTML>
14604 <HEAD>
14605 <TITLE>Addressbook Nickname Explained</TITLE>
14606 </HEAD>
14607 <BODY>
14608 This is a short nickname for this address book entry.  If it is used in
14609 place of an address from the composer, the composer will fill in the
14610 address(es) for the entry that matches the nickname. 
14613 Look <A HREF="h_edit_nav_cmds">here</A>
14614 to see the available Editing and Navigation commands.
14616 &lt;End of help on this topic&gt;
14617 </BODY>
14618 </HTML>
14619 ======= h_composer_abook_full =======
14620 <HTML>
14621 <HEAD>
14622 <TITLE>Addressbook Fullname Explained</TITLE>
14623 </HEAD>
14624 <BODY>
14625 This is the full name field for this entry.  If this is going to be a
14626 distribution list (more than one address), it should be a descriptive
14627 phrase describing the list.  It will be included in the mail header if you
14628 put the list in the To: or CC: field, or in the To: line if you put the
14629 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14630 leave any of the other fields blank, too). If this address book entry is
14631 going to be a simple entry with just one address, then this field is the
14632 person's name. When you send mail to this entry, this is the field to the
14633 left of the brackets. That is, it is the most readable part of the 
14634 address. For example, in the sample address:
14635 <PRE>
14636        John Doe &lt;jdoe@some.domain&gt;
14637 </PRE>
14638 "John Doe" is the full name field. If you are sorting your address book
14639 with one of the options that uses full names, then it might be useful to
14640 enter the full name as "Last, First", for example:
14641 <PRE>
14642        Doe, John
14643 </PRE>
14644 so that it will be sorted using Doe instead of John. This will be changed
14645 back into John Doe when you use it.
14647 Look <A HREF="h_edit_nav_cmds">here</A>
14648 to see the available Editing and Navigation commands.
14650 &lt;End of help on this topic&gt;
14651 </BODY>
14652 </HTML>
14653 ======= h_composer_abook_fcc =======
14654 <HTML>
14655 <HEAD>
14656 <TITLE>Addressbook Fcc Explained</TITLE>
14657 </HEAD>
14658 <BODY>
14659 If this entry is the first one in the To: line of an outgoing message,
14660 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14661 you would normally get (which depends on which
14662 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14663 you've chosen). 
14665 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14666 that you don't want any Fcc associated with this entry.
14668 Look <A HREF="h_edit_nav_cmds">here</A>
14669 to see the available Editing and Navigation commands.
14671 &lt;End of help on this topic&gt;
14672 </BODY>
14673 </HTML>
14674 ====== h_config_combined_abook_display =====
14675 <HTML>
14676 <HEAD>
14677 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14678 </HEAD>
14679 <BODY>
14680 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14682 This feature affects the address book display screens.
14683 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14684 will cause the remaining address books and directory servers to disappear
14685 from the screen, leaving only the entries of the expanded address book.
14686 If this feature is set, then the other address books will remain on the screen,
14687 so that all of the address books can be present at once.
14690 The way that commands work won't be changed.
14691 For example, the Select All command will select all of the entries in the
14692 current address book, not all of the entries in all of the address books.
14693 The WhereIs command will change a little.
14694 It will search through all of the text on the screen plus all of the entries
14695 from expanded address books.
14698 When this feature is set, the setting of the feature
14699 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14700 has an effect.
14702 &lt;End of help on this topic&gt;
14703 </BODY>
14704 </HTML>
14705 ====== h_config_titlebar_color_style =====
14706 <HTML>
14707 <HEAD>
14708 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14709 </HEAD>
14710 <BODY>
14711 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14713 This option affects the colors used to display the titlebar (the top
14714 line on the screen) when viewing a message.
14717 The available options include:
14720 <DL>
14721 <DT>default</DT>
14722 <DD>The color of the titlebar will be the color you set for the
14723 <A HREF="h_config_title_color">Title Color</A>.
14724 The Title Color may be set by using the
14725 <A HREF="h_color_setup">Setup Kolor</A> screen.
14726 </DD>
14728 <DT>indexline</DT>
14729 <DD>The color of the titlebar will be the same as the color of the
14730 index line corresponding to the message being viewed.
14731 The rules that determine what color the index line will be may be set
14732 up by going to the Setup/Rules/Indexcolor screen.
14733 If the index line for a message is not colored explicitly by the
14734 Indexcolor rules, then the titlebar will be colored the same as for
14735 the &quot;default&quot; option above (which is not the same color that
14736 the index line itself will have).
14737 </DD>
14739 <DT>reverse-indexline</DT>
14740 <DD>This is similar to the &quot;indexline&quot; option except the
14741 foreground and background colors from the corresponding index line will
14742 be reversed.
14743 For example, if the index line color is red letters on a white background,
14744 then the titlebar will be white letters on a red background.
14745 If the index line for a message is not colored explicitly by the
14746 Indexcolor rules, then the titlebar will be colored the same as for
14747 the &quot;default&quot; option above (which is not the same color that
14748 the index line itself will have).
14749 </DD>
14750 </DL>
14754 <UL>   
14755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14756 </UL><P>
14757 &lt;End of help on this topic&gt;
14758 </BODY>
14759 </HTML>
14760 ====== h_config_index_color_style =====
14761 <HTML>
14762 <HEAD>
14763 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14764 </HEAD>
14765 <BODY>
14766 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14768 This option affects the colors used to display the current line in the
14769 MESSAGE INDEX screen.
14770 If you do not have Index Color Rules defined, then this option will
14771 have no effect in the index.
14772 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14774 If the option
14775 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14776 is turned on and the
14777 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14778 is set to something other than the default, then
14779 this option also affects the color used to display the current folder
14780 in the Incoming FOLDER LIST screen.
14783 The available options include:
14786 <DL>
14787 <DT>flip-colors</DT>
14788 <DD>This is the default.
14789 If an index line is colored because it matches one of your
14790 Index Color Rules, then its colors will be reversed when it is the currently
14791 highlighted line.
14792 For example, if the line is normally red text on a blue background, then
14793 when it is the current line it will be drawn as blue text on a red background.
14795 The rest of the option values all revert to this flip-colors behavior if
14796 there is no Reverse Color defined.
14797 </DD>
14799 <DT>reverse</DT>
14800 <DD>With this option the Reverse color is always used to highlight the
14801 current line.
14802 </DD>
14804 <DT>reverse-fg</DT>
14805 <DD>The foreground part of the Reverse Color is used to highlight
14806 the current line.
14807 If this would cause the text to be unreadable (because the foreground and
14808 background colors are the same) or if it would cause no change in the
14809 color of the index line, then the colors are flipped instead.
14811 Some people think this works particularly well if you use different
14812 background colors to emphasize &quot;interesting&quot; lines,
14813 but always with the same Normal foreground color,
14814 and you use a different foreground color for the Reverse Color.
14815 </DD>
14817 <DT>reverse-fg-no-ambiguity</DT>
14818 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14819 the resulting color will be exactly the same as the regular Reverse
14820 Color.
14821 That can lead to some possible confusion because an
14822 &quot;interesting&quot;
14823 line that is the current line will be displayed exactly the same as a
14824 non-interesting line that is current.
14825 You can't tell whether the line is just a regular current line or if it is
14826 an &quot;interesting&quot; current line by looking at the color.
14827 Setting the option to this value removes that ambiguity.
14828 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14829 interesting current line would look just like a non-interesting current line.
14830 In that case, the interesting line's colors are simply flipped (like in the
14831 default behavior).
14833 As an alternative way to preserve the line's interestingness in this case,
14834 you may find that using both a different foreground and a different
14835 background color for the interesting line will help.
14836 </DD>
14838 <DT>reverse-bg</DT>
14839 <DD>The background part of the Reverse Color is used to highlight
14840 the current line.
14841 If this would cause the text to be unreadable (because the foreground and
14842 background colors are the same) or if it would cause no change in the
14843 color of the index line, then the colors are flipped instead.
14845 Some people think this works particularly well if you use different
14846 foreground colors to emphasize &quot;interesting&quot; lines,
14847 but always with the same Normal background color,
14848 and you use a different background color for the Reverse Color.
14849 </DD>
14851 <DT>reverse-bg-no-ambiguity</DT>
14852 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14853 rule may also result in a color that is exactly the same as the regular
14854 Reverse Color.
14855 Setting the option to this value removes that ambiguity.
14856 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14857 current line has the same color as the Reverse Color.
14858 In that case, the interesting line's colors are simply flipped (like in the
14859 default behavior).
14860 </DD>
14861 </DL>
14865 <UL>   
14866 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14867 </UL><P>
14868 &lt;End of help on this topic&gt;
14869 </BODY>
14870 </HTML>
14871 ====== h_config_expanded_addrbooks =====
14872 <HTML>
14873 <HEAD>
14874 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14875 </HEAD>
14876 <BODY>
14877 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14879 If multiple address books (either personal or global) are defined, and you
14880 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14881 screen, then set this feature. This feature will have no effect unless the
14882 feature
14883 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14884 is also set.
14886 &lt;End of help on this topic&gt;
14887 </BODY>
14888 </HTML>
14889 ====== h_config_combined_folder_display =====
14890 <HTML>
14891 <HEAD>
14892 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14893 </HEAD>
14894 <BODY>
14895 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14897 This feature affects the folder list display screens.
14898 Normally, each folder list is viewed within its collection only.  This
14899 command allows folder lists to be viewed within a single screen that
14900 combines the contents of all collections.
14903 The way that commands work won't be changed.
14904 For example, the Select All command will select all of the folders in the
14905 current collection, not all of the entries in all of the collections.
14906 The WhereIs command will change a little.
14907 It will search through all of the folders in the current collection as well
14908 as all the folder in any other expanded collection.
14911 When this feature is set, the setting of the feature
14912 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14913 has an effect.
14915 &lt;End of help on this topic&gt;
14916 </BODY>
14917 </HTML>
14918 ====== h_config_combined_subdir_display =====
14919 <HTML>
14920 <HEAD>
14921 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14922 </HEAD>
14923 <BODY>
14924 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14926 This feature affects the Folder List screen when
14928 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14929 feature is enabled.  Normally, selecting a directory from the Folder
14930 List takes you into a new screen displaying only the contents of
14931 that directory.
14934 Enabling this feature will cause the contents of the selected
14935 directory to be
14936 displayed within the boundaries of the &quot;Collection&quot; it
14937 is a part of.  All previously displayed collections will remain
14938 in the screen.
14941 The way that commands work won't be changed.
14942 For example, the Select All command will select all of the folders in the
14943 directory, as opposed to all of the entries in all of the collections.
14944 The WhereIs command will change a little.
14945 It will search through all of the folders in the current collection as well
14946 as all the folder in any other expanded collection.
14949 &lt;End of help on this topic&gt;
14950 </BODY>
14951 </HTML>
14952 ====== h_config_separate_fold_dir_view =====
14953 <HTML>
14954 <HEAD>
14955 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14956 </HEAD>
14957 <BODY>
14958 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14960 This feature affects folder collections wherein a folder
14961 and directory can have the same name.  By default, Alpine displays them
14962 only once, denoting that it is both a folder and directory by appending
14963 the folder name with the hierarchy character enclosed
14964 in square brackets.
14968 Enabling this feature will cause Alpine to display such names
14969 separately marking the name representing a directory with a trailing
14970 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14973 The feature also alters the command set slightly.  By default, the
14974 right-arrow descends into the directory, while hitting the Return key will
14975 cause the folder by that name to be opened.
14978 With this feature set, the Return key will open the highlighted folder, or
14979 enter the highlighted directory.
14982 &lt;End of help on this topic&gt;
14983 </BODY>
14984 </HTML>
14985 ====== h_config_expanded_folders =====
14986 <HTML>
14987 <HEAD>
14988 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14989 </HEAD>
14990 <BODY>
14991 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14993 If multiple folder collections are defined, and you
14994 wish to have them all expanded implicitly upon entering the FOLDER LIST
14995 screen, then set this feature. This feature will have no effect unless the
14996 feature
14997 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14998 is also set.
15000 &lt;End of help on this topic&gt;
15001 </BODY>
15002 </HTML>
15003 ======= h_config_ldap_server =======
15004 <HTML>
15005 <HEAD>
15006 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
15007 </HEAD>
15008 <BODY>
15009 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
15010 This is the name of the host where an LDAP server is running.
15011 For redundancy, this may be a space-delimited set of server names, in which
15012 case the first server that answers is used.
15013 Each of the server names may be optionally followed by
15014 a colon and a port number.
15015 If this form is used then the port number configured below in the
15016 <EM>port</EM> field is not used.
15018 To find out whether your organization has its own LDAP server, 
15019 contact its computing support staff.
15020 <P><UL>
15021 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15022 </UL>
15024 &lt;End of help on this topic&gt;
15025 </BODY>
15026 </HTML>
15027 ======= h_config_ldap_base =======
15028 <HTML>
15029 <HEAD>
15030 <TITLE>LDAP OPTION: Search-Base</TITLE>
15031 </HEAD>
15032 <BODY>
15033 <H1>LDAP OPTION: Search-Base</H1>
15035 This is the search base to be used on this server.  It functions as a filter 
15036 by restricting your searches in the LDAP server database
15037 to the specified contents of the specified fields.  Without it, searches 
15038 submitted to this directory server may fail.  It might be something
15039 like:
15041 <PRE>
15042       O = &lt;Your Organization Name&gt;, C = US
15043 </PRE>
15044 or it might be blank.  
15045 (Some LDAP servers actually ignore anything specified here.)
15047 If in doubt what parameters you should specify here, 
15048 contact the maintainers of the LDAP server.
15049 <P><UL>
15050 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15051 </UL>
15053 &lt;End of help on this topic&gt;
15054 </BODY>
15055 </HTML>
15056 ======= h_config_ldap_port =======
15057 <HTML>
15058 <HEAD>
15059 <TITLE>LDAP OPTION: Port</TITLE>
15060 </HEAD>
15061 <BODY>
15062 <H1>LDAP OPTION: Port</H1>
15064 This is the TCP port number to be used with this LDAP server. If you leave
15065 this blank port 389 will be used.
15067 &lt;End of help on this topic&gt;
15068 </BODY>
15069 </HTML>
15070 ======= h_config_ldap_nick =======
15071 <HTML>
15072 <HEAD>
15073 <TITLE>LDAP OPTION: Nickname</TITLE>
15074 </HEAD>
15075 <BODY>
15076 <H1>LDAP OPTION: Nickname</H1>
15078 This is a nickname to be used in displays. If you don't supply a
15079 nickname the server name
15080 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15081 will be used instead.  This option is strictly for your convenience.
15083 &lt;End of help on this topic&gt;
15084 </BODY>
15085 </HTML>
15086 ======= h_config_ldap_binddn =======
15087 <HTML>
15088 <HEAD>
15089 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15090 </HEAD>
15091 <BODY>
15092 <H1>LDAP OPTION: Bind-DN</H1>
15094 You may need to authenticate to the LDAP server before you are able to use it.
15095 This is the Distinguished Name to bind to when authenticating to this server.
15096 Try leaving this blank until you know you need it.
15098 Alpine only knows about LDAP Simple authentication.
15099 It does not attempt LDAP SASL authentication.
15100 The DN and password will be sent in the clear unless TLS encryption is
15101 being used on this connection.
15102 Because of this, you may want to set the LDAP feature
15103 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15104 or the feature
15105 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15106 if you are going to be providing a password.
15107 <P><UL>
15108 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15109 </UL>
15111 &lt;End of help on this topic&gt;
15112 </BODY>
15113 </HTML>
15114 ======= h_config_ldap_opts_impl =======
15115 <HTML>
15116 <HEAD>
15117 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15118 </HEAD>
15119 <BODY>
15120 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15122 Set this to have lookups done to this server implicitly from the composer.
15123 If an address doesn't look like a fully-qualified address, it will be looked
15124 up in your address books, and if it doesn't match a nickname there, then it
15125 will be looked up on the LDAP servers that have this feature set.
15126 The lookups will also be done when using the address completion feature
15127 (TAB command) in the composer if any of the serves have this feature set.
15128 Also see the LDAP feature
15129 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15130 and the Setup/Config feature
15131 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15133 &lt;End of help on this topic&gt;
15134 </BODY>
15135 </HTML>
15136 ======= h_config_ldap_opts_tls =======
15137 <HTML>
15138 <HEAD>
15139 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15140 </HEAD>
15141 <BODY>
15142 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15144 When connecting to this server Alpine will attempt to use TLS encryption
15145 on the connection.
15146 Also see the closely related feature
15147 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15149 Note that if this option is set, then 
15150 <A HREF="h_config_ldap_opts_ldaps">
15151 &quot;Require-LDAPS-On-Connection&quot;</A>
15152 can not be enabled for this server. You must disable this feature in
15153 order to use 
15154 <A HREF="h_config_ldap_opts_ldaps">
15155 &quot;Require-LDAPS-On-Connection&quot;</A>
15157 &lt;End of help on this topic&gt;
15158 </BODY>
15159 </HTML>
15160 ======= h_config_ldap_opts_tlsmust =======
15161 <HTML>
15162 <HEAD>
15163 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15164 </HEAD>
15165 <BODY>
15166 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15168 When connecting to this server Alpine will attempt to use TLS encryption
15169 on the connection.
15170 If the StartTLS operation fails then the connection will not be used.
15172 Note that if this option is set, then 
15173 <A HREF="h_config_ldap_opts_ldaps">
15174 &quot;Require-LDAPS-On-Connection&quot;</A>
15175 can not be enabled for this server. You must disable this feature in
15176 order to use 
15177 <A HREF="h_config_ldap_opts_ldaps">
15178 &quot;Require-LDAPS-On-Connection&quot;</A>
15180 &lt;End of help on this topic&gt;
15181 </BODY>
15182 </HTML>
15183 ======= h_config_ldap_opts_ldaps =======
15184 <HTML>
15185 <HEAD>
15186 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15187 </HEAD>
15188 <BODY>
15189 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15191 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15192 on the connection.
15194 This feature can not be used along with 
15195 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15196  or
15197 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15198 If you want to connect using StartTLS to this server, you must disable
15199 this feature first.
15201 &lt;End of help on this topic&gt;
15202 </BODY>
15203 </HTML>
15204 ====== h_config_ldap_opts_rhs =====
15205 <HTML>
15206 <HEAD>
15207 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15208 </HEAD>
15209 <BODY>
15210 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15212 Normally implicit LDAP lookups from the composer are done only for the
15213 strings you type in from the composer screen. In other words, you type in
15214 something in the To or CC field and press return, then the string is looked up.
15215 First that string is looked up in your address books. If a match is found
15216 there, then the results of that match are looked up again. If you place
15217 a string in your address book that you want to have looked up on the LDAP
15218 directory server, you need to turn on this feature. If you set this feature
15219 for a server, you almost always will also want to set the
15220 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15221 feature. An example might serve to best illustrate this feature.
15223 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15224 entry with an
15225 address of pres@whitehouse.gov, then you might put an entry in your address
15226 book that looks like:
15228 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15229 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15231 Now, when you type &quot;bill&quot; into an
15232 address field in the composer Alpine will
15233 find the &quot;bill&quot; entry in your address book.
15234 It will replace &quot;bill&quot; with
15235 &quot;William Clinton&quot;.
15236 It will then search for an entry with that nickname
15237 in your address book and not find one. If this feature
15238 is set, Alpine will then attempt to lookup
15239 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15240 pres@whitehouse.gov.
15242 A better way to accomplish the same thing is probably to use the feature
15243 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15245 &lt;End of help on this topic&gt;
15246 </BODY>
15247 </HTML>
15248 ====== h_config_ldap_opts_ref =====
15249 <HTML>
15250 <HEAD>
15251 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15252 </HEAD>
15253 <BODY>
15254 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15256 Normally when you save the results of an LDAP directory lookup to your
15257 address book the results of the lookup are saved. If this feature is set
15258 and the entry being saved was found on this directory server, then the
15259 search criteria is saved instead of the results of the search. When this
15260 address book entry is used in the future, instead of copying the results
15261 from the address book the directory lookup will be done again. This could
15262 be useful if the copied result might become stale because the data on
15263 the directory server changes (for example, the entry's email address changes).
15264 You probably don't want to set this feature if the server is at all slow or
15265 unreliable.
15267 The way this actually works is that instead of saving the email address
15268 in your address book, Alpine saves enough information to look up the same
15269 directory entry again. In particular, it saves the server name and the
15270 distinguished name of the entry. It's possible that the server administrators
15271 might change the format of distinguished names on the server, or that the
15272 entry might be removed from the server. If Alpine notices this, you will be warned
15273 and a backup copy of the email address will be used. You may want to create
15274 a new entry in this case, since you will get the annoying warning every
15275 time you use the old entry. You may do that by Saving the entry to a new
15276 nickname in the same address book. You will be asked whether or not you
15277 want to use the backup email address.
15279 A related feature in the Setup/Config screen is
15280 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15282 &lt;End of help on this topic&gt;
15283 </BODY>
15284 </HTML>
15285 ======= h_config_ldap_opts_nosub =======
15286 <HTML>
15287 <HEAD>
15288 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15289 </HEAD>
15290 <BODY>
15291 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15293 Spaces in your input are normally handled specially.
15294 Each space character is replaced
15297 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15299 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15300 The reason this is done is so the input string
15302 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15304 (which is converted to &quot;Greg* Donald&quot;) will match
15305 the names &quot;Greg Donald&quot;,
15306 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15307 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15308 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15309 then it would also match the name &quot;Greg Donaldson&quot;.
15311 Turning on this feature will disable this substitution.
15313 &lt;End of help on this topic&gt;
15314 </BODY>
15315 </HTML>
15316 ====== h_config_ldap_searchtypes =======
15317 <HTML>
15318 <HEAD>
15319 <TITLE>LDAP OPTION: Search-Type</TITLE>
15320 </HEAD>
15321 <BODY>
15322 <H1>LDAP OPTION: Search-Type</H1>
15324 This affects the way that LDAP searches are done.
15325 In particular, this tells the server where to look for the string to be matched.
15326 If set to &quot;name&quot; then the string that is being searched for will
15327 be compared with the string in the
15328 &quot;Name&quot; field on the server
15329 (technically, it is the &quot;commonname&quot; field on the server).
15330 &quot;Surname&quot; means we're looking for a
15331 match in the &quot;Surname&quot; field on the
15332 server (actually the &quot;sn&quot; field).
15333 &quot;Givenname&quot; really is &quot;givenname&quot;
15334 and &quot;email&quot; is the electronic mail address (this is actually the field
15335 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15336 The other three types are combinations of
15337 the types listed so far. &quot;Name-or-email&quot;
15338 means the string should appear
15339 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15340 Likewise, &quot;surname-or-givenname&quot;
15341 means &quot;surname&quot; OR &quot;givenname&quot;
15342 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15344 This search TYPE is combined with the
15345 search <A HREF="h_config_ldap_searchrules">RULE</A>
15346 to form the actual search query.
15348 The usual default value for this
15349 option is &quot;sur-or-given-or-name-or-email&quot;.
15350 This type of search may be slow on some servers.
15351 Try &quot;name-or-email&quot;, which is often
15352 faster, or just &quot;name&quot; if the performance seems to be a problem.
15354 Some servers have been configured with different attribute names for
15355 these four fields.
15356 In other words, instead of using the attribute name &quot;mail&quot;
15357 for the email address field, the server might be configured to use something
15358 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15359 Alpine can be configured to use these different attribute names by using
15360 the four configuration options:
15361 <P><UL>
15362 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15363 </UL>
15364 <P><UL>
15365 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15366 </UL>
15367 <P><UL>
15368 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15369 </UL>
15370 <P><UL>
15371 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15372 </UL>
15374 &lt;End of help on this topic&gt;
15375 </BODY>
15376 </HTML>
15377 ====== h_config_ldap_searchrules =======
15378 <HTML>
15379 <HEAD>
15380 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15381 </HEAD>
15382 <BODY>
15383 <H1>LDAP OPTION: Search-Rule</H1>
15385 This affects the way that LDAP searches are done.
15386 If set to &quot;equals&quot; then
15387 only exact matches count.
15388 &quot;Contains&quot; means that the string you type in
15389 is a substring of what you are matching against.
15390 &quot;Begins-with&quot; and &quot;ends-with&quot;
15391 mean that the string starts or ends with the string you type in.
15393 Spaces in your input are normally handled specially, but you can turn that
15394 special handling off with the
15395 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15396 feature.
15398 The usual default value for this option is &quot;begins-with&quot;.
15400 &lt;End of help on this topic&gt;
15401 </BODY>
15402 </HTML>
15403 ======= h_config_ldap_email_attr =======
15404 <HTML>
15405 <HEAD>
15406 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15407 </HEAD>
15408 <BODY>
15409 <H1>LDAP OPTION: EmailAttribute</H1>
15411 This is the name of the attribute that is searched for when looking for
15412 an email address. The default value for this option is &quot;mail&quot; or
15413 &quot;electronicmail&quot;.
15414 If the server you are using uses a different attribute name for the email
15415 address, put that attribute name here.
15417 This will affect the search filter used if your Search-Type is one that
15418 contains a search for &quot;email&quot;.
15419 It will also cause the attribute value matching this attribute name to be used
15420 as the email address when you look up an entry from the composer.
15422 &lt;End of help on this topic&gt;
15423 </BODY>
15424 </HTML>
15425 ======= h_config_ldap_sn_attr =======
15426 <HTML>
15427 <HEAD>
15428 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15429 </HEAD>
15430 <BODY>
15431 <H1>LDAP OPTION: SurnameAttribute</H1>
15433 This is the name of the attribute that is searched for when looking for
15434 the surname of the entry. The default value for this option is &quot;sn&quot;.
15435 If the server you are using uses a different attribute name for the surname,
15436 put that attribute name here.
15437 This will affect the search filter used if your Search-Type is one that
15438 contains a search for &quot;surname&quot;.
15440 &lt;End of help on this topic&gt;
15441 </BODY>
15442 </HTML>
15443 ======= h_config_ldap_gn_attr =======
15444 <HTML>
15445 <HEAD>
15446 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15447 </HEAD>
15448 <BODY>
15449 <H1>LDAP OPTION: GivennameAttribute</H1>
15451 This is the name of the attribute that is searched for when looking for
15452 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15453 If the server you are using uses a different attribute name for the given name,
15454 put that attribute name here.
15455 This will affect the search filter used if your Search-Type is one that
15456 contains a search for &quot;givenname&quot;.
15458 &lt;End of help on this topic&gt;
15459 </BODY>
15460 </HTML>
15461 ======= h_config_ldap_cn_attr =======
15462 <HTML>
15463 <HEAD>
15464 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15465 </HEAD>
15466 <BODY>
15467 <H1>LDAP OPTION: NameAttribute</H1>
15469 This is the name of the attribute that is searched for when looking for
15470 the name of the entry. The default value for this option is &quot;cn&quot;, which
15471 stands for common name.
15472 If the server you are using uses a different attribute name for the name,
15473 put that attribute name here.
15474 This will affect the search filter used if your Search-Type is one that
15475 contains a search for &quot;name&quot;.
15477 &lt;End of help on this topic&gt;
15478 </BODY>
15479 </HTML>
15480 ======= h_config_ldap_time =======
15481 <HTML>
15482 <HEAD>
15483 <TITLE>LDAP OPTION: Timelimit</TITLE>
15484 </HEAD>
15485 <BODY>
15486 <H1>LDAP OPTION: Timelimit</H1>
15488 This places a limit on the number of seconds the LDAP search will continue.
15489 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15490 may place limits of their own on searches.
15492 &lt;End of help on this topic&gt;
15493 </BODY>
15494 </HTML>
15495 ======= h_config_ldap_size =======
15496 <HTML>
15497 <HEAD>
15498 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15499 </HEAD>
15500 <BODY>
15501 <H1>LDAP OPTION: Sizelimit</H1>
15503 This places a limit on the number of entries returned by the LDAP server.
15504 A value of 0 means no limit. The default is 0. Note that some servers
15505 may place limits of their own on searches.
15507 &lt;End of help on this topic&gt;
15508 </BODY>
15509 </HTML>
15510 ======= h_config_ldap_cust =======
15511 <HTML>
15512 <HEAD>
15513 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15514 </HEAD>
15515 <BODY>
15516 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15518 This one is for advanced users only! If you define this, then the
15519 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15520 However, the feature
15521 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15522 is still in effect.
15523 That is, the space substitution will take place even in a custom filter unless
15524 you disable it.
15526 If your LDAP service stops working and you suspect it might be because
15527 of your custom filter, just delete this filter and try using the
15528 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15529 Another option that sometimes causes trouble is the
15530 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15532 This variable may be set to the string representation of an LDAP search
15533 filter (see RFC1960). In the places where you want the address string to be
15534 substituted in, put a '%s' in this filter string. Here are some examples:
15536 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15537 is equivalent to the &quot;Custom-Search-Filter&quot;
15538 <PRE>
15539      (cn=%s*)
15540 </PRE>
15541 When you try to match against the string &quot;string&quot; the program replaces
15542 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15543 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15545 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15546 of &quot;contains&quot; is equivalent to
15547 <PRE>
15548      (|(cn=*%s*)(mail=*%s*))
15549 </PRE>
15551 If your server uses a different attribute <EM>name</EM> than
15552 Alpine uses by default,
15553 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15554 then you may be able to use one or more of the four attribute configuration
15555 options instead of defining a custom filter:
15556 <P><UL>
15557 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15558 </UL>
15559 <P><UL>
15560 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15561 </UL>
15562 <P><UL>
15563 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15564 </UL>
15565 <P><UL>
15566 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15567 </UL>
15569 &lt;End of help on this topic&gt;
15570 </BODY>
15571 </HTML>
15572 ======= h_composer_abook_comment =======
15573 <HTML>
15574 <HEAD>
15575 <TITLE>Addressbook Comment Explained</TITLE>
15576 </HEAD>
15577 <BODY>
15578 This is a comment to help you remember what this entry is. The WhereIs
15579 command searches comments so that it is easier to find an entry with a comment
15580 you know about attached to it. This field is not used in the outgoing message.
15582 Look <A HREF="h_edit_nav_cmds">here</A>
15583 to see the available Editing and Navigation commands.
15585 &lt;End of help on this topic&gt;
15586 </BODY>
15587 </HTML>
15588 ======= h_composer_abook_addrs =======
15589 <HTML>
15590 <HEAD>
15591 <TITLE>Addressbook Lists</TITLE>
15592 </HEAD>
15593 <BODY>
15594 <H1>Addressbook Lists</H1>
15596 This is a list of addresses to send to when sending to this address book
15597 entry.  Each member of the list may be an address or another nickname from
15598 any of your address books.  If it is an address, it is OK to include the
15599 full name field as well as the electronic address portion of that address.
15600 For example, the following are all legitimate entries in this field:
15602 <DL><DT>&nbsp;</DT>
15603 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15604 <DD>jdoe@some.domain
15605 <DD>John Doe &lt;jdoe@some.domain&gt;
15606 </DL>
15608 The addresses should be listed separated by commas, just like you would
15609 enter them from the composer.
15613 The only difference between a distribution list and a simple entry with a
15614 single address, is that a distribution list has more than one address   
15615 listed in the Addresses: field, whereas a simple personal entry has just  
15616 one address.
15620 For individual address book entries, if there is a full name in the
15621 Fullname: field (filling in the Fullname: field is not required), it is
15622 used.  If the full name is specified in the Address: field and not in the
15623 Fullname: field, then the full name from the Address: field is used.
15627 If you type the nickname of a distribution list from one of your address 
15628 books in the Lcc: field, then the full name of that list is used in the  
15629 To: field.  If you put a list in the To: or Cc: fields, that list will be
15630 expanded into all of its addresses.  If the list has a full name, then
15631 that will appear at the beginning of the addresses.
15633 <DL><DT>&nbsp;</DT>
15634 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15635 &lt;sal@here.there&gt;
15636 </DL>
15638 If the first address in the distribution list also has a full name, then
15639 the list full name and that full name are combined into something like the
15640 following:
15642 <DL><DT>&nbsp;</DT>
15643 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15644 </DL>
15647 If you specify a list via Lcc, the full name is used in the To: line.  If
15648 you specify a list in the To: or Cc: fields, then it uses the same method
15649 as for individual entries for filling in the full name.
15653 For help with editing and navigation commands, check the Help for the
15654 Nickname: field.
15657 &lt;End of help on this topic&gt;
15658 </BODY>
15659 </HTML>
15660 ======= h_config_role_nick =======
15661 <HTML>
15662 <HEAD>
15663 <TITLE>Nickname Explained</TITLE>
15664 </HEAD>
15665 <BODY>
15666 <H1>Nickname Explained</H1>
15668 This is a nickname to help you.
15669 You should have a different nickname for each role you define.
15670 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15671 pick a role to edit.
15672 It will also be used when you send a message to let you know you are
15673 sending with a different role than you use by default, and
15674 it will be useful for choosing a role when composing with the Role command
15675 or when composing with one of the Role Uses set to With Confirmation.
15676 This field is not used in the outgoing message.
15678 Look <A HREF="h_edit_nav_cmds">here</A>
15679 to see the available Editing and Navigation commands.
15681 &lt;End of help on this topic&gt;
15682 </BODY>
15683 </HTML>
15684 ======= h_config_role_comment =======
15685 <HTML>
15686 <HEAD>
15687 <TITLE>Comment Explained</TITLE>
15688 </HEAD>
15689 <BODY>
15690 <H1>Comment Explained</H1>
15692 This is a comment to help you.
15693 This comment does not play any functional role, it is simply an optional
15694 comment to help you remember what the rule is for.
15696 Look <A HREF="h_edit_nav_cmds">here</A>
15697 to see the available Editing and Navigation commands.
15699 &lt;End of help on this topic&gt;
15700 </BODY>
15701 </HTML>
15702 ======= h_config_other_nick =======
15703 <HTML>
15704 <HEAD>
15705 <TITLE>Nickname Explained</TITLE>
15706 </HEAD>
15707 <BODY>
15708 <H1>Nickname Explained</H1>
15710 This is a nickname to help you.
15711 You should have a different nickname for each rule you define.
15712 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15713 pick a rule to edit.
15715 Look <A HREF="h_edit_nav_cmds">here</A>
15716 to see the available Editing and Navigation commands.
15718 &lt;End of help on this topic&gt;
15719 </BODY>
15720 </HTML>
15721 ======= h_config_score_nick =======
15722 <HTML>
15723 <HEAD>
15724 <TITLE>Nickname Explained</TITLE>
15725 </HEAD>
15726 <BODY>
15727 <H1>Nickname Explained</H1>
15729 This is a nickname to help you.
15730 You should have a different nickname for each scoring rule you define.
15731 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15732 pick a rule to edit.
15734 Look <A HREF="h_edit_nav_cmds">here</A>
15735 to see the available Editing and Navigation commands.
15737 &lt;End of help on this topic&gt;
15738 </BODY>
15739 </HTML>
15740 ======= h_config_incol_nick =======
15741 <HTML>
15742 <HEAD>
15743 <TITLE>Nickname Explained</TITLE>
15744 </HEAD>
15745 <BODY>
15746 <H1>Nickname Explained</H1>
15748 This is a nickname to help you.
15749 You should have a different nickname for each color rule you define.
15750 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15751 pick a rule to edit.
15753 Look <A HREF="h_edit_nav_cmds">here</A>
15754 to see the available Editing and Navigation commands.
15756 &lt;End of help on this topic&gt;
15757 </BODY>
15758 </HTML>
15759 ======= h_config_filt_nick =======
15760 <HTML>
15761 <HEAD>
15762 <TITLE>Nickname Explained</TITLE>
15763 </HEAD>
15764 <BODY>
15765 <H1>Nickname Explained</H1>
15767 This is a nickname to help you.
15768 You should have a different nickname for each filtering rule you define.
15769 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15770 pick a rule to edit.
15772 Look <A HREF="h_edit_nav_cmds">here</A>
15773 to see the available Editing and Navigation commands.
15775 &lt;End of help on this topic&gt;
15776 </BODY>
15777 </HTML>
15778 ======= h_config_score_topat =======
15779 <HTML>
15780 <HEAD>
15781 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15782 </HEAD>
15783 <BODY>
15784 <H1>&quot;To:&quot; Pattern Explained</H1>
15786 Any text you enter as the &quot;To pattern&quot;
15787 will be compared to the recipients from the To: line of
15788 the message being scored.
15789 When the text you entered matches
15790 all or part of the To: line of a message, then the Score Value
15791 you have specified will be added to the score for the message.
15792 (Any other non-blank parts of the Pattern must match, too.)
15795 You may enter a complete email address, part of an address, or a
15796 list of addresses or partial addresses.
15797 For example:
15800 <PRE>
15801  To pattern = friend@public.com
15803  To pattern = rated.net
15805  To pattern = xxx@adults.com
15806               admin@msn.com
15807               fool@motleyfool.com
15808 </PRE>
15811 Each of those are valid To patterns.
15814 Messages match those patterns if any of the
15815 addresses in the To: line of the message contains the pattern.
15816 If the pattern is a list of patterns
15817 (like the last example above) then it is a match if any of the patterns in
15818 the list match any of the addresses in the To: line.
15819 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15820 present for a match.
15821 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15822 address2 must be present.
15823 That is exactly what using a list does.)
15826 Some messages may be &quot;bounced&quot; to you, and will
15827 have a &quot;Resent-To:&quot; header line.
15828 If the message contains a Resent-To: line
15829 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15830 Alpine will look for
15831 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15832 the original To: line.
15835 When entering a pattern, you may choose an address from your address book
15836 with the &quot;T&quot; command.
15839 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15840 &quot;!&quot; &quot;toggle NOT&quot; command.
15841 This changes the meaning of the To pattern so that it has the opposite meaning.
15842 It will be considered a match if there are no matches between the
15843 addresses in the To: line and the list of To patterns.
15845 Don't make the mistake of putting the &quot;!&quot; in the data field for
15846 the pattern.
15847 For example, if you type the characters &quot;!frizzle&quot; into the To
15848 pattern, the pattern will look like:
15850 <PRE>
15851  To pattern = !frizzle
15852 </PRE>
15854 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15855 In order to match messages that do not have &quot;frizzle&quot; in
15856 their To field, first type the characters &quot;frizzle&quot; followed
15857 by carriage return for the value of the To pattern, then negate it
15858 by typing the &quot;!&quot; command.
15859 It should end up looking like
15861 <PRE>
15862  ! To pattern = frizzle
15863 </PRE>
15865 You are not limited to using the six standard header patterns that are
15866 normally shown (To, From, Sender, Cc, News, and Subject).
15867 You may add any other header to a Pattern by
15868 using the &quot;eXtraHdr&quot; command to specify a different
15869 message header line; and then the Add or Change command to fill in
15870 a pattern for the new header line, just like you would for a standard header.
15872 A technicality: Since comma is the character used to separate multiple
15873 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15874 you want to include a literal comma in the field.
15875 In other words, if you type a backslash followed by a comma it will
15876 be interpreted as a comma by Alpine, instead of as a separator between
15877 pattern values.
15878 All other backslashes are literal backslashes and should not be escaped.
15880 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15881 for more information on Patterns.
15883 Look <A HREF="h_edit_nav_cmds">here</A>
15884 to see the available Editing and Navigation commands.
15886 &lt;End of help on this topic&gt;
15887 </BODY>
15888 </HTML>
15889 ======= h_config_incol_topat =======
15890 <HTML>
15891 <HEAD>
15892 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15893 </HEAD>
15894 <BODY>
15895 <H1>&quot;To:&quot; Pattern Explained</H1>
15897 Any text you enter as the &quot;To pattern&quot;
15898 will be compared to the recipients from the To: lines of
15899 the messages in the index.
15900 When the text you entered matches
15901 all or part of the To: line of a message, then the Index Line Color you have
15902 specified will be used for that line in the index.
15903 (Any other non-blank parts of the Pattern must match, too.)
15906 You may enter a complete email address, part of an address, or a
15907 list of addresses or partial addresses.
15908 For example:
15911 <PRE>
15912  To pattern = friend@public.com
15913  To pattern = rated.net
15914  To pattern = xxx@adults.com
15915               admin@msn.com
15916               fool@motleyfool.com
15917 </PRE>
15920 Each of those are valid To patterns.
15923 Messages match those patterns if any of the
15924 addresses in the To: line of the message contains the pattern.
15925 If the pattern is a list of patterns
15926 (like the last example above) then it is a match if any of the patterns in
15927 the list match any of the addresses in the To: line.
15928 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15929 present for a match.
15930 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15931 address2 must be present.
15932 That is exactly what using a list does.)
15935 Some messages may be &quot;bounced&quot; to you, and will
15936 have a &quot;Resent-To:&quot; header line.
15937 If the message contains a Resent-To: line
15938 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15939 Alpine will look for
15940 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15941 the original To: line.
15944 When entering a pattern, you may choose an address from your address book
15945 with the &quot;T&quot; command.
15948 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15949 &quot;!&quot; &quot;toggle NOT&quot; command.
15950 This changes the meaning of the To pattern so that it has the opposite meaning.
15951 It will be considered a match if there are no matches between the
15952 addresses in the To: line and the list of To patterns.
15954 Don't make the mistake of putting the &quot;!&quot; in the data field for
15955 the pattern.
15956 For example, if you type the characters &quot;!frizzle&quot; into the To
15957 pattern, the pattern will look like:
15959 <PRE>
15960  To pattern = !frizzle
15961 </PRE>
15963 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15964 In order to match messages that do not have &quot;frizzle&quot; in
15965 their To field, first type the characters &quot;frizzle&quot; followed
15966 by carriage return for the value of the To pattern, then negate it
15967 by typing the &quot;!&quot; command.
15968 It should end up looking like
15970 <PRE>
15971  ! To pattern = frizzle
15972 </PRE>
15975 You are not limited to using the six standard header patterns that are
15976 normally shown (To, From, Sender, Cc, News, and Subject).
15977 You may add any other header to a Pattern by
15978 using the &quot;eXtraHdr&quot; command to specify a different
15979 message header line; and then the Add or Change command to fill in
15980 a pattern for the new header line, just like you would for a standard header.
15982 A technicality: Since comma is the character used to separate multiple
15983 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15984 you want to include a literal comma in the field.
15985 In other words, if you type a backslash followed by a comma it will
15986 be interpreted as a comma by Alpine, instead of as a separator between
15987 pattern values.
15988 All other backslashes are literal backslashes and should not be escaped.
15990 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15991 for more information on Patterns.
15993 Look <A HREF="h_edit_nav_cmds">here</A>
15994 to see the available Editing and Navigation commands.
15996 &lt;End of help on this topic&gt;
15997 </BODY>
15998 </HTML>
15999 ======= h_config_other_topat =======
16000 <HTML>
16001 <HEAD>
16002 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16003 </HEAD>
16004 <BODY>
16005 <H1>&quot;To:&quot; Pattern Explained</H1>
16007 For some of the OTHER RULES actions, there is no message that is being
16008 compared against.
16009 If that is the case, then only the Current Folder Type is checked.
16010 In particular, this To pattern is ignored.
16011 Actions that fall into this category include both
16012 Sort Order and Index Format.
16014 A technicality: Since comma is the character used to separate multiple
16015 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16016 you want to include a literal comma in the field.
16017 In other words, if you type a backslash followed by a comma it will
16018 be interpreted as a comma by Alpine, instead of as a separator between
16019 pattern values.
16020 All other backslashes are literal backslashes and should not be escaped.
16022 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16023 for more information on Patterns.
16025 Look <A HREF="h_edit_nav_cmds">here</A>
16026 to see the available Editing and Navigation commands.
16028 &lt;End of help on this topic&gt;
16029 </BODY>
16030 </HTML>
16031 ======= h_config_filt_topat =======
16032 <HTML>
16033 <HEAD>
16034 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16035 </HEAD>
16036 <BODY>
16037 <H1>&quot;To:&quot; Pattern Explained</H1>
16039 Any text you enter as the &quot;To pattern&quot;
16040 will be compared to the recipients from the To: line of
16041 messages when Alpine opens folders.
16042 When the text you entered matches
16043 all or part of the To: line of a message, then the Filter Action you have
16044 specified will be carried out.
16045 (Any other non-blank parts of the Pattern must match, too.)
16048 You may enter a complete email address, part of an address, or a
16049 list of addresses or partial addresses.
16050 For example:
16053 <PRE>
16054  To pattern = friend@public.com
16055  To pattern = rated.net
16056  To pattern = xxx@adults.com
16057               admin@msn.com
16058               fool@motleyfool.com
16059 </PRE>
16062 Each of those are valid To patterns.
16065 Messages match those patterns if any of the
16066 addresses in the To: line of the message contains the pattern.
16067 If the pattern is a list of patterns
16068 (like the last example above) then it is a match if any of the patterns in
16069 the list match any of the addresses in the To: line.
16070 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16071 present for a match.
16072 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16073 address2 must be present.
16074 That is exactly what using a list does.)
16077 Some messages may be &quot;bounced&quot; to you, and will
16078 have a &quot;Resent-To:&quot; header line.
16079 If the message contains a Resent-To: line
16080 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16081 Alpine will look for
16082 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16083 the original To: line.
16086 When entering a pattern, you may choose an address from your address book
16087 with the &quot;T&quot; command.
16090 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16091 &quot;!&quot; &quot;toggle NOT&quot; command.
16092 This changes the meaning of the To pattern so that it has the opposite meaning.
16093 It will be considered a match if there are no matches between the
16094 addresses in the To: line and the list of To patterns.
16096 Don't make the mistake of putting the &quot;!&quot; in the data field for
16097 the pattern.
16098 For example, if you type the characters &quot;!frizzle&quot; into the To
16099 pattern, the pattern will look like:
16101 <PRE>
16102  To pattern = !frizzle
16103 </PRE>
16105 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16106 In order to match messages that do not have &quot;frizzle&quot; in
16107 their To field, first type the characters &quot;frizzle&quot; followed
16108 by carriage return for the value of the To pattern, then negate it
16109 by typing the &quot;!&quot; command.
16110 It should end up looking like
16112 <PRE>
16113  ! To pattern = frizzle
16114 </PRE>
16117 You are not limited to using the six standard header patterns that are
16118 normally shown (To, From, Sender, Cc, News, and Subject).
16119 You may add any other header to a Pattern by
16120 using the &quot;eXtraHdr&quot; command to specify a different
16121 message header line; and then the Add or Change command to fill in
16122 a pattern for the new header line, just like you would for a standard header.
16124 A technicality: Since comma is the character used to separate multiple
16125 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16126 you want to include a literal comma in the field.
16127 In other words, if you type a backslash followed by a comma it will
16128 be interpreted as a comma by Alpine, instead of as a separator between
16129 pattern values.
16130 All other backslashes are literal backslashes and should not be escaped.
16132 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16133 for more information on Patterns.
16135 Look <A HREF="h_edit_nav_cmds">here</A>
16136 to see the available Editing and Navigation commands.
16138 &lt;End of help on this topic&gt;
16139 </BODY>
16140 </HTML>
16141 ======= h_config_role_topat =======
16142 <HTML>
16143 <HEAD>
16144 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16145 </HEAD>
16146 <BODY>
16147 <H1>&quot;To:&quot; Pattern Explained</H1>
16149 Any text you enter as the &quot;To pattern&quot;
16150 will be compared to the recipients from the To: line of
16151 the message being replied to or forwarded.
16152 (Any other non-blank parts of the Pattern must match, too.)
16153 In the case of the Compose command, this pattern and the other header
16154 patterns are ignored.
16157 You may enter a complete email address, part of an address, or a
16158 list of addresses or partial addresses.
16159 For example:
16162 <PRE>
16163  To pattern = friend@public.com
16164  To pattern = rated.net
16165  To pattern = xxx@adults.com
16166               admin@msn.com
16167               fool@motleyfool.com
16168 </PRE>
16171 Each of those are valid To patterns.
16174 Messages match those patterns if any of the
16175 addresses in the To: line of the message contains the pattern.
16176 If the pattern is a list of patterns
16177 (like the last example above) then it is a match if any of the patterns in
16178 the list match any of the addresses in the To: line.
16179 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16180 present for a match.
16181 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16182 address2 must be present.
16183 That is exactly what using a list does.)
16186 Some messages may be &quot;bounced&quot; to you, and will
16187 have a &quot;Resent-To:&quot; header line.
16188 If the message contains a Resent-To: line
16189 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16190 Alpine will look for
16191 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16192 the original To: line.
16195 When entering a pattern, you may choose an address from your address book
16196 with the &quot;T&quot; command.
16199 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16200 &quot;!&quot; &quot;toggle NOT&quot; command.
16201 This changes the meaning of the To pattern so that it has the opposite meaning.
16202 It will be considered a match if there are no matches between the
16203 addresses in the To: line and the list of To patterns.
16205 Don't make the mistake of putting the &quot;!&quot; in the data field for
16206 the pattern.
16207 For example, if you type the characters &quot;!frizzle&quot; into the To
16208 pattern, the pattern will look like:
16210 <PRE>
16211  To pattern = !frizzle
16212 </PRE>
16214 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16215 In order to match messages that do not have &quot;frizzle&quot; in
16216 their To field, first type the characters &quot;frizzle&quot; followed
16217 by carriage return for the value of the To pattern, then negate it
16218 by typing the &quot;!&quot; command.
16219 It should end up looking like
16221 <PRE>
16222  ! To pattern = frizzle
16223 </PRE>
16226 You are not limited to using the six standard header patterns that are
16227 normally shown (To, From, Sender, Cc, News, and Subject).
16228 You may add any other header to a Pattern by
16229 using the &quot;eXtraHdr&quot; command to specify a different
16230 message header line; and then the Add or Change command to fill in
16231 a pattern for the new header line, just like you would for a standard header.
16233 A technicality: Since comma is the character used to separate multiple
16234 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16235 you want to include a literal comma in the field.
16236 In other words, if you type a backslash followed by a comma it will
16237 be interpreted as a comma by Alpine, instead of as a separator between
16238 pattern values.
16239 All other backslashes are literal backslashes and should not be escaped.
16241 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16242 for more information on Patterns.
16244 Look <A HREF="h_edit_nav_cmds">here</A>
16245 to see the available Editing and Navigation commands.
16247 &lt;End of help on this topic&gt;
16248 </BODY>
16249 </HTML>
16250 ======= h_config_role_frompat =======
16251 <HTML>
16252 <HEAD>
16253 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16254 </HEAD>
16255 <BODY>
16256 <H1>&quot;From:&quot; Pattern Explained</H1>
16258 This is just like the &quot;To pattern&quot; except that it is compared with
16259 the address in the From: line of the message
16260 instead of the addresses from the To: line.
16261 See the help for the To pattern for more information on header patterns.
16263 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16264 for more information on Patterns.
16266 Look <A HREF="h_edit_nav_cmds">here</A>
16267 to see the available Editing and Navigation commands.
16269 &lt;End of help on this topic&gt;
16270 </BODY>
16271 </HTML>
16272 ======= h_config_role_senderpat =======
16273 <HTML>
16274 <HEAD>
16275 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16276 </HEAD>
16277 <BODY>
16278 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16280 This is just like the &quot;To pattern&quot; except that it is compared with
16281 the address from the Sender: line of the message
16282 instead of the addresses from the To: line.
16283 See the help for the To pattern for more information on header patterns.
16285 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16286 for more information on Patterns.
16288 Look <A HREF="h_edit_nav_cmds">here</A>
16289 to see the available Editing and Navigation commands.
16291 &lt;End of help on this topic&gt;
16292 </BODY>
16293 </HTML>
16294 ======= h_config_role_ccpat =======
16295 <HTML>
16296 <HEAD>
16297 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16298 </HEAD>
16299 <BODY>
16300 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16302 This is just like the &quot;To pattern&quot; except that it is compared with
16303 the addresses from the Cc: line of the message
16304 instead of the addresses from the To: line.
16305 See the help for the To pattern for more information on header patterns.
16307 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16308 for more information on Patterns.
16310 Look <A HREF="h_edit_nav_cmds">here</A>
16311 to see the available Editing and Navigation commands.
16313 &lt;End of help on this topic&gt;
16314 </BODY>
16315 </HTML>
16316 ======= h_config_role_recippat =======
16317 <HTML>
16318 <HEAD>
16319 <TITLE>Recipient Pattern Explained</TITLE>
16320 </HEAD>
16321 <BODY>
16322 <H1>Recipient Pattern Explained</H1>
16324 This is just like the &quot;To pattern&quot; except that it is compared with
16325 the addresses from both the To: line and the Cc: line of the
16326 message instead of just the addresses from the To: line.
16327 In other words, it is considered a match if the pattern matches
16328 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16329 in the Cc: line.
16330 (Notice that defining the Recipient pattern does not have the same
16331 effect as defining both the To and Cc patterns.
16332 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16333 It is equivalent to having two different rules;
16334 one with a To pattern and the other with the same Cc pattern.)
16336 A technicality: Since comma is the character used to separate multiple
16337 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16338 you want to include a literal comma in the field.
16339 In other words, if you type a backslash followed by a comma it will
16340 be interpreted as a comma by Alpine, instead of as a separator between
16341 pattern values.
16342 All other backslashes are literal backslashes and should not be escaped.
16344 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16345 for more information on Patterns.
16347 Look <A HREF="h_edit_nav_cmds">here</A>
16348 to see the available Editing and Navigation commands.
16350 &lt;End of help on this topic&gt;
16351 </BODY>
16352 </HTML>
16353 ======= h_config_role_particpat =======
16354 <HTML>
16355 <HEAD>
16356 <TITLE>Participant Pattern Explained</TITLE>
16357 </HEAD>
16358 <BODY>
16359 <H1>Participant Pattern Explained</H1>
16361 This is just like the &quot;To pattern&quot; except that it is compared with
16362 the addresses from the From: line, the To: line, and the Cc: line of the
16363 message instead of just the addresses from the To: line.
16364 In other words, it is considered a match if the pattern matches
16365 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16366 in the To: line, <EM>OR</EM> an address in the Cc: line.
16367 (Notice that defining the Participant pattern does not have the same
16368 effect as defining all of the From, To, and Cc patterns.
16369 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16370 From <EM>AND</EM> To <EM>AND</EM> Cc.
16371 It is equivalent to having three different rules;
16372 one with a From pattern, another with the same To pattern, and a third with
16373 the same Cc pattern.)
16375 A technicality: Since comma is the character used to separate multiple
16376 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16377 you want to include a literal comma in the field.
16378 In other words, if you type a backslash followed by a comma it will
16379 be interpreted as a comma by Alpine, instead of as a separator between
16380 pattern values.
16381 All other backslashes are literal backslashes and should not be escaped.
16383 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16384 for more information on Patterns.
16386 Look <A HREF="h_edit_nav_cmds">here</A>
16387 to see the available Editing and Navigation commands.
16389 &lt;End of help on this topic&gt;
16390 </BODY>
16391 </HTML>
16392 ======= h_config_role_newspat =======
16393 <HTML>
16394 <HEAD>
16395 <TITLE>News Pattern Explained</TITLE>
16396 </HEAD>
16397 <BODY>
16398 <H1>News Pattern Explained</H1>
16400 If this pattern is non-blank, then for this rule to be considered a
16401 match, at least one of the newsgroups from
16402 the Newsgroups line of the message must match this pattern.
16403 If this pattern is a list of patterns, then at least one of the
16404 newsgroups must match at least one of the patterns.
16405 (Any other non-blank parts of the Pattern must match, too.)
16407 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16408 &quot;!&quot; &quot;toggle NOT&quot; command.
16409 This changes the meaning of the News pattern so that it has the opposite meaning.
16410 It will be considered a match if there are no matches between the
16411 addresses in the Newsgroups: line and the list of News patterns.
16413 Don't make the mistake of putting the &quot;!&quot; in the data field for
16414 the pattern.
16415 For example, if you type the characters &quot;!frizzle&quot; into the News
16416 pattern, the pattern will look like:
16418 <PRE>
16419  News pattern = !frizzle
16420 </PRE>
16422 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16423 In order to match messages that do not have &quot;frizzle&quot; in
16424 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16425 by carriage return for the value of the News pattern, then negate it
16426 by typing the &quot;!&quot; command.
16427 It should end up looking like
16429 <PRE>
16430  ! News pattern = frizzle
16431 </PRE>
16433 A technicality: Since comma is the character used to separate multiple
16434 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16435 you want to include a literal comma in the field.
16436 In other words, if you type a backslash followed by a comma it will
16437 be interpreted as a comma by Alpine, instead of as a separator between
16438 pattern values.
16439 All other backslashes are literal backslashes and should not be escaped.
16442 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16443 for more information on Patterns.
16445 Look <A HREF="h_edit_nav_cmds">here</A>
16446 to see the available Editing and Navigation commands.
16448 &lt;End of help on this topic&gt;
16449 </BODY>
16450 </HTML>
16451 ======= h_config_role_subjpat =======
16452 <HTML>
16453 <HEAD>
16454 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16455 </HEAD>
16456 <BODY>
16457 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16459 This is similar to the other parts of the Pattern.
16460 It is compared with
16461 the contents from the Subject of the message.
16463 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16464 for more information on Patterns.
16466 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16467 &quot;!&quot; &quot;toggle NOT&quot; command.
16468 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16469 It will be considered a match if there are no matches between the
16470 text in the Subject: line and the list of Subject patterns.
16473 If you wish to have a header pattern that is not one of the six standard
16474 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16476 A technicality: Since comma is the character used to separate multiple
16477 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16478 you want to include a literal comma in the field.
16479 In other words, if you type a backslash followed by a comma it will
16480 be interpreted as a comma by Alpine, instead of as a separator between
16481 pattern values.
16482 All other backslashes are literal backslashes and should not be escaped.
16484 Look <A HREF="h_edit_nav_cmds">here</A>
16485 to see the available Editing and Navigation commands.
16487 &lt;End of help on this topic&gt;
16488 </BODY>
16489 </HTML>
16490 ======= h_config_role_alltextpat =======
16491 <HTML>
16492 <HEAD>
16493 <TITLE>AllText Pattern Explained</TITLE>
16494 </HEAD>
16495 <BODY>
16496 <H1>AllText Pattern Explained</H1>
16498 This is similar to the header patterns.
16499 Instead of comparing with text in a particular header field it 
16500 is compared with all of the text in the message header and body.
16502 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16503 &quot;!&quot; &quot;toggle NOT&quot; command.
16504 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16505 It will be considered a match if there are no matches between the
16506 text of the message and the list of AllText patterns.
16508 Don't make the mistake of putting the &quot;!&quot; in the data field for
16509 the pattern.
16510 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16511 pattern, the pattern will look like:
16513 <PRE>
16514  AllText pattern = !frizzle
16515 </PRE>
16517 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16518 In order to match messages that do not have &quot;frizzle&quot; in
16519 the text of the message, first type the characters &quot;frizzle&quot; followed
16520 by carriage return for the value of the AllText pattern, then negate it
16521 by typing the &quot;!&quot; command.
16522 It should end up looking like
16524 <PRE>
16525  ! AllText pattern = frizzle
16526 </PRE>
16528 It is possible that you may notice degraded performance when using
16529 AllText Patterns.
16531 A technicality: Since comma is the character used to separate multiple
16532 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16533 you want to include a literal comma in the field.
16534 In other words, if you type a backslash followed by a comma it will
16535 be interpreted as a comma by Alpine, instead of as a separator between
16536 pattern values.
16537 All other backslashes are literal backslashes and should not be escaped.
16539 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16540 for more information on Patterns.
16542 Look <A HREF="h_edit_nav_cmds">here</A>
16543 to see the available Editing and Navigation commands.
16545 &lt;End of help on this topic&gt;
16546 </BODY>
16547 </HTML>
16548 ======= h_config_role_bodytextpat =======
16549 <HTML>
16550 <HEAD>
16551 <TITLE>BodyText Pattern Explained</TITLE>
16552 </HEAD>
16553 <BODY>
16554 <H1>BodyText Pattern Explained</H1>
16556 This is similar to the header patterns.
16557 Instead of comparing with text in a particular header field it 
16558 is compared with all of the text in the message body.
16560 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16561 &quot;!&quot; &quot;toggle NOT&quot; command.
16562 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16563 It will be considered a match if there are no matches between the
16564 text of the body of the message and the list of BodyText patterns.
16566 Don't make the mistake of putting the &quot;!&quot; in the data field for
16567 the pattern.
16568 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16569 pattern, the pattern will look like:
16571 <PRE>
16572  BdyText pattern = !frizzle
16573 </PRE>
16575 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16576 In order to match messages that do not have &quot;frizzle&quot; in
16577 their BodyText, first type the characters &quot;frizzle&quot; followed
16578 by carriage return for the value of the BodyText pattern, then negate it
16579 by typing the &quot;!&quot; command.
16580 It should end up looking like
16582 <PRE>
16583  ! BodyText pattern = frizzle
16584 </PRE>
16586 It is possible that you may notice degraded performance when using
16587 BodyText Patterns.
16589 A technicality: Since comma is the character used to separate multiple
16590 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16591 you want to include a literal comma in the field.
16592 In other words, if you type a backslash followed by a comma it will
16593 be interpreted as a comma by Alpine, instead of as a separator between
16594 pattern values.
16595 All other backslashes are literal backslashes and should not be escaped.
16597 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16598 for more information on Patterns.
16600 Look <A HREF="h_edit_nav_cmds">here</A>
16601 to see the available Editing and Navigation commands.
16603 &lt;End of help on this topic&gt;
16604 </BODY>
16605 </HTML>
16606 ======= h_config_role_charsetpat =======
16607 <HTML>
16608 <HEAD>
16609 <TITLE>Character Set Pattern Explained</TITLE>
16610 </HEAD>
16611 <BODY>
16612 <H1>Character Set Pattern Explained</H1>
16614 A message may use one or more character sets.
16615 This part of the Pattern matches messages that make use of
16616 certain specified character sets.
16617 It will be considered a match if a message uses any of the character
16618 sets in the list you give here.
16621 When filling in a value for this field, you may use
16622 the &quot;T&quot; command, which presents you with a large list of
16623 possible character sets to choose from.
16624 You may also just type in the name of a character set, and it need not
16625 be one that Alpine knows about.
16628 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16629 GB2312) you may also use some shorthand names that Alpine provides.
16630 These names are more understandable shorthand names for sets of 
16631 character set names.
16632 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16633 Selecting one of these shorthand names is equivalent to selecting all of
16634 the character sets that make up the set.
16635 You can see all of these shorthand names and the lists of character sets
16636 they stand for by typing the &quot;T&quot; command.
16639 For the purposes of this Pattern,
16640 Alpine will search through a message for all of the text parts and
16641 collect the character sets declared for each part.
16642 It will also look in the Subject line for a character set used there.
16643 Alpine does not actually look at the text of the message or the text
16644 of the Subject to determine if a declared character set is actually
16645 used, it looks only at the declarations themselves in the MIME part headers
16646 and in the Subject.
16649 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16650 &quot;!&quot; &quot;toggle NOT&quot; command.
16651 This changes the meaning of the Character Set pattern so that
16652 it has the opposite meaning.
16653 It will be considered a match if none of the character sets in the
16654 list are used in a message.
16656 Don't make the mistake of putting the &quot;!&quot; in the data field for
16657 the pattern.
16658 For example, if you type the characters &quot;!GB2312&quot; into the
16659 Character Set pattern, the pattern will look like:
16661 <PRE>
16662  Charset pattern = !GB2312
16663 </PRE>
16665 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16666 In order to match messages that do not have the
16667 character set &quot;GB2312&quot;
16668 set, first type the characters &quot;GB2312&quot; followed
16669 by carriage return for the value of the Character Set pattern, then negate it
16670 by typing the &quot;!&quot; command.
16671 It should end up looking like
16673 <PRE>
16674  ! Charset pattern = GB2312
16675 </PRE>
16677 A technicality: Since comma is the character used to separate multiple
16678 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16679 you want to include a literal comma in the field.
16680 In other words, if you type a backslash followed by a comma it will
16681 be interpreted as a comma by Alpine, instead of as a separator between
16682 pattern values.
16683 All other backslashes are literal backslashes and should not be escaped.
16685 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16686 for more information on Patterns.
16688 Look <A HREF="h_edit_nav_cmds">here</A>
16689 to see the available Editing and Navigation commands.
16691 &lt;End of help on this topic&gt;
16692 </BODY>
16693 </HTML>
16694 ======= h_config_role_keywordpat =======
16695 <HTML>
16696 <HEAD>
16697 <TITLE>Keyword Pattern Explained</TITLE>
16698 </HEAD>
16699 <BODY>
16700 <H1>Keyword Pattern Explained</H1>
16702 A folder may have user-defined keywords.
16703 These are similar to the Important flag, which the user may set using the
16704 Flag command.
16705 The difference is that the Important flag is always present for each folder.
16706 User-defined keywords are picked by the user.
16707 You may add new keywords by defining them in the
16708 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16709 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16710 the Flag command may be used to set or clear the keyword on individual messages.
16711 If you have given a keyword a nickname when configuring it,
16712 that nickname may be used instead of the actual keyword.
16715 When filling in a value for this field, it may be easiest to use
16716 the &quot;T&quot; command, which presents you with a list of the keywords
16717 you have defined to choose from.
16720 This part of the Pattern matches messages with certain keywords set.
16721 It will be considered a match if a message has any of the keywords in the
16722 list set.
16723 A keyword that you have not defined using the
16724 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16725 will not be a match.
16728 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16729 &quot;!&quot; &quot;toggle NOT&quot; command.
16730 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16731 It will be considered a match if none of the keywords in the list are set
16732 for a message.
16733 A keyword that you have not defined using the
16734 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16735 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16737 Don't make the mistake of putting the &quot;!&quot; in the data field for
16738 the pattern.
16739 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16740 pattern, the pattern will look like:
16742 <PRE>
16743  Keyword pattern = !frizzle
16744 </PRE>
16746 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16747 In order to match messages that do not have the keyword &quot;frizzle&quot;
16748 set, first type the characters &quot;frizzle&quot; followed
16749 by carriage return for the value of the Keyword pattern, then negate it
16750 by typing the &quot;!&quot; command.
16751 It should end up looking like
16753 <PRE>
16754  ! Keyword pattern = frizzle
16755 </PRE>
16757 A technicality: Since comma is the character used to separate multiple
16758 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16759 you want to include a literal comma in the field.
16760 In other words, if you type a backslash followed by a comma it will
16761 be interpreted as a comma by Alpine, instead of as a separator between
16762 pattern values.
16763 All other backslashes are literal backslashes and should not be escaped.
16765 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16766 for more information on Patterns.
16768 Look <A HREF="h_edit_nav_cmds">here</A>
16769 to see the available Editing and Navigation commands.
16771 &lt;End of help on this topic&gt;
16772 </BODY>
16773 </HTML>
16774 ======= h_config_role_arbpat =======
16775 <HTML>
16776 <HEAD>
16777 <TITLE>Extra Header Patterns Explained</TITLE>
16778 </HEAD>
16779 <BODY>
16780 <H1>Extra Header Patterns Explained</H1>
16782 The header patterns that come after the Participant pattern but before the 
16783 AllText pattern are extra header patterns that you have added to a rule's
16784 Pattern. These are just like the other header patterns except that
16785 the contents of the particular header listed on the left hand side will
16786 be used for comparisons.
16788 The &quot;eXtraHdr&quot; command may be used to add more of these
16789 header patterns to the rule you are editing.
16791 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16792 extra header pattern from the rule you are editing.
16794 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16795 &quot;!&quot; &quot;toggle NOT&quot; command.
16796 This changes the meaning of the pattern so that it has the opposite meaning.
16797 It will be considered a match if there are no matches between the
16798 text in the header line and the list of patterns.
16800 Don't make the mistake of putting the &quot;!&quot; in the data field for
16801 the pattern.
16802 For example, if you type the characters &quot;!frizzle&quot; into the
16803 pattern, the pattern will look like:
16805 <PRE>
16806  Xyz pattern = !frizzle
16807 </PRE>
16809 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16810 In order to match messages that do not have &quot;frizzle&quot; in
16811 their Xyz field, first type the characters &quot;frizzle&quot; followed
16812 by carriage return for the value of the pattern, then negate it
16813 by typing the &quot;!&quot; command.
16814 It should end up looking like
16816 <PRE>
16817  ! Xyz pattern = frizzle
16818 </PRE>
16821 A technicality: Since comma is the character used to separate multiple
16822 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16823 you want to include a literal comma in the field.
16824 In other words, if you type a backslash followed by a comma it will
16825 be interpreted as a comma by Alpine, instead of as a separator between
16826 pattern values.
16827 All other backslashes are literal backslashes and should not be escaped.
16829 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16830 for more information on Patterns.
16832 Look <A HREF="h_edit_nav_cmds">here</A>
16833 to see the available Editing and Navigation commands.
16835 &lt;End of help on this topic&gt;
16836 </BODY>
16837 </HTML>
16838 ======= h_config_role_cat_cmd =======
16839 <HTML>
16840 <HEAD>
16841 <TITLE>Categorizer Command Explained</TITLE>
16842 </HEAD>
16843 <BODY>
16844 <H1>Categorizer Command Explained</H1>
16846 This is a command that is run with its standard input set to the message
16847 being checked and its standard output discarded.
16848 The full directory path should be specified.
16849 The command will be run and then its exit status will be checked against
16850 the Exit Status Interval, which defaults to just the value zero.
16851 If the exit status of the command falls in the interval, it is considered
16852 a match, otherwise it is not a match.
16855 This option may actually be a list of commands.
16856 The first one that exists and is executable is used.
16857 That makes it possible to use the same configuration with Unix Alpine and
16858 PC-Alpine.
16861 If none of the commands in the list exists and is executable then the rule
16862 is <EM>not</EM> a match.
16863 If it is possible that the command may not exist, you should be careful
16864 to structure your rules so that nothing destructive
16865 happens when the command does not exist.
16866 For example, you might have a filter that filters away spam when there is
16867 a match but does nothing when there is not a match.
16868 That would cause no harm if the command didn't exist.
16869 However, if you have a filter that filters away spam when there is not
16870 a match and keeps it when there is a match, that would filter everything
16871 if the categorizer command didn't exist.
16873 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16874 setup for the bogofilter filter.
16877 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16878 for more information on Patterns.
16880 Look <A HREF="h_edit_nav_cmds">here</A>
16881 to see the available Editing and Navigation commands.
16883 &lt;End of help on this topic&gt;
16884 </BODY>
16885 </HTML>
16886 ======= h_config_role_cat_cmd_example =======
16887 <HTML>
16888 <HEAD>
16889 <TITLE>Categorizer Command Example</TITLE>
16890 </HEAD>
16891 <BODY>
16892 <H1>Categorizer Command Example</H1>
16894 Bogofilter
16895 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16896 is a mail filter that attempts to classify mail as spam or
16897 non-spam using statistical analysis of the message content.
16898 When run with no arguments and a message as standard input, it exits with
16899 exit status 0 if it thinks a message is spam and 1 if it thinks
16900 it is not spam.
16901 To use bogofilter as your Categorizer Command you would simply set Command to
16902 the pathname of the bogofilter program.
16903 For example,
16905 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16907 Exit status of zero is what you are interested in, so you'd set the
16908 Exit Status Interval to
16910 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16913 In order to prevent downloading an entire huge message to check for spam, you
16914 might want to set the Character Limit to a few thousand characters (the
16915 assumption being that the spam will reveal itself in those characters)
16917 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16920 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16921 be to move the message to a spam folder.
16922 It would usually be wise to also check the &quot;Message is Recent&quot;
16923 part of the rule so that messages are only checked when they first arrive,
16924 and to restrict the Current Folder Type to just your INBOX.
16925 The reason for checking only Recent messages is to save the time it takes
16926 to run bogofilter on each message.
16927 As an experiment, you might start out by using this in an Indexcolor Rule
16928 instead of a Filter Rule.
16929 In that case, you probably wouldn't check the Recent checkbox.
16931 The use described above assumes that you are somehow maintaining bogofilter's
16932 database of words associated with spam and non-spam messages.
16933 One way to start your database would be to select a bunch of spam messages
16934 in Alpine (you might Save spam messages to a special folder or use Alpine's
16935 Select command to select several) and then Apply
16936 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16937 a pipe command to the spam messages.
16938 For example, you could have a shell script or an alias
16939 called <EM>this_is_spam</EM>, which would simply be the command
16941 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16944 It is probably best to use the pipe command's Raw Text, With Delimiter,
16945 and Free Output options,
16946 which are at the bottom of the screen when you type the pipe command.
16947 That's because bogofilter expects the raw message as input, and uses
16948 the Delimiters to tell when a new message starts.
16949 You would not need to use a separate pipe for each message, because
16950 bogofilter can handle multiple messages at once.
16952 Similarly, you would select a group of non-spam messages
16953 and run them through a <EM>this_is_nonspam</EM> script
16954 that was something like
16956 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16959 For the more adventurous, the next step might be to automate the upkeep of
16960 the bogofilter database.
16961 It might make more sense to have bogofilter be part of the delivery process,
16962 but it is also possible to do it entirely from within Alpine.
16963 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16964 the &quot;-u&quot; argument will cause bogofilter to update the database.
16966 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16968 You'd want a couple more aliases or shell scripts called something like
16969 <EM>change_to_spam</EM>
16971 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16974 <EM>change_to_nonspam</EM>
16976 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16978 When you run across a message in your INBOX that should have been
16979 classified as spam you would pipe it to the change_to_spam script, and
16980 when you run across a message in your spam folder that should have been
16981 left in your INBOX you would pipe it through change_to_nonspam.
16984 There is a technical problem with this approach.
16985 Alpine may check your filters more than once.
16986 In particular, every time you start Alpine the filters will be checked for
16987 each message.
16988 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16989 then Alpine will recheck for matches in messages that have changed state
16990 at the time you close the folder and before expunging.
16991 This is usually ok.
16992 However, in this case it is a problem because the command
16994 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16996 has the side effect of updating the database.
16997 So you run the risk of updating the database multiple times for a single
16998 message instead of updating it just once per message.
16999 There are some ways to work around this problem.
17000 What you need is a way to mark the message after you have run the filter.
17001 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
17002 Besides having the filter move the message to a spam folder, also have it
17003 set the Bogo keyword.
17004 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
17005 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
17006 This rule can only set the Bogo keyword for the messages that it matches.
17007 You will also need to add a second rule right after this one that
17008 matches all the messages that don't have the Bogo keyword set
17009 (put the keyword in the Keyword pattern and toggle
17010 the Not with the ! command)
17011 and takes the action of setting it.
17012 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
17013 (and so it won't re-run the bogofilter command) if the keyword is already
17014 set.
17016 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
17017 on all messages that don't have the Bogo keyword set.
17018 This will have the side effect of inserting that message in the bogofilter
17019 database, match or not.
17020 If this rule matches (it is spam), the Bogo keyword will be set and
17021 the message will be moved to a spam folder.
17022 If it does not match, the
17023 following rule will mark the message by turning on the keyword.
17024 This second rule should be a non-terminating
17025 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
17026 rule so that it doesn't stop the filtering process before the rest of
17027 your rules are consulted.
17030 In summary, the first rule is something like
17031 <PRE>
17032   Nickname          = bogofilter -u rule
17033   Current Folder Type =
17034                (*) Specific
17035                    Folder = INBOX
17037   ! Keyword pattern = Bogo
17039   External Categorizer Commands =
17040        Command              = /usr/local/bin/bogofilter -u
17041        Exit Status Interval = (0,0)
17042        Character Limit      = <No Value Set: using "-1">  (optionally set this)
17044   Filter Action =
17045        (*) Move
17046            Folder = spam
17047   
17048   Set These Keywords   = Bogo
17049 </PRE>
17051 and the following rule is
17052 <PRE>
17053   Nickname          = Set Bogo Keyword
17054   Current Folder Type =
17055                (*) Specific
17056                    Folder = INBOX
17058   ! Keyword pattern = Bogo
17060   Filter Action =
17061        (*) Just Set Message Status
17063   Set These Keywords   = Bogo
17065   Features =
17066       [X]  dont-stop-even-if-rule-matches
17067 </PRE>
17069 If it is possible for you to insert bogofilter in the delivery process instead
17070 of having it called from Alpine you could prevent having to wait
17071 for the bogofilter processing while you read your mail.
17072 You would have bogofilter add a header to the message at the time of delivery
17073 that identified it as spam or nonspam.
17074 With this method, you could avoid using a Categorizer Command while running Alpine,
17075 and just match on the header instead.
17076 You might still want to use the scripts mentioned above to initialize the
17077 database or to re-classify wrongly classified messages.
17080 Finally, it isn't for the faint-hearted,
17081 but it is also possible to run bogofilter from PC-Alpine.
17082 You can install Cygwin from
17083 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17084 then compile bogofilter in the cygwin environment, and run it from
17085 within PC-Alpine.
17086 You would end up with a Categorizer command that looked something like
17088 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17090 Note that the &quot;.exe&quot; extension is explicit,
17091 and that the bogofilter.exe executable should be in the same directory
17092 as cygwin1.dll.
17095 &lt;End of help on this topic&gt;
17096 </BODY>
17097 </HTML>
17098 ======= h_config_role_cat_status =======
17099 <HTML>
17100 <HEAD>
17101 <TITLE>Exit Status Interval Explained</TITLE>
17102 </HEAD>
17103 <BODY>
17104 <H1>Exit Status Interval Explained</H1>
17106 The categorizer command is run and the result is the exit status of
17107 that command.
17108 If that exit status falls in the Exit Status Interval
17109 then it is considered a match, otherwise it is not a match.
17110 Of course for the entire rule to match, it must also be checked against
17111 the other defined parts of the Pattern.
17113 The Exit Status Interval defaults to the single value 0 (zero).
17114 If you define it, it should be set to something like:
17116 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17118 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17119 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17120 positive and negative integers.
17122 Actually, a list of intervals may be used if you wish.
17123 A list would look like
17125 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17127 When there is an Exit Status Interval defined, it is a match if the exit status
17128 of the categorizer command is contained in any of the intervals.
17129 The intervals include both endpoints.
17131 The default interval is
17133 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17135 and it matches only if the command exits with exit status equal to zero.
17138 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17139 for more information on Patterns.
17141 Look <A HREF="h_edit_nav_cmds">here</A>
17142 to see the available Editing and Navigation commands.
17144 &lt;End of help on this topic&gt;
17145 </BODY>
17146 </HTML>
17147 ======= h_config_role_cat_limit =======
17148 <HTML>
17149 <HEAD>
17150 <TITLE>Character Limit Explained</TITLE>
17151 </HEAD>
17152 <BODY>
17153 <H1>Character Limit Explained</H1>
17155 Setting this option makes it possible to limit how much of the message
17156 is made available to the categorizer command as input.
17157 The default value (-1) means that the entire message is fed to the
17158 command.
17159 A value of 0 (zero) means that only the headers of the message are
17160 made available.
17161 A positive integer means that the headers plus that many characters from
17162 the body of the message are passed to the categorizer.
17165 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17166 for more information on Patterns.
17168 Look <A HREF="h_edit_nav_cmds">here</A>
17169 to see the available Editing and Navigation commands.
17171 &lt;End of help on this topic&gt;
17172 </BODY>
17173 </HTML>
17174 ======= h_config_role_age =======
17175 <HTML>
17176 <HEAD>
17177 <TITLE>Age Interval Explained</TITLE>
17178 </HEAD>
17179 <BODY>
17180 <H1>Age Interval Explained</H1>
17182 The Age Interval, if defined, is part of the Pattern.
17183 If you use this, it should be set to something like:
17185 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17187 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17188 The special value &quot;INF&quot; may be used for the max value.
17189 It represents infinity.
17191 In rare cases it may be useful to use the more general form of the value,
17192 which is a comma-separated list of intervals.
17193 It would look something like:
17195 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17197 When there is an Age Interval defined, it is a match if the age, in days, of
17198 the message is contained in the interval.
17199 The interval includes both endpoints.
17200 If the option is set to a list of intervals then it is a match if the
17201 age of the message is contained in any of the intervals.
17203 Even though this option is called Age, it isn't actually
17204 the <EM>age</EM> of the message.
17205 Instead, it is how many days ago the message arrived in one of your folders.
17206 If the current time is a little past midnight, then a message that arrived
17207 just before midnight arrived yesterday, even though the message is only
17208 a few minutes old.
17209 By default, the date being used is not the date in the Date
17210 header of the message.
17211 It is the date that the message arrived in one of your folders.
17212 When you Save a message from one folder to another that arrival date
17213 is preserved.
17214 If you would like to use the date in the Date header that is possible.
17215 Turn on the option
17216 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17217 near the bottom of the rule definition.
17219 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17220 The age interval
17222 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17224 matches all messages that arrived on the day before yesterday.
17225 The interval
17227 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17229 matches all messages that arrived at least 180 days before today.
17230 The interval
17232 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17234 matches all messages that arrived today or yesterday.
17237 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17238 for more information on Patterns.
17240 Look <A HREF="h_edit_nav_cmds">here</A>
17241 to see the available Editing and Navigation commands.
17243 &lt;End of help on this topic&gt;
17244 </BODY>
17245 </HTML>
17246 ======= h_config_role_size =======
17247 <HTML>
17248 <HEAD>
17249 <TITLE>Size Interval Explained</TITLE>
17250 </HEAD>
17251 <BODY>
17252 <H1>Size Interval Explained</H1>
17254 The Size Interval, if defined, is part of the Pattern.
17255 If you use this, it should be set to something like:
17257 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17259 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17260 The special value &quot;INF&quot; may be used for the max value.
17261 It represents infinity.
17263 In rare cases it may be useful to use the more general form of the value,
17264 which is a comma-separated list of intervals.
17265 It would look something like:
17267 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17269 When there is a Size Interval defined, it is a match if the size of
17270 the message is contained in the interval.
17271 The interval includes both endpoints.
17272 If the option is set to a list of intervals then it is a match if the
17273 size of the message is contained in any of the intervals.
17275 The size interval
17277 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17279 matches all messages with sizes greater than or equal to 10000, and less
17280 than or equal to 50000.
17281 The interval
17283 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17285 matches all messages with sizes greater than or equal to 100000.
17288 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17289 for more information on Patterns.
17291 Look <A HREF="h_edit_nav_cmds">here</A>
17292 to see the available Editing and Navigation commands.
17294 &lt;End of help on this topic&gt;
17295 </BODY>
17296 </HTML>
17297 ======= h_config_role_scorei =======
17298 <HTML>
17299 <HEAD>
17300 <TITLE>Score Interval Explained</TITLE>
17301 </HEAD>
17302 <BODY>
17303 <H1>Score Interval Explained</H1>
17305 The Score Interval, if defined, is part of the Pattern.
17306 If you use this, it should be set to something like:
17308 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17310 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17311 -32000 and 32000.
17312 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17313 the min and max values.
17314 These represent negative and positive infinity.
17316 Actually, the value may be a list of intervals rather than just a
17317 single interval if that is useful.
17318 The elements of the list are separated by commas like:
17320 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17322 When there is a Score Interval defined, it is a match if the score for
17323 the message is contained in any of the intervals.
17324 The intervals include both endpoints.
17325 The score for a message is calculated by looking at every scoring rule
17326 defined and adding up the Score Values for the rules that match the message.
17327 Scoring rules are created using the
17328 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17331 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17332 for more information on Patterns.
17334 Look <A HREF="h_edit_nav_cmds">here</A>
17335 to see the available Editing and Navigation commands.
17337 &lt;End of help on this topic&gt;
17338 </BODY>
17339 </HTML>
17340 ======= h_config_role_fldr_type =======
17341 <HTML>
17342 <HEAD>
17343 <TITLE>Current Folder Type Explained</TITLE>
17344 </HEAD>
17345 <BODY>
17346 <H1>Current Folder Type Explained</H1>
17348 The Current Folder Type is part of the role's Pattern.
17349 It refers to the type of the currently open folder, which is the folder
17350 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17351 In order for a role to be considered a match, the current folder must
17352 be of the type you set here.
17353 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17354 all what you might think.
17356 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17357 example, then
17358 that role will only be a match if the current folder is a newsgroup and
17359 the rest of the Pattern matches.
17360 The value &quot;Specific&quot; may be used when you want to limit the match
17361 to a specific folder (not just a specific type of folder), or to a list of
17362 specific folders.
17364 In order to match a specific folder you Select the &quot;Specific&quot;
17365 button <EM>AND</EM> fill in
17366 the name (or list of names) of
17367 the folder in the &quot;Folder List&quot; field.
17368 If the current folder is any of the folders in the list, that is considered
17369 a match.
17370 The name of each folder in the list may be either &quot;INBOX&quot;,
17371 the technical specification
17372 of the folder (like what appears in your configuration file) or, if the
17373 folder is one of your incoming folders, it may be the nickname you've given
17374 the folder.
17375 Here are a couple samples of specific folder names:
17377 <CENTER><SAMP>{monet.art.example.com/user=vincent}mail/art-class</SAMP></CENTER>
17379 <CENTER><SAMP>{news.example.com/nntp/user=peter}#news.comp.mail.pine</SAMP></CENTER>
17381 Observe that in order for an external folder (IMAP, POP, News) to be a match,
17382 you must also add the /user= option in the definition of the incoming folder.
17384 The easiest way to fill in the &quot;Folder List&quot; field is to use
17385 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17386 highlighted, or to use the &quot;Take&quot; command with the configuration
17387 feature
17388 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17389 turned on.
17390 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17391 Current Folder Type is set to &quot;Specific&quot;, and any value that
17392 &quot;Folder List&quot; has is ignored unless the type
17393 is set to &quot;Specific&quot;.
17395 When reading a newsgroup, there may be a performance penalty
17396 incurred when collecting the information necessary to check a Pattern.
17397 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17399 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17400 for more information on Patterns.
17402 Look <A HREF="h_edit_nav_cmds">here</A>
17403 to see the available Editing and Navigation commands.
17405 &lt;End of help on this topic&gt;
17406 </BODY>
17407 </HTML>
17408 ======= h_config_filt_rule_type =======
17409 <HTML>
17410 <HEAD>
17411 <TITLE>Filter Action Explained</TITLE>
17412 </HEAD>
17413 <BODY>
17414 <H1>Filter Action Explained</H1>
17416 The Filter Action specifies the action to be taken when the Pattern is a
17417 match.
17418 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17419 &quot;Just Set Message Status&quot;.
17421 If it is set to &quot;Delete&quot;, then the message that matches the
17422 Pattern will be deleted from the open folder.
17424 If it is set to &quot;Move&quot;, then the name of the folder to which
17425 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17426 next line of the screen.
17427 A list of folders separated by commas may be given, in which case the
17428 message will be copied to all of the folders in the list before it is
17429 deleted.
17431 If it is set to neither of those two values (it is set to the value
17432 labeled &quot;Just Set Message Status&quot;) then the message status
17433 setting will happen
17434 but the message will not be deleted or moved.
17436 If you are Moving a message you may also set Message Status if you wish.
17438 The easiest way to fill in the &quot;Folder List&quot; field is to use
17439 the T command that is available when the &quot;Folder List&quot; line is
17440 highlighted.
17441 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17442 Filter Action is set to &quot;Move&quot;, and any value that
17443 &quot;Folder List&quot; has is ignored unless the type
17444 is set to &quot;Move&quot;.
17446 There are a few tokens that may be used in the names in the Folder List.
17447 They are all related to the date on which the filtering is taking place.
17448 The tokens are words surrounded by underscores.
17449 For example, if you want your filter to move messages to a folder named
17450 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17451 you could specify the folder as
17452 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17453 which would result in a file named something like
17454 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17456 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17457 which would result in a file named something like
17458 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17459 The available tokens are listed
17460 <A HREF="h_index_tokens">here</A>.
17462 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17463 for more information on Patterns.
17465 Look <A HREF="h_edit_nav_cmds">here</A>
17466 to see the available Editing and Navigation commands.
17468 &lt;End of help on this topic&gt;
17469 </BODY>
17470 </HTML>
17471 ======= h_config_score_fldr_type =======
17472 <HTML>
17473 <HEAD>
17474 <TITLE>Current Folder Type Explained</TITLE>
17475 </HEAD>
17476 <BODY>
17477 <H1>Current Folder Type Explained</H1>
17479 The Current Folder Type is part of the scoring rule's Pattern.
17480 It refers to the type of the folder that
17481 the message being scored is in.
17482 In order for a rule to be considered a match, the current folder must
17483 be of the type you set here.
17484 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17485 all what you might think.
17487 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17488 example, then
17489 that Pattern will only match if the current folder is a newsgroup and
17490 the rest of the Pattern matches.
17491 The value &quot;Specific&quot; may be used when you want to limit the match
17492 to a specific folder (not just a specific type of folder), or to a list of
17493 specific folders.
17495 In order to match a specific folder you Select the &quot;Specific&quot;
17496 button <EM>AND</EM> fill in
17497 the name (or list of names) of
17498 the folder in the &quot;Folder List&quot; field.
17499 If the current folder is any of the folders in the list, that is considered
17500 a match.
17501 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17502 of the folder (like what appears in your configuration file) or, if the
17503 folder is one of your incoming folders, it may be the nickname you've given
17504 the folder.
17505 Here are a couple samples of specific folder names:
17507 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17509 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17511 The easiest way to fill in the &quot;Folder List&quot; field is to use
17512 the T command that is available when the &quot;Folder List&quot; line is
17513 highlighted.
17514 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17515 Current Folder Type is set to &quot;Specific&quot;, and any value that
17516 &quot;Folder List&quot; has is ignored unless the type
17517 is set to &quot;Specific&quot;.
17519 When reading a newsgroup, there may be a performance penalty
17520 incurred when collecting the information necessary to check a Pattern.
17521 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17522 For example, if you have Index Line Coloring rules that have Score Intervals
17523 defined then the scores for all the visible messages will need to be calculated.
17524 If some of your Scoring rules have 
17525 a Current Folder Type of
17526 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17527 screen to draw more slowly when in a newsgroup.
17529 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17530 for more information on Patterns.
17532 Look <A HREF="h_edit_nav_cmds">here</A>
17533 to see the available Editing and Navigation commands.
17535 &lt;End of help on this topic&gt;
17536 </BODY>
17537 </HTML>
17538 ======= h_config_other_fldr_type =======
17539 <HTML>
17540 <HEAD>
17541 <TITLE>Current Folder Type Explained</TITLE>
17542 </HEAD>
17543 <BODY>
17544 <H1>Current Folder Type Explained</H1>
17546 The Current Folder Type is part of the rule's Pattern.
17547 It refers to the type of the folder being viewed.
17548 In order for a rule to be considered a match, the current folder must
17549 be of the type you set here.
17550 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17551 all what you might think.
17553 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17554 example, then
17555 that Pattern will only match if the current folder is a newsgroup.
17556 The value &quot;Specific&quot; may be used when you want to limit the match
17557 to a specific folder (not just a specific type of folder), or to a list of
17558 specific folders.
17560 In order to match a specific folder you Select the &quot;Specific&quot;
17561 button <EM>AND</EM> fill in
17562 the name (or list of names) of
17563 the folder in the &quot;Folder List&quot; field.
17564 If the current folder is any of the folders in the list, that is considered
17565 a match.
17566 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17567 of the folder (like what appears in your configuration file) or, if the
17568 folder is one of your incoming folders, it may be the nickname you've given
17569 the folder.
17570 Here are a couple samples of specific folder names:
17572 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17574 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17576 The easiest way to fill in the &quot;Folder List&quot; field is to use
17577 the T command that is available when the &quot;Folder List&quot; line is
17578 highlighted.
17579 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17580 Current Folder Type is set to &quot;Specific&quot;, and any value that
17581 &quot;Folder List&quot; has is ignored unless the type
17582 is set to &quot;Specific&quot;.
17584 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17585 for more information on Patterns.
17587 Look <A HREF="h_edit_nav_cmds">here</A>
17588 to see the available Editing and Navigation commands.
17590 &lt;End of help on this topic&gt;
17591 </BODY>
17592 </HTML>
17593 ======= h_config_incol_fldr_type =======
17594 <HTML>
17595 <HEAD>
17596 <TITLE>Current Folder Type Explained</TITLE>
17597 </HEAD>
17598 <BODY>
17599 <H1>Current Folder Type Explained</H1>
17601 The Current Folder Type is part of the Line Coloring rule's Pattern.
17602 It refers to the type of the folder for which the MESSAGE INDEX is
17603 being viewed.
17604 In order for a rule to be considered a match, the current folder must
17605 be of the type you set here.
17606 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17607 all what you might think.
17609 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17610 example, then
17611 that Pattern will only match if the current folder is a newsgroup and
17612 the rest of the Pattern matches.
17613 The value &quot;Specific&quot; may be used when you want to limit the match
17614 to a specific folder (not just a specific type of folder), or to a list of
17615 specific folders.
17617 In order to match a specific folder you Select the &quot;Specific&quot;
17618 button <EM>AND</EM> fill in
17619 the name (or list of names) of
17620 the folder in the &quot;Folder List&quot; field.
17621 If the current folder is any of the folders in the list, that is considered
17622 a match.
17623 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17624 of the folder (like what appears in your configuration file) or, if the
17625 folder is one of your incoming folders, it may be the nickname you've given
17626 the folder.
17627 Here are a couple samples of specific folder names:
17629 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17631 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17633 The easiest way to fill in the &quot;Folder List&quot; field is to use
17634 the T command that is available when the &quot;Folder List&quot; line is
17635 highlighted.
17636 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17637 Current Folder Type is set to &quot;Specific&quot;, and any value that
17638 &quot;Folder List&quot; has is ignored unless the type
17639 is set to &quot;Specific&quot;.
17641 When reading a newsgroup, there may be a performance penalty
17642 incurred when collecting the information necessary to check a Pattern.
17643 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17644 For example, a rule with a non-Normal Index Line Color
17645 and a Current Folder Type of
17646 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17647 screen to draw more slowly when in a newsgroup.
17649 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17650 for more information on Patterns.
17652 Look <A HREF="h_edit_nav_cmds">here</A>
17653 to see the available Editing and Navigation commands.
17655 &lt;End of help on this topic&gt;
17656 </BODY>
17657 </HTML>
17658 ======= h_config_filt_fldr_type =======
17659 <HTML>
17660 <HEAD>
17661 <TITLE>Current Folder Type Explained</TITLE>
17662 </HEAD>
17663 <BODY>
17664 <H1>Current Folder Type Explained</H1>
17666 The Current Folder Type is part of the Filtering rule's Pattern.
17667 It refers to the type of the folder for which the filtering is being done.
17668 In order for a rule to be considered a match, the current folder must
17669 be of the type you set here.
17670 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17671 all what you might think.
17673 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17674 example, then
17675 that Pattern will only match if the current folder is a newsgroup and
17676 the rest of the Pattern matches.
17677 The value &quot;Specific&quot; may be used when you want to limit the match
17678 to a specific folder (not just a specific type of folder), or to a list of
17679 specific folders.
17681 In order to match a specific folder you Select the &quot;Specific&quot;
17682 button <EM>AND</EM> fill in
17683 the name (or list of names) of
17684 the folder in the &quot;Folder List&quot; field.
17685 If the current folder is any of the folders in the list, that is considered
17686 a match.
17687 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17688 of the folder (like what appears in your configuration file) or, if the
17689 folder is one of your incoming folders, it may be the nickname you've given
17690 the folder.
17691 Here are a couple samples of specific folder names:
17693 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17695 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17697 The easiest way to fill in the &quot;Folder List&quot; field is to use
17698 the T command that is available when the &quot;Folder List&quot; line is
17699 highlighted.
17700 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17701 Current Folder Type is set to &quot;Specific&quot;, and any value that
17702 &quot;Folder List&quot; has is ignored unless the type
17703 is set to &quot;Specific&quot;.
17705 When reading a newsgroup, there may be a performance penalty
17706 incurred when collecting the information necessary to check a Pattern.
17707 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17708 For example, a rule with a Current Folder Type of either
17709 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17710 more slowly when opening a newsgroup.
17712 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17713 for more information on Patterns.
17715 Look <A HREF="h_edit_nav_cmds">here</A>
17716 to see the available Editing and Navigation commands.
17718 &lt;End of help on this topic&gt;
17719 </BODY>
17720 </HTML>
17721 ======= h_config_role_stat_imp =======
17722 <HTML>
17723 <HEAD>
17724 <TITLE>Message Important Status Explained</TITLE>
17725 </HEAD>
17726 <BODY>
17727 <H1>Message Important Status Explained</H1>
17729 This part of the Pattern may have one of three possible values.
17730 The default value is &quot;Don't care&quot;, which matches any message.
17731 The other two values are &quot;Yes&quot;, which means the message must be
17732 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17733 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17734 to be a match.
17736 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17737 for more information on Patterns.
17739 Look <A HREF="h_edit_nav_cmds">here</A>
17740 to see the available Editing and Navigation commands.
17742 &lt;End of help on this topic&gt;
17743 </BODY>
17744 </HTML>
17745 ======= h_config_role_stat_new =======
17746 <HTML>
17747 <HEAD>
17748 <TITLE>Message New Status Explained</TITLE>
17749 </HEAD>
17750 <BODY>
17751 <H1>Message New Status Explained</H1>
17753 This part of the Pattern may have one of three possible values.
17754 The default value is &quot;Don't care&quot;, which matches any message.
17755 The other two values are &quot;Yes&quot;, which means the message must be
17756 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17757 means the message must <EM>not</EM> be &quot;New&quot; in order
17758 to be a match.
17759 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17760 same as <EM>Seen</EM>.
17762 The nomenclature for New and Recent is a bit confusing:
17764 New means that the message is Unseen.
17765 It could have been in your mailbox for a long time but if you haven't looked
17766 at it, it is still considered New.
17767 That matches the default Alpine index display that shows an N for such a
17768 message.
17770 Recent means that the message was added to this folder since the last time
17771 you opened the folder.
17772 Alpine also shows an N by default for these types of messages.
17773 If you were to run two copies of Alpine that opened a folder one right after
17774 the other, a message would only show up as Recent in (at most) the first
17775 Alpine session.
17777 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17778 for more information on Patterns.
17780 Look <A HREF="h_edit_nav_cmds">here</A>
17781 to see the available Editing and Navigation commands.
17783 &lt;End of help on this topic&gt;
17784 </BODY>
17785 </HTML>
17786 ======= h_config_role_stat_recent =======
17787 <HTML>
17788 <HEAD>
17789 <TITLE>Message Recent Status Explained</TITLE>
17790 </HEAD>
17791 <BODY>
17792 <H1>Message Recent Status Explained</H1>
17794 This part of the Pattern may have one of three possible values.
17795 The default value is &quot;Don't care&quot;, which matches any message.
17796 The other two values are &quot;Yes&quot;, which means the message must be
17797 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17798 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17799 to be a match.
17800 &quot;Recent&quot; means that the message was added to the folder since
17801 the last time the folder was opened.
17802 If more than one mail client has the folder opened, the message will
17803 appear to be &quot;Recent&quot; to only one of the clients.
17805 The nomenclature for New and Recent is a bit confusing:
17807 New means that the message is Unseen.
17808 It could have been in your mailbox for a long time but if you haven't looked
17809 at it, it is still considered New.
17810 That matches the default Alpine index display that shows an N for such a
17811 message.
17813 Recent means that the message was added to this folder since the last time
17814 you opened the folder.
17815 Alpine also shows an N by default for these types of messages.
17816 If you were to run two copies of Alpine that opened a folder one right after
17817 the other, a message would only show up as Recent in (at most) the first
17818 Alpine session.
17820 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17821 for more information on Patterns.
17823 Look <A HREF="h_edit_nav_cmds">here</A>
17824 to see the available Editing and Navigation commands.
17826 &lt;End of help on this topic&gt;
17827 </BODY>
17828 </HTML>
17829 ======= h_config_role_stat_del =======
17830 <HTML>
17831 <HEAD>
17832 <TITLE>Message Deleted Status Explained</TITLE>
17833 </HEAD>
17834 <BODY>
17835 <H1>Message Deleted Status Explained</H1>
17837 This part of the Pattern may have one of three possible values.
17838 The default value is &quot;Don't care&quot;, which matches any message.
17839 The other two values are &quot;Yes&quot;, which means the message must be
17840 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17841 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17842 to be a match.
17844 If you are thinking of using this part of the Pattern as a way to prevent
17845 messages from being filtered more than once in a Filter Pattern,
17846 take a look at the Filter Option
17847 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17848 instead.
17849 It should work better than using this field since it will hide the filtered
17850 messages even if they are already Deleted.
17851 That option is at the bottom of the Filter configuration screen.
17853 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17854 for more information on Patterns.
17856 Look <A HREF="h_edit_nav_cmds">here</A>
17857 to see the available Editing and Navigation commands.
17859 &lt;End of help on this topic&gt;
17860 </BODY>
17861 </HTML>
17862 ======= h_config_role_stat_ans =======
17863 <HTML>
17864 <HEAD>
17865 <TITLE>Message Answered Status Explained</TITLE>
17866 </HEAD>
17867 <BODY>
17868 <H1>Message Answered Status Explained</H1>
17870 This part of the Pattern may have one of three possible values.
17871 The default value is &quot;Don't care&quot;, which matches any message.
17872 The other two values are &quot;Yes&quot;, which means the message must be
17873 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17874 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17875 to be a match.
17877 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17878 for more information on Patterns.
17880 Look <A HREF="h_edit_nav_cmds">here</A>
17881 to see the available Editing and Navigation commands.
17883 &lt;End of help on this topic&gt;
17884 </BODY>
17885 </HTML>
17886 ======= h_config_role_abookfrom =======
17887 <HTML>
17888 <HEAD>
17889 <TITLE>Address in Address Book Explained</TITLE>
17890 </HEAD>
17891 <BODY>
17892 <H1>Address in Address Book Explained</H1>
17894 This option gives you a way to match messages that contain an address
17895 that is in one of your address books.
17896 Only the simple entries in your address books are searched.
17897 Address book distribution lists are ignored!
17899 This part of the Pattern may have one of five possible values.
17900 The default value is &quot;Don't care&quot;, which matches any message.
17901 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17902 from the message must be in at least one of your
17903 address books in order to be a match.
17904 The value &quot;No, not in any address book&quot;
17905 means none of the addresses may
17906 be in any of your address books in order to be a match.
17908 The values &quot;Yes, in specific address books&quot; and
17909 &quot;No, not in any of specific address books&quot; are similar but instead
17910 of depending on all address books you are allowed to give a list of address
17911 books to look in.
17912 Usually this would be a single address book but it may be a
17913 list of address books as well.
17914 For each of these &quot;specific&quot; address book options you Select which
17915 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17916 name (or list of names) of the address book in the
17917 &quot;Abook List&quot; field.
17918 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17919 The easiest way to fill in the Abook List field it to use
17920 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17921 line is highlighted.
17922 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17923 option is set to one of the two &quot;Specific&quot;, values.
17925 The addresses from the message that are checked for are determined by the
17926 setting you have for &quot;Types of addresses to check for in address book&quot;.
17927 If you set this to &quot;From&quot; the From address from the message will
17928 be looked up in the address book.
17929 If you set it to &quot;To&quot; instead then the To addresses will be used.
17930 If any of the To addresses are in the address book then it is considered
17931 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17932 You could set it to both From and To, in which case all of the From and To
17933 addresses are used.
17934 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17935 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17936 exists or the From address if there is no Reply-To address.
17937 Same for the Sender address.
17939 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17940 for more information on Patterns.
17942 Look <A HREF="h_edit_nav_cmds">here</A>
17943 to see the available Editing and Navigation commands.
17945 &lt;End of help on this topic&gt;
17946 </BODY>
17947 </HTML>
17948 ======= h_config_inabook_from =======
17949 <HTML>
17950 <HEAD>
17951 <TITLE>From</TITLE>
17952 </HEAD>
17953 <BODY>
17954 <H1>From</H1>
17956 Setting the From line will cause the address from the From header line
17957 of the message to be checked for in the address book.
17959 &lt;End of help on this topic&gt;
17960 </BODY>
17961 </HTML>
17962 ======= h_config_inabook_replyto =======
17963 <HTML>
17964 <HEAD>
17965 <TITLE>Reply-To</TITLE>
17966 </HEAD>
17967 <BODY>
17968 <H1>Reply-To</H1>
17970 Setting the Reply-To line will cause the address from the Reply-To header line
17971 of the message to be checked for in the address book.
17972 However, if there is no Reply-To header line in the message the From header
17973 line will be used instead.
17974 We understand this is dumb but we don't have an easy way around it.
17976 &lt;End of help on this topic&gt;
17977 </BODY>
17978 </HTML>
17979 ======= h_config_inabook_sender =======
17980 <HTML>
17981 <HEAD>
17982 <TITLE>Sender</TITLE>
17983 </HEAD>
17984 <BODY>
17985 <H1>Sender</H1>
17987 Setting the Sender line will cause the address from the Sender header line
17988 of the message to be checked for in the address book.
17989 However, if there is no Sender header line in the message the From header
17990 line will be used instead.
17991 We understand this is dumb but we don't have an easy way around it.
17993 &lt;End of help on this topic&gt;
17994 </BODY>
17995 </HTML>
17996 ======= h_config_inabook_to =======
17997 <HTML>
17998 <HEAD>
17999 <TITLE>To</TITLE>
18000 </HEAD>
18001 <BODY>
18002 <H1>To</H1>
18004 Setting the To line will cause the address from the To header line
18005 of the message to be checked for in the address book.
18007 &lt;End of help on this topic&gt;
18008 </BODY>
18009 </HTML>
18010 ======= h_config_inabook_cc =======
18011 <HTML>
18012 <HEAD>
18013 <TITLE>CC</TITLE>
18014 </HEAD>
18015 <BODY>
18016 <H1>CC</H1>
18018 Setting the CC line will cause the address from the CC header line
18019 of the message to be checked for in the address book.
18021 &lt;End of help on this topic&gt;
18022 </BODY>
18023 </HTML>
18024 ======= h_config_role_stat_8bitsubj =======
18025 <HTML>
18026 <HEAD>
18027 <TITLE>Raw 8-bit in Subject Explained</TITLE>
18028 </HEAD>
18029 <BODY>
18030 <H1>Raw 8-bit in Subject Explained</H1>
18032 It seems that lots of unwanted email contains unencoded 8-bit characters
18033 in the Subject.
18034 Normally, characters with the 8th bit set are not allowed in the Subject
18035 header unless they are MIME-encoded.
18036 This option gives you a way to match messages that have Subjects that
18037 contain unencoded 8-bit characters.
18039 This part of the Pattern may have one of three possible values.
18040 The default value is &quot;Don't care&quot;, which matches any message.
18041 The other two values are &quot;Yes&quot;, which means the Subject of
18042 the message must contain unencoded 8-bit characters (characters with the
18043 most significant bit set)
18044 in order to be a match; or &quot;No&quot;, which
18045 means the Subject must <EM>not</EM>
18046 contain unencoded 8-bit characters in order to be a match.
18048 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18049 for more information on Patterns.
18051 Look <A HREF="h_edit_nav_cmds">here</A>
18052 to see the available Editing and Navigation commands.
18054 &lt;End of help on this topic&gt;
18055 </BODY>
18056 </HTML>
18057 ======= h_config_role_bom =======
18058 <HTML>
18059 <HEAD>
18060 <TITLE>Beginning of Month</TITLE>
18061 </HEAD>
18062 <BODY>
18063 <H1>Beginning of Month</H1>
18065 This option gives you a limited ability to take different actions depending on whether
18066 this is the first time Alpine has been run this month or not.
18067 Though it would be nice to have such an option available, this is not the
18068 same as whether or not this is the first time a paricular folder has been
18069 opened this month.
18070 If you want some action (probably Filtering) to take place in a folder each
18071 month, then you will need to be sure that the folder is opened during the
18072 first Alpine session of the month in order for this option to be helpful.
18074 This part of the Pattern may have one of three possible values.
18075 The default value is &quot;Don't care&quot;, which matches any message.
18076 The other two values are &quot;Yes&quot;, which means this is the first
18077 time Alpine has been run this month;
18078 or &quot;No&quot;, which
18079 means this is not the first time Alpine has been run this month.
18081 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18082 for more information on Patterns.
18084 Here are some technical details.
18085 The way that Alpine decides if it is the beginning of the month or not is
18086 to compare today's date with the date stored in the
18087 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18088 variable in the config file.
18089 If the month of today's date is later than the month stored in the variable,
18090 then this is considered to be the first time you have run Alpine this month, and
18091 that turns the Beginning of the Month option on.
18093 Look <A HREF="h_edit_nav_cmds">here</A>
18094 to see the available Editing and Navigation commands.
18096 &lt;End of help on this topic&gt;
18097 </BODY>
18098 </HTML>
18099 ======= h_config_role_boy =======
18100 <HTML>
18101 <HEAD>
18102 <TITLE>Beginning of Year</TITLE>
18103 </HEAD>
18104 <BODY>
18105 <H1>Beginning of Year</H1>
18107 This option gives you a limited ability to take different actions depending on whether
18108 this is the first time Alpine has been run this year or not.
18109 Though it would be nice to have such an option available, this is not the
18110 same as whether or not this is the first time a paricular folder has been
18111 opened this year.
18112 If you want some action (probably Filtering) to take place in a folder each
18113 year, then you will need to be sure that the folder is opened during the
18114 first Alpine session of the year in order for this option to be helpful.
18116 This part of the Pattern may have one of three possible values.
18117 The default value is &quot;Don't care&quot;, which matches any message.
18118 The other two values are &quot;Yes&quot;, which means this is the first
18119 time Alpine has been run this year;
18120 or &quot;No&quot;, which
18121 means this is not the first time Alpine has been run this year.
18123 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18124 for more information on Patterns.
18126 Here are some technical details.
18127 The way that Alpine decides if it is the beginning of the year or not is
18128 to compare today's date with the date stored in the
18129 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18130 variable in the config file.
18131 If the year of today's date is later than the year stored in the variable,
18132 then this is considered to be the first time you have run Alpine this year, and
18133 that turns the Beginning of the Year option on.
18135 Look <A HREF="h_edit_nav_cmds">here</A>
18136 to see the available Editing and Navigation commands.
18138 &lt;End of help on this topic&gt;
18139 </BODY>
18140 </HTML>
18141 ======= h_config_role_inick =======
18142 <HTML>
18143 <HEAD>
18144 <TITLE>Initialize Values From Role Explained</TITLE>
18145 </HEAD>
18146 <BODY>
18147 <H1>Initialize Values From Role Explained</H1>
18149 This is a power user feature.
18150 You will usually want to leave this field empty.
18151 The value of this field is the nickname of another one of your roles.
18152 The Action values from that other role
18153 are used as the initial values of the Action items for this role.
18154 If you put something in any of the action fields for this role, that will
18155 override whatever was in the corresponding field of the initializer role.
18157 You might use this field if the &quot;Action&quot; part of one of your roles
18158 is something you want to use in more than one role.
18159 Instead of filling in those action values again for each role, you
18160 may give the nickname of the role where the values are filled in.
18161 It's just a shortcut way to define Role Actions.
18163 Here's an example to help explain how this works.
18164 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18165 (among other things)
18167 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18169 set.
18170 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18171 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18172 from role1 by default (and any of the other inheritable action values
18173 that are set).
18174 So if role2 had
18176 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18178 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18179 However, if role2 had
18181 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18183 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18185 If you wish,
18186 you may choose a nickname from your list of roles by using the
18187 &quot;T&quot; command.
18188 If the role you are using to initialize also has a role it initializes from,
18189 then that initialization happens first.
18190 That is, inheritance works as expected with the grandparent and
18191 great-grandparent (and so on) roles having the expected effect.
18193 Look <A HREF="h_edit_nav_cmds">here</A>
18194 to see the available Editing and Navigation commands.
18196 &lt;End of help on this topic&gt;
18197 </BODY>
18198 </HTML>
18199 ======= h_config_role_setfrom =======
18200 <HTML>
18201 <HEAD>
18202 <TITLE>Set From Explained</TITLE>
18203 </HEAD>
18204 <BODY>
18205 <H1>Set From Explained</H1>
18207 This describes part of the action to be taken if the Pattern for this
18208 role is a match.
18209 This field consists of a single address that will be used as the From
18210 address on the message you are sending.
18211 This should be a fully-qualified address like
18213 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18215 or just
18217 <CENTER><SAMP>user@domain</SAMP></CENTER>
18219 If you wish,
18220 you may choose an address from your address book with the
18221 &quot;T&quot; command.
18223 If this is left blank, then your normal From address will be used.
18225 You may also find it useful to add the changed From address to the
18226 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18227 configuration option.
18229 Look <A HREF="h_edit_nav_cmds">here</A>
18230 to see the available Editing and Navigation commands.
18232 &lt;End of help on this topic&gt;
18233 </BODY>
18234 </HTML>
18235 ======= h_config_role_setreplyto =======
18236 <HTML>
18237 <HEAD>
18238 <TITLE>Set Reply-To Explained</TITLE>
18239 </HEAD>
18240 <BODY>
18241 <H1>Set Reply-To Explained</H1>
18243 This describes part of the action to be taken if the Pattern for this
18244 role is a match.
18245 This field consists of a single address that will be used as the Reply-To
18246 address on the message you are sending.
18247 This may be a fully-qualified address like
18249 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18251 or just
18253 <CENTER><SAMP>user@domain</SAMP></CENTER>
18255 If you wish,
18256 you may choose an address from your address book with the
18257 &quot;T&quot; command.
18259 If this is left blank, then there won't be a Reply-To address unless
18260 you have configured one specially with the
18261 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18262 configuration option.
18264 Look <A HREF="h_edit_nav_cmds">here</A>
18265 to see the available Editing and Navigation commands.
18267 &lt;End of help on this topic&gt;
18268 </BODY>
18269 </HTML>
18270 ======= h_config_role_setfcc =======
18271 <HTML>
18272 <HEAD>
18273 <TITLE>Set Fcc Explained</TITLE>
18274 </HEAD>
18275 <BODY>
18276 <H1>Set Fcc Explained</H1>
18278 This describes part of the action to be taken if the Pattern for this
18279 role is a match.
18280 This field consists of a single folder name that will be used in
18281 the Fcc field of the message you are sending.
18282 You may put anything here that you would normally type into the Fcc
18283 field from the composer.
18285 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18286 no Fcc.
18288 A blank field here means that Alpine will use its normal rules for deciding
18289 the default value of the Fcc field.
18290 For many roles, perhaps most, it may make more sense for you to use the
18291 other Alpine facilities for setting the Fcc.
18292 In particular, if you want the Fcc to depend on who you are sending the
18293 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18294 is probably more useful.
18295 In that case, you would want to leave the Fcc field here blank.
18296 However, if you have a role that depends on who the message you are replying
18297 to was From, or what address that message was sent to;
18298 then it might make sense to set the Fcc for that role here.
18300 If you wish,
18301 you may choose a folder from your folder collections by using the
18302 &quot;T&quot; command.
18304 Look <A HREF="h_edit_nav_cmds">here</A>
18305 to see the available Editing and Navigation commands.
18307 &lt;End of help on this topic&gt;
18308 </BODY>
18309 </HTML>
18310 ======= h_config_role_usesmtp =======
18311 <HTML>
18312 <HEAD>
18313 <TITLE>Use SMTP Server Explained</TITLE>
18314 </HEAD>
18315 <BODY>
18316 <H1>Use SMTP Server Explained</H1>
18318 This describes part of the action to be taken if the Pattern for this
18319 role is a match.
18320 If this field has a value, then it will be used as the SMTP server
18321 to send mail when this role is being used (unless the SMTP server variable
18322 is set in the system-wide fixed configuration file).
18323 It has the same semantics as the
18324 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18325 variable in the Setup/Config screen.
18327 If you are using this to post from home when you are at home and from
18328 work when you are at work you need to be careful about postponing messages.
18329 When you postpone a composition that was using a role with this variable
18330 set, the SMTP server list will be saved
18331 with the postponed composition.
18332 It cannot be changed later.
18333 Because of this, you may want to make this a list of SMTP servers
18334 with the preferred server at the front of the list and alternate servers
18335 later in the list.
18336 In your &quot;Home&quot; role you would put the home SMTP server first and
18337 the work SMTP server last.
18338 In your &quot;Work&quot; role you would put the work SMTP server first and
18339 the home SMTP server last.
18340 Then if you start a composition as &quot;Work&quot;, postpone
18341 it, and then later resume it from home the work SMTP server will fail but
18342 the home SMTP server later in the list will succeed.
18344 You may be able to simplify things by making the regular
18345 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18346 variable in the Setup/Config screen a list instead of using roles
18347 to set the SMTP server.
18350 Look <A HREF="h_edit_nav_cmds">here</A>
18351 to see the available Editing and Navigation commands.
18353 &lt;End of help on this topic&gt;
18354 </BODY>
18355 </HTML>
18356 ======= h_config_role_usenntp =======
18357 <HTML>
18358 <HEAD>
18359 <TITLE>Use NNTP Server Explained</TITLE>
18360 </HEAD>
18361 <BODY>
18362 <H1>Use NNTP Server Explained</H1>
18364 This describes part of the action to be taken if the Pattern for this
18365 role is a match.
18366 If this field has a value, then it will be used as the NNTP server
18367 to post to newsgroups when this role is being used (unless the NNTP server
18368 variable
18369 is set in the system-wide fixed configuration file).
18370 It has the same semantics as the
18371 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18372 variable in the Setup/Config screen.
18374 This role setting can facilitate posting to the right nntp server for someone
18375 who reads news from various news sources.  The feature
18376 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18377 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18378 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18379 nntp servers for roles may be more desirable for some people.
18381 If you are using this to post from home when you are at home and from
18382 work when you are at work you need to be careful about postponing messages.
18383 When you postpone a composition that was using a role with this variable
18384 set, the NNTP server list will be saved
18385 with the postponed composition.
18386 It cannot be changed later.
18387 Because of this, you may want to make this a list of NNTP servers
18388 with the preferred server at the front of the list and alternate servers
18389 later in the list.
18390 In your &quot;Home&quot; role you would put the home NNTP server first and
18391 the work NNTP server last.
18392 In your &quot;Work&quot; role you would put the work NNTP server first and
18393 the home NNTP server last.
18394 Then if you start a composition as &quot;Work&quot;, postpone
18395 it, and then later resume it from home the work NNTP server will fail but
18396 the home NNTP server later in the list will succeed.
18398 You may be able to simplify things by making the regular
18399 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18400 variable in the Setup/Config screen a list instead of using roles
18401 to set the NNTP server.
18404 Look <A HREF="h_edit_nav_cmds">here</A>
18405 to see the available Editing and Navigation commands.
18407 &lt;End of help on this topic&gt;
18408 </BODY>
18409 </HTML>
18410 ======= h_config_role_setotherhdr =======
18411 <HTML>
18412 <HEAD>
18413 <TITLE>Set Other Headers Explained</TITLE>
18414 </HEAD>
18415 <BODY>
18416 <H1>Set Other Headers Explained</H1>
18418 This describes part of the action to be taken if the Pattern for this
18419 role is a match.
18420 This field gives you a way to set values for headers besides
18421 &quot;From&quot; and &quot;Reply-To&quot;.
18422 If you want to set either of those, use the specific
18423 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18425 This field is similar to the
18426 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18427 Each header you specify here must include the header tag 
18428 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18429 and may optionally include a value for that header.
18430 In order to see these headers when you compose using this role you 
18431 must use the rich header
18432 <!--chtml if pinemode="function_key"-->(F5)
18433 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18434 Here's an example that shows how you might set the To address.
18436 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18438 Headers set in this way are different from headers set with the
18439 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18440 will replace any value that already exists.
18441 For example, if you are Replying to a message there will already be at
18442 least one address in the To header (the address you are Replying to).
18443 However, if you Reply using a role that sets the To header, that role's
18444 To header value will be used instead.
18446 Limitation: Because commas are used to separate the list of
18447 Other Headers, it is not possible to have the value of a
18448 header contain a comma;
18449 nor is there currently an &quot;escape&quot; mechanism provided
18450 to make this work.
18452 Look <A HREF="h_edit_nav_cmds">here</A>
18453 to see the available Editing and Navigation commands.
18455 &lt;End of help on this topic&gt;
18456 </BODY>
18457 </HTML>
18458 ======= h_config_role_setlitsig =======
18459 <HTML>
18460 <HEAD>
18461 <TITLE>Set Literal Signature Explained</TITLE>
18462 </HEAD>
18463 <BODY>
18464 <H1>Set Literal Signature Explained</H1>
18466 This describes part of the action to be taken if the Pattern for this
18467 role is a match.
18468 This field contains the actual text for your signature, as opposed to
18469 the name of a file containing your signature.
18470 If this is defined it takes precedence over any value set in the
18471 &quot;Set Signature&quot; field.
18473 This is simply a different way to store the signature.
18474 The signature is stored inside your Alpine configuration file instead of in
18475 a separate file.
18476 Tokens work the same way they do with
18477 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18478 help text there for more information.
18481 The two character sequence &#92;n (backslash followed by
18482 the character n) will be used to signify a line-break in your signature.
18483 You don't have to enter the &#92;n, but it will be visible in the
18484 CHANGE THIS ROLE RULE window after you are done editing the signature.
18486 Look <A HREF="h_edit_nav_cmds">here</A>
18487 to see the available Editing and Navigation commands.
18489 &lt;End of help on this topic&gt;
18490 </BODY>
18491 </HTML>
18492 ======= h_config_role_setsig =======
18493 <HTML>
18494 <HEAD>
18495 <TITLE>Set Signature Explained</TITLE>
18496 </HEAD>
18497 <BODY>
18498 <H1>Set Signature Explained</H1>
18500 This describes part of the action to be taken if the Pattern for this
18501 role is a match.
18503 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18504 option from Setup/Config
18505 or the &quot;Set LiteralSig&quot; option for this role are defined,
18506 then this option will be ignored.
18507 You can tell that that is the case because the value of this
18508 option will show up as
18510 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18512 You may either use all Literal Signatures (signatures stored in your
18513 configuration file) throughout Alpine, or all signature files.
18514 You can't mix the two.
18516 This field consists of a filename that will be used as the signature
18517 file when using this role.
18519 If the filename is followed by a vertical bar (|) then instead
18520 of reading the contents of the file the file is assumed to be a
18521 program that will produce the text to be used on its standard output.
18522 The program can't have any arguments and doesn't receive any input from Alpine,
18523 but the rest of the processing works as if the contents came from a file.
18525 Instead of storing the data in a local file, the
18526 signature data may be stored remotely in an IMAP folder.
18527 In order to do this, 
18528 you must use a remote name for the signature.
18529 A remote signature name might look like:
18531 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18534 The syntax used here is the same as the syntax used for a remote
18535 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18536 Note that you may not access an existing signature file remotely,
18537 you have to create a new <EM>folder</EM> that contains the signature data.
18538 If the name you use here for the signature data is a remote name, then when
18539 you edit the file using the &quot;F&quot; command the data will
18540 be saved remotely in the folder.
18541 You aren't required to do anything special to create the folder, it
18542 gets created if you use a remote name.
18545 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18546 the name of the file) you have specified.
18547 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18549 Besides containing regular text, a signature file may also
18550 contain (or a signature program may produce) tokens that are replaced with text
18551 that depends on the message you are replying to or forwarding.
18552 The tokens all look like _word_ (a word surrounded by underscores).
18553 For example, if the token
18555 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18557 is included in the text of the signature file, then when you reply to
18558 or forward a message, the token will be replaced with the actual date
18559 the message you are replying to or forwarding was sent.
18561 If you use a role that has a signature file for a plain composition
18562 (that is, not a reply or forward) then there is no original message, so
18563 any tokens that depend on the message will be replaced with nothing.
18564 So if you want a signature file to be useful for new compositions it
18565 shouldn't include any of the tokens that depend on the message being
18566 replied to or forwarded.
18568 The list of available tokens is
18569 <A HREF="h_index_tokens">here</A>.
18571 Actually, for the adventurous, there is a way to conditionally include text based
18572 on whether or not a token would result in specific replacement text.
18573 For example, you could include some text based on whether or not
18574 the _NEWS_ token would result in any newsgroups if it was used.
18575 It's explained in detail
18576 <A HREF="h_reply_token_conditionals">here</A>.
18578 In the very unlikely event that you want to include a literal token in
18579 a signature file, you must precede it with a backslash character.
18580 For example, to include the literal text _DATE_ you must actually use
18581 &#92;_DATE_.
18582 It is not possible to have a literal backslash followed by an expanded token.
18584 A blank field here means that Alpine will use its normal rules for deciding
18585 which file (if any) to use for the signature file.
18587 An alternate method for storing the signature is available in
18588 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18590 Look <A HREF="h_edit_nav_cmds">here</A>
18591 to see the available Editing and Navigation commands.
18593 &lt;End of help on this topic&gt;
18594 </BODY>
18595 </HTML>
18596 ======= h_config_role_settempl =======
18597 <HTML>
18598 <HEAD>
18599 <TITLE>Set Template Explained</TITLE>
18600 </HEAD>
18601 <BODY>
18602 <H1>Set Template Explained</H1>
18604 This describes part of the action to be taken if the Pattern for this
18605 role is a match.
18606 This field consists of a filename that will be used as the template
18607 file when using this role.
18608 The template file is a file that is included at the top of the message you
18609 are composing.
18611 If the filename is followed by a vertical bar (|) then instead
18612 of reading the contents of the file the file is assumed to be a
18613 program that will produce the text to be used on its standard output.
18614 The program can't have any arguments and doesn't receive any input from Alpine,
18615 but the rest of the processing works as if the contents came from a file.
18617 Instead of storing the data in a local file, the
18618 template may be stored remotely in an IMAP folder.
18619 In order to do this, 
18620 you must use a remote name for the template.
18621 A remote template name might look like:
18623 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18626 The syntax used here is the same as the syntax used for a remote
18627 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18628 Note that you may not access an existing template file remotely,
18629 you have to create a new <EM>folder</EM> that contains the template data.
18630 If the name you use here for the template is a remote name, then when
18631 you edit the file using the &quot;F&quot; command the data will
18632 be saved remotely in the folder.
18633 You aren't required to do anything special to create the folder, it
18634 gets created if you use a remote name.
18636 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18637 the name of the file) you have specified.
18638 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18640 Besides containing regular text, the template file may also
18641 contain (or a template file program may produce) tokens that are replaced with text
18642 that depends on the message you are replying to or forwarding.
18643 The tokens all look like _word_ (a word surrounded by underscores).
18644 For example, if the token
18646 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18648 is included in the text of the template file, then when you reply to
18649 or forward a message, the token will be replaced with the actual date
18650 the message you are replying to or forwarding was sent.
18652 If you use a role that has a template file for a plain composition
18653 (that is, not a reply or forward) then there is no original message, so
18654 any tokens that depend on the message will be replaced with nothing.
18655 So if you want a template file to be useful for new compositions it
18656 shouldn't include any of the tokens that depend on the message being
18657 replied to or forwarded.
18659 The list of available tokens is
18660 <A HREF="h_index_tokens">here</A>.
18662 Actually, for the adventurous, there is a way to conditionally include text based
18663 on whether or not a token would result in specific replacement text.
18664 For example, you could include some text based on whether or not
18665 the _NEWS_ token would result in any newsgroups if it was used.
18666 It's explained in detail
18667 <A HREF="h_reply_token_conditionals">here</A>.
18669 In the very unlikely event that you want to include a literal token in
18670 a template file, you must precede it with a backslash character.
18671 For example, to include the literal text _DATE_ you must actually use
18672 &#92;_DATE_.
18673 It is not possible to have a literal backslash followed by an expanded token.
18675 A blank template field means that Alpine will not use a template file when
18676 this role is being used.
18678 Look <A HREF="h_edit_nav_cmds">here</A>
18679 to see the available Editing and Navigation commands.
18681 &lt;End of help on this topic&gt;
18682 </BODY>
18683 </HTML>
18684 ======= h_config_filt_stat_imp =======
18685 <HTML>
18686 <HEAD>
18687 <TITLE>Set Important Status Explained</TITLE>
18688 </HEAD>
18689 <BODY>
18690 <H1>Set Important Status Explained</H1>
18692 This describes part of the action to be taken if the Pattern for this
18693 filter is a match.
18694 If set to &quot;Don't change it&quot; then this does nothing.
18695 If set to &quot;Set this state&quot; then the Important flag is set
18696 for the matching message.
18697 If set to &quot;Clear this state&quot; then the Important flag is cleared
18698 for the matching message.
18699 The important flag usually causes an asterisk to show up in the MESSAGE
18700 INDEX.
18701 It may also be useful when selecting a set of messages
18702 with the Select command.
18704 Look <A HREF="h_edit_nav_cmds">here</A>
18705 to see the available Editing and Navigation commands.
18707 &lt;End of help on this topic&gt;
18708 </BODY>
18709 </HTML>
18710 ======= h_config_filt_stat_new =======
18711 <HTML>
18712 <HEAD>
18713 <TITLE>Set New Status Explained</TITLE>
18714 </HEAD>
18715 <BODY>
18716 <H1>Set New Status Explained</H1>
18718 This describes part of the action to be taken if the Pattern for this
18719 filter is a match.
18720 If set to &quot;Don't change it&quot; then this does nothing.
18721 If set to &quot;Set this state&quot; then the
18722 matching message is marked New.
18723 If set to &quot;Clear this state&quot; then the
18724 matching message is marked Seen.
18726 Look <A HREF="h_edit_nav_cmds">here</A>
18727 to see the available Editing and Navigation commands.
18729 &lt;End of help on this topic&gt;
18730 </BODY>
18731 </HTML>
18732 ======= h_config_filt_stat_ans =======
18733 <HTML>
18734 <HEAD>
18735 <TITLE>Set Answered Status Explained</TITLE>
18736 </HEAD>
18737 <BODY>
18738 <H1>Set Answered Status Explained</H1>
18740 This describes part of the action to be taken if the Pattern for this
18741 filter is a match.
18742 If set to &quot;Don't change it&quot; then this does nothing.
18743 If set to &quot;Set this state&quot; then the Answered flag is set
18744 for the matching message.
18745 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18746 for the matching message.
18748 Look <A HREF="h_edit_nav_cmds">here</A>
18749 to see the available Editing and Navigation commands.
18751 &lt;End of help on this topic&gt;
18752 </BODY>
18753 </HTML>
18754 ======= h_config_filt_stat_del =======
18755 <HTML>
18756 <HEAD>
18757 <TITLE>Set Deleted Status Explained</TITLE>
18758 </HEAD>
18759 <BODY>
18760 <H1>Set Deleted Status Explained</H1>
18762 This describes part of the action to be taken if the Pattern for this
18763 filter is a match.
18764 If set to &quot;Don't change it&quot; then this does nothing.
18765 If set to &quot;Set this state&quot; then the
18766 matching message is marked Deleted.
18767 If set to &quot;Clear this state&quot; then the
18768 matching message is marked UnDeleted.
18770 You should not use this option unless you are prepared to have matching
18771 messages expunged from the folder permanently.
18772 For example, if you type the Expunge command, this filter is applied
18773 before the expunge, so matching messages will be marked Deleted and then
18774 will be permanently expunged from the folder.
18775 However, since the index isn't redrawn in between the time that the message
18776 is marked Deleted and the time that you are asked to expunge, the only
18777 indication that you are expunging the message comes in the number of messages
18778 being expunged.
18779 The same thing may happen when you close a folder.
18780 It is also possible that an expunge not initiated by you will
18781 delete matching messages.
18783 Look <A HREF="h_edit_nav_cmds">here</A>
18784 to see the available Editing and Navigation commands.
18786 &lt;End of help on this topic&gt;
18787 </BODY>
18788 </HTML>
18789 ======= h_config_role_scoreval =======
18790 <HTML>
18791 <HEAD>
18792 <TITLE>Score Value Explained</TITLE>
18793 </HEAD>
18794 <BODY>
18795 <H1>Score Value Explained</H1>
18797 A message's score is the sum of the Score Values from all of the Scoring rules
18798 with Patterns that match the message.
18799 The value you give here is the Score Value associated with this rule.
18800 A Score Value is an integer between -100 and 100, with the default
18801 value of zero.
18803 Alternatively, if the
18804 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18805 field is defined
18806 (on the line right below the &quot;Score Value&quot; field)
18807 then the &quot;Score Value&quot; is ignored and
18808 the &quot;Score From Header&quot; field is used instead.
18810 Look <A HREF="h_edit_nav_cmds">here</A>
18811 to see the available Editing and Navigation commands.
18813 &lt;End of help on this topic&gt;
18814 </BODY>
18815 </HTML>
18816 ======= h_config_role_scorehdrtok =======
18817 <HTML>
18818 <HEAD>
18819 <TITLE>Score Value From Header Explained</TITLE>
18820 </HEAD>
18821 <BODY>
18822 <H1>Score Value From Header Explained</H1>
18824 This option provides a way to use a number that appears in the headers of your
18825 messages as the message's score, or as a component of that score.
18826 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18827 The idea behind this option is that there may be a score embedded in the
18828 headers of messages that has already been calculated outside of Alpine.
18829 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18830 somewhere in that header there is a score.
18832 The value for this option is the name of the header followed by parentheses
18833 with two arguments inside:
18835 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18837 No space is allowed between the comma and the start of the field_separators.
18838 It would be interpreted as the first separator if it was there.
18839 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18840 starts after that and goes to the second separator, and so on.
18841 It's easier to explain with examples.
18843 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18845 In the above example the header that is used is the &quot;X-Spam&quot; header.
18846 The value of that header (the part after the colon and the space) is split
18847 into fields separated by spaces.
18849 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18851 The second field is selected and converted to an integer. It only makes sense
18852 if Field2 really is an integer.
18854 Here's an example of a SpamAssassin header.
18855 The exact look of the header will vary, but if your incoming mail
18856 contains headers that look like the following
18858 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18860 you might want to use the hits value as a score.
18861 Since the score is an integer value you can't make use of the decimal part of
18862 the number, but
18863 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18864 and &quot;.&quot; as your separators.
18866 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18868 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18869 hits.
18870 The second field is &quot;10&quot; so the score value would be 10.
18872 Another example we've seen has headers that look like
18874 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18876 Because there are two equals before the 7% the value
18878 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18880 should capture the probability as the score.
18882 The Score From Header scoring value actually works just like the
18883 regular Score Value in that the rest of the pattern has to match before
18884 it is used and the scores from all the different scoring rules that
18885 match for a particular message are added together.
18886 When using the Score From Header method it may (or may not) make sense to
18887 use only a single scoring rule with a pattern that matches every message.
18889 Look <A HREF="h_edit_nav_cmds">here</A>
18890 to see the available Editing and Navigation commands.
18892 &lt;End of help on this topic&gt;
18893 </BODY>
18894 </HTML>
18895 ======= h_config_role_replyuse =======
18896 <HTML>
18897 <HEAD>
18898 <TITLE>Reply Use Explained</TITLE>
18899 </HEAD>
18900 <BODY>
18901 <H1>Reply Use Explained</H1>
18903 This option determines how this particular role will be used when Replying
18904 to a message.
18905 There are three possible values for this option.
18906 The value &quot;Never&quot;
18907 means that this role will not be a candidate for use when Replying.
18908 The role's Pattern will not be checked for a match, however the role will
18909 be available to be manually switched to if there is a confirmation prompt.
18912 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18913 mean that you do want to consider this role when Replying.
18914 For either of these settings, the role's Pattern will be compared with
18915 the message being replied to.
18916 If there is a match then this role will either be used without confirmation
18917 or will be the default when confirmation is asked for, depending on
18918 which of the two options is selected.
18919 If confirmation is requested, you will also have a chance to
18920 manually change the role to any one of your other roles.
18923 You won't be prompted for confirmation if none of your role Patterns
18924 match the message being replied to.
18925 This is independent of the value of the current option.
18926 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18927 feature may be used to change this behavior.
18929 &lt;End of help on this topic&gt;
18930 </BODY>
18931 </HTML>
18932 ======= h_config_role_forwarduse =======
18933 <HTML>
18934 <HEAD>
18935 <TITLE>Forward Use Explained</TITLE>
18936 </HEAD>
18937 <BODY>
18938 <H1>Forward Use Explained</H1>
18940 This option determines how this particular role will be used when Forwarding
18941 a message.
18942 There are three possible values for this option.
18943 The value &quot;Never&quot;
18944 means that this role will not be a candidate for use when Forwarding.
18945 The role's Pattern will not be checked for a match, however the role will
18946 be available to be manually switched to if there is a confirmation prompt.
18949 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18950 mean that you do want to consider this role when Forwarding.
18951 For either of these settings, the role's Pattern will be compared with
18952 the message being forwarded.
18953 If there is a match then this role will either be used without confirmation
18954 or will be the default when confirmation is asked for, depending on
18955 which of the two options is selected.
18956 If confirmation is requested, you will also have a chance to
18957 manually change the role to any one of your other roles.
18960 You won't be prompted for confirmation if none of your role Patterns
18961 match the message being forwarded.
18962 This is independent of the value of the current option.
18963 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18964 feature may be used to change this behavior.
18966 &lt;End of help on this topic&gt;
18967 </BODY>
18968 </HTML>
18969 ======= h_config_role_composeuse =======
18970 <HTML>
18971 <HEAD>
18972 <TITLE>Compose Use Explained</TITLE>
18973 </HEAD>
18974 <BODY>
18975 <H1>Compose Use Explained</H1>
18977 This option determines how this particular role will be used when Composing
18978 a new message using the &quot;Compose&quot; command.
18979 This does not affect what happens when using the &quot;Role&quot; command
18980 to compose a new message.
18981 The &quot;Role&quot; command allows you to select a role from all of the
18982 roles you have defined, regardless of what Uses you've assigned to those
18983 roles.
18986 There are three possible values for this option.
18987 The value &quot;Never&quot;
18988 means that this role will not be a candidate for use when Composing.
18989 The role's Current Folder Type will not be checked for a match, however the role
18990 will be available to be manually switched to if there is a confirmation prompt.
18993 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18994 mean that you do want to consider this role when Composing.
18995 For either of these settings,
18996 the role's Current Folder Type will be checked (since there is no message
18997 to compare with, the rest of the Pattern is considered a match).
18998 If there is a match then this role will either be used without confirmation
18999 or will be the default when confirmation is asked for, depending on
19000 which of the two options is selected.
19001 If confirmation is requested, you will also have a chance to
19002 manually change the role to any one of your other roles.
19005 When using the Compose command the role checking is a little different
19006 because there is no message being replied to or forwarded.
19007 Because of this the Current Folder Type is checked but the header pattern
19008 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
19009 A role is considered to be a match if it is a candidate for Compose Use and
19010 its Current Folder Type matches the currently open folder.
19011 This could be useful if you want to set a role based on the folder you
19012 are reading, or the type of folder you are reading.
19015 You won't be prompted for confirmation if none of your role Patterns
19016 are a match.
19017 This is independent of the value of the current option.
19018 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19019 feature may be used to change this behavior.
19021 &lt;End of help on this topic&gt;
19022 </BODY>
19023 </HTML>
19024 ======= h_config_filter_folder =======
19025 <HTML>
19026 <HEAD>
19027 <TITLE>Filter Folder Explained</TITLE>
19028 </HEAD>
19029 <BODY>
19030 <H1>Filter Folder Explained</H1>
19032 When the Filter Action is set to &quot;Move&quot;,
19033 the folder or folders specified here will be used to store messages matching
19034 the provided pattern.
19037 If you set the Filter Action to &quot;Move&quot; you must give a folder name
19038 here.
19041 If you wish,
19042 you may choose a folder from your folder collections by using the
19043 &quot;T&quot; command.
19045 Besides regular text, the folder name may also contain
19046 tokens that are replaced with text representing the current date
19047 when you run Alpine.
19048 For example, if the folder name you use is
19050 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
19052 that is replaced with something like
19054 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
19058 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19060 becomes
19062 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19064 The token names must be surrounded by underscores in order to be recognized
19065 as tokens.
19066 The tokens that may be used are those that are derived from the current date.
19067 They're listed near the bottom of the list of tokens give
19068 <A HREF="h_index_tokens">here</A>.
19070 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19071 for more information on Patterns.
19073 Look <A HREF="h_edit_nav_cmds">here</A>
19074 to see the available Editing and Navigation commands.
19076 &lt;End of help on this topic&gt;
19077 </BODY>
19078 </HTML>
19079 ======= h_config_filter_kw_set =======
19080 <HTML>
19081 <HEAD>
19082 <TITLE>Set These Keywords Explained</TITLE>
19083 </HEAD>
19084 <BODY>
19085 <H1>Set These Keywords Explained</H1>
19087 This describes part of the action to be taken if the Pattern for this
19088 filter is a match.
19089 Read a little about keywords in the help text for the
19090 <A HREF="h_common_flag">Flag</A> command.
19091 This option is a list of keywords that will be Set when there is a match.
19092 If you wish, you may choose keywords from the list of keywords you have
19093 defined with the &quot;T&quot; command.
19094 You may add new keywords by defining them in the
19095 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19096 If you have given a keyword a nickname when configuring it,
19097 that nickname may be used instead of the actual keyword.
19100 Look <A HREF="h_edit_nav_cmds">here</A>
19101 to see the available Editing and Navigation commands.
19103 &lt;End of help on this topic&gt;
19104 </BODY>
19105 </HTML>
19106 ======= h_config_filter_kw_clr =======
19107 <HTML>
19108 <HEAD>
19109 <TITLE>Clear These Keywords Explained</TITLE>
19110 </HEAD>
19111 <BODY>
19112 <H1>Clear These Keywords Explained</H1>
19114 This describes part of the action to be taken if the Pattern for this
19115 filter is a match.
19116 Read a little about keywords in the help text for the
19117 <A HREF="h_common_flag">Flag</A> command.
19118 This option is a list of keywords that will be Cleared when there is a match.
19119 If you wish, you may choose keywords from the list of keywords you have
19120 defined with the &quot;T&quot; command.
19121 You may add new keywords by defining them in the
19122 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19123 If you have given a keyword a nickname when configuring it,
19124 that nickname may be used instead of the actual keyword.
19127 Look <A HREF="h_edit_nav_cmds">here</A>
19128 to see the available Editing and Navigation commands.
19130 &lt;End of help on this topic&gt;
19131 </BODY>
19132 </HTML>
19133 ======= h_index_tokens =======
19134 <HTML>
19135 <HEAD>
19136 <TITLE>Tokens for Index and Replying</TITLE>
19137 </HEAD>
19138 <BODY>
19140 This set of special tokens may be used in the
19141 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19142 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19143 in signature files,
19144 in template files used in
19145 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19146 that is the target of a Filter Rule.
19147 Some of them aren't available in all situations.
19149 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19150 option, but they must be surrounded by underscores for the
19151 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19152 and in the target of Filter Rules.
19156 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19158 <DL>
19159 <DT>SUBJECT</DT>
19160 <DD>
19161 This token represents the Subject the sender gave the message.
19162 Alternatives for use in the index screen are SHORTSUBJECT,
19163 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19164 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19165 You may color the subject text in the MESSAGE INDEX screen differently by using the
19166 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19167 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19168 options available from
19169 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19170 </DD>
19172 <DT>FROM</DT>
19173 <DD>
19174 This token represents the personal name (or email address if the name
19175 is unavailable) of the person specified in the message's &quot;From:&quot;
19176 header field.
19177 You may color the from text in the MESSAGE INDEX screen differently by using the
19178 <A HREF="h_config_index_from_color">Index From Color</A>
19179 option available from
19180 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19181 </DD>
19183 <DT>ADDRESS</DT>
19184 <DD>
19185 This is similar to the &quot;FROM&quot; token, only it is always the
19186 email address, never the personal name.
19187 For example, &quot;mailbox@domain&quot;.
19188 </DD>
19190 <DT>MAILBOX</DT>
19191 <DD>
19192 This is the same as the &quot;ADDRESS&quot; except that the 
19193 domain part of the address is left off.
19194 For example, &quot;mailbox&quot;.
19195 </DD>
19197 <DT>SENDER</DT>
19198 <DD>
19199 This token represents the personal name (or email address) of the person
19200 listed in the message's &quot;Sender:&quot; header field.
19201 </DD>
19203 <DT>TO</DT>
19204 <DD>
19205 This token represents the personal names (or email addresses if the names
19206 are unavailable) of the persons specified in the
19207 message's &quot;To:&quot; header field.
19208 </DD>
19210 <DT>NEWSANDTO</DT>
19211 <DD>
19212 This token represents the newsgroups from the
19213 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19214 the personal names (or email addresses if the names
19215 are unavailable) of the persons specified in the
19216 message's &quot;To:&quot; header field.
19217 </DD>
19219 <DT>TOANDNEWS</DT>
19220 <DD>
19221 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19222 </DD>
19224 <DT>NEWS</DT>
19225 <DD>
19226 This token represents the newsgroups from the
19227 message's &quot;Newsgroups:&quot; header field.
19228 </DD>
19230 <DT>CC</DT>
19231 <DD>
19232 This token represents the personal names (or email addresses if the names
19233 are unavailable) of the persons specified in the
19234 message's &quot;Cc:&quot; header field.
19235 </DD>
19237 <DT>RECIPS</DT>
19238 <DD>
19239 This token represents the personal names (or email addresses if the names
19240 are unavailable) of the persons specified in both the
19241 message's &quot;To:&quot; header field and
19242 the message's &quot;Cc:&quot; header field.
19243 </DD>
19245 <DT>NEWSANDRECIPS</DT>
19246 <DD>
19247 This token represents the newsgroups from the
19248 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19249 the personal names (or email addresses if the names
19250 are unavailable) of the persons specified in the
19251 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19252 </DD>
19254 <DT>RECIPSANDNEWS</DT>
19255 <DD>
19256 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19257 </DD>
19259 <DT>INIT</DT>
19260 <DD>
19261 This token represents the initials from the personal name
19262 of the person specified in the message's &quot;From:&quot;
19263 header field.
19264 If there is no personal name, it is blank.
19265 </DD>
19267 <DT>DATE</DT>
19268 <DD>
19269 This token represents the date on which the message was sent, according
19270 to the &quot;Date&quot; header field.
19271 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19272 The feature
19273 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19274 which adjusts for the timezone the message was sent from,
19275 may have an effect on the value of this token as well as the values of
19276 all of the other DATE or TIME tokens.
19277 Some of the DATE and TIME tokens are displayed in a locale-specific
19278 way unless the option
19279 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19280 </DD>
19282 <DT>SMARTDATE</DT>
19283 <DD>
19284 This token represents the date on which the message was sent, according
19285 to the &quot;Date&quot; header field.
19286 It is &quot;Today&quot; if the message was sent today,
19287 &quot;Yesterday&quot; for yesterday,
19288 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19289 message is from last year and is more than six months old it includes the year, as well.
19290 See the SMARTDATE alternatives below, as well.
19291 </DD>
19293 <DT>SMARTTIME</DT>
19294 <DD>
19295 This token represents the most relevant elements of the date on which
19296 the message was sent (according to the &quot;Date&quot; header field),
19297 in a compact form. If the message was sent today, only the time is used
19298 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19299 the past week, the day of the week and the hour are used
19300 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19301 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19302 &quot;9Apr98&quot;).
19303 </DD>
19305 <DT>SMARTTIME24</DT>
19306 <DD>
19307 This token has the structure &quot;day hour:minute&quot;
19308 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19309 from the current date, or &quot;month day&quot; (e.g.
19310 &quot;Nov 23&quot;) for messages dated less than 6 months
19311 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19312 for messages dated more than 6 months ago. It uses 9 characters
19313 of the width of the screen, and it left aligned.
19314 </DD>
19316 <DT>SMARTDATETIME</DT>
19317 <DD>
19318 This is a combination of SMARTDATE and SMARTTIME.
19319 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19320 case it is SMARTTIME.
19321 See the SMARTDATETIME alternatives below, as well.
19322 </DD>
19324 <DT>DATEISO</DT>
19325 <DD>
19326 This token represents the date on which the message was sent, according
19327 to the &quot;Date&quot; header field.
19328 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19329 </DD>
19331 <DT>SHORTDATEISO</DT>
19332 <DD>
19333 This token represents the date on which the message was sent, according
19334 to the &quot;Date&quot; header field.
19335 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19336 </DD>
19338 <DT>SHORTDATE1</DT>
19339 <DD>
19340 This token represents the date on which the message was sent, according
19341 to the &quot;Date&quot; header field.
19342 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19343 </DD>
19345 <DT>SHORTDATE2</DT>
19346 <DD>
19347 This token represents the date on which the message was sent, according
19348 to the &quot;Date&quot; header field.
19349 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19350 </DD>
19352 <DT>SHORTDATE3</DT>
19353 <DD>
19354 This token represents the date on which the message was sent, according
19355 to the &quot;Date&quot; header field.
19356 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19357 </DD>
19359 <DT>SHORTDATE4</DT>
19360 <DD>
19361 This token represents the date on which the message was sent, according
19362 to the &quot;Date&quot; header field.
19363 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19364 </DD>
19366 <DT>LONGDATE</DT>
19367 <DD>
19368 This token represents the date on which the message was sent, according
19369 to the &quot;Date&quot; header field.
19370 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19371 </DD>
19373 <DT>SMARTDATE alternatives</DT>
19374 <DD>
19375 There are several versions of SMARTDATE that are all the same except
19376 for the way they format dates far in the past.
19377 SMARTDATE formats the date using the information from your locale settings
19378 to format the date string. It may end up formatting dates so that they look
19379 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19380 The feature
19381 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19382 may have an effect on the values of these tokens.
19383 If you want more control you may use one of the following.
19384   <DL>
19385   <DT>SMARTDATE</DT> <DD>If the option
19386 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19387 then this will be locale specific. Control this with the
19388 LC_TIME locale setting on a UNIX system. On Windows
19389 the Regional Options control panel may be used to set the Short date
19390 format. At the programming level, the strftime routine is what Alpine
19391 uses to print the date.
19392 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19393 to SMARTDATES1.</DD>
19394   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19395   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19396   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19397   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19398   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19399   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19400   </DL>
19401 </DD>
19403 <DT>SMARTDATETIME alternatives</DT>
19404 <DD>
19405 There are several versions of SMARTDATETIME that are all very similar.
19406 The ones that end in 24 use a 24-hour clock for Today's messages instead
19407 of a 12-hour clock.
19408 The other variation is
19409 for the way they format dates far in the past.
19410 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19411 to format the date string. It may end up formatting dates so that they look
19412 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19413 The feature
19414 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19415 may have an effect on the values of these tokens.
19416 The possible choices are:
19417   <DL>
19418   <DT>SMARTDATETIME</DT> <DD>If the option
19419 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19420 then this will be locale specific. Control this with the
19421 LC_TIME locale setting on a UNIX system. On Windows
19422 the Regional Options control panel may be used to set the Short date
19423 format. At the programming level, the strftime routine is what Alpine
19424 uses to print the date.
19425 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19426 to SMARTDATETIMES1.</DD>
19427   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19428   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19429   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19430   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19431   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19432   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19433   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19434   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19435   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19436   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19437   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19438   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19439   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19440   </DL>
19441 </DD>
19443 <DT>DAYDATE</DT>
19444 <DD>
19445 This token represents the date on which the message was sent, according
19446 to the &quot;Date&quot; header field.
19447 It looks like &quot;Sat, 23 Oct 1998&quot;.
19448 This token is never converted in any locale-specific way.
19449 </DD>
19451 <DT>PREFDATE</DT>
19452 <DD>
19453 This token represents the date on which the message was sent, according
19454 to the &quot;Date&quot; header field.
19455 It is your operating system's idea of the preferred date representation for the current locale.
19456 Internally it uses the %x version of the date from the strftime routine.
19457 </DD>
19459 <DT>PREFTIME</DT>
19460 <DD>
19461 This token represents the time at which the message was sent, according
19462 to the &quot;Date&quot; header field.
19463 It is the preferred time representation for the current locale.
19464 Internally it uses the %X version of the time from the strftime routine.
19465 </DD>
19467 <DT>PREFDATETIME</DT>
19468 <DD>
19469 This token represents the date and time at which the message was sent, according
19470 to the &quot;Date&quot; header field.
19471 It is the preferred date and time representation for the current locale.
19472 Internally it uses the %c version of the time from the strftime routine.
19473 </DD>
19475 <DT>DAY</DT>
19476 <DD>
19477 This token represents the day of the month on which the message was sent,
19478 according to the &quot;Date&quot; header field.
19479 For example, &quot;23&quot; or &quot;9&quot;.
19480 </DD>
19482 <DT>DAY2DIGIT</DT>
19483 <DD>
19484 This token represents the day of the month on which the message was sent,
19485 according to the &quot;Date&quot; header field.
19486 For example, &quot;23&quot; or &quot;09&quot;.
19487 It is always 2 digits.
19488 </DD>
19490 <DT>DAYORDINAL</DT>
19491 <DD>
19492 This token represents the ordinal number that is the day of
19493 the month on which the message was sent,
19494 according to the &quot;Date&quot; header field.
19495 For example, &quot;23rd&quot; or &quot;9th&quot;.
19496 </DD>
19498 <DT>DAYOFWEEK</DT>
19499 <DD>
19500 This token represents the day of the week on which the message was sent,
19501 according to the &quot;Date&quot; header field.
19502 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19503 </DD>
19505 <DT>DAYOFWEEKABBREV</DT>
19506 <DD>
19507 This token represents the day of the week on which the message was sent,
19508 according to the &quot;Date&quot; header field.
19509 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19510 </DD>
19512 <DT>MONTHABBREV</DT>
19513 <DD>
19514 This token represents the month the message was sent, according
19515 to the &quot;Date&quot; header field.
19516 For example, &quot;Oct&quot;.
19517 </DD>
19519 <DT>MONTHLONG</DT>
19520 <DD>
19521 This token represents the month in which the message was sent, according
19522 to the &quot;Date&quot; header field.
19523 For example, &quot;October&quot;.
19524 </DD>
19526 <DT>MONTH</DT>
19527 <DD>
19528 This token represents the month in which the message was sent, according
19529 to the &quot;Date&quot; header field.
19530 For example, &quot;10&quot; or &quot;9&quot;.
19531 </DD>
19533 <DT>MONTH2DIGIT</DT>
19534 <DD>
19535 This token represents the month in which the message was sent, according
19536 to the &quot;Date&quot; header field.
19537 For example, &quot;10&quot; or &quot;09&quot;.
19538 It is always 2 digits.
19539 </DD>
19541 <DT>YEAR</DT>
19542 <DD>
19543 This token represents the year the message was sent, according
19544 to the &quot;Date&quot; header field.
19545 For example, &quot;1998&quot; or &quot;2001&quot;.
19546 </DD>
19548 <DT>YEAR2DIGIT</DT>
19549 <DD>
19550 This token represents the year the message was sent, according
19551 to the &quot;Date&quot; header field.
19552 For example, &quot;98&quot; or &quot;01&quot;.
19553 It is always 2 digits.
19554 </DD>
19556 <DT>TIME24</DT>
19557 <DD>
19558 This token represents the time at which the message was sent, according
19559 to the &quot;Date&quot; header field.
19560 There is no adjustment made for different time zones, so you'll get
19561 the time the message was sent according to the time zone the sender
19562 was in.
19563 It has the format HH:MM. For example, &quot;17:28&quot;.
19564 </DD>
19566 <DT>TIME12</DT>
19567 <DD>
19568 This token represents the time at which the message was sent, according
19569 to the &quot;Date&quot; header field.
19570 This time is for a 12 hour clock.
19571 It has the format HH:MMpm.
19572 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19573 </DD>
19575 <DT>TIMEZONE</DT>
19576 <DD>
19577 This token represents the numeric timezone from
19578 the &quot;Date&quot; header field.
19579 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19580 </DD>
19582 </DL>
19585 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19587 <DL>
19588 <DT>MSGNO</DT>
19589 <DD>
19590 This token represents the message's current position in the folder that,
19591 of course, may change as the folder is sorted or new mail arrives.
19592 </DD>
19594 <DT>STATUS</DT>
19595 <DD>
19596 This token represents a three character wide field displaying various
19597 aspects of the message's state.
19598 The first character is either blank,
19599 a '*' for message marked Important, or a '+' indicating a message
19600 addressed directly to you (as opposed to your having received it via a
19601 mailing list, for example).
19602 When the feature
19603 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19604 is set, if the first character would have been
19605 blank then it will instead be a '-' if the message is cc'd to you.
19606 The second character is typically blank,
19607 though the arrow cursor may occupy it if either the 
19608 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19609 or the
19610 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19611 is set (or you actually are on a slow link).
19612 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19613 '<A HREF="h_flag_answered">A</A>' (Answered),
19614 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19615 '<A HREF="h_flag_new">N</A>' (New), or blank.
19617 If you are using a threaded view of the index and this message is at the
19618 top of a collapsed portion of a thread,
19619 then this token refers to all of the messages in the collapsed portion of
19620 the thread instead of just the top message.
19621 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19622 are marked Important, else a '+' if any of the messages are addressed
19623 to you, else a '-' if any of the messages are cc'd to you.
19624 The third character will be a 'D' if <EM>all</EM> of the messages
19625 in the collapsed thread are marked deleted,
19626 an 'A' if <EM>all</EM> of the messages
19627 in the collapsed thread are marked answered,
19628 it will be an 'N' if any of
19629 the messages are undeleted and unseen, and it will be blank otherwise.
19630 </DD>
19632 <DT>FULLSTATUS</DT>
19633 <DD>
19634 This token represents a less abbreviated alternative
19635 to the &quot;STATUS&quot; token.
19636 It is six characters wide.
19637 The first character is '+', '-', or blank, the
19638 second blank, the third either '*' or blank, the fourth
19639 '<A HREF="h_flag_new">N</A>' or blank,
19640 the fifth '<A HREF="h_flag_answered">A</A>'
19641 or blank, and the sixth character is
19642 either '<A HREF="h_flag_deleted">D</A>' or
19643 blank.
19645 If you are using a threaded view of the index and this message is at the
19646 top of a collapsed portion of a thread,
19647 then this token refers to all of the messages in the collapsed portion of
19648 the thread instead of just the top message.
19649 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19650 of the messages in the collapsed thread are addressed to you or cc'd to you.
19651 The third character will be '*' if any of the messages are marked
19652 Important.
19653 The fourth character will be 'N' if all of the messages in the thread
19654 are New, else 'n' if some of the messages in the thread are New, else blank.
19655 The fifth character will be 'A' or 'a' or blank, and the sixth character
19656 will be 'D' or 'd' or blank.
19657 </DD>
19659 <DT>IMAPSTATUS</DT>
19660 <DD>
19661 This token represents an even less abbreviated alternative to the
19662 &quot;STATUS&quot; token.
19663 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19664 an 'N' if the message is new to this folder since the last time
19665 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19666 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19667 new to the folder since it was last opened <EM>but</EM> has not been
19668 viewed, or a blank if the message has been in the folder since it was
19669 last opened and has been viewed.
19671 If you are using a threaded view of the index and this message is at the
19672 top of a collapsed portion of a thread,
19673 then the fourth character will be
19674 'N' if all of the messages in the thread are unseen and recent;
19675 else 'n' if some of the messages in the thread are unseen and recent;
19676 else 'U' if all of the messages in the thread are unseen and not recent;
19677 else 'u' if some of the messages in the thread are unseen and not recent;
19678 else 'R' if all of the messages in the thread are seen and recent;
19679 else 'r' if some of the messages in the thread are seen and recent;
19680 else blank.
19681 </DD>
19683 <DT>SHORTIMAPSTATUS</DT>
19684 <DD>
19685 This is the same as the last four of the six characters of IMAPSTATUS,
19686 so the '+' To Me information will be missing.
19687 </DD>
19689 <DT>SIZE</DT>
19690 <DD>
19691 This token represents the total size, in bytes, of the message.
19692 If a &quot;K&quot; (Kilobyte)
19693 follows the number, the size is approximately 1,000
19694 times that many bytes (rounded to the nearest 1,000).
19695 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19696 1,000,000 times that many bytes.
19697 Commas are not used in this field.
19698 This field is seven characters wide, including the enclosing parentheses.
19699 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19700 The progression of sizes used looks like:
19703 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19705 </DD>
19707 <DT>SIZECOMMA</DT>
19708 <DD>
19709 This token represents the total size, in bytes, of the message.
19710 If a &quot;K&quot; (Kilobyte)
19711 follows the number, the size is approximately 1,000
19712 times that many bytes (rounded to the nearest 1,000).
19713 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19714 1,000,000 times that many bytes.
19715 Commas are used if the number shown is 1,000 or greater.
19716 The SIZECOMMA field is one character wider than the SIZE field.
19717 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19718 The progression of sizes used looks like:
19721 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19723 </DD>
19725 <DT>KSIZE</DT>
19726 <DD>
19727 This token represents the total size of the message, expressed in
19728 kilobytes or megabytes, as most appropriate.
19729 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19730 The progression of sizes used looks like:
19733 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19735 </DD>
19737 <DT>SIZENARROW</DT>
19738 <DD>
19739 This token represents the total size, in bytes, of the message.
19740 If a &quot;K&quot; (Kilobyte)
19741 follows the number, the size is approximately 1,000
19742 times that many bytes.
19743 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19744 1,000,000 times that many bytes.
19745 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19746 1,000,000,000 times that many bytes.
19747 This field uses only five characters of screen width, including the enclosing
19748 parentheses.
19749 The progression of sizes used looks like:
19752 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19754 </DD>
19756 <DT>DESCRIPSIZE</DT>
19757 <DD>
19758 This token is intended to represent a more useful description of the
19759 message than just its size, but it isn't very useful at this point.
19760 The plus sign in this view means there are attachments.
19761 Note that including this token in
19762 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19763 display a little while Alpine collects the necessary information.
19764 </DD>
19766 <DT>SHORTSUBJECT</DT> 
19767 <DD> This token is the same as SUBJECT, but removes 
19768 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
19769 between these characters corresponds to mailing list names, and may be 
19770 unnecessary or unwanted in some instances. 
19771 </DD>
19773 <DT>SUBJKEY</DT>
19774 <DD>
19775 This token is the same as the SUBJECT token unless keywords are set for
19776 the message.
19777 In that case, a list of keywords enclosed in braces will be prepended to
19778 the subject of the message.
19779 Only those keywords that you have defined in your
19780 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19781 in Setup/Config are considered in the list.
19782 In other words, keywords that have been set by some other means, perhaps
19783 by another email program, won't show up unless included in
19784 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19785 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19786 prepended to the subject in the MESSAGE TEXT screen.
19787 If you have given a keyword a nickname
19788 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19789 instead of the actual keyword.
19790 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19791 option may be used to modify this token slightly.
19792 It is also possible to color keywords in the index using the
19793 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19794 </DD>
19796 <DT>SHORTSUBJKEY</DT>
19797 <DD> This token is the same as SUBJKEY, but it is based on
19798 SHORTSUBJECT, instead of in SUBJECT.
19799 </DD>
19801 <DT>SUBJKEYINIT</DT>
19802 <DD>
19803 This token is the same as the SUBJKEY token except that instead of
19804 prepending a list of keywords to the subject, a list of first initials
19805 of keywords will be prepended instead.
19806 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19807 set (or Work and Now are the Alpine nicknames of keywords that are set)
19808 then the SUBJKEY token would cause a result like
19810 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19812 whereas the SUBJKEYINIT token would give
19814 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19816 Only those keywords that you have defined in your
19817 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19818 in Setup/Config are considered in the list.
19819 In other words, keywords that have been set by some other means, perhaps
19820 by another email program, won't show up unless included in
19821 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19822 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19823 option may be used to modify this token slightly.
19824 It is also possible to color keywords in the index using the
19825 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19826 </DD>
19828 <DT>SHORTSUBJKEYINIT</DT>
19829 <DD> This token is the same as SUBJKEYINIT, but it is based on
19830 SHORTSUBJECT, instead of in SUBJECT.
19831 </DD>
19833 <DT>SUBJECTTEXT</DT>
19834 <DD>
19835 Same as SUBJECT but if there is room in the Subject field for more text,
19836 the opening part of the text of the message is displayed after the subject.
19837 The time needed to fetch the text may cause a performance problem
19838 which can, of course, be avoided by using the SUBJECT version of
19839 the Subject instead.
19840 You may color this opening text differently by using the
19841 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19842 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19843 You may adjust the characters that are displayed between the Subject and the
19844 opening text with the option
19845 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19846 </DD>
19848 <DT>SUBJKEYTEXT</DT>
19849 <DD>
19850 Same as SUBJKEY but with the opening message text.
19851 </DD>
19853 <DT>OPENINGTEXT</DT>
19854 <DD>
19855 This is similar to SUBJECTTEXT.
19856 Instead of combining the Subject and the opening text in a single
19857 field in the index screen this token allows you to allocate a
19858 separate column just for the opening text of the message.
19859 The time needed to fetch this text may cause a performance problem.
19860 You may color this opening text differently by using the
19861 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19862 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19863 </DD>
19865 <DT>OPENINGTEXTNQ</DT>
19866 <DD>
19867 This is very similar to OPENINGTEXT.
19868 The NQ stands for No Quotes.
19869 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19870 For some messages this may be confusing.
19871 For example, a message might have a line preceding some quoted
19872 text that reads something like &quot;On May 8th person A said.&quot;
19873 That no longer makes sense after the quoted text is deleted and it
19874 will appear that person A said whatever the text after the quote
19875 is, even though that is really person B talking.
19876 </DD>
19878 <DT>SUBJKEYINITTEXT</DT>
19879 <DD>
19880 Same as SUBJKEYINIT but with the opening message text.
19881 </DD>
19883 <DT>KEY</DT>
19884 <DD>
19885 This is a space-delimited list of keywords that are set for the message.
19886 Only those keywords that you have defined in your
19887 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19888 in Setup/Config are considered in the list.
19889 In other words, keywords that have been set by some other means, perhaps
19890 by another email program, won't show up unless included in
19891 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19892 If you have given a keyword a nickname
19893 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19894 instead of the actual keyword.
19895 It is also possible to color keywords in the index using the
19896 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19897 This token defaults to an arbitrary width of 5.
19898 You should set it to whatever width suits you using something
19899 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19900 </DD>
19902 <DT>KEYINIT</DT>
19903 <DD>
19904 This is a list of keyword initials that are set for the message.
19905 If you have given a keyword a nickname
19906 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19907 is displayed instead of the initial of the actual keyword.
19908 It is also possible to color keyword initials in the index using the
19909 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19910 This token defaults to an arbitrary width of 2.
19911 You should set it to whatever width suits you using something
19912 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19913 </DD>
19915 <DT>PRIORITY</DT>
19916 <DD>
19917 The X-Priority header is a non-standard header that is used in a
19918 somewhat standard way by many mail programs.
19919 Alpine expects the value of this header to be a digit with a value
19920 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19921 Since this priority is something that the sender sets it is only an indication
19922 of the priority that the sender attaches to the mail and it is therefore almost
19923 totally unreliable for use as a filtering criterion.
19924 This token will display the numeric value of the priority if it is between
19925 1 and 5.
19926 It will be suppressed (blank) if the value is 3, which is normal priority.
19927 This token may be colored with the
19928 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19929 </DD>
19931 <DT>PRIORITYALPHA</DT>
19932 <DD>
19933 This is a more verbose interpretation of the X-Priority field.
19934 Once again nothing is displayed unless the value of the field
19935 is 1, 2, 4, or 5.
19936 The values displayed for those values are:
19938 <TABLE>
19939 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19940 <TR> <TD>2</TD> <TD>High</TD> </TR>
19941 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19942 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19943 </TABLE>
19945 This token may be colored with the
19946 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19947 </DD>
19949 <DT>PRIORITY!</DT>
19950 <DD>
19951 This is a one character, non-numeric version of the X-Priority field.
19952 If the value of the X-Priority header is 1 or 2 an exclamation
19953 point is displayed.
19954 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19955 This token may be colored with the
19956 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19957 </DD>
19959 <DT>ATT</DT>
19960 <DD>
19961 This is a one column wide field that represents the number of attachments
19962 a message has. It will be blank if there are no attachments, a single
19963 digit for one to nine attachments, or an asterisk for more than nine.
19964 Note that including this token in
19965 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19966 display a little while Alpine collects the necessary information.
19967 </DD>
19969 <DT>FROMORTO</DT>
19970 <DD>
19971 This token represents <EM>either</EM> the personal name (or email address) of
19972 the person listed in the message's &quot;From:&quot; header
19973 field, <EM>or</EM>, if that address is yours or one of your
19974 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19975 the first person specified in the
19976 message's &quot;To:&quot; header field
19977 with the prefix &quot;To: &quot; prepended.
19978 If the from address is yours and there is also no &quot;To&quot; address,
19979 Alpine will use the address on the &quot;Cc&quot; line.
19980 If there is no address there, either, Alpine will look for a newsgroup name
19981 from the &quot;Newsgroups&quot; header field and put
19982 that after the &quot;To: &quot; prefix.
19983 </DD>
19985 <DT>FROMORTONOTNEWS</DT>
19986 <DD>
19987 This is almost the same as <EM>FROMORTO</EM>.
19988 The difference is that newsgroups aren't considered.
19989 When a message is from you, doesn't have a To or Cc, and does have
19990 a Newsgroups header; this token will be your name instead of the name
19991 of the newsgroup (like it would be with FROMORTO).
19992 </DD>
19994 <DT>TEXT</DT>
19995 <DD>
19996 This is a different sort of token.
19997 It allows you to display a label within each index line.
19998 It will be the same fixed text for each line.
19999 It is different from all the other tokens in that there is no space column
20000 displayed after this token.
20001 Instead, it is butted up against the following field.
20002 It also has a different syntax.
20003 The text to display is given following a colon after the
20004 word &quot;TEXT&quot;.
20005 For example,
20007 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
20009 would insert the literal text &quot;abc=&quot; (without the quotes)
20010 into the index display line.
20011 You must quote the text if it includes space characters, like
20013 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
20015 </DD>
20017 <DT>HEADER</DT>
20018 <DD>
20019 This allows you to display the text from a particular header line in the
20020 message.
20021 The syntax for this token is substantially different from all the others
20022 in order that you might be able to display a portion of the text following
20023 a particular header.
20024 The header name you are interested in is given following a colon
20025 after the word &quot;HEADER&quot;.
20026 For example,
20028 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
20030 would display the text of the X-Spam header, if any.
20031 Like for other index tokens a width field may (and probably should)
20032 follow this.
20034 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
20036 displays the first ten characters of the X-Spam header.
20037 Unlike other index tokens, the syntax for HEADER is more flexible.
20038 An optional second argument comes after a comma inside the parentheses.
20039 It specifies the &quot;field&quot; number.
20040 By default, the field separator is a space character.
20041 No extra space characters are allowed in the argument list.
20043 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
20045 would display the second field, left-justified, in a 10 character
20046 wide field.
20047 The second field would consist of all the text after the first space
20048 up to the next space or the end of the header.
20049 The default field number is zero, which stands for the entire line.
20050 There is also an optional third argument that is a list of field
20051 separators. It defaults to a space character.
20052 The example
20054 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
20056 would cause the field separators to be any of colon, percent,
20057 or space (there is a space character between the percent and the
20058 right parenthesis).
20059 The first field runs from the start of the header value up to the first
20060 colon, percent, or space; the second goes from there to the next; and so on.
20061 In order to use a comma character as a field separator you must escape
20062 it by preceding it with a backslash (&#92;).
20063 The same is true of the backslash character itself.
20064 There is one further optional argument.
20065 It is an R or an L to specify right or left adjustment of the text
20066 within the field.
20067 The default is to left justify, however if you are displaying numbers
20068 you might prefer to right justify.
20070 Here's an example of a SpamAssassin header.
20071 The exact look of the header will vary, but if your incoming mail
20072 contains headers that look like the following
20074 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20076 you might want to display the hits value.
20077 The first field starts with the Y in Yes.
20078 To get what you're interested in you might use &quot;=&quot; and
20079 space as the field separators and display the third field, like
20081 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20083 or maybe you would break at the dot instead
20085 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20087 Another example we've seen has headers that look like
20089 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20091 Because there are two equals and a comma before the 7% and a comma
20092 after it, the token
20094 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20096 should display the probability (for example 7% or 83%) right justified
20097 in a 3-wide field.
20098 </DD>
20100 <DT>ARROW</DT>
20101 <DD>
20102 This gives an alternative way to display the current message in the
20103 MESSAGE INDEX screen.
20104 Usually the current message is indicated by the line being shown in
20105 reverse video.
20106 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20107 the current line will include an &quot;arrow&quot; that
20108 looks like
20110 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20112 in the ARROW token's field.
20113 For all of the non-current messages, the ARROW field will be filled
20114 with blanks.
20115 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20116 may be adjusted.
20117 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20118 For example, if you use ARROW(3) you will get
20120 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20122 and ARROW(1) will give you just
20124 <CENTER><SAMP>&gt;</SAMP></CENTER>
20126 It is also possible to set the color of the ARROW field.
20127 By default (and for non-current messages) the arrow is colored the same
20128 as the index line it is part of.
20129 You may set it to be another color with the 
20130 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20131 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20132 </DD>
20134 <DT>SCORE</DT>
20135 <DD>
20136 This gives the
20137 <a href="h_rules_score">score</a>
20138 of each message.
20139 This will be six columns wide to accomodate the widest possible score.
20140 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20141 to limit the width of the field to the widest score that
20142 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20143 If you have not defined any score rules the scores will all be zero.
20144 If any of your score rules contain AllText or BodyText patterns
20145 then including SCORE in the <!--#echo var="VAR_index-format"-->
20146 may slow down the display of the MESSAGE INDEX screen.
20147 </DD>
20148 </DL>
20151 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20153 <DL>
20154 <DT>CURNEWS</DT>
20155 <DD>
20156 This token represents the current newsgroup if there is one.
20157 For example, &quot;comp.mail.pine&quot;.
20158 </DD>
20160 <DT>MSGID</DT>
20161 <DD>
20162 This token represents the message ID of the message.
20163 This token does not work with Filter Rule folder names.
20164 </DD>
20166 <DT>CURDATE</DT>
20167 <DD>
20168 This token represents the current date.
20169 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20170 </DD>
20172 <DT>CURDATEISO</DT>
20173 <DD>
20174 This token represents the current date.
20175 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20176 </DD>
20178 <DT>CURDATEISOS</DT>
20179 <DD>
20180 This token represents the current date.
20181 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20182 </DD>
20184 <DT>CURPREFDATE</DT>
20185 <DD>
20186 This token represents the current date.
20187 It is your operating system's idea of the preferred date representation for the current locale.
20188 Internally it uses the %x version of the date from the strftime routine.
20189 </DD>
20191 <DT>CURPREFTIME</DT>
20192 <DD>
20193 This token represents the current time.
20194 It is the preferred time representation for the current locale.
20195 Internally it uses the %X version of the time from the strftime routine.
20196 </DD>
20198 <DT>CURPREFDATETIME</DT>
20199 <DD>
20200 This token represents the current date and time.
20201 It is the preferred date and time representation for the current locale.
20202 Internally it uses the %c version of the time from the strftime routine.
20203 </DD>
20205 <DT>CURTIME24</DT>
20206 <DD>
20207 This token represents the current time.
20208 It has the format HH:MM. For example, &quot;17:28&quot;.
20209 </DD>
20211 <DT>CURTIME12</DT>
20212 <DD>
20213 This token represents the current time.
20214 This time is for a 12 hour clock.
20215 It has the format HH:MMpm.
20216 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20217 </DD>
20219 <DT>CURDAY</DT>
20220 <DD>
20221 This token represents the current day of the month.
20222 For example, &quot;23&quot; or &quot;9&quot;.
20223 </DD>
20225 <DT>CURDAY2DIGIT</DT>
20226 <DD>
20227 This token represents the current day of the month.
20228 For example, &quot;23&quot; or &quot;09&quot;.
20229 It is always 2 digits.
20230 </DD>
20232 <DT>CURDAYOFWEEK</DT>
20233 <DD>
20234 This token represents the current day of the week.
20235 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20236 </DD>
20238 <DT>CURDAYOFWEEKABBREV</DT>
20239 <DD>
20240 This token represents the current day of the week.
20241 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20242 </DD>
20244 <DT>CURMONTH</DT>
20245 <DD>
20246 This token represents the current month.
20247 For example, &quot;10&quot; or &quot;9&quot;.
20248 </DD>
20250 <DT>CURMONTH2DIGIT</DT>
20251 <DD>
20252 This token represents the current month.
20253 For example, &quot;10&quot; or &quot;09&quot;.
20254 It is always 2 digits.
20255 </DD>
20257 <DT>CURMONTHLONG</DT>
20258 <DD>
20259 This token represents the current month.
20260 For example, &quot;October&quot;.
20261 </DD>
20263 <DT>CURMONTHABBREV</DT>
20264 <DD>
20265 This token represents the current month.
20266 For example, &quot;Oct&quot;.
20267 </DD>
20269 <DT>CURYEAR</DT>
20270 <DD>
20271 This token represents the current year.
20272 For example, &quot;1998&quot; or &quot;2001&quot;.
20273 </DD>
20275 <DT>CURYEAR2DIGIT</DT>
20276 <DD>
20277 This token represents the current year.
20278 For example, &quot;98&quot; or &quot;01&quot;.
20279 It is always 2 digits.
20280 </DD>
20282 <DT>LASTMONTH</DT>
20283 <DD>
20284 This token represents last month.
20285 For example, if this is November (the 11th month),
20286 it is equal to &quot;10&quot; or if this is October (the 10th month),
20287 it is &quot;9&quot;.
20288 It is possible that this and the other tokens beginning with LASTMONTH
20289 below could be useful when used with a Filtering Rule that
20290 has the &quot;Beginning of Month&quot; option set.
20291 </DD>
20293 <DT>LASTMONTH2DIGIT</DT>
20294 <DD>
20295 This token represents last month.
20296 For example, if this is November (the 11th month),
20297 it is equal to &quot;10&quot; or if this is October (the 10th month),
20298 it is &quot;09&quot;.
20299 It is always 2 digits.
20300 </DD>
20302 <DT>LASTMONTHLONG</DT>
20303 <DD>
20304 This token represents last month.
20305 For example, if this is November the value is &quot;October&quot;.
20306 </DD>
20308 <DT>LASTMONTHABBREV</DT>
20309 <DD>
20310 This token represents last month.
20311 For example, if this is November the value is &quot;Oct&quot;.
20312 </DD>
20314 <DT>LASTMONTHYEAR</DT>
20315 <DD>
20316 This token represents what the year was a month ago.
20317 For example, if this is October, 1998, it is &quot;1998&quot;.
20318 If this is January, 1998, it is &quot;1997&quot;.
20319 </DD>
20321 <DT>LASTMONTHYEAR2DIGIT</DT>
20322 <DD>
20323 This token represents what the year was a month ago.
20324 For example, if this is October, 1998, it is &quot;98&quot;.
20325 If this is January, 1998, it is &quot;97&quot;.
20326 </DD>
20328 <DT>LASTYEAR</DT>
20329 <DD>
20330 This token represents last year.
20331 For example, if this is 1998, it equals &quot;1997&quot;.
20332 It is possible that this
20333 could be useful when used with a Filtering Rule that
20334 has the &quot;Beginning of Year&quot; option set.
20335 </DD>
20337 <DT>LASTYEAR2DIGIT</DT>
20338 <DD>
20339 This token represents last year.
20340 For example, if this is 1998, it equals &quot;97&quot;.
20341 It is always 2 digits.
20342 </DD>
20344 <DT>ROLENICK</DT>
20345 <DD>
20346 This token represents the nickname of the
20347 role currently being used.  If no role is being used,
20348 then no text will be printed for this token.
20349 This token does not work with Filter Rule folder names.
20350 </DD>
20351 </DL>
20354 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20355 See the help for the
20356 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20357 to see why you might want to use this.
20358 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20359 must be surrounded by underscores when used.
20361 <DL>
20362 <DT>NEWLINE</DT>
20363 <DD>
20364 This is an end of line marker.
20365 </DD>
20366 </DL>
20369 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20371 <DL>
20372 <DT>CURSORPOS</DT>
20373 <DD>
20374 This token is different from the others.
20375 When it is replaced it is replaced with nothing, but it sets an Alpine
20376 internal variable that tells the composer to start with the cursor
20377 positioned at the position where this token was.
20378 If both the template file and the signature file contain
20379 a &quot;CURSORPOS&quot; token, then the position in the template file
20380 is used.
20381 If there is a template file and neither it nor the signature file contains
20382 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20383 after the end of the contents of the
20384 template file when the composer starts up.
20385 </DD>
20386 </DL>
20389 &lt;End of help on this topic&gt;
20390 </BODY>
20391 </HTML>
20392 ======= h_reply_token_conditionals =======
20393 <HTML>
20394 <HEAD>
20395 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20396 </HEAD>
20397 <BODY>
20398 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20400 Conditional text inclusion may be used with
20401 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20402 in signature files, and in template files used in
20403 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20404 It may <EM>not</EM> be used with the
20405 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20408 There is a limited if-else capability for including text.
20409 The if-else condition is based
20410 on whether or not a given token would result in replacement text you
20411 specify.
20412 The syntax of this conditional inclusion is
20414 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20416 The left parenthesis must follow the underscore immediately, with no
20417 intervening space.
20418 It means the token is expanded and the results of that expansion are
20419 compared against the &quot;match_this&quot; argument.
20420 If there is an exact match, then the &quot;if_matched&quot; text is used
20421 as the replacement text.
20422 Otherwise, the &quot;if_not_matched&quot; text is used.
20423 One of the most useful values for the &quot;match_this&quot; argument is
20424 the empty string, &quot;&quot;.
20425 In that case the expansion is compared against the empty string.
20427 Here's an example to make it clearer.
20428 This text could be included in one of your template files:
20430 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20432 If that is included in a template file that you are using while replying
20433 to a message (because you chose to use the role it was part of),
20434 and that message has a newsgroup header and a newsgroup in that header,
20435 then the text
20437 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20439 will be included in the message you are about to compose.
20440 On the other hand, if the message you are replying to does not have
20441 a newsgroup, then the text
20443 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20445 would be included instead.
20446 This would also work in signature files and in
20447 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20448 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20449 or &quot;if_not_matched&quot; arguments contain
20450 spaces, parentheses, or commas;
20451 they have to be quoted with double quotation marks (like in the example
20452 above).
20453 If you want to include a literal quote (&quot;) in the text you must escape the
20454 quote by preceding it with a backslash (&#92;) character.
20455 If you want to include a literal backslash character you must escape it
20456 by preceding it with another backslash.
20458 The comma followed by &quot;if_not_matched&quot; is optional.
20459 If there is no &quot;if_not_matched&quot;
20460 present then no text is included if the not_matched case is true.
20461 Here's another example:
20463 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20465 Here you can see that tokens may appear in the arguments.
20466 The same is true for tokens with the conditional parentheses.
20467 They may appear in arguments,
20468 though you do have to be careful to get the quoting and escaping of
20469 nested double quotes correct.
20470 If this was in the signature file being used and you were replying to a message
20471 sent to comp.mail.pine the resulting text would be:
20473 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20475 If you were replying to a message that wasn't sent to any newsgroup the
20476 resulting text would be a single blank line.
20477 The reason you'd get a blank line is because the end of the line is
20478 outside of the conditional, so is always included.
20479 If you wanted to get rid of that blank line you could do so by moving
20480 the end of line inside the conditional.
20481 In other words, it's ok to have multi-line
20482 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20483 template file.
20484 The text just continues until the next double quotation, even if it's not
20485 on the same line.
20487 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20489 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20491 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20492 while reading the newsgroup comp.mail.pine the resulting text would be:
20494 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20496 If you were replying to a message while reading an email folder instead
20497 of a newsgroup the resulting leadin text would be
20499 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20501 Here's one more (contrived) example illustrating a matching argument
20502 that is not the empty string.
20504 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20506 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20507 were replying to
20508 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20509 would be
20511 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20513 But if you were replying to a message sent on Oct. 27 (and that wasn't
20514 today) you would get
20516 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20519 &lt;End of help on this topic&gt;
20520 </BODY>
20521 </HTML>
20522 ======= h_composer_cntxt_nick =======
20523 <HTML>
20524 <HEAD>
20525 <TITLE>Collection Nickname Explained</TITLE>
20526 </HEAD>
20527 <BODY>
20528 <H1>Collection Edit Help -- Nickname Field</H1>
20530 This field is provided so you can add a short nickname to use when
20531 referring to this collection within Alpine.  Spaces are allowed, and
20532 you don't need to use double-quotes.  However, the double-quote
20533 character is not allowed.
20535 Look <A HREF="h_edit_nav_cmds">here</A>
20536 to see the available Editing and Navigation commands.
20538 &lt;End of help on this topic&gt;
20539 </BODY>
20540 </HTML>
20541 ======= h_folder_server_syntax =======
20542 <HTML>
20543 <HEAD>
20544 <TITLE>Server Name Syntax</TITLE>
20545 </HEAD>
20546 <BODY>
20547 <H1>Server Name Syntax</H1>
20549 This help describes the syntax that may be used for server names
20550 that may be associated with remote folders or SMTP servers.
20553 A server name is the hostname of the server.
20554 It's a good idea to use the host's fully-qualified network name.
20557 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20560 However, IP addresses are allowed if surrounded
20561 with square-brackets.
20564 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20567 An optional network port number may be supplied by appending
20568 a colon (:) followed by the port number
20569 to the server name.
20570 By default, the IMAP port number, 143, is used.
20573 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20576 Besides server name and optional port number, various other optional
20577 parameters may be supplied that alter Alpine's interaction with the server.
20578 A parameter is supplied by appending a slash (/) character followed by
20579 the parameter's name and,
20580 depending on the particular parameter, the value assigned to that
20581 name, to the server name (and optional port number).
20582 Parameter names are <EM>not</EM> case sensitive.
20583 Currently supported parameters include:
20585 <DL>
20587 <DT>User</DT>
20588 <DD>This parameter requires an associated value, and is intended to
20589 provide the username identifier with which to establish the server
20590 connection.
20591 If your SMTP server offers SMTP AUTH authentication, adding this 
20592 parameter to the
20593 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20594 option will cause Alpine to attempt to authenticate to the server using the
20595 supplied username.
20596 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20597 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20598 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20599 option (or to the server name for any folder collection using NNTP)
20600 will cause Alpine to attempt
20601 to authenticate to the server using the supplied username.
20602 An example might be:
20605 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20608 </DD>
20610 <DT>TLS</DT>
20611 <DD>
20612 Normally, when a new connection is made an attempt is made to 
20613 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20614 If that fails then a non-encrypted connection will be attempted instead.
20615 This is a unary parameter indicating communication with the server must 
20616 take place over a TLS connection. If the attempt to use TLS fails then
20617 this parameter will cause the connection to fail instead of falling
20618 back to an unsecure connection.
20621 <CENTER><SAMP>/tls</SAMP></CENTER>
20624 </DD>
20626 <DT>SSL</DT>
20627 <DD>
20628 This is a unary parameter indicating communication with the server should 
20629 take place over a Secure Socket Layer connection.  The server must support
20630 this method, and be prepared to accept connections on the appropriate
20631 port (993 by default).
20632 Alpine must be linked with an SSL library for this option to be operational.
20635 <CENTER><SAMP>/ssl</SAMP></CENTER>
20638 </DD>
20640 <DT>TLS1</DT>
20641 <DD>
20642 This parameter indicates that the connection to the server will be made
20643 over the SSL port, but using the TLSv1 protocol, instead of the usual
20644 SSLv3 or SSLv2 protocols.
20645 Alpine must be linked with an SSL library for this option to be operational.
20648 <CENTER><SAMP>/tls1</SAMP></CENTER>
20651 </DD>
20653 <DT>DTLS1</DT>
20654 <DD>
20655 This parameter indicates that the connection to the server will be made
20656 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20657 SSLv3 or SSLv2 protocols.
20658 Alpine must be linked with an SSL library for this option to be operational.
20661 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20664 </DD>
20666 <DT>TLS1_1</DT>
20667 <DD>
20668 This parameter indicates that the connection to the server will be made
20669 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20670 SSLv3 or SSLv2 protocols.
20671 Alpine must be linked with an SSL library for this option to be operational.
20674 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20677 </DD>
20679 <DT>TLS1_2</DT>
20680 <DD>
20681 This parameter indicates that the connection to the server will be made
20682 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20683 SSLv3 or SSLv2 protocols.
20684 Alpine must be linked with an SSL library for this option to be operational.
20687 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20690 </DD>
20693 <DT>NoValidate-Cert</DT>
20694 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20695 This is needed if the server uses self-signed certificates or if Alpine
20696 cannot validate the certificate for some other known reason.
20698 </DD>
20700 <DT>Anonymous</DT>
20701 <DD>This is a unary parameter (that means it does not have a value)
20702 indicating that the connection be logged in as
20703 &quot;anonymous&quot; rather than a specific user.
20704 Not all servers offer anonymous
20705 access; those which do generally only offer read-only access to certain
20706 &quot;public&quot; folders.
20709 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20712 </DD>
20714 <DT>Secure</DT>
20715 <DD>This is a unary parameter indicating that the connection use the
20716 most secure authentication method mutually supported by Alpine and the
20717 server.
20718 Alpine is capable of authenticating connections to 
20719 the server using several methods.
20720 By default, Alpine will attempt each
20721 method until either a connection is established or the
20722 list of methods is exhausted.
20723 This parameter causes Alpine to instead fail 
20724 the connection if the first (generally most &quot;secure&quot;) method fails.
20727 <CENTER><SAMP>/secure</SAMP></CENTER>
20730 </DD>
20732 <DT>Submit</DT>
20733 <DD>This is a unary parameter for use with the
20734 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20735 It indicates that the connection should be made to the Submit server
20736 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20737 (port 587) instead of the SMTP port (25).
20738 At the time this help was written the submit option was equivalent to
20739 specifying port 587.
20742 <CENTER><SAMP>/submit</SAMP></CENTER>
20746 <CENTER><SAMP>host:587</SAMP></CENTER>
20749 </DD>
20751 <DT>Debug</DT>
20752 <DD>This is a unary parameter indicating that the connection be established
20753 in a verbose mode.  Basically, it causes Alpine to log the communication with
20754 the server in Alpine's debug file.
20755 Normally, the pine -d command-line flag would be used instead.
20757 </DD>
20759 <DT>NoRsh</DT>
20760 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20761 the UNIX remote shell program.
20762 Including &quot;NoRsh&quot; will cause connections to this server to skip
20763 the &quot;rsh&quot; attempt.
20764 This might be useful to avoid long timeouts caused by rsh firewalls, for
20765 example.
20767 </DD>
20769 <DT>Loser</DT>
20770 <DD>This option makes sense only for IMAP servers that do not perform
20771 a SEARCH command correctly. If your filtering rules
20772 fail to filter some messages, that should have been filtered, then this
20773 option will make Alpine download all data necessary data to perform that 
20774 search. There is a performance penalty when using this option. Downloading 
20775 the data to perfom the search will take longer than requesting the IMAP
20776 server to perform the filtering, but the filtering will be done correctly.
20778 </DD>
20781 <DT>Service</DT>
20782 <DD>This parameter requires an associated value.  The default value is
20783 &quot;IMAP&quot; which indicates communication with the server based
20784 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20785 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20787 Other service values include:
20788  <DL>
20789  <DT>NNTP</DT>
20790  <DD>This value indicates communication with the server takes place via
20791 the Network News Transfer Protocol.  Use this to define a collection
20792 of newsgroups on a remote news server.  So
20795 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20797 or just
20799 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20802 is the way to specify NNTP access.
20804  </DD>
20806  <DT>POP3</DT>
20807  <DD>This value indicates communication with the server takes place via the
20808 Post Office Protocol 3 protocol.
20811 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20813 or just
20815 <CENTER><SAMP>/POP3</SAMP></CENTER>
20818 Note that there are several important issues
20819 to consider when selecting this option:
20820 <OL>
20821  <LI> POP3 provides access to only your INBOX.  In other words,
20822 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20823  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20824 model and will leave your mail on the server. Refer to the
20825 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20826  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20827 </OL>
20828 </DD>
20829 </DL>
20830 </DL>
20833 Note that it is possible to include more than one parameter in a server
20834 specification by concatenating the parameters. For example:
20837 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20841 &lt;End of help on this topic&gt;
20842 </BODY>
20843 </HTML>
20844 ======= h_composer_cntxt_server =======
20845 <HTML>
20846 <HEAD>
20847 <TITLE>Collection Server: Explained</TITLE>
20848 </HEAD>
20849 <BODY>
20850 <H1>Collection Edit Help -- Server Field</H1>
20852 This collection's &quot;Server:&quot; definition indicates the
20853 hostname of the server providing access to the folders in this
20854 collection.
20855 The syntax of this server name is the same as for other server names used
20856 in remote folder names in
20857 Alpine and is described
20858 <A HREF="h_folder_server_syntax">here</A>.
20861 &lt;End of help on this topic&gt;
20862 </BODY>
20863 </HTML>
20864 ======= h_composer_cntxt_path =======
20865 <HTML>
20866 <HEAD>
20867 <TITLE>Collection Path: Explained</TITLE>
20868 </HEAD>
20869 <BODY>
20870 <H1>Collection Edit Help -- Path Field</H1>
20872 The collection's &quot;Path:&quot; definition indicates the location
20873 of the folders in this collection.  If the path or any of its components
20874 do not exist, Alpine will prompt you for their creation when exiting the
20875 Add/Change screen.
20877 <P> 
20878 By default the path is interpreted as defining a section of your personal
20879 folder area.  This area and how you specify it are defined by the
20880 server, if one is specified in the collection, or, typically, the home
20881 directory if no server is defined.
20884 To define a collection outside the default &quot;area&quot;, prefix
20885 the path with the &quot;namespace&quot; to use when interpreting the
20886 given path.  If a namespace is specified, the Path begins with the
20887 sharp, &quot;#&quot;, character followed by the name of the namespace
20888 and then the namespace's path-element-delimiter.  Aside from the
20889 path's format, namespaces can also imply access rights, content
20890 policy, audience, location, and, occasionally, access methods.
20893 Each server exports its own set (possibly of size one) of 
20894 namespaces.  Hence, it's likely communication with your server's
20895 administrator will be required for specific configurations.  Some of
20896 the more common namespaces, however, include:
20898 <DL>
20899 <DT>#news.</DT>
20900 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20901 names are hierarchically defined with each level delimited by a period.
20902 </DD>
20903 <DT>#public/</DT>
20904 <DD>This specifies a folder area that the server may export to the general
20905 public.
20906 </DD>
20907 <DT>#shared/</DT>
20908 <DD>This specifies a folder area that the folder may export to groups
20909 of users.
20910 </DD>
20911 <DT>#ftp/</DT>
20912 <DD>This specifies a folder area that is the same as that it may have 
20913 exported via the &quot;File Transfer Protocol&quot;.
20914 </DD>
20915 <DT>#mh/</DT>
20916 <DD>This specifies the personal folder area associated with folders
20917 and directories that were created using the MH message handling system.
20918 </DD>
20919 </DL>
20922 In addition, the server may support access to other user's folders,
20923 provided you have suitable permissions.  Common methods use a prefix
20924 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20925 indicate the root of the other user's folder area.
20928 No, nothing's simple.
20931 &lt;End of help on this topic&gt;
20932 </BODY>
20933 </HTML>
20934 ======= h_composer_cntxt_view =======
20935 <HTML>
20936 <HEAD>
20937 <TITLE>Collection View: Explained</TITLE>
20938 </HEAD>
20939 <BODY>
20940 <H1>Collection Edit Help -- View Field</H1>
20942 The collection's &quot;View:&quot; definition provides a way to limit
20943 the displayed list of folders within a collection.  By default, only
20944 folders that contain the specified characters anywhere in their name
20945 are shown in the collection's folder list.
20948 Additionally, you can use a wildcard character to better control
20949 the list of folders selected for display.  The wildcard specifier is
20950 the star, &quot;*&quot;, character.
20953 So, for example, to define a collection of all folders ending with
20954 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20955 quote characters!).  Or, similarly, to define a collection of folders
20956 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20957 specify a view of &quot;a*z&quot;.
20960 &lt;End of help on this topic&gt;
20961 </BODY>
20962 </HTML>
20963 ======= h_composer_abook_add_server =======
20964 <HTML>
20965 <HEAD>
20966 <TITLE>Addressbook Server Name Field Explained</TITLE>
20967 </HEAD>
20968 <BODY>
20969 This field should be left blank if the address book is stored in a regular
20970 file on this system.  If it is a remote address book stored on an IMAP
20971 server then this is the name of that IMAP server.
20973 Look <A HREF="h_edit_nav_cmds">here</A>
20974 to see the available Editing and Navigation commands.
20976 &lt;End of help on this topic&gt;
20977 </BODY>
20978 </HTML>
20979 ======= h_composer_abook_add_folder =======
20980 <HTML>
20981 <HEAD>
20982 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20983 </HEAD>
20984 <BODY>
20985 For a remote address book (one for which the Server Name is filled in)
20986 this is the name of a folder on the remote server. The address book data
20987 will be stored in this folder. This folder should be used only for
20988 storing this single address book, not for other address books or for
20989 other messages.
20991 For a local address book (one for which the Server Name is not filled in)
20992 this is the name of a file in which the address book will be stored.
20993 The file is in the same directory as the Alpine configuration file if the
20994 configuration file is local.
20995 If the configuration file is remote, then this will be in the home directory
20996 for Unix Alpine and in the directory specified by the
20997 &quot;-aux local_directory&quot; command line argument.
20999 Look <A HREF="h_edit_nav_cmds">here</A>
21000 to see the available Editing and Navigation commands.
21002 &lt;End of help on this topic&gt;
21003 </BODY>
21004 </HTML>
21005 ======= h_composer_abook_add_nick =======
21006 <HTML>
21007 <HEAD>
21008 <TITLE>Addressbook NickName Field Explained</TITLE>
21009 </HEAD>
21010 <BODY>
21011 This is just an optional nickname for this address book. If present, it
21012 is used in some of the displays and error messages in the address book
21013 maintenance screens. It is for your convenience only and serves no
21014 other purpose.
21016 Look <A HREF="h_edit_nav_cmds">here</A>
21017 to see the available Editing and Navigation commands.
21019 &lt;End of help on this topic&gt;
21020 </BODY>
21021 </HTML>
21022 ======= h_composer_qserv_cn =======
21023 <HTML>
21024 <HEAD>
21025 <TITLE>Directory Query Form Explained</TITLE>
21026 </HEAD>
21027 <BODY>
21029 Fill in as many of these fields as you wish to narrow down your
21030 search. All the fields you fill in must match in order for an entry
21031 to be returned. You may use the wildcard character &quot;*&quot; in
21032 any of the fields, it matches any zero or more characters at that
21033 point in the string. There are no implicit wildcards, so the match is
21034 exact unless you include wildcards.
21037 Note that if an attribute isn't present at all, then the match will fail.
21038 For example, if a server doesn't support the Locality attribute, then no
21039 matter what you put in the Locality field (other than leaving it empty)
21040 the search will fail.
21043 This field, the Common Name field, is typically a person's full name.
21046 <H1>EDITING and NAVIGATION COMMANDS</H1>
21047 <!--chtml if pinemode="function_key"-->
21048 <PRE>
21049 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21050 ^B (Left Arrow)    Back character       | ^D       Delete current character
21051 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21052 ^P (Up Arrow)      Previous line        |
21053 ^N (Down Arrow)    Next line            | F9       Cut marked text or
21054 ^A                 Beginning of line    |            delete current line
21055 ^E                 End of line          | F10      Undelete line(s)
21056 F7                 Previous page        |
21057 F8                 Next page            |-------------------------------------
21058 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21059 ----------------------------------------|
21060 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21061 F2   Cancel      |   F1    Get help     |
21062 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21063 </PRE>
21064 <!--chtml else-->
21065 <PRE>
21066 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21067 ^B (Left Arrow)    Back character       | ^D       Delete current character
21068 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21069 ^P (Up Arrow)      Previous line        |
21070 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21071 ^A                 Beginning of line    |            delete current line
21072 ^E                 End of line          | ^U       Undelete line(s)
21073 ^Y                 Previous page        |
21074 ^V                 Next page            |-------------------------------------
21075 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21076 ----------------------------------------|
21077 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21078 ^C   Cancel      |   ^G    Get help     |
21079 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21080 </PRE>
21081 <!--chtml endif-->
21082 <P><UL>
21083 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21084 </UL><P>
21085 &lt;End of help on this topic&gt;
21086 </BODY>
21087 </HTML>
21088 ======= h_composer_qserv_sn =======
21090 The Surname is usually the family name of a person.
21092 <End of help on this topic>
21093 ======= h_composer_qserv_gn =======
21095 This is the part of a person's name that isn't the surname or initials.
21097 <End of help on this topic>
21098 ======= h_composer_qserv_mail =======
21100 This is the email address of a person.
21102 <End of help on this topic>
21103 ======= h_composer_qserv_org =======
21105 This is the organization a person belongs to.
21107 <End of help on this topic>
21108 ======= h_composer_qserv_unit =======
21110 This is the organizational unit a person belongs to.
21112 <End of help on this topic>
21113 ======= h_composer_qserv_country =======
21115 This is the country a person belongs to.
21117 <End of help on this topic>
21118 ======= h_composer_qserv_state =======
21120 This is the state a person belongs to.
21122 <End of help on this topic>
21123 ======= h_composer_qserv_locality =======
21125 This is the locality a person belongs to.
21127 <End of help on this topic>
21128 ======= h_composer_qserv_custom =======
21130 This one is for advanced users only! If you put something in this field,
21131 then the rest of the fields are ignored.
21133 This field may be set to the string representation of an LDAP search
21134 filter (see RFC1960). Here are some examples:
21136 To search for an entry with a surname equal to "clinton" you could set
21137 the custom filter to:
21139      (sn=clinton)
21140     
21141 This is equivalent to putting "clinton" in the SurName field.
21142 To search for an entry that has a surname that begins with "clint" and
21143 has a givenname equal to "william" you could use:
21145      (&(sn=clint*)(givenname=william))
21146     
21147 This is equivalent to setting the SurName field to "clint*" and the
21148 GivenName field to "william".
21149 To search for an entry where either the common name OR the email address
21150 contains "abcde" you could use:
21152      (|(cn=*abcde*)(mail=*abcde*))
21154 That isn't equivalent to anything you can do by setting the other fields
21155 because of the OR.
21157 <End of help on this topic>
21158 ======= h_composer_qserv_qq =======
21160 This one is a little different from the rest of the categories.  It causes
21161 a search to be formed from the configured search filter that you filled
21162 in when you added the directory server to your configuration. It can also
21163 be combined with the other fields if you'd like.
21165 <End of help on this topic>
21166 ======= h_address_format =======
21167 <HTML>
21168 <HEAD>
21169 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21170 </HEAD>
21171 <BODY>
21172 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21174 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21175 and then a domain, with no spaces.  
21176 For example, jsmith@art.example.com might be the email address
21177 of a person  
21178 with the username &quot;jsmith&quot; who has an account in the domain
21179 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21180 right of the &quot;@&quot; sign can vary - a shorter example would be 
21181 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21182 organization's domain is specified after the &quot;@&quot; sign); a longer 
21183 example would be 
21184  jsingh@shakti.edutech.example.com
21185 (here, the name of the host &quot;shakti&quot; in the domain 
21186 edutech.example.com is also specified).  
21187 <P>  
21188 If you do not know the exact email address of someone you want to write 
21189 to, ask them what it is using other means of communication than email; or 
21190 use the tools for 
21191 finding people's addresses that are available on the Internet.
21193 If you are sending to someone on the same system as you are, you can leave
21194 the &quot;@&quot; sign and all the information to its right off of the 
21195 address, and Alpine will fill it in automatically, 
21196 unless the feature 
21197 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21200 When an email address you send a message to is not reachable -- either because 
21201 it is simply an incorrect address, or because email can temporarily not be 
21202 delivered to it due to a technical problem on the way to or at the recipient's 
21203 end -- you will almost always get an error notification email message back.
21205 If you encounter problems with, or have questions about, email delivery or
21206 email address syntax, contact your local network computing consultants.
21207 <P><UL>
21208 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21209 </UL>
21211 &lt;End of help on this topic&gt;
21212 </BODY>
21213 </HTML>
21214 ======= h_flag_user_flag =======
21215 <HTML>
21216 <HEAD>
21217 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21218 </HEAD>
21219 <BODY>
21220 <H1>STATUS FLAG: User Defined Keyword</h1>
21222 This is a keyword that is defined for this folder.
21223 It was most likely defined by the owner of the folder.
21224 Alpine will not set or clear this flag on its own.
21226 <P><UL>
21227 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21228 </UL><P>
21229 &lt;End of help on this topic&gt;
21230 </BODY>
21231 </HTML>
21232 ======= h_flag_important =======
21233 <html>
21234 <title>STATUS FLAG: Important</title>
21235 <body>
21236 <h1>STATUS FLAG: Important</h1>
21239 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21240 MESSAGE&nbsp;INDEX
21241 screen, can only be set by the user, and is intended to be used in
21242 whatever fashion makes sense to you.  You are the only one that can set or
21243 clear it. 
21246 &lt;End of help on this topic&gt;
21247 </BODY>
21248 </HTML>
21249 ======= h_flag_new =======
21250 <html>
21251 <title>STATUS FLAG: New</title>
21252 <body>
21253 <h1>STATUS FLAG: New</h1>
21256 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21257 MESSAGE&nbsp;INDEX screen,
21258 is automatically set when messages are delivered to your Inbox (or other
21259 folder specified outside of Alpine).  Likewise, it is cleared automatically
21260 the first time you read the message it is associated with.
21263 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21264 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21265 you'd like to be reminded of it next time you read mail.  This can be done
21266 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21270 &lt;End of help on this topic&gt;
21271 </BODY>
21272 </HTML>
21273 ======= h_flag_answered =======
21274 <html>
21275 <title>STATUS FLAG: Answered</title>
21276 <body>
21277 <h1>STATUS FLAG: Answered</h1>
21279 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21280 MESSAGE&nbsp;INDEX
21281 screen, is automatically set when you reply to a message.  This flag is not
21282 automatically cleared.
21285 &lt;End of help on this topic&gt;
21286 </BODY>
21287 </HTML>
21288 ======= h_flag_forwarded =======
21289 <html>
21290 <title>STATUS FLAG: Forwarded</title>
21291 <body>
21292 <h1>STATUS FLAG: Forwarded</h1>
21294 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21295 MESSAGE&nbsp;INDEX
21296 screen, is automatically set when you forward a message.  This flag is not
21297 automatically cleared.
21300 &lt;End of help on this topic&gt;
21301 </BODY>
21302 </HTML>
21303 ======= h_flag_deleted =======
21304 <html>
21305 <title>STATUS FLAG: Deleted</title>
21306 <body>
21307 <h1>STATUS FLAG: Deleted</h1>
21309 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21310 MESSAGE&nbsp;INDEX
21311 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21312 It is cleared
21313 when you use the &quot;U&nbsp;Undelete&quot; command.
21316 Messages marked with this flag will be permanently removed from
21317 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21318 command, or
21319 when you indicate acceptance of their removal upon leaving the folder.
21322 Note, there can be other actions implicit in the
21323 &quot;D&nbsp;Delete&quot; command,
21324 such as advancing to the next message, that may be momentarily undesirable.
21325 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21326 flag <A HREF="h_common_flag">explicitly</A>.
21329 &lt;End of help on this topic&gt;
21330 </BODY>
21331 </HTML>
21332 ====== h_config_incoming_timeo ======
21333 <HTML>
21334 <HEAD>
21335 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21336 </HEAD>
21337 <BODY>
21338 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21340 This option has no effect unless the feature
21341 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21342 is set, which in turn has no effect unless
21343 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21344 is set.
21346 Sets the time in seconds that Alpine will
21347 attempt to open a network connection used for monitoring for Unseen
21348 messages in Incoming Folders. The default is 5.
21349 If a connection has not completed within this many seconds Alpine will
21350 give up and consider it a failed connection.
21352 <UL>   
21353 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21354 </UL><P>
21355 &lt;End of help on this topic&gt;
21356 </BODY>
21357 </HTML>
21358 ====== h_config_psleep ======
21359 <HTML>
21360 <HEAD>
21361 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21362 </HEAD>
21363 <BODY>
21364 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21367 In the good old days a mailcap viewer was used to examine an 
21368 attachment before saving it, and after viewing the attachment control 
21369 would return to the operating system when the viewer was closed. Therefore, 
21370 when the mailcap viewer returned control to the operating system, it 
21371 could be assumed that the user who opened the attachment was done
21372 examining it, and the copy of the attachment that was used, could be removed.
21375 However, today this assumption is not longer valid. Some viewers return 
21376 control to the operating system before they actually read the attachment
21377 to be examined. This causes Alpine to delete the attachment before it 
21378 is read by the viewer, causing the viewer to fail opening the attachment.
21381 In order to work around this problem, Alpine checks, after the viewer has 
21382 returned control to the operating system, if there is any process that is 
21383 using the attachment. This variable controls the number of seconds that 
21384 must elapse between checks. Once it is found that no process is using the 
21385 attachment, this is removed.
21388 The minimum value for this variable is 60 (checks will be made once per 
21389 minute), and the maximum value is 600 (checks will be made once every 10 
21390 minutes). The default value is 60.
21393 <UL>   
21394 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21395 </UL><P>
21396 &lt;End of help on this topic&gt;
21397 </BODY>
21398 </HTML>
21399 ====== h_config_incoming_interv ======
21400 <HTML>
21401 <HEAD>
21402 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21403 </HEAD>
21404 <BODY>
21405 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21407 This option has no effect unless the feature
21408 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21409 is set, which in turn has no effect unless
21410 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21411 is set.
21413 This option specifies, in seconds, how often Alpine will check
21414 for new mail and state changes in Incoming Folders when Incoming Folders
21415 Checking is turned on.
21416 The default is 3 minutes (180).
21417 This value applies only to folders that are local to the system that
21418 Alpine is running on or that are accessed using the IMAP protocol.
21419 The similar option
21420 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21421 applies to all other monitored folders.
21423 <UL>   
21424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21425 </UL><P>
21426 &lt;End of help on this topic&gt;
21427 </BODY>
21428 </HTML>
21429 ====== h_config_incoming_second_interv ======
21430 <HTML>
21431 <HEAD>
21432 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21433 </HEAD>
21434 <BODY>
21435 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21437 This option has no effect unless the feature
21438 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21439 is set, which in turn has no effect unless
21440 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21441 is set.
21443 This option together with the option
21444 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21445 specifies, in seconds, how often Alpine will check
21446 for new mail and state changes in Incoming Folders when Incoming Folders
21447 Checking is turned on.
21448 The default for this option is 3 minutes (180).
21449 For folders that are local to this system or
21450 that are accessed using the IMAP protocol
21451 the value of the option
21452 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21453 is used.
21454 For all other monitored folders, the value of this option is used.
21456 The reason there are two separate options is because it is usually
21457 less expensive to check local and IMAP folders than it is to check
21458 other types, like POP or NNTP folders.
21459 You may want to set this secondary value to a higher number than
21460 the primary check interval.
21462 <UL>   
21463 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21464 </UL><P>
21465 &lt;End of help on this topic&gt;
21466 </BODY>
21467 </HTML>
21468 ====== h_config_incoming_list ======
21469 <HTML>
21470 <HEAD>
21471 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21472 </HEAD>
21473 <BODY>
21474 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21476 This option has no effect unless the feature
21477 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21478 is set, which in turn has no effect unless
21479 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21480 is set.
21482 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21483 normally monitor all Incoming Folders.
21484 You may use this option to restrict the list of monitored folders to a
21485 subset of all Incoming Folders.
21487 <UL>   
21488 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21489 </UL><P>
21490 &lt;End of help on this topic&gt;
21491 </BODY>
21492 </HTML>
21493 ====== h_config_pers_name ======
21494 <HTML>
21495 <HEAD>
21496 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21497 </HEAD>
21498 <BODY>
21499 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21501 This value is used to determine the full name part of the "From" address
21502 on messages you send.
21503 <!--chtml if pinemode="os_windows"-->
21504  PC-Alpine requires that this be set in order to properly construct the "From" address.
21505 <!--chtml else-->
21506  If unset, Unix Alpine will obtain your full name from
21507  the system password file. PC-Alpine, on the other hand, requires that this be set.
21508 <!--chtml endif-->
21510 If you want to change the value of what gets included in the From header
21511 in messages you send (other than just the Personal Name)
21512 look <A HREF="h_config_change_your_from">here</A> for a description.
21513 <P><UL>
21514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21515 </UL><P>
21516 &lt;End of help on this topic&gt;
21517 </BODY>
21518 </HTML>
21519 ====== h_config_pruned_folders ======
21520 <html>
21521 <header>
21522 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21523 </header>
21524 <body>
21525 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21527 This variable allows you to define a list of one or more folders that
21528 Alpine will offer to prune for you in the same way it automatically offers
21529 to prune your "sent-mail" folder each month.
21530 Each folder in this list must be a folder in your default folder collection
21531 (the first folder collection if you have more than one), and it is just
21532 the relative name of the folder in the collection, not the fully-qualified name.
21533 It is similar to sent-mail.
21534 Instead of something like
21536 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21538 the correct value to use would be
21540 <CENTER><SAMP>folder</SAMP></CENTER>
21542 There is an assumption here that your first collection is the folders in
21544 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21547 Once a month, for each folder listed, Alpine will offer to move
21548 the contents of the folder to a new folder of the same name but with
21549 the previous month's date appended.  Alpine will then look for any such
21550 date-appended folder names created for a previous month, and offer each
21551 one it finds for deletion.
21554 If you decline the first offer, no mail is moved and no new folder is
21555 created.
21558 The new folders will be created
21559 in your default folder collection.
21562 <UL>   
21563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21564 </UL><P>
21565 &lt;End of help on this topic&gt;
21566 </body>
21567 </html>
21568 ====== h_config_upload_cmd ======
21569 <HTML>
21570 <HEAD>
21571 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21572 </HEAD>
21573 <BODY>
21574 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21576 This option affects the behavior of the Composer's &quot;Read File&quot; 
21577 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21578 commands.  It specifies
21579 a Unix program name, and any necessary command line arguments, that Alpine can
21580 use to transfer files from your personal computer into messages that you are
21581 composing.<P>
21583 <B>Note:</B> this facility is intended for use with serial line transfer 
21584 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21585 to work with TCP/IP file transfer programs such as ftp.<P>
21587 If a program is specified, the commands listed above are modified to offer a
21588 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21589 specified here must match the transfer program or protocol available on the
21590 personal computer.<P>
21592 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21593 the specified upload program finishes, Alpine expects the uploaded data to be
21594 contained in this file.<P>
21596 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21597 generates a
21598 temporary file name that it will pass to the specified Unix program.  Alpine
21599 will read the resulting uploaded text from this file and then delete it when
21600 the upload command is finished.<P>
21602 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21603 prompt
21604 you for the name of the file that is to contain the uploaded information that
21605 it is to attach.  Alpine will attach this file to the composition, but will
21606 <B>not</B> delete this file after the upload command is finished.<P>
21608 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21609 command
21610 line arguments.  Alpine will replace this symbol with the name of the file
21611 being used to exchange the uploaded information.  This token allows you to
21612 position the file name where it is required in the Unix program's command
21613 line arguments.<P>
21615 If the &quot;_FILE_&quot; token is not present in the specified command, the
21616 temporary file's name is automatically appended to the specified Unix
21617 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21618 <B>last</B> command line argument.
21619 <P><UL>
21620 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21621 </UL><P>
21622 &lt;End of help on this topic&gt;
21623 </BODY>
21624 </HTML>
21625 ====== h_config_upload_prefix ======
21626 <HTML>
21627 <HEAD>
21628 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21629 </HEAD>
21630 <BODY>
21631 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21633 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21634 It defines text to be written to the terminal emulator (via standard output)
21635 immediately prior to starting upload command.  This is useful for
21636 integrated serial line file transfer agents that permit command passing
21637 (e.g., Kermit's APC method).<P>
21639 The special token &quot;_FILE_&quot; may be included in the string specification.
21640 That symbol will be replaced with the (Alpine-created) name of the temporary
21641 file in which Alpine will expect to find the uploaded file.
21642 <P><UL>
21643 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21644 </UL><P>
21645 &lt;End of help on this topic&gt;
21646 </BODY>
21647 </HTML>
21648 ====== h_config_download_cmd ======
21649 <HTML>
21650 <HEAD>
21651 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21652 </HEAD>
21653 <BODY>
21654 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21656 This option affects the behavior of the Export command.  It specifies a Unix
21657 program name, and any necessary command line arguments, that Alpine can use to
21658 transfer the exported message to your personal computer's disk.<P>
21659 Note: this facility is intended for use with serial line transfer 
21660 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21661 to work with TCP/IP file transfer programs such as ftp.<P>
21662 If a program is specified, the Export command is modified to offer a
21663 subcommand (^V) to activate the transfer (in lieu of saving it to
21664  the machine where Alpine is running).  Obviously, the Unix program
21665 specified here must match the transfer program or protocol available on the
21666 personal computer.<P>
21668 When this subcommand is selected and before Alpine invokes the specified Unix
21669 program, Alpine will create a temporary file containing the text of the
21670 exported message.  Alpine uses this file to pass the exported message text to
21671 the specified Unix program.<P>
21673 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21674 line arguments.  Alpine will replace this symbol with the temporary file's name
21675 before executing the Unix program.  This token allows you to position the
21676 file name where it is required in the Unix program's command line arguments.
21678 If the &quot;_FILE_&quot; token is not present in the specified command, the
21679 temporary file's name is automatically appended to the specified Unix
21680 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21681 <B>last</B> command line argument.
21682 <P><UL>
21683 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21684 </UL><P>
21685 &lt;End of help on this topic&gt;
21686 </BODY>
21687 </HTML>
21688 ====== h_config_download_prefix ======
21689 <HTML>
21690 <HEAD>
21691 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21692 </HEAD>
21693 <BODY>
21694 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21696 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21697 It defines text to be written to the terminal emulator (via standard output)
21698 immediately prior to starting the download command.  This is useful for
21699 integrated serial line file transfer agents that permit command passing
21700 (e.g., Kermit's APC method).
21702 The special token &quot;_FILE_&quot; may be included in the string 
21703 specification.
21704 That symbol will be replaced with the (Alpine-created) name of the temporary
21705 file into which Alpine will place the message to be downloaded.
21706 <P><UL>
21707 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21708 </UL><P>
21709 &lt;End of help on this topic&gt;
21710 </BODY>
21711 </HTML>
21712 ====== h_config_mailcap_path ======
21713 <HTML>
21714 <HEAD>
21715 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21716 </HEAD>
21717 <BODY>
21718 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21719 This variable is used to replace Alpine's default mailcap file search path.
21720 It takes one or more file names (full paths must be specified) in which to
21721 look for mail capability data.  The default search path can be found in this
21722 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21723 If there is more than one file name listed, list members should be delimited
21724 by 
21725 <!--chtml if pinemode="os_windows"-->
21726 a semi-colon (;) under Windows; for example:<PRE>
21727         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21728 </PRE>
21729 <!--chtml else-->
21730 a colon (:) under UNIX; for example:<PRE>
21731         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21732 </PRE>
21733 <!--chtml endif-->
21734 <P><UL>
21735 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21736 </UL>
21738 &lt;End of help on this topic&gt;
21739 </BODY>
21740 </HTML>
21741 ====== h_config_mimetype_path ======
21742 <HTML>
21743 <HEAD>
21744 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21745 </HEAD>
21746 <BODY>
21747 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21749 This variable is used to replace Alpine's default mime.types file search path.
21750 It takes one or more file names (full paths must be specified) in which to
21751 look for file-name-extension to MIME type mapping data.  The default search
21752 path can be found in this
21753 <A HREF="h_news_config">Alpine Configuration</A> help.
21757 If there is more than one file name listed, list members should be delimited
21758 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21760 &lt;End of help on this topic&gt;
21761 </BODY></HTML>
21762 ====== h_config_set_att_ansi ======
21763 <HTML><HEAD>
21764 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21765 </HEAD>
21766 <BODY>
21767 <H1>OPTION: Set printer to attached ansi printer</H1>
21769 Type "S" to set your printer to "attached-to-ansi".<BR>
21770 It is OK to include "attached-to-ansi" in your personal list below.
21772 &lt;End of help on this topic&gt;
21773 </BODY></HTML>
21774 ====== h_config_set_att_ansi2 ======
21775 <HTML><HEAD>
21776 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21777 </HEAD>
21778 <BODY>
21779 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21781 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21782 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21783 list below.
21787 This is the same as the "attached-to-ansi" option except that a
21788 formfeed character will not be appended to the end of the print job.
21789 If your printer already ejects the paper by itself at the end of the
21790 job, you may prefer the "no-formfeed" form of this printer so that you
21791 don't get an extra blank page between print jobs.
21794 &lt;End of help on this topic&gt;
21795 </BODY></HTML>
21796 ====== h_config_set_att_wyse ======
21797 <HTML><HEAD>
21798 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21799 </HEAD>
21800 <BODY>
21801 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21803 Type "S" to set your printer to "attached-to-wyse".<BR>
21804 It is OK to include "attached-to-wyse" in your personal list below.
21806 This is very similar to "attached-to-ansi".
21807 The only difference is in the control characters sent to turn the printer
21808 on and off.
21809 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21810 to turn on the printer and ESC LEFT_BRACKET 4 i
21811 to turn it off.
21812 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21813 &lt;End of help on this topic&gt;
21814 </BODY></HTML>
21815 ====== h_config_set_att_wyse2 ======
21816 <HTML><HEAD>
21817 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21818 </HEAD>
21819 <BODY>
21820 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21822 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21823 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21824 list below.
21828 This is the same as the "attached-to-wyse" option except that a
21829 formfeed character will not be appended to the end of the print job.
21830 If your printer already ejects the paper by itself at the end of the
21831 job, you may prefer the "no-formfeed" form of this printer so that you
21832 don't get an extra blank page between print jobs.
21835 &lt;End of help on this topic&gt;
21836 </BODY></HTML>
21837 ====== h_config_set_stand_print ======
21838 <HTML>
21839 <HEAD>
21840 <TITLE>OPTION: Set default printer</TITLE>
21841 </HEAD>
21842 <H1>OPTION: Set default printer</H1>
21843 <BODY>
21844 Move to the printer you want and type "S" to set it to be your
21845 default printer.  This list is not modifiable by you and has been
21846 set up by the system administrators.  If there is more than one printer
21847 listed in the Command List, you will be able to cycle through that
21848 whole list at the time you print, starting with your default.
21849 It is OK to include entries from this Standard list in your personal
21850 list below.
21852 &lt;End of help on this topic&gt;
21853 </BODY>
21854 </HTML>
21855 ====== h_config_set_custom_print ======
21856 <HTML>
21857 <HEAD>
21858 <TITLE>OPTION: Set default printer</TITLE>
21859 </HEAD>
21860 <H1>OPTION: Set default printer</H1>
21861 <BODY>
21862 You may add as many print commands as you want to your personal list.
21863 Specify one of them as your default printer by moving to the printer
21864 you want and typing "S".  If there is more than one printer listed
21865 in the Command List, you will be able to cycle through that list at
21866 the time you print, starting with your default.  It is OK to include
21867 entries from the Standard list above or to include the command
21868 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21869 "attached-to-wyse-no-formfeed" as one of the entries here.
21871 &lt;End of help on this topic&gt;
21872 </BODY>
21873 </HTML>
21874 ====== h_config_user_id =====
21875 <HTML>
21876 <HEAD>
21877 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21878 </HEAD>
21879 <BODY>
21880 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21882 This value is used as part of the "From" address on messages you send.
21883 It is also the default login name for remote IMAP server access.  Set this
21884 to the username part you want to appear on outgoing email.
21886 If you want to change the value of what gets included in the From header
21887 in messages you send (other than just the User ID)
21888 look <A HREF="h_config_change_your_from">here</A> for a description.
21890 <P><UL>   
21891 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21892 </UL><P>
21893 &lt;End of help on this topic&gt;
21894 </BODY>
21895 </HTML>
21896 ====== h_config_user_dom =====
21897 <HTML>
21898 <HEAD>
21899 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21900 </HEAD>
21901 <BODY>
21902 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21904 This value specifies the domain part (right-hand side) of your return
21905 address on outgoing email and is also used as the default domain for email
21906 composed to a local user.
21907 <!--chtml if pinemode="os_windows"-->
21908  This value is required for PC-Alpine. If you are unsure as to what this should be,
21909  contact your local help desk, system administrator, or Internet Service Provider.
21910 <!--chtml else-->
21911  If unset, Unix Alpine will obtain the domain from
21912  the system.  Often this value will be set for your whole site by the
21913  system administrator.<P>
21914 <!--chtml endif-->
21915 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21916 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21918 If you want to change the value of what gets included in the From header
21919 in messages you send (other than just the User Domain)
21920 look <A HREF="h_config_change_your_from">here</A> for a description.
21921 <P><UL>
21922 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21923 </UL><P>
21924 &lt;End of help on this topic&gt;
21925 </BODY>
21926 </HTML>
21927 ====== h_config_smtp_server =====
21928 <HTML>
21929 <HEAD>
21930 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21931 </HEAD>
21932 <BODY>
21933 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21934 This value specifies the name of one or more SMTP 
21935 (Simple Mail Transfer Protocol) servers for sending mail. 
21936 <!--chtml if pinemode="os_windows"-->
21937 You must have an SMTP server for use with PC-Alpine.
21938 SMTP servers are
21939 normally set up by a system administrator for use by all members of a given
21940 campus or department.
21941 Contact your local help desk to ask what SMTP
21942 servers you should use.  
21943 <!--chtml else-->
21944 Unix Alpine users may not need to set an SMTP server.
21945 Alpine will attempt to execute the program (usually sendmail) that is used
21946 to insert mail into the mail system.
21947 If this works for you, you may leave this option blank.
21948 If there is an SMTP server running on the Unix host you may be able to
21949 improve sending performance slightly by setting the SMTP server option
21950 to &quot;localhost&quot; or to the actual name of the Unix host.
21952 If the Unix host doesn't work the way Alpine was expecting you will need to
21953 set the value of this option.
21954 SMTP servers are
21955 normally set up by a system administrator for use by all members of a given
21956 campus or department.
21957 Contact your local help desk to ask what SMTP
21958 servers you should use.  
21959 <!--chtml endif-->
21961 Your SMTP server may offer SMTP AUTH authentication.
21962 It may even require it.
21963 If your SMTP server offers SMTP AUTH authentication you may specify a
21964 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21965 This parameter requires an associated value,
21966 the username identifier with which to establish the server
21967 connection.
21968 An example might be:
21971 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21974 If AUTH authentication is offered by the server, this will cause Alpine to
21975 attempt to use it.
21976 If AUTH authentication is not offered by the server, this will cause Alpine
21977 to fail sending with an error similar to:
21980 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21983 Another type of authentication that is used by some ISPs is called
21984 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21985 which means that you have to authenticate
21986 yourself to the POP or IMAP server by opening a mailbox before you
21987 can send mail.
21988 To do this, you usually only have to open your INBOX.
21991 You may tell Alpine to use the
21992 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21993 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21994 parameter
21995 in this option.
21996 At this time &quot;/submit&quot; is simply equivalent to specifying
21997 port 587, though it may imply more than that at some point in the future.
21998 Some ISPs are blocking port 25 in order to reduce the amount of spam
21999 being sent to their users.
22000 You may find that the submit option allows you to get around such a block.
22003 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
22006 To specify any non-standard port number on the SMTP server you may follow
22007 the hostname with a colon followed by the portnumber.
22010 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
22013 Normally, when a connection is made to the Smtp-Server Alpine will attempt
22014 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
22015 If that fails then a non-encrypted connection will be attempted instead.
22016 You may specify that a TLS connection is required if you wish.
22017 If you append &quot;/tls&quot; to the name then the connection will fail
22018 instead of falling back to a non-secure connection.
22021 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
22025 For more details about server name possibilities see
22026 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22029 <UL>
22030 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22031 </UL>
22033 &lt;End of help on this topic&gt;
22034 </BODY>
22035 </HTML>
22036 ====== h_config_nntp_server =====
22037 <HTML>
22038 <HEAD>
22039 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
22040 <BODY>
22041 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
22043 This value specifies the name of one or more NNTP
22044 (Network News Transfer Protocol)
22045 servers for reading and posting USENET news.
22046 NNTP servers are normally
22047 set up by a system administrator for use by all members of a given campus
22048 or department.
22049 Contact your local help desk to ask what NNTP servers you should use.  
22050 <!--chtml if pinemode="os_windows"--><!--chtml else-->
22051 Often Unix Alpine users will find that this variable has been
22052 set for the whole system (and they don't have to worry about it).  
22053 <!--chtml endif-->
22054 When you define an NNTP server here, Alpine implicitly defines a news
22055 collection for you, assuming that server as the news server and assuming
22056 that you will use the NNTP protocol and a local newsrc configuration file
22057 for reading news.
22058 For more about reading news with Alpine, see
22059 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22061 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22062 or &quot;AUTHINFO USER&quot; authentication.
22063 It may even require it.
22064 If your NNTP server does offer such authentication you may specify a user name
22065 parameter to cause Alpine to attempt to authenticate.
22066 The same is true for the server name in a folder collection that uses NNTP.
22067 This parameter requires an associated value,
22068 the username identifier with which to establish the server connection.
22069 An example might be:
22072 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22075 If authentication is offered by the server, this will cause Alpine to
22076 attempt to use it.
22077 If authentication is not offered by the server, this will cause Alpine
22078 to fail with an error similar to:
22081 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22083 For more details about the server name possibilities see
22084 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22085 <P><UL>
22086 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22087 </UL><P>
22088 &lt;End of help on this topic&gt;
22089 </BODY>
22090 </HTML>
22091 ====== h_config_inbox_path =====
22092 <HTML>
22093 <HEAD>
22094 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22095 </HEAD>
22096 <BODY>
22097 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22099 This value overrides the default value of your INBOX name/path/location.
22100 <!--chtml if pinemode="os_windows"-->
22101 PC-Alpine users must specify an inbox path and it must be a folder on an
22102 IMAP server.  
22103 <!--chtml else-->
22104 Unix and VMS Alpine users will often find that this variable
22105 has been pre-configured by your system administrator.  
22106 <!--chtml endif-->
22107 You may be able to specify an alternate INBOX that is either a local folder 
22108 or a folder on an IMAP server.
22110 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22111 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22112 mail server.
22114 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22115 details on the syntax of folder definitions.
22117 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22118 mail is disappearing.
22119 <P><UL>
22120 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22121 </UL><P>
22122 &lt;End of help on this topic&gt;
22123 </BODY>
22124 </HTML>
22125 ====== h_config_change_your_from =====
22126 <HTML>
22127 <HEAD>
22128 <TITLE>How to Change your From Address</TITLE>
22129 </HEAD>
22130 <BODY>
22131 <H1>How to Change your From Address</H1>
22133 If the From address that Alpine includes in mail that you send is not correct,
22134 you may want to configure a different default value for the From address.
22135 You may follow these directions to change the default:
22138 <UL>
22139   <LI> Go to the Main Alpine Menu
22140   <LI> From there type the Setup Command
22141   <LI> From there type the Config Command
22142 </UL>
22145 You've probably already seen this SETUP CONFIGURATION screen.
22146 If not, there are many options you may want to set here.
22147 To set the value of the From header you may use the
22148 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
22149 Find it by scrolling down a few pages or use the WhereIs command to
22150 search for &quot;customized&quot;.
22151 You may want to read the help text associated with the option.
22153 To add a custom From header, type the Add command and enter the
22154 full header line, including the leading &quot;From:&nbsp;&quot;.
22155 For example:
22157 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22159 Now exit the Setup command and try sending mail to yourself to see
22160 what the From line looks like.
22162 When you are in the composer you may edit the custom From line by typing
22163 Ctrl-R while your cursor is in the headers of the message and then moving
22164 to the From line and editing.
22165 If you want to leave the default value the same but add the possibility
22166 of being able to edit the header when you compose, add just the header
22167 name without a value.
22168 For example:
22170 <CENTER><SAMP>From:</SAMP></CENTER>
22172 If you change your From address you may also find it useful to add the
22173 changed From address to the
22174 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22175 configuration option.
22177 <UL>   
22178 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22179 </UL><P>
22180 &lt;End of help on this topic&gt;
22181 </BODY>
22182 </HTML>
22183 ====== h_config_default_fcc =====
22184 <HTML>
22185 <HEAD>
22186 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
22187 </HEAD>
22188 <BODY>
22189 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
22191 This value specifies where a copy of outgoing mail should be saved.  If
22192 this is not a path name, it will be in the default collection for saves.
22193 Any valid folder specification, local or IMAP, is allowed.  This default
22194 folder carbon copy only applies when the 
22195 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
22196 is set to use the default folder.  
22197 <!--chtml if pinemode="os_windows"-->
22198 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
22199 <!--chtml else-->
22200 Unix Alpine default
22201 is normally &quot;sent-mail&quot; in the default folder collection. 
22202 <!--chtml endif-->
22204 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
22205 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
22206 IMAP server (remember that in order to later access this remote folder through Alpine, it
22207 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22208 for more information). An example:<p>
22209 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
22211 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
22213 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22214 details on the syntax of folder definitions.
22216 <UL>   
22217 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22218 </UL><P>
22219 &lt;End of help on this topic&gt;
22220 </BODY>
22221 </HTML>
22222 ====== h_config_def_save_folder =====
22223 <HTML>
22224 <HEAD>
22225 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22226 </HEAD>
22227 <BODY>
22228 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22230 This option determines the default folder name for save-message operations 
22231 (&quot;saves&quot;).
22233 If this is not a path name, it will be in the default collection for saves.
22234 Any valid folder specification, local or IMAP, is allowed.  This default
22235 folder only applies when the
22236 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22237 doesn't override it.  
22238 <!--chtml if pinemode="os_windows"-->
22239 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22240 <!--chtml else-->
22241 Unix Alpine default
22242 is normally &quot;saved-messages&quot; in the default folder collection.
22243 <!--chtml endif-->
22244 If you access your email through an IMAP server, especially if you often switch between Unix
22245 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22246 IMAP server (remember that in order to later access this remote folder through Alpine, it
22247 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22248 for more information). An example:<p>
22249 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22251 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22252 details on the syntax of folder definitions.
22254 <UL>   
22255 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22256 </UL><P>
22257 &lt;End of help on this topic&gt;
22258 </BODY>
22259 </HTML>
22260 ====== h_config_postponed_folder =====
22261 <HTML>
22262 <HEAD>
22263 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22264 </HEAD>
22265 <BODY>
22266 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22268 This value overrides the default name for the folder where postponed
22269 messages are saved.  If this is not a path name, it will be in the default
22270 collection for message Saves.  Any valid folder specification, local or
22271 remote, is allowed. 
22272 PC-Alpine default
22273 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22274 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22275 in the default collection. 
22277 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22278 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22279 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22280 in all Alpine copies you use. 
22281 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22282 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22283 for more information). An
22284 example:<p> 
22285 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22287 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22288 details on the syntax of folder definitions.
22290 <UL>   
22291 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22292 </UL><P>
22293 &lt;End of help on this topic&gt;
22294 </BODY>
22295 </HTML>
22296 ====== h_config_read_message_folder =====
22297 <HTML>
22298 <HEAD>
22299 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22300 </HEAD>
22301 <BODY>
22302 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22304 By virtue of specifying a folder name here, Alpine will be configured to
22305 save all messages that you have read during a session into the designated
22306 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22307 between your really new email (in your INBOX) and those that you have
22308 already read.  Depending on how you define the 
22309 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22310 setting, you may or may not be asked when you quit
22311 Alpine if you want read messages to be moved to this folder.  In either
22312 case, moving the messages means they will be deleted from your INBOX.
22314 If this is not a path name, it will be in the default collection for
22315 saves.  Any valid folder specification, local or remote (via IMAP), is
22316 allowed.  There is no default for the name of the read message folder.
22318 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22319 details on the syntax of folder definitions.
22321 <UL>   
22322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22323 </UL><P>
22324 &lt;End of help on this topic&gt;
22325 </BODY>
22326 </HTML>
22327 ====== h_config_form_folder =====
22328 <HTML>
22329 <HEAD>
22330 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22331 </HEAD>
22332 <BODY>
22333 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22335 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22336 contain messages that you have composed and that are intended to be
22337 sent in their original form repeatedly.
22340 Setting this variable will alter Alpine's usual behavior when you
22341 execute the Compose command.  Normally, Alpine offers a chance to
22342 continue a postponed or interrupted message should one or the other
22343 exist.  When this variable is set to a folder name that exists, Alpine
22344 will also offer the chance to select a message from the folder to
22345 insert into the composer (much like when continuing a postponed message).
22346 The difference, however, is that Alpine will not automatically delete
22347 the selected message from the Form Letter Folder.
22349 Setting this variable will also affect Alpine's behavior when you
22350 Postpone a message from the composer.  Normally, Alpine simply stashes
22351 the message away in your
22352 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22353 Regardless of the specified folder's existence, Alpine will ask which
22354 folder you intend the message to be stored in.  Choose the
22355 &quot;F&quot; option to store the message in your Form Letter Folder.
22356 This is the most common way to add a message to the folder.
22359 Another method of adding messages to the folder is via the Alpine
22360 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22361 you expect to send in the same form again, you can enter the Form
22362 Letter Folder's name in this field.  Alpine, as usual, will copy the
22363 message as it's sent.  Note, when you later select this message from 
22364 your Form Letter Folder, it will have the same recipients as the original
22365 message.
22368 To delete a message from the Form Letter Folder, you can either select
22369 the folder from a suitable FOLDER LIST screen, or use the Delete
22370 command in the MESSAGE INDEX offered when selecting from the folder as
22371 part of the Compose command.  You can delete a Form Letter Folder just
22372 as any other folder from a suitable FOLDER LIST screen.
22375 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22376 facility can be used
22377 to replace the Form Letter Folder.
22380 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22381 details on the syntax of folder definitions.
22384 <UL>   
22385 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22386 </UL><P>
22387 &lt;End of help on this topic&gt;
22388 </BODY>
22389 </HTML>
22390 ====== h_config_archived_folders =====
22391 <HTML>
22392 <HEAD>
22393 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22394 </HEAD>
22395 <BODY>
22396 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22398 This is like
22399 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22400 only more general.  You may archive
22401 any of the folders in your incoming collection.  This is a list of folder
22402 pairs, with the first separated from the second in the pair by a space.
22403 The first folder in a pair is the folder you want to archive, and the
22404 second folder is the folder that read messages from the first should be
22405 moved to.  Depending on how you define the
22406 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22407 setting, you may or may not be asked when you
22408 leave the first folder if you want read messages to be moved to the
22409 second folder.  In either case, moving the messages means they will be
22410 deleted from the first folder.
22412 The name of the first folder in each pair can be either the technical
22413 specification of the folder (like what appears in your configuration file)
22414 or (much easier) the nickname that you gave the folder when you made it
22415 an incoming folder.
22417 For example:<p>
22418 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22419 <p>or, using nicknames:<p>
22420 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22422 If these are not path names, they will be in the default collection for
22423 saves. Any valid folder specification, local or remote (via IMAP), is
22424 allowed. There is no default.
22426 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22427 details on the syntax of folder definitions.
22429 <UL>   
22430 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22431 </UL><P>
22432 &lt;End of help on this topic&gt;
22433 </BODY>
22434 </HTML>
22435 ====== h_config_newsrc_path ======
22436 <HTML>
22437 <HEAD>
22438 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22439 </HEAD>
22440 <BODY>
22441 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22443 This option overrides the default name Alpine uses for your "newsrc" news
22444 status and subscription file.  If set, Alpine will take this value as the
22445 full pathname for the desired newsrc file.<P>
22447 If this option is <B>not</B> set, 
22448 <!--chtml if pinemode="os_windows"-->
22449 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22450 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22451 directory as your pinerc file for NEWSRC.
22452 <!--chtml else-->
22453 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22454 your account's home directory).
22455 <!--chtml endif-->
22456 <P><UL>
22457 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22458 </UL>
22460 &lt;End of help on this topic&gt;
22461 </BODY>
22462 </HTML>
22463 ====== h_config_literal_sig =====
22464 <HTML>
22465 <HEAD>
22466 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22467 </HEAD>
22468 <BODY>
22469 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22471 With this option your actual signature, as opposed to
22472 the name of a file containing your signature,
22473 is stored in the Alpine configuration file.
22474 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22477 This is simply a different way to store the signature.
22478 The signature is stored inside your Alpine configuration file instead of in
22479 a separate file.
22480 Tokens work the same way they do with the
22481 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22482 help.
22485 The Setup/Signature command on Alpine's MAIN MENU will edit
22486 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22487 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22488 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22489 instead.
22492 The two character sequence &#92;n (backslash followed by
22493 the character n) will be used to signify a line-break in your signature.
22494 You don't have to enter the &#92;n, but it will be visible in the
22495 SETUP CONFIGURATION window after you are done editing the signature.
22498 <UL>   
22499 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22500 </UL><P>
22501 &lt;End of help on this topic&gt;
22502 </BODY>
22503 </HTML>
22504 ====== h_config_signature_file =====
22505 <HTML>
22506 <HEAD>
22507 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22508 </HEAD>
22509 <BODY>
22510 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22512 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22513 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22514 You can tell that that is the case because the value of the
22515 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22517 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22519 You may either use all Literal Signatures (signatures stored in your
22520 configuration file) throughout Alpine, or all signature files.
22521 You can't mix the two.
22523 This is the name of a file that will be automatically inserted into
22524 outgoing messages.
22525 It typically contains information such as your
22526 name, email address and organizational affiliation.
22527 Alpine adds the
22528 signature into the message as soon as you enter the composer so you
22529 can choose to remove it or edit it on a message by message basis.
22530 Signature file placement in message replies is controlled by the
22531 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22532 setting in the feature list.
22535 The default file name is
22536 <!--chtml if pinemode="os_windows"-->
22537 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22538 PINERC file is a local file.
22539 If your PINERC file is remote, then it will be in the directory specified
22540 by the &quot;-aux local_directory&quot; command line option.
22541 <!--chtml else-->
22542 &quot;.signature&quot;.
22543 <!--chtml endif-->
22546 To create or edit your signature file choose Setup from the MAIN MENU
22547 and then select S for Signature (Main/Setup/Signature).  This puts you
22548 into the Signature Editor where you can enter a <EM>few</EM> lines of
22549 text containing your identity and affiliation.
22552 If the filename is followed by a vertical bar (|) then instead
22553 of reading the contents of the file the file is assumed to be a
22554 program that will produce the text to be used on its standard output.
22555 The program can't have any arguments and doesn't receive any input from Alpine,
22556 but the rest of the processing works as if the contents came from a file.
22559 Instead of storing the data in a local file, the
22560 signature data may be stored remotely in an IMAP folder.
22561 In order to do this, 
22562 you must use a remote name for the file.
22563 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22565 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22568 The syntax used here is the same as the syntax used for remote configuration
22569 files from the command line.
22570 Note that you may not access an existing signature file remotely,
22571 you have to create a new <EM>folder</EM> that contains the signature data.
22572 If the name you use here for the signature file is a remote name, then when
22573 you edit the file from the Setup/Signature command the data will be stored
22574 remotely in the folder.
22575 You aren't required to do anything special to create the folder, it
22576 gets created automatically if you use a remote name.
22579 Besides regular text, the signature file may also contain
22580 (or a signature program may produce) tokens that
22581 are replaced with text that usually depends on the message you are replying
22582 to or forwarding.
22583 For example, if the signature file contains the token
22585 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22587 anywhere in the text, then that token is replaced by the date
22588 the message you are replying to or forwarding was sent.
22589 If it contains
22591 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22593 that is replaced with the current date.
22594 The first is an example of a token that depends on the message you
22595 are replying to (or forwarding) and the second is an example which
22596 doesn't depend on anything other than the current date.
22597 You have to be a little careful with this facility since tokens that
22598 depend on the message you are replying to or forwarding will be replaced
22599 by nothing in the case where you are composing a new message from scratch.
22600 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22601 in this respect.
22602 It allows you to use different signature files in different cases.
22605 The list of tokens available for use in the signature file is
22606 <A HREF="h_index_tokens">here</A>.
22609 Instead of, or along with the use of &quot;roles&quot; to give you
22610 different signature files in different situations, there is also
22611 a way to conditionally include text based
22612 on whether or not a token would result in specific replacement text.
22613 For example, you could include some text based on whether or not
22614 the _NEWS_ token would result in any newsgroups if it was used.
22615 This is explained in detail
22616 <A HREF="h_reply_token_conditionals">here</A>.
22617 This isn't for the faint of heart.
22619 In the very unlikely event that you want to include a literal token
22620 in the signature you must precede it with a backslash character.
22621 For example,
22623 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22625 would produce something like
22627 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22629 It is not possible to have a literal backslash followed by an expanded token.
22631 An alternate method for storing the signature data is available by using the
22632 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22633 This variable will be used by default.
22635 <UL>   
22636 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22637 </UL><P>
22638 &lt;End of help on this topic&gt;
22639 </BODY>
22640 </HTML>
22641 ====== h_config_init_cmd_list =====
22642 <HTML>
22643 <HEAD>
22644 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22645 </HEAD>
22646 <BODY>
22647 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22649 The initial keystroke--or command--list option lets you start Alpine at
22650 any place you like.
22651 Whatever keystrokes you specify here will be executed
22652 by Alpine upon startup as a macro.
22653 The words SPACE, TAB, DOWN, UP, LEFT, and
22654 RIGHT indicate the pressing of those keys.
22655 CR indicates the pressing of the RETURN key.
22656 F1 through F12 represent the function keys, and ^ followed
22657 by a character indicates that key pressed along with the control key (in
22658 other words, ^P means Ctrl-P).
22659 As a shortcut notation, an element of the list may be several characters
22660 surrounded by double-quotes (").
22661 That will be expanded into the individual keystrokes
22662 (excluding the double-quote characters).
22663 For example, the quoted-string
22665 <P><CENTER>"ABC"</CENTER>
22668 is interpreted the same as the three separate list members
22670 <P><CENTER>A and B and C</CENTER>
22673 which is also the same as
22675 <P><CENTER>A,B,C</CENTER>
22678 An example: To view message 1 on startup,
22679 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22681 <P><CENTER>I,J,1,CR,V</CENTER>
22684 An equivalent version of this is
22686 <P><CENTER>"IJ1",CR,V</CENTER>
22689 Restrictions: You cannot pre-type into the composer with the initial
22690 keystroke list, and you cannot mix function key commands with letter
22691 commands.
22693 <P><UL>   
22694 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22695 </UL>
22697 &lt;End of help on this topic&gt;
22698 </BODY>
22699 </HTML>
22700 ====== h_config_comp_hdrs =====
22701 <html>
22702 <header>
22703 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22704 </header>
22705 <body>
22706 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22708 You can control which headers you want visible when composing outgoing
22709 email using this option.
22710 You can specify any of the regular set, any
22711 <A HREF="h_compose_richhdr">Rich Header</A>,
22712 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22713 that you have already defined.
22714 If you use this setting at all, you must specify all the
22715 headers you want to see, you can't just add to the regular header set.
22716 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22718 Note that the "Newsgroups:" header will be abbreviated in the Composer
22719 display, but should be spelled out in full here.<p>
22720 <UL>   
22721 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22722 </UL><P>
22723 &lt;End of help on this topic&gt;
22724 </body>
22725 </html>
22726 ====== h_config_custom_hdrs =====
22727 <HTML>
22728 <HEAD>
22729 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22730 </HEAD>
22731 <BODY>
22732 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22734 You may add your own custom headers to outgoing messages.
22735 Each header you specify here must include the header tag 
22736 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22737 and may optionally include a value for that header.
22738 If you want to see these custom headers each time you compose a message,
22739 you must add them to your
22740 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22741 otherwise they become part
22742 of the rich header set that you only see when you press the
22743 <A HREF="h_compose_richhdr">Rich Header</A>
22744 <!--chtml if pinemode="function_key"-->(F5)
22745 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22746 (If you are looking for a way to change which headers are <EM>displayed</EM>
22747 when you view a message, take a look at the
22748 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22749 option instead.)
22750 Here's an example that shows how you might set your From address
22752 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22754 and another showing how you might set a Reply-To address
22756 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22758 You may also set non-standard header values here.
22759 For example, you could add
22761 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22763 or even
22765 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22767 If you include a value after the colon then that header will be included
22768 in your outgoing messages unless you delete it before sending.
22769 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22770 it will not be included in outgoing messages unless you edit a value
22771 in manually.
22772 For example, if
22774 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22776 is in the list, then the Reply-To header will be available for editing
22777 but won't be included unless a value is added while in the composer.
22779 It's actually a little more complicated than that.
22780 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22781 defaults.
22782 If the message you are about to compose already has a value for a header,
22783 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22784 For example, if you are Replying to a message the Subject field
22785 will already be filled in.
22786 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22787 custom subject will <EM>NOT</EM> be used.
22788 The subject derived from the subject of the message you are Replying
22789 to will be used instead.
22791 It is also possible to make header setting even more complicated and more
22792 automatic by using
22793 <A HREF="h_rules_roles">Roles</A>,
22794 but if all you want to do is set a default value for a header, you don't
22795 need to think about Roles.
22797 If you change your From address you may also find it useful to add the
22798 changed From address to the
22799 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22800 configuration option.
22802 Limitation: Because commas are used to separate the list of
22803 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22804 header contain a comma.
22805 Nor is there currently an &quot;escape&quot; mechanism provided
22806 to make this work.
22807 <P><UL>
22808 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22809 </UL>
22811 &lt;End of help on this topic&gt;
22812 </BODY>
22813 </HTML>
22814 ====== h_config_viewer_headers =====
22815 <HTML>
22816 <HEAD>
22817 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22818 </HEAD>
22819 <BODY>
22820 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22822 You may change the default list of headers that are viewed by listing
22823 the headers you want to view here.  If the headers in your
22824 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22825 will be shown.  The order of the headers you list will be honored.  If
22826 the special value &quot;all-except&quot; is included as the first
22827 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22828 message except those in the list will be shown.  The values are all
22829 case insensitive.
22832 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22833 then the original default headers are ignored.  So, if you just wanted
22834 to add the header Organization to the list, you would have to list
22835 Organization plus all of the other headers originally in the default
22836 list.  If you just included Organization and nothing else, then you
22837 would see only the Organization header, nothing else.
22840 The default list of headers includes:
22841 <UL>
22842   <LI>From
22843   <LI>Resent-From
22844   <LI>To
22845   <LI>Resent-To
22846   <LI>Cc
22847   <LI>Resent-cc
22848   <LI>Bcc
22849   <LI>Newsgroups
22850   <LI>Followup-To
22851   <LI>Date
22852   <LI>Resent-Date
22853   <LI>Subject
22854   <LI>Resent-Subject
22855   <LI>Reply-To
22856 </UL>
22859 If you are looking for a way to control which headers are included in
22860 outgoing mail and are visible or not in the composer, take a look at the
22861 options
22862 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22863 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22864 this option.
22866 <UL>   
22867 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22868 </UL><P>
22869 &lt;End of help on this topic&gt;
22870 </BODY>
22871 </HTML>
22872 ====== h_config_viewer_margin_left =====
22873 <HTML>
22874 <HEAD>
22875 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22876 </HEAD>
22877 <BODY>
22878 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22880 This variable controls the left-hand vertical margin's width in
22881 Alpine's Message Viewing screen.
22882 Its value is the number of space characters preceding each displayed line.
22883 For consistency with
22884 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22885 you may specify the column number to start in
22886 (column numbering begins with number 1)
22887 instead of the width of the margin by appending a lower case letter
22888 &quot;c&quot; to the number.
22889 For example, a value of &quot;2c&quot; means to start the text in column two,
22890 which is entirely equivalent to a value of &quot;1&quot;, which means to
22891 leave a margin of 1 space.
22893 The default is a left margin of 0 (zero).
22894 Misconfigurations (for example, negative values or values with starting
22895 left columns greater than the ending right column)
22896 are silently ignored.
22897 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22898 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22899 instead.
22902 &lt;End of help on this topic&gt;
22903 </BODY>
22904 </HTML>
22905 ====== h_config_viewer_margin_right =====
22906 <HTML>
22907 <HEAD>
22908 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22909 </HEAD>
22910 <BODY>
22911 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22913 This variable controls the right-hand vertical margin's width in
22914 Alpine's Message Viewing screen.
22915 Its value is the number of space characters following each displayed line.
22916 You may specify the column number to end the text in
22917 (column numbering begins with number 1)
22918 instead of the width of the margin by appending a lower case letter
22919 &quot;c&quot; to the number.
22920 For example, a value of &quot;76c&quot; means to end the text in column 76.
22921 If the screen is 80 characters wide, this is equivalent to a value
22922 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22923 However, if you use different size screens at different times, then these
22924 two values are not equivalent.
22926 The default right margin is 4.
22927 Misconfigurations (for example, negative values or values with starting
22928 left columns greater than the ending right column)
22929 are silently ignored.
22930 If the number of columns for text between the
22931 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22932 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22933 instead.
22936 &lt;End of help on this topic&gt;
22937 </BODY>
22938 </HTML>
22939 ====== h_config_quote_suppression =====
22940 <HTML>
22941 <HEAD>
22942 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22943 </HEAD>
22944 <BODY>
22945 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22947 This option should be used with care.
22948 It will cause some of the quoted text to be eliminated from the
22949 display when viewing a message in the MESSAGE TEXT screen.
22950 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22951 value &quot;5&quot;,
22952 this will cause quoted text that is longer than five lines to be truncated.
22953 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22954 Quoted text of more than six lines will have the first five lines displayed
22955 followed by a line that looks something like
22957 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22959 As a special case, if exactly one line of quoted text would be hidden, the
22960 entire quote will be shown instead.
22961 So for the above example, quoted text that is exactly six lines long will
22962 will be shown in its entirety.
22963 (In other words, instead of hiding a single line and adding a line
22964 that announces that one line was hidden, the line is just shown.)
22966 If the sender of a message has carefully chosen the quotes that he or she
22967 includes, hiding those quotes may change the meaning of the message.
22968 For that reason, Alpine requires that when you want to set the value of this
22969 variable to something less than four lines, you actually have to set it
22970 to the negative of that number.
22971 So if you want to set this option to &quot;3&quot;, you actually have to
22972 set it to &quot;-3&quot;.
22973 The only purpose of this is to get you to think about whether or not you
22974 really want to do this!
22975 If you want to delete all quoted text you set the value of this option
22976 to the special value &quot;-10&quot;.
22978 The legal values for this option are
22980 <TABLE>   
22981 <TR>
22982   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22983   <TD> Default, don't hide anything </TD>
22984 </TR>
22985 <TR>
22986   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22987   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22988 </TR>
22989 <TR>
22990   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22991   <TD> Suppress if more than that many lines </TD>
22992 </TR>
22993 <TR>
22994   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22995   <TD> Suppress all quoted lines </TD>
22996 </TR>
22997 </TABLE>
22999 If you set this option to a non-default value you may sometimes wish to
23000 view the quoted text that is not shown.
23001 When this is the case, the
23002 <A HREF="h_common_hdrmode">HdrMode Command</A>
23003 may be used to show the hidden text.
23004 Typing the &quot;H&quot; command once will show the hidden text.
23005 Typing a second &quot;H&quot; will also turn on Full Header mode.
23006 The presence or absence of the HdrMode command is determined by the
23007 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
23008 Feature-List option in your Alpine configuration, so you will want to
23009 be sure that is turned on if you use quote suppression.
23011 For the purposes of this option, a quote is a line that begins with the
23012 character &quot;&gt;&quot;.
23014 Quotes are only suppressed when displaying a message on the screen.
23015 The entire quote will be left intact when printing or forwarding or something
23016 similar.
23018 &lt;End of help on this topic&gt;
23019 </BODY>
23020 </HTML>
23021 ====== h_config_saved_msg_name_rule =====
23022 <HTML>
23023 <HEAD>
23024 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
23025 </HEAD>
23026 <BODY>
23027 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
23029 This option determines the default folder name when saving
23030 a message.
23033 The default option is &quot;default-folder&quot;, which is the folder
23034 called &quot;saved-messages&quot; in Unix Alpine and
23035 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
23036 the Alpine option called
23037 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
23040 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
23041 get the chosen option's value for the message being saved (or for the
23042 first message being saved if using an aggregrate save).
23043 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
23044 value of who the message came from (i.e. the from address).
23045 Alpine then attempts to save the message to a folder matching that value.
23046 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
23047 &quot;by-sender&quot;.
23048 The opposite is also true.
23049 If &quot;by-recipient&quot; is chosen and the message was posted to a
23050 newsgroup, Alpine will use the newsgroup name.
23051 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
23052 &quot;by-from&quot;.
23055 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
23056 to use the personal name part of the address instead of the mailbox part.
23057 If any of the &quot;by-nick&quot; options are chosen, the
23058 address is looked up in your address book and if found, the
23059 nickname for that entry is used.
23060 Only simple address book entries are checked, not distribution lists.
23061 Similarly, if any of the
23062 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23063 address book entry is used.
23064 If by-realname, or the by-nick or by-fcc lookups result in no value,
23065 then if the chosen option ends with the &quot;then-from&quot;,
23066 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23067 or &quot;then-recip&quot; suffix, Alpine
23068 reverts to the same behavior as &quot;by-from&quot;,
23069 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23070 depending on which option was specified.
23071 If the chosen option doesn't end with one of
23072 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23073 folder when no match is found in the address book.
23076 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23077 to save to the folder that you saved to the last time you saved a
23078 message.  The first time you save a message in an Alpine session, Alpine
23079 attempts to save the message to the default folder.
23082 Here is an example to make some of the options clearer.
23083 If the message is From
23085 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23087 and this rule is set to &quot;by-from&quot;, then the default folder offered
23088 in the save dialog would be &quot;flint&quot;.
23090 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23091 be &quot;Fred Flintstone&quot;.
23093 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23094 for the address &quot;flint@bedrock.org&quot; in your address book.
23095 If an entry is found and it has a nickname associated with it, that nickname
23096 will be offered as the default folder.
23097 If not, the default saved message folder will be offered as the default.
23099 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23100 for the address &quot;flint@bedrock.org&quot; in your address book.
23101 If an entry is found and it has an Fcc associated with it, that Fcc
23102 will be offered as the default folder.
23103 If not, the default saved message folder will be offered as the default.
23105 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23106 for the address &quot;flint@bedrock.org&quot; in your address book.
23107 If an entry is found and it has a nickname associated with it, that nickname
23108 will be offered as the default folder.
23109 If it is not found (or has no nickname) then the default offered will be
23110 the same as it would be for the &quot;by-from&quot; rule.
23111 That is, it would be &quot;flint&quot;
23113 <UL>   
23114 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23115 </UL><P>
23116 &lt;End of help on this topic&gt;
23117 </BODY>
23118 </HTML>
23119 ====== h_config_fcc_rule =====
23120 <HTML>
23121 <HEAD>
23122 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23123 </HEAD>
23124 <BODY>
23125 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23127 This option determines the default name for folder carbon copy. Choose
23128 one:
23130 <DL>
23131 <DT>default-fcc</DT>
23132 <DD>This is the normal default, the value of which is set in the
23133 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
23134 configuration.
23135 </DD>
23137 <DT>last-fcc-used</DT>
23138 <DD> Causes Alpine to use the folder that was last
23139 used in the fcc field
23140 </DD>
23142 <DT>by-nickname</DT>
23143 <DD>Means that Alpine will use the nickname
23144 from your address book that matches the first address in the To line.
23145 If there is no match, it will use the value of the
23146 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
23147 </DD>
23149 <DT>by-recipient</DT>
23150 <DD>Means Alpine will form a folder name
23151 based on the left hand side of the first address in the To line.
23152 </DD>
23154 <DT>by-nick-then-recip</DT>
23155 <DD>Means that it will use the
23156 matching nickname from your address book if there is one, otherwise it
23157 will extract the recipient name from the address and use that (like
23158 by-recipient).
23159 </DD>
23161 <DT>current-folder</DT>
23162 <DD>Causes a copy to be written to
23163 the currently open folder, unless that is the INBOX.  In the case
23164 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
23165 used instead.
23166 </DD>
23167 </DL>
23170 Note: Whatever the fcc specified by the rule here, it will be
23171 over-ridden by any fcc entries you have in your address book.
23174 <UL>   
23175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23176 </UL><P>
23177 &lt;End of help on this topic&gt;
23178 </BODY>
23179 </HTML>
23180 ====== h_config_sort_key =====
23181 <HTML>
23182 <HEAD>
23183 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
23184 </HEAD>
23185 <BODY>
23186 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
23188 This option determines the order in which messages will be displayed in
23189 the MESSAGE INDEX screen.  Choose from:
23191 <UL>
23192  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23193  <LI> <A HREF="h_index_sort_date">Date</A>
23194  <LI> <A HREF="h_index_sort_subj">Subject</A>
23195  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23196  <LI> <A HREF="h_index_sort_thread">Thread</A>
23197  <LI> <A HREF="h_index_sort_from">From</A>
23198  <LI> <A HREF="h_index_sort_size">Size</A>
23199  <LI> <A HREF="h_index_sort_score">Score</A>
23200  <LI> <A HREF="h_index_sort_to">To</A>
23201  <LI> <A HREF="h_index_sort_cc">Cc</A>
23202 </UL>
23205 Each type of sort may also be reversed.
23206 Normal default is by &quot;Arrival&quot;.
23209 A possible point of confusion arises when you change the configuration
23210 of the <!--#echo var="VAR_sort-key"-->.
23211 The folder will normally be re-sorted when you go back to viewing the
23212 index.
23213 However, if you have manually sorted the folder with the
23214 Sort
23215 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23216 command, then it will not be re-sorted until the next time it is opened.
23219 <UL>   
23220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23221 </UL><P>
23222 &lt;End of help on this topic&gt;
23223 </BODY>
23224 </HTML>
23225 ====== h_config_other_startup =====
23226 <HTML>
23227 <HEAD>
23228 <TITLE>OPTION: Set Startup Rule</TITLE>
23229 </HEAD>
23230 <BODY>
23231 <H1>OPTION: Set Startup Rule</H1>
23233 This option determines which message will be the <EM>current message</EM> when
23234 the folder is first opened.
23235 It works the same way that the option
23236 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23237 works, so look there for help.
23238 It may be used for any folder, not just incoming folders.
23241 <UL>   
23242 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23243 </UL><P>
23244 &lt;End of help on this topic&gt;
23245 </BODY>
23246 </HTML>
23247 ====== h_config_perfolder_sort =====
23248 <HTML>
23249 <HEAD>
23250 <TITLE>Set Sort Order</TITLE>
23251 </HEAD>
23252 <BODY>
23253 <H1>Set Sort Order</H1>
23255 This option determines the order in which messages will be displayed in
23256 the MESSAGE INDEX screen when the Current Folder Type set in the
23257 Pattern is a match. Choose from:
23259 <UL>
23260  <LI> <A HREF="h_index_sort_default">Default</A>
23261  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23262  <LI> <A HREF="h_index_sort_date">Date</A>
23263  <LI> <A HREF="h_index_sort_subj">Subject</A>
23264  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23265  <LI> <A HREF="h_index_sort_thread">Thread</A>
23266  <LI> <A HREF="h_index_sort_from">From</A>
23267  <LI> <A HREF="h_index_sort_size">Size</A>
23268  <LI> <A HREF="h_index_sort_score">Score</A>
23269  <LI> <A HREF="h_index_sort_to">To</A>
23270  <LI> <A HREF="h_index_sort_cc">Cc</A>
23271 </UL>
23274 Each type of sort may also be reversed.
23275 Normal default is by &quot;Arrival&quot;.
23278 A possible point of confusion arises when you change the configuration
23279 of the Sort Order for the currently open folder.
23280 The folder will normally be re-sorted when you go back to viewing the
23281 index.
23282 However, if you have manually sorted the folder with the
23283 Sort
23284 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23285 command, then it will not be re-sorted until the next time it is opened.
23288 <UL>   
23289 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23290 </UL><P>
23291 &lt;End of help on this topic&gt;
23292 </BODY>
23293 </HTML>
23294 ====== h_config_fld_sort_rule =====
23295 <HTML>
23296 <HEAD>
23297 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23298 </HEAD>
23299 <BODY>
23300 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23302 This option controls the order in which folder list entries will be
23303 presented in the FOLDER LIST screen.  Choose one of the following:
23305 <DL>
23306 <DT>Alphabetical</DT>
23307 <DD>sort by alphabetical name independent of type
23308 </DD>
23310 <DT>Alpha-with-dirs-last</DT>
23311 <DD>sort by alphabetical name grouping directory entries
23312 to the end of the list
23313 </DD>
23315 <DT>Alpha-with-dirs-first</DT>
23316 <DD>sort by alphabetical name grouping directory entries
23317 to the start of the list
23318 </DD>
23319 </DL>
23321 The normal default is &quot;Alphabetical&quot;.
23324 <UL>   
23325 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23326 </UL><P>
23327 &lt;End of help on this topic&gt;
23328 </BODY>
23329 </HTML>
23330 ====== h_config_ab_sort_rule =====
23331 <HTML>
23332 <HEAD>
23333 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23334 </HEAD>
23335 <BODY>
23336 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23338 This option controls the order in which address book entries will be
23339 presented.  Choose one of the following:
23341 <DL>
23342 <DT>fullname</DT>
23343 <DD>use fullname field, lists mixed in
23344 </DD>
23346 <DT>fullname-with-lists-last</DT>
23347 <DD>use fullname field, but put lists at end
23348 </DD>
23350 <DT>nickname</DT>
23351 <DD>use nickname field, lists mixed in
23352 </DD>
23354 <DT>nickname-with-lists-last</DT>
23355 <DD>use nickname field, but put lists at end
23356 </DD>
23358 <DT>dont-sort</DT>
23359 <DD>don't change order of file
23360 </DD>
23361 </DL>
23364 The normal default is &quot;fullname-with-lists-last&quot;.
23365 If you use an address book from more than one computer and those
23366 computers sort the address book differently then the sort order
23367 will be the order where the last change to the address book was
23368 made.
23369 There are two reasons the sorting might be different on different
23370 systems.
23371 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23372 places.
23373 Second, the collation rules on the two computers may be different.
23374 For example, one system might ignore special characters while the other
23375 doesn't or one may sort upper and lower case letters together while
23376 the other doesn't.
23377 In any case, the order you see is the order on the system where the
23378 last change was made, for example by an address book edit or a
23379 Take Address command.
23382 <UL>   
23383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23384 </UL><P>
23385 &lt;End of help on this topic&gt;
23386 </BODY>
23387 </HTML>
23388 ====== h_config_post_char_set =====
23389 <HTML>
23390 <HEAD>
23391 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23392 </HEAD>
23393 <BODY>
23394 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23396 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23397 when sending messages.
23401 When sending a message the text typed in the composer is
23402 labeled with the character set specified by this option.
23403 If the composed text is not fully representable in the 
23404 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23405 instead;
23408 Attachments are labeled with your
23409 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23412 Generally, there should be little need to set this option.
23413 If left unset, the
23414 default behavior is to label composed text as specifically as
23415 possible.  That is, if the composed text has no non-ASCII characters,
23416 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23417 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23418 attempt to automatically detect a number of character sets including ISO-8859-15,
23419 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23420 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23421 If the message contains a mix of character sets,
23422 it is labeled as &quot;UTF-8.&quot;
23426 This setting is provided to allow you to force a particular character set that
23427 Alpine does not automatically detect. For example, if a message is representable
23428 in more than one character set then Alpine may choose a different default
23429 than you want.
23430 Lastly, by setting this option explicitly to
23431 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23432 &quot;UTF-8&quot; instead of something more specific.
23435 In the Setup/Config screen you may choose from a list of all the
23436 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23439 The options
23440 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23441 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23442 are closely related.
23443 Setting the feature
23444 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23445 should cause this option to be ignored.
23448 <UL>   
23449 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23450 </UL><P>
23451 &lt;End of help on this topic&gt;
23452 </BODY>
23453 </HTML>
23454 ====== h_config_unk_char_set =====
23455 <HTML>
23456 <HEAD>
23457 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23458 </HEAD>
23459 <BODY>
23460 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23462 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23463 when reading or replying to messages.
23467 A text message should either be made up of all US-ASCII characters
23468 or it should contain a charset label which tells the software which
23469 character set encoding to use to interpret the message.
23470 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23471 This message is outside of the standards so any attempt to read it could fail.
23472 When Alpine attempts to read such a message it will try to interpret the
23473 text in the character set you specify here.
23474 For example, if you have correspondents who send you unlabeled messages that
23475 are usually made up of characters from the WINDOWS-1251 character set, setting
23476 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23477 allow you to read those messages.
23478 Of course, if the unlabeled message is actually in some other character set,
23479 then you may see garbage on your screen.
23481 Instead of just unlabeled text, this option also affects text which is labeled
23482 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23483 or &quot;US-ASCII&quot;.
23486 In the Setup/Config screen you may choose from a list of all the
23487 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23490 <UL>   
23491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23492 </UL><P>
23493 &lt;End of help on this topic&gt;
23494 </BODY>
23495 </HTML>
23496 ====== h_config_char_set =====
23497 <HTML>
23498 <HEAD>
23499 <TITLE>OPTION: Display Character Set</TITLE>
23500 </HEAD>
23501 <BODY>
23502 <H1>OPTION: Display Character Set</H1>
23504 The Display Character Set configuration option is used when viewing messages.
23506 Alpine uses Unicode characters internally and 
23507 it is a goal for Alpine to handle email in many different languages.
23508 Alpine will properly display only left-to-right character sets
23509 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23510 font is in use, in the sense that
23511 characters are assumed to take up zero, one, or two character cell
23512 widths from left to right on the screen. This is true even in PC-Alpine.
23515 Alpine recognizes some local character sets that are right-to-left
23516 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23517 (Arabic) and properly converts texts in these character sets to/from
23518 Unicode; however, there are known display bugs with these character
23519 sets.
23522 There are three possible configuration character settings and some
23523 environment variable settings that can affect how Alpine
23524 handles international characters.
23525 The first two of these are only available in UNIX Alpine.
23526 The three configuration options are
23527 Display Character Set,
23528 Keyboard Character Set, and
23529 <!--#echo var="VAR_posting-character-set"-->.
23530 The Keyboard Character Set defaults to being the same value
23531 as the Display Character Set, and that is usually correct, because
23532 the keyboard almost always produces characters in the same character set
23533 as the display displays.
23534 The Display Character Set is the character set that Alpine
23535 will attempt to use when sending characters to the display.
23538 By default, the Display Character Set variable is not set and UNIX Alpine
23539 will attempt to get this information from the environment.
23540 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23541 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23542 An explicit configuration setting for Display Character Set will,
23543 of course, override any default setting.
23545 For PC-Alpine the Display Character Set
23546 and the Keyboard Character Set
23547 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23550 It is probably best to use UNIX Alpine in a terminal emulator
23551 capable of displaying UTF-8 characters, since that will allow you to
23552 view just about any received text that is correctly formatted (note,
23553 however, the above comments about known index display bugs with certain
23554 character sets). You'll need to have an emulator that uses a UTF-8 font
23555 and you'll need to set up your environment to use a UTF-8 charmap. For
23556 example, on a Linux system you might include
23558 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23561 or something similar in your UNIX startup files.
23562 You'd also have to select a UTF-8 font in your terminal emulator.
23565 The types of values that the character set variables may be set to are
23566 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23567 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23568 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23569 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23570 In the Setup/Config screen you may choose from a list of all the
23571 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23572 Here is a list of many of the possible character sets:
23575 <TABLE>
23576 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23577 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23578 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23579 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23580 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23581 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23582 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23583 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23584 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23585 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23586 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23587 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23588 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23589 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23590 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23591 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23592 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23593 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23594 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23595 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23596 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23597 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23598 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23599 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23600 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23601 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23602 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23603 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23604 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23605 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23606 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23607 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23608 </TABLE>
23611 When reading incoming email, Alpine understands many different
23612 character sets and is able to convert the incoming mail into Unicode.
23613 The Unicode will be converted to the Display Character Set
23614 for display on your terminal.
23615 Characters typed at the keyboard will be converted from the
23616 Keyboard Character Set to Unicode for Alpine's internal
23617 use.
23618 You may find that you can read some malformed messages that do not
23619 contain a character set label by setting the option
23620 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23623 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23624 The default behavior obtained by leaving this variable unset is usually
23625 what is wanted. In that default case, Alpine will attempt
23626 to label the message with the most specific character set from the
23627 rather arbitrary set
23629 US-ASCII, ISO-8859-15,
23630 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23631 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23634 For example, if the message is made up of only US-ASCII characters, it
23635 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23636 that will be the label. If that doesn't work the same is tried for the
23637 remaining members of the list.
23640 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23641 explicit value instead.
23642 For example, if you usually send messages in Greek, setting this
23643 option to ISO-8859-7 will result in messages being labeled as
23644 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23645 are only Greek characters, or UTF-8 if there are some characters
23646 that aren't representable in ISO-8859-7.
23647 Another possibility is to set this option explicitly to UTF-8.
23648 In that case
23649 Alpine labels only ascii messages as US-ASCII and all other
23650 messages as UTF-8.
23653 The options
23654 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23655 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23656 are closely related to this option.
23657 Setting the feature
23658 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23659 should cause this option to be ignored.
23662 When displaying a message, Alpine compares this setting to the character
23663 set specified in the message.  If not all of the
23664 characters in the message can be displayed using the Display Character Set
23665 then Alpine places an editorial
23666 comment in the displayed text (enclosed in square-brackets) indicating
23667 that some characters may not be displayed correctly.
23668 This comment may be eliminated by turning on the option
23669 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23672 <UL>   
23673 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23674 </UL><P>
23675 &lt;End of help on this topic&gt;
23676 </BODY>
23677 </HTML>
23678 ====== h_config_key_char_set =====
23679 <HTML>
23680 <HEAD>
23681 <TITLE>OPTION: Keyboard Character Set</TITLE>
23682 </HEAD>
23683 <BODY>
23684 <H1>OPTION: Keyboard Character Set</H1>
23686 UNIX Alpine only.
23688 The Keyboard Character Set identifies the character set of the characters
23689 coming from your keyboard.
23690 It defaults to having the same value as your
23691 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23692 which in turn defaults to a value obtained from your environment.
23693 It is unlikely that you will need to use this option, because the keyboard
23694 almost always produces the same kind of characters as the display displays.
23697 This character set is also used when accessing files in your local
23698 file system.
23699 The names of the files are assumed to be in the same character set as
23700 what the keyboard produces, as well as the contents of the files.
23703 In the Setup/Config screen you may choose from a list of all the
23704 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23707 The options
23708 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23709 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23710 are closely related.
23711 Setting the feature
23712 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23713 should cause this option to be ignored.
23716 <UL>   
23717 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23718 </UL><P>
23719 &lt;End of help on this topic&gt;
23720 </BODY>
23721 </HTML>
23722 ====== h_config_editor =====
23723 <HTML>
23724 <HEAD>
23725 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23726 </HEAD>
23727 <BODY>
23728 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23730 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23731 normally an alternative to Alpine's internal composer (Pico).  You could use
23732 this setting to specify an alternate editor to use occasionally or if you
23733 have a favorite editor and want to use it all the time (see the 
23734 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23735 If you specify multiple editors for this option, ^_ will invoke the first one 
23736 of those specified that exists and is executable.  When specifying a program 
23737 for use here, make sure that the format of the text it saves -- which, when 
23738 you exit it, will become the message body in Alpine -- is appropriate 
23739 for the body of an email message; avoid proprietary formats that may result in 
23740 a message body that the recipient of your message will be unable to decipher.
23742 <!--chtml if pinemode="os_windows"-->
23743 <!--chtml else-->
23744 If you are in doubt about what editors are available on your system, or which 
23745 of them may be appropriate for specification here, ask your local computing 
23746 support staff.  
23747 <!--chtml endif-->
23749 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23750 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23751 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23752 use that.
23754 <P><UL>
23755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23756 </UL>
23758 &lt;End of help on this topic&gt;
23759 </BODY>
23760 </HTML>
23761 ====== h_config_speller =====
23762 <HTML>
23763 <HEAD>
23764 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23765 </HEAD>
23766 <BODY>
23767 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23769 UNIX Alpine only.
23771 For PC-Alpine, you must install the aspell library code that you
23772 may get from
23773 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23775 This option affects the behavior of the ^T (spell check) command in the
23776 Composer.  It specifies the program invoked by ^T in the Composer.
23777 By default, Alpine uses
23779 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23781 if it knows where to find &quot;aspell&quot;.
23782 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23783 then the command used is
23785 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23787 Otherwise, the ancient &quot;spell&quot; command is used.
23789 If you specify a value for this command (with full pathname) then that is what
23790 will be used instead of any of the defaults.
23791 When invoking this
23792 spell-checking program, Alpine appends a tempfile name (where the message is
23793 passed) to the command line. Alpine expects the speller to correct the
23794 spelling in that file. When you exit from that program Alpine will read the
23795 tempfile back into the composer.
23797 Don't set this speller option to the standard Unix spell command.
23798 That won't work because spell works in a different way.
23801 <UL>   
23802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23803 </UL><P>
23804 &lt;End of help on this topic&gt;
23805 </BODY>
23806 </HTML>
23807 ====== h_config_aspell_dictionary =====
23808 <HTML>
23809 <HEAD>
23810 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23811 </HEAD>
23812 <BODY>
23813 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23815 PC Alpine only.
23817 This option specifies a list of dictionaries you will use with
23818 aspell. A sample entry is &quot;en_US&quot; for american english, or
23819 &quot;en_GB&quot; for brittish english.
23822 <UL>   
23823 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23824 </UL><P>
23825 &lt;End of help on this topic&gt;
23826 </BODY>
23827 </HTML>
23828 ====== h_config_display_filters =====
23829 <HTML>
23830 <HEAD>
23831 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23832 </HEAD>
23833 <BODY>
23834 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23836 This option defines a list of text-filtering commands (programs or
23837 scripts) that may be used to filter text portions of received messages
23838 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23839 display screen, exporting to a text file).  
23840 For security reasons, the full path name of the
23841 filter command must be specified.
23844 The command is executed and the message is piped into its standard input. 
23845 The standard output of the command is read back by Alpine.  The
23846 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23848 <P> 
23849 The filter's use is based on the configured &quot;trigger&quot; string.  The
23850 format of a filter definition is:
23852 <P>   
23853 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23856 You can specify as many filters as you wish, separating them with a comma.  
23857 Each filter can have only one trigger and command.  Thus, two trigger 
23858 strings that invoke the same command require separate filter 
23859 specifications. 
23861 <P> 
23862 The &quot;trigger&quot; is simply text that, if found in the message,
23863 will invoke the associated command.  If the trigger contains any space
23864 characters, it must be placed within quotes.  Likewise, should you
23865 wish a filter to be invoked unconditionally, define the trigger as the
23866 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23867 trigger string is found anywhere in the text of the message the filter
23868 is invoked.  Placing the trigger text within the tokens defined below
23869 changes where within the text the trigger must be before considering
23870 it a match.
23872 <P>  
23873 Trigger Modifying Tokens:
23874 <DL>
23875 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23876 <DD>This token tells Alpine to invoke the supplied command
23877 if the text is in a character set matching <VAR>string</VAR>
23878 (e.g., ISO-8859-2 or ISO-2022-JP).
23879 </DD>
23882 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23883 <DD>This token tells Alpine to invoke the supplied command
23884 if the enclosed <VAR>string</VAR> is found to be the first
23885 non-whitespace text.
23886 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23887 the space character.
23888 </DD>
23890 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23891 <DD>This token tells Alpine to invoke the supplied command
23892 if the enclosed <VAR>string</VAR> is found at the beginning
23893 of any line in the text.
23894 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23895 the space character.
23896 </DD>
23897 </DL>
23900 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23901 the command line to be invoked if the trigger string is found.  Below
23902 are tokens that Alpine will recognize and replace with special values
23903 when the command is actually invoked.
23906 Command Modifying Tokens:
23908 <DL>
23909 <DT>_TMPFILE_</DT>
23910 <DD>When the command is executed, this token is 
23911 replaced with the path and name of the temporary 
23912 file containing the text to be filtered.  Alpine 
23913 expects the filter to replace this data with the 
23914 filter's result.
23917 NOTE: Use of this token implies that the text to 
23918 be filtered is not piped into standard input of the 
23919 executed command and its standard output is ignored. 
23920 Alpine restores the tty modes before invoking the
23921 filter in case the filter interacts with the user
23922 via its own standard input and output.  
23923 </DD>
23924                         
23925 <DT>_RESULTFILE_</DT>
23926 <DD>When the command is executed, this token is 
23927 replaced with the path and name of a temporary 
23928 file intended to contain a status message from the 
23929 filter.  Alpine displays this in the message status 
23930 field. 
23931 </DD>
23933 <DT>_DATAFILE_</DT>
23934 <DD>When the command is executed, this token is 
23935 replaced with the path and name of a temporary 
23936 file that Alpine creates once per session and deletes 
23937 upon exit.  The file is intended to be used by the 
23938 filter to store state information between instances 
23939 of the filter.
23940 </DD>
23941    
23942 <DT>_PREPENDKEY_</DT>
23943 <DD>When the command is executed, this token indicates that a random
23944 number will be passed down the input stream before the message text.
23945 This number could be used as a session key.  It is sent in this way to
23946 improve security.  The number is unique to the current Alpine session
23947 and is only generated once per session.
23948 </DD>
23950 <DT>_SILENT_</DT>
23951 <DD>When the filter is executed, this token tells Alpine not to repaint
23952 the screen while the command is being executed. This can be used with 
23953 filters that do not interact with the user, and therefore repainting 
23954 the screen is not necessary. 
23955 </DD>
23956 </DL>
23959 The feature
23960 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23962 Performance caveat/considerations:
23963 <BR>
23964 Testing for the trigger and invoking the filter doesn't come for free.
23965 There is overhead associated with searching for the trigger string, testing
23966 for the filter's existence and actually piping the text through the filter.
23967 The impact can be reduced if the Trigger Modifying Tokens above are 
23968 employed.
23970 &lt;End of help on this topic&gt;
23971 </BODY>
23972 </HTML>
23973 ====== h_config_sending_filter =====
23974 <HTML>
23975 <HEAD>
23976 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23977 </HEAD>
23978 <BODY>
23979 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23980       
23981 This option defines a list of text-filtering commands (programs and
23982 scripts) that may be selectively invoked to process a message just before
23983 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23984 select which filter (or none) to apply to the message before it is sent. 
23985 For security reasons, the full path of the filter program must be
23986 specified.
23989 Command Modifying Tokens:
23991 <DL>
23992 <DT>_RECIPIENTS_</DT>
23993 <DD>When the command is executed, this token is replaced 
23994 with the space delimited list of recipients of the 
23995 message being sent. 
23996 </DD>
23997         
23998 <DT>_TMPFILE_</DT>
23999 <DD>
24000 When the command is executed, this token is 
24001 replaced with the path and name of the temporary 
24002 file containing the text to be filtered.  Alpine 
24003 expects the filter to replace this data with the 
24004 filter's result.
24007 NOTE: Use of this token implies that the text to 
24008 be filtered is not piped into standard input of the 
24009 executed command and its standard output is ignored. 
24010 Alpine restores the tty modes before invoking the
24011 filter in case the filter interacts with the user
24012 via its own standard input and output.  
24013 </DD>
24014                         
24015 <DT>_RESULTFILE_</DT>
24016 <DD>When the command is executed, this token is 
24017 replaced with the path and name of a temporary 
24018 file intended to contain a status message from the 
24019 filter.  Alpine displays this in the message status 
24020 field. 
24021 </DD>
24023 <DT>_DATAFILE_</DT>
24024 <DD>When the command is executed, this token is replaced 
24025 in the command line with the path and name of a 
24026 temporary file that Alpine creates once per session 
24027 and deletes upon exit.  The file is intended to be 
24028 used by the filter to store state information between 
24029 instances of the filter.
24030 </DD>
24031    
24032 <DT>_PREPENDKEY_</DT>
24033 <DD>When the command is executed, this token indicates 
24034 that a random number will be passed down the input 
24035 stream before the message text.  This number could 
24036 be used as a session key.  It is sent in this way 
24037 to improve security.  The number is unique to the 
24038 current Alpine session and is only generated once per 
24039 session. 
24040 </DD>
24042 <DT>_INCLUDEALLHDRS_</DT>
24043 <DD>When the command is executed, this token indicates 
24044 that the headers of the message will be passed down the input stream
24045 before the message text.
24046 </DD>
24048 <DT>_MIMETYPE_</DT>
24049 <DD>When the command is executed, this token is replaced in the
24050 command name with a temporary file name used to accept any new MIME
24051 Content-Type information necessitated by the output of the filter.
24052 Upon the filter's exit, if the file contains new MIME type
24053 information, Alpine verifies its format and replaces the outgoing
24054 message's MIME type information with that contained in the file. This
24055 is basically a cheap way of sending something other than Text/Plain.
24056 </DD>
24057 </DL>
24059 <P>   
24060 NOTE: Only the body text, which is visible in the Composer, is piped
24061 through this filter.  Attachments are not sent to the filter.
24062 <P>   
24063 Sending filters are not used if the feature
24064 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24066 <UL>   
24067 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24068 </UL><P>
24069 &lt;End of help on this topic&gt;
24070 </BODY>
24071 </HTML>
24072 ====== h_config_keywords =====
24073 <HTML>
24074 <HEAD>
24075 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24076 </HEAD>
24077 <BODY>
24078 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24080 You may define your own set of keywords and optionally set them on a
24081 message by message basis.
24082 These are similar to the &quot;Important&quot; flag which the user
24083 may set using the Flag command.
24084 The difference is that the Important flag is always present for each folder.
24085 User-defined keywords are chosen by the user.
24086 You may set up the list of possible keywords here, or you may add keywords
24087 from the Flag Details screen that you
24088 can get to after typing the
24089 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24090 command.
24091 After the keywords have been defined,
24092 then you use the <A HREF="h_common_flag">Flag command</A>
24093 to set or clear the keywords in each message.
24094 The behavior of the flag command may be modified by using the
24095 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24096 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24099 Keywords may be used when Selecting messages (Select Keyword).
24100 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24101 Filter Rules may be used to set keywords automatically.
24102 Keywords may be displayed as part of the Subject of a message by using
24103 the SUBJKEY or SUBJKEYINIT tokens in the
24104 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24105 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24106 option may be used to modify the display of keywords using
24107 SUBJKEY and SUBJKEYINIT slightly.
24108 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24109 screen by using the KEY or KEYINIT tokens.
24110 It is also possible to color keywords in the index using the
24111 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24112 Keywords are not supported by all mail servers.
24115 You may give keywords nicknames if you wish.
24116 If the keyword definition you type in contains a SPACE character, then the
24117 actual value of the keyword is everything after the last SPACE and the
24118 nickname for that keyword is everything before the last SPACE.
24119 For example, suppose you are trying to interoperate with another email program
24120 that uses a particular keyword with an unpleasant name.
24121 Maybe it uses a keyword called
24123 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24125 but for you that keyword means that the message is work-related.
24126 You could define a keyword to have the value
24128 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24130 and then you would use the name &quot;Work&quot; when dealing with
24131 that keyword in Alpine.
24132 If you defined it as
24134 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
24136 the nickname would be everything before the last SPACE, that is the nickname
24137 would be &quot;My Work&quot;.
24139 Some commonly used keywords begin with dollar signs.
24140 This presents a slight complication, because the dollar sign is normally used
24141 to signify
24142 <A HREF="h_news_config">environment variable expansion</A>
24143 in the Alpine configuration.
24144 In order to specify a keyword that begins with a dollar sign you must
24145 precede the dollar sign with a second dollar sign to escape its special
24146 meaning.
24147 For example, if you want to include the keyword
24149 <CENTER><SAMP>$Label1</SAMP></CENTER>
24151 as one of your possible keywords, you must enter the text
24153 <CENTER><SAMP>$$Label1</SAMP></CENTER>
24156 instead.
24158 There are a couple limitations.
24159 First, not all servers support keywords.
24160 Second, some servers (including the IMAP server included with Alpine)
24161 have a per folder limit on the number of keywords that may be defined.
24162 This count commonly includes every keyword you have ever used in the
24163 folder, even if it is no longer being used.
24164 In other words, you can add keywords but you cannot remove them easily.
24165 If you have changed keywords over the life of a folder and find that
24166 you have reached such a limit, one possible solution might be to copy
24167 all of the messages to a newly created folder (using Alpine) and then
24168 delete the original and rename the new folder.
24169 The reason this might work is that only the keywords currently set in
24170 any of the messages will be used in the new folder, hopefully putting you
24171 under the limit.
24174 <UL>   
24175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24176 </UL><P>
24177 &lt;End of help on this topic&gt;
24178 </BODY>
24179 </HTML>
24180 ====== h_config_alt_addresses =====
24181 <HTML>
24182 <HEAD>
24183 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
24184 </HEAD>
24185 <BODY>
24186 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
24188 This option provides a place for you to list alternate email addresses
24189 you may have.
24190 Each address in the list should be the actual email address part of an
24191 address, without the full name field or the angle brackets.
24192 For example:
24195 <CENTER><SAMP>user@example.com</SAMP></CENTER>
24198 The matching is case-insensitive, so this would match any of
24199 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
24200 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
24203 If set, the option affects the behavior of the Reply
24204 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
24205 a message has been addressed specifically to you.
24208 In the default INDEX display
24209 the personal name (or email address) of
24210 the person listed in the message's &quot;From:&quot; header
24211 field is usually displayed except when that address is yours or one of your
24212 alternate addresses.
24213 In that case you will usually see the name of
24214 the first person specified in the
24215 message's &quot;To:&quot; header field
24216 with the prefix &quot;To: &quot; prepended.
24219 With respect to Reply, the reply-to-all option will exclude addresses
24220 listed here.
24223 The feature
24224 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24225 is somewhat related to this option.
24228 In addition to a list of actual addresses,
24229 you may use regular expressions (as used with egrep with the ignore case flag)
24230 to describe the addresses you want to match.
24231 Alpine will somewhat arbitrarily interpret your entry as a regular
24232 expression if it contains any of the characters
24233 *, |, +, ?, {, [, ^, $, or &#92;.
24234 Otherwise, it will be treated literally.
24235 The feature
24236 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24237 may be used to turn off regular expression processing regardless of whether or not
24238 special characters appear in the entry.
24241 A description of how regular expressions work is beyond the
24242 scope of this help text, but some examples follow.
24245 The entry
24248 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24251 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24252 address with a domain name of <SAMP>example.com</SAMP> (such as
24253 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24254 one of your alternate addresses.
24255 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24256 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24257 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24258 Complicating things further, the dollar sign
24259 is special in the Alpine configuration (it signifies environment variable expansion)
24260 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24261 Quotes around the whole expression will not escape the dollar sign successfully.
24262 So this example should look like
24265 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24269 The entry
24272 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24275 would match
24276 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24277 as <SAMP>fred@example.com</SAMP>.
24280 You could match all addresses that look like
24281 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24282 entry
24285 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24288 Notice that you have to escape the plus sign with a backslash because plus
24289 is a special character in regular expressions.
24290 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24291 the expression
24294 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24297 would do it, but it would be easier to just add fred@example.com as a
24298 separate entry.
24301 One more example, a match of all first-level subdomains, is given by
24304 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24308 Because the regular expression matching is based on an old library
24309 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24310 but they should be close.
24313 <UL>   
24314 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24315 </UL><P>
24316 &lt;End of help on this topic&gt;
24317 </BODY>
24318 </HTML>
24319 ====== h_config_abook_formats =====
24320 <HTML>
24321 <HEAD>
24322 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24323 </HEAD>
24324 <BODY>
24325 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24327 This option specifies the format that address books are displayed in.
24328 Normally, address books are displayed with the nicknames in the first
24329 column, the fullnames in the second column, and addresses in the third
24330 column.  The system figures out reasonable defaults for the widths of
24331 the columns.  An address book may be given a different format by
24332 listing special tokens in the order you want them to display.  The
24333 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24334 So, for example, to get the default behavior you could list
24337 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24340 (You can also use the token DEFAULT to get the default behavior for
24341 an address book format.)
24344 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24345 is a list, so if you have more than one address book you may have a
24346 separate format for each by putting its format at the corresponding
24347 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24351 Listed first are the personal address books, then the global address
24352 books.  So, if you have two personal address books and one global
24353 address book, you may have up to three formats in the
24354 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24355 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24356 are address books, the last element is used repeatedly.
24360 Each of the tokens may also be optionally followed by parentheses with
24361 either a number or a percentage inside the parentheses.  For example,
24362 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24363 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24364 of the available space (the screen width minus the space for
24365 inter-column spaces) to the fullnames column, while plain
24366 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24367 reasonable number of columns.
24370 There are always 2 spaces between every column, so if you use
24371 fixed column widths (like 13) you should remember to take that into
24372 account.
24375 <UL>   
24376 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24377 </UL><P>
24378 &lt;End of help on this topic&gt;
24379 </BODY>
24380 </HTML>
24381 ====== h_config_set_index_format =====
24382 <HTML>
24383 <HEAD>
24384 <TITLE>Set Index Format</TITLE>
24385 </HEAD>
24386 <BODY>
24387 <H1>Set Index Format</H1>
24389 This option is used to customize the content of lines in the
24390 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24391 This action works exactly like the regular
24392 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24393 except that you can have a folder-specific value for it if you specify it here.
24394 Consult the help for
24395 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24396 for more information.
24399 <UL>   
24400 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24401 </UL><P>
24402 &lt;End of help on this topic&gt;
24403 </BODY>
24404 </HTML>
24405 ====== h_config_index_format =====
24406 <HTML>
24407 <HEAD>
24408 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24409 </HEAD>
24410 <BODY>
24411 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24413 This option is used to customize the content of lines in the
24414 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24415 to convey some amount of immediately relevant information about each 
24416 message in the current folder.
24419 Alpine provides a pre-defined set of informational fields with
24420 reasonable column widths automatically computed.  You can, however,
24421 replace this default set by listing special tokens in the order you
24422 want them displayed.
24425 The list of available tokens is
24426 <A HREF="h_index_tokens">here</A>.
24429 Spaces are used to separate listed tokens.  Additionally, you can
24430 specify how much of the screen's width the token's associated data
24431 should occupy on the index line by appending to the token a pair of
24432 parentheses enclosing either a number or percentage.  For example,
24433 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24434 column, and &quot;SUBJECT(20%)&quot; means to
24435 allocate 20% of the available space
24436 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24437 attempt to figure out a reasonable amount of space.
24440 There is always one space between every pair of columns, so if you use fixed
24441 column widths (like 13) you should remember to take that into account.
24442 Several of the fields are virtually fixed-width, so it doesn't make
24443 much sense to specify the width for them.  The fields STATUS,
24444 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24445 and DESCRIPSIZE all fall into that category.
24446 You <EM>may</EM> specify widths for those if you wish, but
24447 you're probably better off letting the system pick those widths.  <P>
24450 The default is equivalent to:
24453 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24456 This means that the four fields without percentages will be allocated
24457 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24458 the from and subject fields.  If one of those two fields is specified
24459 as a percentage and the other is left for the system to choose, then
24460 the percentage is taken as an absolute percentage of the screen, not
24461 of the space remaining after allocating the first four columns.  It
24462 doesn't usually make sense to do it that way.  If you leave off all
24463 the widths, then the subject and from fields (if both are present) are
24464 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24465 the default.
24468 What you are most likely to do with this configuration option is to
24469 specify which fields appear at all, which order they appear in, and the
24470 percentage of screen that is used for the from and subject fields if you
24471 don't like the 2 to 1 default.
24474 If you want to retain the default format that Pine 4.64 had, use
24477 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24479 <EM>and</EM> set the feature
24480 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24481 <UL>   
24482 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24483 </UL><P>
24484 &lt;End of help on this topic&gt;
24485 </BODY>
24486 </HTML>
24487 ====== h_config_reply_intro =====
24488 <HTML>
24489 <HEAD>
24490 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24491 </HEAD>
24492 <BODY>
24493 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24495 This option is used to customize the content of the introduction line
24496 that is included when replying to a message and including the original
24497 message in the reply.
24498 The normal default (what you will get if you delete this variable) looks
24499 something like:
24501 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24503 where the day of the week is only included if it is available in the
24504 original message.
24505 You can replace this default with text of your own.
24506 The text may contain tokens that are replaced with text
24507 that depends on the message you are replying to.
24508 For example, the default is equivalent to:
24510 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24513 Since this variable includes regular text mixed with special tokens
24514 the tokens have to be surrounded by underscore characters.
24515 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24516 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24517 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24519 The list of available tokens is
24520 <A HREF="h_index_tokens">here</A>.
24523 By default, the text is all on a single line and is followed by a blank line.
24524 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24525 than 80 characters when replying to a particular message, it is shortened.
24526 However, if you use the token
24528 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24531 anywhere in the value, no end of line or blank line is appended, and no
24532 shortening is done.
24533 The _NEWLINE_ token may be used to get rid of the blank line following
24534 the text, to add more blank lines, or to form a multi-line
24535 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24536 To clarify how _NEWLINE_ works recall that the default value is:
24538 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24541 That is equivalent to
24543 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24546 In the former case, two newlines are added automatically because
24547 no _NEWLINE_ token appears in the value of the option (for backwards
24548 compatibility). In the latter case, the newlines are explicit.
24549 If you want to remove the blank line that follows the
24550 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24551 _NEWLINE_ token like
24553 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24556 Because of the backwards compatibility problem, it is not possible to
24557 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24558 and that will cause the automatic adding of two newlines!
24559 If you want, you may embed newlines in the middle of the text, as well,
24560 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24563 By default, no attempt is made to localize the date.
24564 If you prefer a localized form you may find that one of the tokens
24565 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24566 If you want more control one of the many other date tokens, such as _DATEISO_,
24567 might be better.
24570 For the adventurous, there is a way to conditionally include text based
24571 on whether or not a token would result in specific replacement text.
24572 For example, you could include some text based on whether or not
24573 the _NEWS_ token would result in any newsgroups if it was used.
24574 It's explained in detail
24575 <A HREF="h_reply_token_conditionals">here</A>.
24578 In the very unlikely event that you want to include a literal token
24579 in the introduction line you must precede it with a backslash character.
24580 For example,
24582 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24584 would produce something like
24586 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24588 It is not possible to have a literal backslash followed by an expanded token.
24590 <UL>   
24591 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24592 </UL><P>
24593 &lt;End of help on this topic&gt;
24594 </BODY>
24595 </HTML>
24596 ====== h_config_remote_abook_history =====
24597 <HTML>
24598 <HEAD>
24599 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24600 </HEAD>
24601 <BODY>
24602 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24604 Sets how many extra copies of
24605 remote address book
24606 data will be kept in each remote address book folder.
24607 The default is three.
24608 These extra copies are simply old versions of the data. Each time a change
24609 is made a new copy of the address book data is appended to the folder. Old
24610 copies are trimmed, if possible, when Alpine exits.
24611 An old copy can be put back into use by
24612 deleting and expunging newer versions of the data from the folder.
24613 Don't delete the first message from the folder. It is a special header
24614 message for the remote address book and it must be there.
24615 This is to prevent regular folders from being used as remote address book
24616 folders and having their data destroyed.
24618 This option is also used to determine how many extra copies of remote
24619 Alpine configuration files are kept.
24621 <UL>   
24622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24623 </UL><P>
24624 &lt;End of help on this topic&gt;
24625 </BODY>
24626 </HTML>
24627 ====== h_config_remote_abook_validity =====
24628 <HTML>
24629 <HEAD>
24630 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24631 </HEAD>
24632 <BODY>
24633 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24635 Sets the minimum number of minutes that a
24636 remote address book will be considered up to date.
24637 Whenever an entry contained in a remote address book is used,
24638 if more than this many minutes have
24639 passed since the last check the remote server will be queried to see if the
24640 address book has changed.
24641 If it has changed, the local copy is updated.
24642 The default value is five minutes.
24643 The special value of -1 means never check.
24644 The special value of zero means only check when the address book is first
24645 opened.
24647 No matter what the value, the validity check is always done when the
24648 address book is about to be changed by the user.
24649 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24650 while in the address book maintenance screen for the remote address book.
24652 <UL>   
24653 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24654 </UL><P>
24655 &lt;End of help on this topic&gt;
24656 </BODY>
24657 </HTML>
24658 ====== h_config_user_input_timeo =====
24659 <HTML>
24660 <HEAD>
24661 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24662 </HEAD>
24663 <BODY>
24664 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24666 If this is set to an integer greater than zero, then this is the number
24667 of <EM>hours</EM> to wait for user input before Alpine times out.
24668 If Alpine is
24669 in the midst of composing a message or is waiting for user response to
24670 a question, then it will not timeout.
24671 However, if Alpine is sitting idle waiting for
24672 the user to tell it what to do next and the user does not give any
24673 input for this many hours, Alpine will exit.
24674 No expunging or moving of read
24675 messages will take place.
24676 It will exit similarly to the way it would exit
24677 if it received a hangup signal.
24678 This may be useful for cleaning up unused Alpine sessions that have been
24679 forgotten by their owners.
24680 The Alpine developers envision system administrators
24681 setting this to a value of several hours (24?) so that it won't surprise
24682 a user who didn't want to be disconnected.
24684 <UL>   
24685 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24686 </UL><P>
24687 &lt;End of help on this topic&gt;
24688 </BODY>
24689 </HTML>
24690 ====== h_config_ssh_open_timeo =====
24691 <HTML>
24692 <HEAD>
24693 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24694 </HEAD>
24695 <BODY>
24696 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24698 Sets the time in seconds that Alpine will
24699 attempt to open a UNIX secure shell connection.
24700 The default is 15, the minimum non-zero value is 5,
24701 and the maximum is unlimited. If this is set to zero ssh connections
24702 will be completely disabled.
24704 <UL>   
24705 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24706 </UL><P>
24707 &lt;End of help on this topic&gt;
24708 </BODY>
24709 </HTML>
24710 ====== h_config_rsh_open_timeo =====
24711 <HTML>
24712 <HEAD>
24713 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24714 </HEAD>
24715 <BODY>
24716 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24718 Sets the time in seconds that Alpine will
24719 attempt to open a UNIX remote shell connection.
24720 The default is 15, the minimum non-zero value is 5,
24721 and the maximum is unlimited. If this is set to zero rsh connections
24722 will be completely disabled.
24723 This might be useful if rsh connections will never work in your environment
24724 but are causing delays due to firewalls or some other reason.
24726 <UL>   
24727 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24728 </UL><P>
24729 &lt;End of help on this topic&gt;
24730 </BODY>
24731 </HTML>
24732 ====== h_config_tcp_open_timeo =====
24733 <HTML>
24734 <HEAD>
24735 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24736 </HEAD>
24737 <BODY>
24738 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24740 Sets the time in seconds that Alpine will
24741 attempt to open a network connection. The default is 30, the minimum is 5,
24742 and the maximum is system defined (typically 75). If a connection has not
24743 completed within this many seconds Alpine will give up and consider it a
24744 failed connection.
24746 <UL>   
24747 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24748 </UL><P>
24749 &lt;End of help on this topic&gt;
24750 </BODY>
24751 </HTML>
24752 ====== h_config_tcp_readwarn_timeo =====
24753 <HTML>
24754 <HEAD>
24755 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24756 </HEAD>
24757 <BODY>
24758 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24760 Sets the time in seconds that Alpine will
24761 wait for a network read before warning you that things are moving slowly
24762 and possibly giving you the option to break the connection.
24763 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24764 1000 seconds.
24766 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24768 <UL>   
24769 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24770 </UL><P>
24771 &lt;End of help on this topic&gt;
24772 </BODY>
24773 </HTML>
24774 ====== h_config_tcp_writewarn_timeo =====
24775 <HTML>
24776 <HEAD>
24777 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24778 </HEAD>
24779 <BODY>
24780 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24782 Sets the time in seconds that Alpine will
24783 wait for a network write before warning you that things are moving slowly
24784 and possibly giving you the option to break the connection.
24785 The default is 0 which means it is unset. If set to a non-zero value, the
24786 minimum is 5 and the maximum is 1000.
24788 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24790 <UL>   
24791 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24792 </UL><P>
24793 &lt;End of help on this topic&gt;
24794 </BODY>
24795 </HTML>
24796 ====== h_config_tcp_query_timeo =====
24797 <HTML>
24798 <HEAD>
24799 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24800 </HEAD>
24801 <BODY>
24802 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24804 When Alpine times out a network read or write it will normally just display
24805 a message saying &quot;Still waiting&quot;.
24806 However, if enough time has elapsed since it started waiting it will offer
24807 to let you break the connection.
24808 That amount of time is set by this option, which defaults to 60 seconds,
24809 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24811 <UL>   
24812 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24813 </UL><P>
24814 &lt;End of help on this topic&gt;
24815 </BODY>
24816 </HTML>
24817 ====== h_config_incoming_folders =====
24818 <HTML>
24819 <HEAD>
24820 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24821 </HEAD>
24822 <BODY>
24823 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24825 This is a list of one or more folders other than <EM>INBOX</EM> that
24826 may receive new messages.
24827 It is related to the
24828 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24829 feature.
24830 This variable is normally manipulated with the Add, Delete, and Rename
24831 commands in the FOLDER LIST for the Incoming Message Folders collection.
24833 <UL>   
24834 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24835 </UL><P>
24836 &lt;End of help on this topic&gt;
24837 </BODY>
24838 </HTML>
24839 ====== h_config_folder_spec =====
24840 <HTML>
24841 <HEAD>
24842 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24843 </HEAD>
24844 <BODY>
24845 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24847 This is a list of one or more collections where saved mail is stored. 
24848 The first collection in this list is the default
24849 collection for <EM>Save</EM>s,
24850 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24852 This variable is normally manipulated using the Setup/collectionList screen.
24854 <UL>   
24855 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24856 </UL><P>
24857 &lt;End of help on this topic&gt;
24858 </BODY>
24859 </HTML>
24860 ====== h_config_news_spec =====
24861 <HTML>
24862 <HEAD>
24863 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24864 </HEAD>
24865 <BODY>
24866 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24868 This is a list of collections where news folders are located.
24870 This variable is normally manipulated using the Setup/collectionList screen.
24872 <UL>   
24873 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24874 </UL><P>
24875 &lt;End of help on this topic&gt;
24876 </BODY>
24877 </HTML>
24878 ====== h_config_address_book =====
24879 <HTML>
24880 <HEAD>
24881 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24882 </HEAD>
24883 <BODY>
24884 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24886 A list of personal address books.
24887 Each entry in the list is an
24888 optional nickname followed by a pathname or file name relative to the home
24889 directory.
24890 The nickname is separated from the rest of the line with whitespace.
24891 Instead of a local pathname or file name, a remote folder name can be given.
24892 This causes the address book to
24893 be a Remote address book.
24895 Use the Setup/AddressBook screen to modify this variable.
24897 <UL>   
24898 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24899 </UL><P>
24900 &lt;End of help on this topic&gt;
24901 </BODY>
24902 </HTML>
24903 ====== h_config_glob_addrbook =====
24904 <HTML>
24905 <HEAD>
24906 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24907 </HEAD>
24908 <BODY>
24909 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24911 A list of shared address books.  Each entry in the list is an
24912 optional nickname followed by a pathname or file name relative to the home
24913 directory.
24914 A SPACE character separates the nickname from the rest of the line.
24915 Instead of a local pathname or file name, a remote folder name can be given.
24916 This causes the address book to
24917 be a Remote address book.
24918 Global address books are
24919 defined to be ReadOnly.
24921 Use the Setup/AddressBook screen to modify this variable.
24923 <UL>   
24924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24925 </UL><P>
24926 &lt;End of help on this topic&gt;
24927 </BODY>
24928 </HTML>
24929 ====== h_config_last_vers =====
24930 <HTML>
24931 <HEAD>
24932 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24933 </HEAD>
24934 <BODY>
24935 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24937 This is set automatically by Alpine. 
24938 It is used to keep track of the last version of Alpine that
24939 was run by the user.
24940 Whenever the version number increases, a new version message is printed out.
24941 This may not be set in the system-wide configuration files.
24943 <UL>   
24944 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24945 </UL><P>
24946 &lt;End of help on this topic&gt;
24947 </BODY>
24948 </HTML>
24949 ====== h_config_printer =====
24950 <HTML>
24951 <HEAD>
24952 <TITLE>OPTION: Printer</TITLE>
24953 </HEAD>
24954 <BODY>
24955 <H1>OPTION: Printer</H1>
24957 Your default printer selection.
24959 Use the Setup/Printer screen to modify this variable.
24961 <UL>   
24962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24963 </UL><P>
24964 &lt;End of help on this topic&gt;
24965 </BODY>
24966 </HTML>
24967 ====== h_config_print_cat =====
24968 <HTML>
24969 <HEAD>
24970 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24971 </HEAD>
24972 <BODY>
24973 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24975 This is an internal Alpine variable.
24976 It will be equal to 1, 2, or 3 depending on whether the default printer is
24977 attached, standard, or a personal print command.
24979 Use the Setup/Printer screen to modify this variable.
24981 <UL>   
24982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24983 </UL><P>
24984 &lt;End of help on this topic&gt;
24985 </BODY>
24986 </HTML>
24987 ====== h_config_print_command =====
24988 <HTML>
24989 <HEAD>
24990 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24991 </HEAD>
24992 <BODY>
24993 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24995 List of personal print commands.
24997 Use the Setup/Printer screen to modify this variable.
24999 <UL>   
25000 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25001 </UL><P>
25002 &lt;End of help on this topic&gt;
25003 </BODY>
25004 </HTML>
25005 ====== h_config_pat_old =====
25006 <HTML>
25007 <HEAD>
25008 <TITLE>OPTION: Patterns</TITLE>
25009 </HEAD>
25010 <BODY>
25011 <H1>OPTION: Patterns</H1>
25013 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
25014 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
25015 and Patterns-Other.
25016 Patterns-Scores and Patterns-Filters have been replaced since then by
25017 Patterns-Scores2 and Patterns-Filters2.
25019 Use the Setup/Rules screens to modify these variable.
25021 <UL>   
25022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25023 </UL><P>
25024 &lt;End of help on this topic&gt;
25025 </BODY>
25026 </HTML>
25027 ====== h_config_pat_roles =====
25028 <HTML>
25029 <HEAD>
25030 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
25031 </HEAD>
25032 <BODY>
25033 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
25035 List of rules used for roles.
25036 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
25037 other options.
25039 Use the Setup/Rules/Roles screen to modify this variable.
25041 <UL>   
25042 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25043 </UL><P>
25044 &lt;End of help on this topic&gt;
25045 </BODY>
25046 </HTML>
25047 ====== h_config_pat_filts =====
25048 <HTML>
25049 <HEAD>
25050 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
25051 </HEAD>
25052 <BODY>
25053 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
25055 List of rules used for filters.
25057 Use the Setup/Rules/Filters screen to modify this variable.
25059 <UL>   
25060 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25061 </UL><P>
25062 &lt;End of help on this topic&gt;
25063 </BODY>
25064 </HTML>
25065 ====== h_config_pat_scores =====
25066 <HTML>
25067 <HEAD>
25068 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25069 </HEAD>
25070 <BODY>
25071 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25073 List of rules used for scoring.
25075 Use the Setup/Rules/SetScores screen to modify this variable.
25077 <UL>   
25078 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25079 </UL><P>
25080 &lt;End of help on this topic&gt;
25081 </BODY>
25082 </HTML>
25083 ====== h_config_pat_other =====
25084 <HTML>
25085 <HEAD>
25086 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
25087 </HEAD>
25088 <BODY>
25089 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
25091 List of rules used for miscellaneous configuration.
25093 Use the Setup/Rules/Other screen to modify this variable.
25095 <UL>   
25096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25097 </UL><P>
25098 &lt;End of help on this topic&gt;
25099 </BODY>
25100 </HTML>
25101 ====== h_config_pat_incols =====
25102 <HTML>
25103 <HEAD>
25104 <TITLE>OPTION: patterns-indexcolors</TITLE>
25105 </HEAD>
25106 <BODY>
25107 <H1>OPTION: patterns-indexcolors</H1>
25109 List of rules used for coloring lines in the index.
25111 Use the Setup/Rules/Indexcolor screen to modify this variable.
25113 <UL>   
25114 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25115 </UL><P>
25116 &lt;End of help on this topic&gt;
25117 </BODY>
25118 </HTML>
25119 ====== h_config_pat_srch =====
25120 <HTML>
25121 <HEAD>
25122 <TITLE>OPTION: patterns-search</TITLE>
25123 </HEAD>
25124 <BODY>
25125 <H1>OPTION: patterns-search</H1>
25127 List of rules used only for searching with the Select command in the MESSAGE INDEX.
25129 Use the Setup/Rules/searCh screen to modify this variable.
25131 <UL>   
25132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25133 </UL><P>
25134 &lt;End of help on this topic&gt;
25135 </BODY>
25136 </HTML>
25137 ====== h_config_font_name =====
25138 <HTML>
25139 <HEAD>
25140 <TITLE>OPTION: Font Name</TITLE>
25141 </HEAD>
25142 <BODY>
25143 <H1>OPTION: Font Name</H1>
25145 PC-Alpine only.
25147 Name of normal font.
25149 Use the pulldown Config menu to modify this variable.
25151 <UL>   
25152 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25153 </UL><P>
25154 &lt;End of help on this topic&gt;
25155 </BODY>
25156 </HTML>
25157 ====== h_config_font_size =====
25158 <HTML>
25159 <HEAD>
25160 <TITLE>OPTION: Font Size</TITLE>
25161 </HEAD>
25162 <BODY>
25163 <H1>OPTION: Font Size</H1>
25165 PC-Alpine only.
25167 Size of normal font.
25169 Use the pulldown Config menu to modify this variable.
25171 <UL>   
25172 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25173 </UL><P>
25174 &lt;End of help on this topic&gt;
25175 </BODY>
25176 </HTML>
25177 ====== h_config_font_style =====
25178 <HTML>
25179 <HEAD>
25180 <TITLE>OPTION: Font Style</TITLE>
25181 </HEAD>
25182 <BODY>
25183 <H1>OPTION: Font Style</H1>
25185 PC-Alpine only.
25187 Style of normal font.
25189 Use the pulldown Config menu to modify this variable.
25191 <UL>   
25192 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25193 </UL><P>
25194 &lt;End of help on this topic&gt;
25195 </BODY>
25196 </HTML>
25197 ====== h_config_font_char_set =====
25198 <HTML>
25199 <HEAD>
25200 <TITLE>OPTION: Font Character Set</TITLE>
25201 </HEAD>
25202 <BODY>
25203 <H1>OPTION: Font Character Set</H1>
25205 PC-Alpine only.
25207 Character set of normal font.
25209 Use the pulldown Config menu to modify this variable.
25211 <UL>   
25212 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25213 </UL><P>
25214 &lt;End of help on this topic&gt;
25215 </BODY>
25216 </HTML>
25217 ====== h_config_print_font_name =====
25218 <HTML>
25219 <HEAD>
25220 <TITLE>OPTION: Print-Font-Name</TITLE>
25221 </HEAD>
25222 <BODY>
25223 <H1>OPTION: Print-Font-Name</H1>
25225 PC-Alpine only.
25227 Name of printer font.
25229 Use the pulldown Config menu to modify this variable.
25231 <UL>   
25232 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25233 </UL><P>
25234 &lt;End of help on this topic&gt;
25235 </BODY>
25236 </HTML>
25237 ====== h_config_print_font_size =====
25238 <HTML>
25239 <HEAD>
25240 <TITLE>OPTION: Print-Font-Size</TITLE>
25241 </HEAD>
25242 <BODY>
25243 <H1>OPTION: Print-Font-Size</H1>
25245 PC-Alpine only.
25247 Size of printer font.
25249 Use the pulldown Config menu to modify this variable.
25251 <UL>   
25252 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25253 </UL><P>
25254 &lt;End of help on this topic&gt;
25255 </BODY>
25256 </HTML>
25257 ====== h_config_print_font_style =====
25258 <HTML>
25259 <HEAD>
25260 <TITLE>OPTION: Print-Font-Style</TITLE>
25261 </HEAD>
25262 <BODY>
25263 <H1>OPTION: Print-Font-Style</H1>
25265 PC-Alpine only.
25267 Style of printer font.
25269 Use the pulldown Config menu to modify this variable.
25271 <UL>   
25272 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25273 </UL><P>
25274 &lt;End of help on this topic&gt;
25275 </BODY>
25276 </HTML>
25277 ====== h_config_print_font_char_set =====
25278 <HTML>
25279 <HEAD>
25280 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25281 </HEAD>
25282 <BODY>
25283 <H1>OPTION: Print-Font-Char-Set</H1>
25285 PC-Alpine only.
25287 Character set of printer font.
25289 Use the pulldown Config menu to modify this variable.
25291 <UL>   
25292 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25293 </UL><P>
25294 &lt;End of help on this topic&gt;
25295 </BODY>
25296 </HTML>
25297 ====== h_config_window_position =====
25298 <HTML>
25299 <HEAD>
25300 <TITLE>OPTION: Window-Position</TITLE>
25301 </HEAD>
25302 <BODY>
25303 <H1>OPTION: Window-Position</H1>
25305 PC-Alpine only.
25307 Position on the screen of the Alpine window.
25309 Alpine normally maintains this variable itself, and it is set automatically. 
25310 This variable is provided to those who wish to use the same window position 
25311 across different machines from the same configuration.
25312 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25313 must also be set for this setting to be used.
25315 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25316 C is the number of columns, R is the number of rows, and X and Y specify the
25317 top left corner of the window.
25319 <UL>   
25320 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25321 </UL><P>
25322 &lt;End of help on this topic&gt;
25323 </BODY>
25324 </HTML>
25325 ====== h_config_cursor_style =====
25326 <HTML>
25327 <HEAD>
25328 <TITLE>OPTION: Cursor Style</TITLE>
25329 </HEAD>
25330 <BODY>
25331 <H1>OPTION: Cursor Style</H1>
25333 PC-Alpine only.
25335 Cursor style.
25337 Use the pulldown Config menu to modify this variable.
25339 <UL>   
25340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25341 </UL><P>
25342 &lt;End of help on this topic&gt;
25343 </BODY>
25344 </HTML>
25345 ====== h_config_ldap_servers =====
25346 <HTML>
25347 <HEAD>
25348 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25349 </HEAD>
25350 <BODY>
25351 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25353 List of LDAP servers and associated data.
25355 Use the Setup/Directory screen to modify this variable.
25357 <UL>   
25358 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25359 </UL><P>
25360 &lt;End of help on this topic&gt;
25361 </BODY>
25362 </HTML>
25363 ====== h_config_sendmail_path =====
25364 <HTML>
25365 <HEAD>
25366 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25367 </HEAD>
25368 <BODY>
25369 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25371 This names the path to an
25372 alternative program, and any necessary arguments, to be used in posting
25373 mail messages. See the Technical notes for more information.
25375 <UL>   
25376 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25377 </UL><P>
25378 &lt;End of help on this topic&gt;
25379 </BODY>
25380 </HTML>
25381 ====== h_config_oper_dir =====
25382 <HTML>
25383 <HEAD>
25384 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25385 </HEAD>
25386 <BODY>
25387 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25389 This names the root of the
25390 tree to which you are restricted when reading and writing folders and
25391 files. It is usually used in the system-wide,
25392 <EM>fixed</EM> configuration file.
25394 <UL>   
25395 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25396 </UL><P>
25397 &lt;End of help on this topic&gt;
25398 </BODY>
25399 </HTML>
25400 ====== h_config_rshpath =====
25401 <HTML>
25402 <HEAD>
25403 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25404 </HEAD>
25405 <BODY>
25406 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25408 Sets the name of the command used to open a UNIX remote shell
25409 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25411 <UL>   
25412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25413 </UL><P>
25414 &lt;End of help on this topic&gt;
25415 </BODY>
25416 </HTML>
25417 ====== h_config_rshcmd =====
25418 <HTML>
25419 <HEAD>
25420 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25421 </HEAD>
25422 <BODY>
25423 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25425 Sets the format of the command used to
25426 open a UNIX remote shell connection. The default is
25427 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25428 provided command. The first is for the command's pathname, the second is
25429 for the host to connnect to, the third is for the user to connect as, and
25430 the fourth is for the connection method (typically <CODE>imap</CODE>).
25432 <UL>   
25433 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25434 </UL><P>
25435 &lt;End of help on this topic&gt;
25436 </BODY>
25437 </HTML>
25438 ====== h_config_sshpath =====
25439 <HTML>
25440 <HEAD>
25441 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25442 </HEAD>
25443 <BODY>
25444 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25446 Sets the name of the command used to open a UNIX secure shell
25447 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25449 <UL>   
25450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25451 </UL><P>
25452 &lt;End of help on this topic&gt;
25453 </BODY>
25454 </HTML>
25455 ====== h_config_sshcmd =====
25456 <HTML>
25457 <HEAD>
25458 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25459 </HEAD>
25460 <BODY>
25461 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25463 Sets the format of the command used to
25464 open a UNIX secure shell connection. The default is
25465 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25466 provided command. The first is for the command's pathname, the second is
25467 for the host to connnect to, the third is for the user to connect as, and
25468 the fourth is for the connection method (typically <CODE>imap</CODE>).
25470 <UL>   
25471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25472 </UL><P>
25473 &lt;End of help on this topic&gt;
25474 </BODY>
25475 </HTML>
25476 ====== h_config_new_ver_quell =====
25477 <HTML>
25478 <HEAD>
25479 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25480 </HEAD>
25481 <BODY>
25482 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25484 When a new version of Alpine is run for the first time it offers a
25485 special explanatory screen to the user upon startup.  This option
25486 helps control when and if that special screen appears for users that
25487 have previously run Alpine.  It takes as its value an Alpine version
25488 number.  Alpine versions less than the specified value will supress this
25489 special screen while versions equal to or greater than that specified
25490 will behave normally.
25492 <UL>   
25493 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25494 </UL><P>
25495 &lt;End of help on this topic&gt;
25496 </BODY>
25497 </HTML>
25498 ====== h_config_disable_drivers =====
25499 <HTML>
25500 <HEAD>
25501 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25502 </HEAD>
25503 <BODY>
25504 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25506 This variable is a list of mail drivers that will be disabled.
25507 The candidates for disabling are listed below.
25508 There may be more in the future if you compile Alpine with
25509 a newer version of the c-client library.
25512 <UL>
25513 <LI> mbox
25514 <LI> mbx
25515 <LI> mh
25516 <LI> mmdf
25517 <LI> mtx
25518 <LI> mx
25519 <LI> news
25520 <LI> phile
25521 <LI> tenex
25522 <LI> unix
25523 </UL>
25526 The <EM>mbox</EM> driver enables the following behavior: if there is a
25527 file called <CODE>mbox</CODE>
25528 in your home directory, and if that file is either empty or in Unix mailbox
25529 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25530 will automatically transfer mail from the system mail spool directory into the
25531 <CODE>mbox</CODE> file and
25532 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25533 this will not happen.
25536 It is not recommended to disable the driver that supports the system default
25537 mailbox format. On most non-SCO systems, that driver is the
25538 <EM>unix</EM> driver.
25539 On most SCO systems, it is the <EM>mmdf</EM> driver.
25540 The system default driver may be
25541 configured to something else on your system; check with your system manager
25542 for additional information.
25545 It is most likely not very useful for you to disable any of the drivers other
25546 than possibly <EM>mbox</EM>.
25547 You could disable some of the others if you know for
25548 certain that you don't need them but the performance gain in doing so
25549 is very modest.
25551 <UL>   
25552 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25553 </UL><P>
25554 &lt;End of help on this topic&gt;
25555 </BODY>
25556 </HTML>
25557 ====== h_config_disable_auths =====
25558 <HTML>
25559 <HEAD>
25560 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25561 </HEAD>
25562 <BODY>
25563 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25565 This variable is a list of SASL (Simple Authentication and Security
25566 Layer) authenticators that will be disabled.
25567 SASL is a mechanism for
25568 authenticating to IMAP, POP3, SMTP, and other network servers.
25571 Alpine matches its list of supported authenticators with the server to
25572 determine the most secure authenticator that is supported by both.
25573 If no matching authenticators are found, Alpine will revert to plaintext
25574 login (or, in the case of SMTP, will be unable to authenticate at all).
25576 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25579 Normally, you will not disable any authenticators.
25580 There are two exceptions:
25582 <OL>
25583 <LI> You use a broken server that advertises an authenticator,
25584 but does not actually implement it.
25585 <LI> You have a Kerberos-capable version of Alpine and the server is
25586 also Kerberos-capable, but you can not obtain Kerberos
25587 credentials on the server machine, thus you desire to disable
25588 GSSAPI (which in turn disables Alpine's Kerberos support).
25589 </OL>
25591 It is never necessary to disable authenticators, since Alpine will try
25592 other authenticators before giving up.
25593 However, disabling the relevant authenticator avoids annoying error messages.
25595 <UL>   
25596 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25597 </UL><P>
25598 &lt;End of help on this topic&gt;
25599 </BODY>
25600 </HTML>
25601 ====== h_config_abook_metafile =====
25602 <HTML>
25603 <HEAD>
25604 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25605 </HEAD>
25606 <BODY>
25607 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25609 This is usually set by Alpine and is the name of a file
25610 that contains data about
25611 remote address books and remote configuration files.
25613 <UL>   
25614 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25615 </UL><P>
25616 &lt;End of help on this topic&gt;
25617 </BODY>
25618 </HTML>
25619 ====== h_config_composer_wrap_column =====
25620 <HTML>
25621 <HEAD>
25622 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25623 </HEAD>
25624 <BODY>
25625 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25628 This option specifies an aspect of Alpine's Composer.  This gives the
25629 maximum width that auto-wrapped lines will have.  It's also the maximum
25630 width of lines justified using the <A HREF="h_compose_justify">^J
25631 Justify</A> command.  The normal default
25632 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25633 in order to
25634 prevent very long lines from being sent in outgoing mail.  When the mail
25635 is actually sent, trailing spaces will be stripped off of each line.
25638 <UL>   
25639 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25640 </UL><P>
25641 &lt;End of help on this topic&gt;
25642 </BODY>
25643 </HTML>
25644 ====== h_config_deadlets =====
25645 <HTML>
25646 <HEAD>
25647 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25648 </HEAD>
25649 <BODY>
25650 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25653 This option affects Alpine's behavior when you cancel a message being
25654 composed.  Alpine's usual behavior is to write the canceled message to
25655 a file named 
25656 <!--chtml if pinemode="os_windows"-->
25657 &quot;DEADLETR&quot;,
25658 <!--chtml else-->
25659 &quot;dead.letter&quot; in your home directory,
25660 <!--chtml endif-->
25661 overwriting any previous message.
25663 If you set this option to a value higher than one, then that many copies
25664 of dead letter files will be saved.
25665 For example, if you set this option to &quot;3&quot; then you may have
25666 files named
25667 <!--chtml if pinemode="os_windows"-->
25668 &quot;DEADLETR&quot;,
25669 &quot;DEADLETR2&quot;, and
25670 &quot;DEADLETR3&quot;.
25671 <!--chtml else-->
25672 &quot;dead.letter&quot;,
25673 &quot;dead.letter2&quot;, and
25674 &quot;dead.letter3&quot; in your home directory.
25675 <!--chtml endif-->
25676 In this example, the most recently cancelled message will be in
25677 <!--chtml if pinemode="os_windows"-->
25678 &quot;DEADLETR&quot;,
25679 <!--chtml else-->
25680 &quot;dead.letter&quot;,
25681 <!--chtml endif-->
25682 and the third most recently cancelled message will be in
25683 <!--chtml if pinemode="os_windows"-->
25684 &quot;DEADLETR3&quot;.
25685 <!--chtml else-->
25686 &quot;dead.letter3&quot;.
25687 <!--chtml endif-->
25688 The fourth most recently cancelled message will no longer be saved.
25691 If you set this option to zero, then NO record of canceled messages is
25692 maintained.
25694 If the feature
25695 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25696 is set, that overrides whatever you set for this option.
25697 If this option had existed at the time, then the Quell feature would not
25698 have been added, but it is still there for backwards compatibility.
25699 So, in order for this option to have the desired effect, make sure the
25700 Quell feature is turned off.
25703 <UL>   
25704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25705 </UL><P>
25706 &lt;End of help on this topic&gt;
25707 </BODY>
25708 </HTML>
25709 ====== h_config_maxremstream =====
25710 <HTML>
25711 <HEAD>
25712 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25713 </HEAD>
25714 <BODY>
25715 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25717 This option affects low-level behavior of Alpine.
25718 The default value for this option is <EM>3</EM>.
25719 If your INBOX is accessed using the IMAP protocol
25720 from an IMAP server, that connection is kept open throughout the
25721 duration of your Alpine session, independent of the value of this option.
25722 The same is true of any 
25723 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25724 you have defined.
25725 This option controls Alpine's behavior when connecting to remote IMAP folders
25726 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25727 It specifies the maximum number of remote IMAP connections (other than
25728 those mentioned above) that Alpine will use for accessing the rest of your
25729 folders.
25730 If you set this option to zero, you will turn off most remote connection
25731 re-use.
25732 It's difficult to understand exactly what this option does, and it is usually
25733 fine to leave it set to its default value.
25734 It is probably more likely that you will be interested in setting the
25735 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25736 instead of changing the value of this option.
25737 A slightly longer explanation of what is going on with this option
25738 is given in the next paragraphs.
25741 There are some time costs involved in opening and closing remote IMAP 
25742 folders, the main costs being the time you have to wait for the connection
25743 to the server and the time for the folder to open.
25744 Opening a folder may involve not only the time the server takes to do its
25745 processing but time that Alpine uses to do filtering.
25746 These times can vary widely.
25747 They depend on how loaded the server is, how large
25748 the folder being opened is, and how you set up filtering, among other things.
25749 Once Alpine has opened a connection to a particular folder, it will attempt
25750 to keep that connection open in case you use it again.
25751 In order to do this,
25752 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25753 this option) IMAP connections you have alloted for this purpose.
25755 For example, suppose the value of this option is set to &quot;2&quot;.
25756 If your INBOX is accessed on a remote server using the IMAP protocol, that
25757 doesn't count as one of the remote connections but it is always kept open.
25758 If you then open another IMAP folder, that would be your first
25759 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25760 If you open a third folder the second will be left open, in case you
25761 return to it.
25762 You won't be able to tell it has been left open.
25763 It will appear to be closed when you leave the folder but the connection
25764 will remain in the background.
25765 Now suppose you go back to the second folder (the first folder after the
25766 INBOX).
25767 A connection to that folder is still open so you won't have to wait
25768 for the startup time to open it.
25769 Meanwhile, the connection to the third folder will be left behind.
25770 Now, if you open a fourth folder, you will bump into the
25771 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25772 than INBOX and you have the option set to &quot;2&quot;.
25773 The connection that is being used for
25774 the third folder will be re-used for this new fourth folder.
25775 If you go back to the third folder after this, it is no longer already
25776 connected when you get there.
25777 You'll still save some time since Alpine will re-use the connection to the
25778 fourth folder and you have already logged in on that connection,
25779 but the folder will have to be re-opened from scratch.
25781 If a folder is large and the startup cost is dominated by the time it takes
25782 to open that folder or to run filters on it, then it will pay to make the
25783 value of this option large enough to keep it open.
25784 On the other hand, if you only revisit a handful of folders or if
25785 the folders are small, then it might
25786 make more sense to keep this number small so that the reconnect
25787 time (the time to start up a new connection and authenticate)
25788 is eliminated instead.
25790 You may also need to consider the impact on the server.
25791 On the surface, a larger number here may cause a larger impact on the
25792 server, since you will have more connections open to the server.
25793 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25794 associated with reopening a folder, but the <EM>server</EM> will be
25795 avoiding those costs as well.
25797 When twenty five minutes pass without any active use of an IMAP connection
25798 being saved for possible re-use, that connection will be shut down,
25801 <UL>   
25802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25803 </UL><P>
25804 &lt;End of help on this topic&gt;
25805 </BODY>
25806 </HTML>
25807 ====== h_config_permlocked =====
25808 <HTML>
25809 <HEAD>
25810 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25811 </HEAD>
25812 <BODY>
25813 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25815 This option affects low-level behavior of Alpine.
25816 There is no default value for this option.
25817 It is related to the options
25818 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25819 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25820 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25823 Note: changes made to this list take effect the next time you open a
25824 folder in the list.
25827 This is a list of folders that will be permanently kept open once they
25828 are first opened.
25829 The names in this list may be either the nickname of an Incoming folder
25830 or the full technical specification of a folder.
25831 The folders in this list need not be remote IMAP folders, they could usefully
25832 be local folders, as well.
25833 If a folder in the list is a newsgroup or is not accessed either locally
25834 or via IMAP, then the entry will be ignored.
25835 For example, folders accessed via NNTP or POP3 will not be kept open, since
25836 the way that new mail is found with those protocols involves closing and
25837 reopening the connection.
25839 Once a Stay Open folder has been opened, new-mail checking will continue
25840 to happen on that folder for the rest of the Alpine session.
25841 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25842 need to be added explicitly.
25844 Another difference that you may notice between a Stay Open folder and a
25845 non-Stay Open folder is which message is selected as the current message
25846 when you enter the folder index.
25847 Normally, the starting position for an incoming folder (which most Stay Open
25848 folders will likely be) is controlled by the
25849 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25850 However, if a folder is a Stay Open folder, when you re-enter the folder
25851 after the first time the current message will be the same as it was when
25852 you left the folder.
25853 An exception is made if you use the TAB command to get to the folder.
25854 In that case, the message number will be incremented by one from what it
25855 was when you left the folder.
25857 The above special behavior is thought to be useful.
25858 However, it is special and different from what you might at first expect.
25859 The feature
25860 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25861 may be used to turn off this special treatment.
25863 If the message that was current when you left the folder no longer exists,
25864 then the regular startup rule will be used instead.
25867 <UL>   
25868 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25869 </UL><P>
25870 &lt;End of help on this topic&gt;
25871 </BODY>
25872 </HTML>
25873 ====== h_config_viewer_overlap =====
25874 <html>
25875 <header>
25876 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25877 </header>
25878 <body>
25879 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25881 This option specifies an aspect of Alpine's Message Viewing screen.  When
25882 the space bar is used to page forward in a message, the number of lines
25883 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25884 bottom of the screen.  That is, if this was set to two lines, then the
25885 bottom two lines of the screen would be repeated on the top of the next
25886 screen.  The normal default value is "2".<p>
25887 <UL>   
25888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25889 </UL><P>
25890 &lt;End of help on this topic&gt;
25891 </body>
25892 </html>
25893 ====== h_config_scroll_margin =====
25894 <HTML>
25895 <HEAD>
25896 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25897 </HEAD>
25898 <BODY>
25899 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25901 This option controls when Alpine's line-by-line scrolling occurs.
25902 Typically, when a selected item is at the top or bottom screen edge
25903 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25904 displayed items are scrolled down or up by a single line.
25907 This option allows you to tell Alpine the number of lines from the top and
25908 bottom screen edge that line-by-line paging should occcur.  For example,
25909 setting this value to one (1) will cause Alpine to scroll the display
25910 vertically when you move to select an item on the display's top or
25911 bottom edge.
25914 By default, this variable is zero, indicating that scrolling happens
25915 when you move up or down to select an item immediately off the display's
25916 top or bottom edge.
25919 <UL>   
25920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25921 </UL><P>
25922 &lt;End of help on this topic&gt;
25923 </BODY>
25924 </HTML>
25925 ====== h_config_wordseps =====
25926 <HTML>
25927 <HEAD>
25928 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25929 </HEAD>
25930 <BODY>
25931 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25933 This option affects how a &quot;word&quot; is defined in the composer.
25934 The definition of a word is used when using the Forward Word and Backward
25935 Word commands in the composer, as well as when using the spell checker.
25936 Whitespace is always considered a word separator.
25937 Punctuation (like question marks, periods, commas, and so on) is always
25938 a word separator if it comes at the end of a word.
25939 By default, a punctuation character that is in the middle of a word does
25940 not break up that word as long as the character before and the character
25941 after it are both alphanumeric.
25942 If you add a character to this option it will be considered a
25943 word separator even when it occurs in the middle of an alphanumeric word.
25944 For example, if you want to skip through each part of an address instead
25945 of skipping the whole address at once you might want to include &quot;@&quot;
25946 and &quot;.&quot; in this list.
25947 If you want the word-skipper to stop on each part of a UNIX filename you
25948 could add &quot;/&quot; to the list.
25949 The equal sign and dash are other possibilities you might find helpful.
25951 <UL>   
25952 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25953 </UL><P>
25954 &lt;End of help on this topic&gt;
25955 </BODY>
25956 </HTML>
25957 ====== h_config_reply_indent_string =====
25958 <HTML>
25959 <HEAD>
25960 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25961 </HEAD>
25962 <BODY>
25963 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25965 This option specifies an aspect of Alpine's Reply command.
25966 When a message is replied to and the text of the message is included, the
25967 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25968 to each line indicating it is quoted text.
25969 (In case you haven't seen this before, &quot;string&quot; is a technical term
25970 that means chunk of text.)
25973 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25974 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25975 use one of the standard values,
25976 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25979 This option specifies a different value for that string.
25980 If you wish to use a string that begins or ends with a space,
25981 enclose the string in double quotes.
25984 Besides simple text, the prepended string can be based
25985 on the message being replied to.
25986 The following tokens are substituted for the message's corresponding value:
25988 <DL>
25989 <DT>_FROM_</DT>
25990 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25991 If the name is longer than six characters, only the first six characters are
25992 used.
25993 </DD>
25995 <DT>_NICK_</DT>
25996 <DD>This token gets replaced with the nickname of the message sender's
25997 address as found in your addressbook.
25998 If no addressbook entry is found,
25999 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
26000 If the nickname is longer than six characters, only the first six characters are
26001 used.
26002 </DD>
26004 <DT>_INIT_</DT>
26005 <DD>This token gets replaced with the initials of the sender of the message.
26006 </DD>
26008 </DL>
26010 NOTE: When the
26011 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
26012 feature is enabled, you are given the opportunity to edit the string, whether 
26013 it is the default or one automatically generated using the above tokens.
26015 If you change your <!--#echo var="VAR_reply-indent-string"-->
26016 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
26017 quoted text will not be flowed
26018 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
26019 when you reply.
26020 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
26021 set to the default value.
26023 <UL>   
26024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26025 </UL><P>
26026 &lt;End of help on this topic&gt;
26027 </BODY>
26028 </HTML>
26029 ====== h_config_quote_replace_string =====
26030 <HTML>
26031 <HEAD>
26032 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
26033 </HEAD>
26034 <BODY>
26035 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
26037 This option specifies what string to use as a quote when <b>viewing</b> a
26038 message.  The standard way of quoting messages when replying is the string
26039 &quot;&gt;&nbsp;&quot; (quote space).
26040 With this variable set, viewing a message will
26041 replace occurrences of 
26042 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
26043 This setting works best when
26044 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
26045 or the equivalent setting in your correspondents' mail programs
26046 is set to the default
26047 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
26048 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
26050 By default, this setting will only work on messages that are flowed, which is
26051 the default way of sending messages for many mail clients including
26052 Alpine.  Enable the feature
26053 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
26054 to also have quote-replacement performed on non-flowed messages.
26057 Setting this option will replace  &quot;&gt;&quot; and 
26058 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
26059 spaces. To preserve those spaces enclose the full string in double quotes.
26061 No padding to separate the text of the message from the quote string is
26062 added. This means that if you do not add trailing spaces to the value of
26063 this variable, text will be displayed right next to the quote string,
26064 which may be undesirable. This can be avoided by adding a new string
26065 separated by a space from your selection of quote string replacement. This
26066 last string will be used for padding. For example, setting this variable to 
26067 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
26068 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
26069 a space from the last quote string to make it more readable.
26071 One possible setting for this variable could be
26072 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
26073 would have the effect of indenting each level of quoting four spaces and
26074 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
26075 more discernible by setting colors for quoted text.
26077 Replying to or forwarding the viewed message will preserve the original
26078 formatting of the message, so quote-replacement will not be performed on
26079 messages that are being composed.
26081 <UL>   
26082 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26083 </UL><P>
26084 &lt;End of help on this topic&gt;
26085 </BODY>
26086 </HTML>
26087 ====== h_config_empty_hdr_msg =====
26088 <HTML>
26089 <HEAD>
26090 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
26091 </HEAD>
26092 <BODY>
26093 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
26095 When sending, if both the To and Cc fields are empty and you
26096 are sending the message to a Bcc,
26097 Alpine will put a special address in the To line.  The default value is:
26100 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
26103 The reason for this is to avoid embarrassment caused by some Internet
26104 mail transfer software that interprets a &quot;missing&quot;
26105 <SAMP>To:</SAMP> header as an error and replaces it with an
26106 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
26107 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
26108 Bcc.  You may change the part of this message that comes before the
26109 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
26110 variable to something else.
26113 The normal default is &quot;undisclosed-recipients&quot;.
26116 <UL>   
26117 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26118 </UL><P>
26119 &lt;End of help on this topic&gt;
26120 </BODY>
26121 </HTML>
26122 ====== h_config_status_msg_delay =====
26123 <HTML>
26124 <HEAD>
26125 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
26126 </HEAD>
26127 <BODY>
26128 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
26130 This option has evolved over time, causing the possible values to be
26131 counter-intuitive.
26132 Read carefully before you set this option.
26133 First we explain what the option does, then there is a longer discussion
26134 following that.
26136 If this is set to zero, the default value, it has <EM>no</EM> effect.
26137 Positive and negative values serve two similar, but different purposes.
26139 If it is set to a positive number, it causes the cursor to move to the
26140 status line whenever a status message is printed and pause there for this
26141 many seconds.
26142 It will probably only be useful if the 
26143 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
26144 also turned on.
26145 Setting this option to a positive number can only be used to
26146 <EM>increase</EM> the status message delay.
26147 This may be useful for Braille displays, or other non-traditional displays.
26149 If it is set to a negative number the interpretation is a bit complicated.
26150 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
26151 allow you to read important status messages.
26152 Of course, this may cause you to miss some important messages.
26153 If you see a message flash by but miss what it says you can use the
26154 Journal command from the MAIN MENU to read it.
26155 If you set this option to a negative value, the delay will be
26156 no more than one second less than the absolute value
26157 of the value you set.
26158 So if you set it to -1, the delay will be no more than zero seconds, no
26159 delay at all.
26160 If you set it to -2, the delay will be no more than 1 second.
26161 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
26162 If the delay that Alpine would have used by default is less than this delay,
26163 then the smaller delay set by Alpine will be used.
26164 Setting this option to a negative value can only reduce the amount of
26165 delay, never increase it.
26167 Here is a more detailed explanation.
26168 Status messages are the messages that show up spontaneously in the
26169 status message line, usually the third line from the bottom of the screen.
26170 By default, Alpine assigns each status message it produces a minimum
26171 display time.
26172 Some status messages have a minimum display time of zero.
26173 You can see an example of such a message by paging up in this help text
26174 until you reach the top of the screen.
26175 If you try to page past the top you will see the message
26177 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
26179 in the status line.
26180 If there is another more important use of the status message line this message
26181 might be replaced quickly, or it even might not be shown at all.
26182 However, if there is no reason to get rid of the message, it might stay
26183 there for several seconds while you read the help.
26184 An example where it is replaced immediately happens when you page up in
26185 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
26186 command right after paging up.
26187 The message will disappear immediately without causing a delay (unless you
26188 have set this option to a positive value) to allow you to type input for
26189 the &quot;WhereIs&quot; command.
26190 Since it isn't a very important message, Alpine has set its minimum display
26191 time to zero seconds.
26193 Other messages have minimum display times of three or more seconds.
26194 These are usually error messages that Alpine thinks you ought to see.
26195 For example, it might be a message about a failed Save or a failed folder open.
26196 It is often the case that this minimum display time won't delay you in
26197 any way because the status message line is not needed for another reason.
26198 However, there are times when Alpine has to delay what it is doing in
26199 order to display a status message for the minimum display time.
26200 This happens when a message is being displayed and Alpine wants to ask
26201 for input from the keyboard.
26202 For example, when you Save a message you use the status message line.
26203 You get a prompt there asking for the name of the folder to save to.
26204 If there is a status message being displayed that has not
26205 yet displayed for its minimum
26206 time Alpine will display that status message surrounded with the characters
26207 &gt; and &lt; to show you that it is delaying.
26208 That might happen, for example, if you tried to save to a folder that
26209 caused an error, then followed that immediately with another Save command.
26210 You might find yourself waiting for a status message like
26212 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
26214 to finish displaying for three seconds.
26215 If that is something you find happening to you frequently, you may use
26216 negative values of this option to decrease or eliminate that delay, at
26217 the risk of missing the message.
26219 <UL>   
26220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26221 </UL><P>
26222 &lt;End of help on this topic&gt;
26223 </BODY>
26224 </HTML>
26225 ====== h_config_active_msg_interval =====
26226 <HTML>
26227 <HEAD>
26228 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26229 </HEAD>
26230 <BODY>
26231 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26233 When Alpine is delayed for some reason it usually shows that
26234 something is happening with a small animated display in the status
26235 message line near the bottom of the screen.
26236 This option sets how frequently the characters (for example, a spinning bar)
26237 in the active status message lines are updated.
26238 At most, it can be set to be udpated 20 times per second. 
26241 Setting this value to zero will prevent display of the animations
26242 altogether.
26245 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26246 can be used to remove the randomness from this animated display.
26249 <UL>   
26250 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26251 </UL><P>
26252 &lt;End of help on this topic&gt;
26253 </BODY>
26254 </HTML>
26255 ====== h_config_mailchecknoncurr =====
26256 <HTML>
26257 <HEADER>
26258 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26259 </HEADER>
26260 <BODY>
26261 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26263 This option is closely related to the
26264 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26265 option, as well as the
26266 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26267 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26268 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26269 new-mail checking is disabled and this option will have no effect.
26271 Normally this option is set to zero, which means that the value used will be
26272 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26273 If you set this option to a value different from zero
26274 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26275 then that is the check interval that will be used
26276 for folders that are not the currently open folder or the INBOX.
26277 You may not even have any folders that are noncurrent and not the INBOX.
26278 If you do, it is likely that they are due to
26279 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26280 you have configured.
26281 This option also affects the rate of mail checking done on cached
26282 connections to folders you previously had open but are no longer actively
26283 using.
26284 You aren't expected to understand that last sentence, but if you are interested
26285 take a look at
26286 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26287 and the related options.
26289 <UL>   
26290 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26291 </UL><P>
26292 &lt;End of help on this topic&gt;
26293 </BODY>
26294 </HTML>
26295 ====== h_config_fifopath =====
26296 <HTML>
26297 <HEADER>
26298 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26299 </HEADER>
26300 <BODY>
26301 <H1>OPTION: NewMail FIFO Path</H1>
26303 This option is only available in UNIX Alpine.
26304 However, there is a very similar feature built in to PC-Alpine.
26305 In PC-Alpine's Config menu at the top of the screen
26306 is an option called &quot;New Mail Window&quot;.
26308 You may have Alpine create a FIFO special file (also called a named pipe) where
26309 it will send a one-line message each time a new message is received in
26310 the current folder, the INBOX, or any open
26311 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26312 To protect against two different Alpines both writing to the same FIFO, Alpine
26313 will only create the FIFO and write to it if it doesn't already exist.
26315 A possible way to use this option would be to have a separate window
26316 on your screen running the command
26318 <CENTER><SAMP>cat filename</SAMP></CENTER>
26320 where &quot;filename&quot; is the name of the file given for this option.
26321 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26322 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26323 You may be tempted to use &quot;tail -f filename&quot; to view the new
26324 mail log.
26325 However, the common implementations of the tail command will not do what you
26326 are hoping.
26328 The width of the messages produced for the FIFO may be altered with the
26329 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26331 On some systems, fifos may only be created in a local filesystem.
26332 In other words, they may not be in NFS filesystems.
26333 This requirement is not universal.
26334 If the system you are using supports it, it should work.
26335 (It is often the case that your home directory is in an NFS filesystem.
26336 If that is the case, you might try using a file in the &quot;/tmp&quot;
26337 filesystem, which is usually a local filesytem.)
26338 Even when it is possible to use an NFS-mounted filesystem as a place to name
26339 the fifo (for example, your home directory), it will still be the case that
26340 the reader (probably the &quot;cat&quot; command) and the
26341 writer (Alpine) of the fifo must be running on the same system.
26343 <UL>   
26344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26345 </UL><P>
26346 &lt;End of help on this topic&gt;
26347 </BODY>
26348 </HTML>
26349 ====== h_config_newmailwidth =====
26350 <HTML>
26351 <HEADER>
26352 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26353 </HEADER>
26354 <BODY>
26355 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26357 For UNIX Alpine, this option is only useful if you have turned on the
26358 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26359 That option causes new mail messages to be sent to a fifo file.
26360 Those messages will be 80 characters wide by default.
26361 You can change the width of those messages by changing this option.
26362 For example, if you are reading those messages in another window you might
26363 want to set this width to the width of that other window.
26365 If you are using PC-Alpine, it has an option in the Config menu to turn
26366 on the &quot;New Mail Window&quot;.
26367 This present option also controls the width of that window.
26369 <UL>   
26370 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26371 </UL><P>
26372 &lt;End of help on this topic&gt;
26373 </BODY>
26374 </HTML>
26375 ====== h_config_mailcheck =====
26376 <HTML>
26377 <HEADER>
26378 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26379 </HEADER>
26380 <BODY>
26381 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26383 This option specifies, in seconds,
26384 how often Alpine will check for new mail.
26385 If set to zero, new-mail checking is disabled.
26386 (You can always manually force a new-mail check by typing ^L (Ctrl-L), which is also the command to refresh the screen, or by typing the Next command when the
26387 current message is the last message of the folder.)
26388 There is a minimum value for this option, normally 15 seconds.
26389 The default value is normally 150 seconds.
26390 The higher you set this option, the easier it is on the server.
26392 There are some situations where automatic new-mail checking does not work.
26393 See the discussion about new-mail checking in
26394 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26396 The new-mail checking will not happen exactly at the frequency that you specify.
26397 For example, Alpine may elect to defer a non-INBOX mail check if you
26398 are busy typing.
26399 Or, it may check more frequently than you have specified if that is
26400 thought to be necessary to keep the server from closing the connection
26401 to the folder due to inactivity.
26402 If Alpine checks for new mail as a side effect of another command, it will reset
26403 the timer, so that new-mail checking may seem to happen irregularly instead of
26404 every X seconds like clockwork.
26406 If you are anxious to know about new mail as soon as possible, set the check
26407 interval low, and you'll know about the new mail by approximately
26408 that amount of time after it arrives.
26409 If you aren't so worried about knowing right away, set this option to a
26410 higher value.
26411 That will save the server some processing time and may save you some of
26412 the time you spend waiting for new-mail checks to happen if you are
26413 dealing with a slow server or slow network connection.
26415 If you suspect that new-mail checking is causing slow downs for you,
26416 you may want to look into the options
26417 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26418 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26419 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26420 which refine when mail checking is done.
26422 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26423 there is a minimum time
26424 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26425 between new-mail checks.
26426 Because of this minimum you may notice that new mail does not
26427 appear promptly when you expect it.
26428 The reason for this is to protect the server from over-zealous opening and
26429 closing of the Mail Drop folder, since that is a costly operation.
26431 <UL>   
26432 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26433 </UL><P>
26434 &lt;End of help on this topic&gt;
26435 </BODY>
26436 </HTML>
26437 ====== h_config_quell_checks_comp =====
26438 <HTML>
26439 <HEAD>
26440 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26441 </HEAD>
26442 <BODY>
26443 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26445 This option is closely related to the
26446 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26447 option, the
26448 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26449 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26451 If this option is set, then the normal new-mail checking that happens
26452 while you are composing will not happen for folders other than your
26453 INBOX (which depends on the setting
26454 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26456 You might want to set this option if you are experiencing delays while
26457 composing that you think might be related to the speed of the new-mail
26458 checks.
26460 Even with this option turned on, an occasional new-mail check may be done
26461 in order to keep the server from killing the connection to the folder.
26462 For example, IMAP servers may remove a connection to a folder if there
26463 has been no activity on the connection for 30 minutes or more.
26464 Instead of letting that happen, Alpine will check for new mail before the
26465 30 minutes is up even though you have turned on this feature to quell
26466 those checks.
26468 Besides new-mail checks, checkpoint operations on the folders
26469 will also be quelled when you set this option.
26470 The purpose of checkpointing is to write the changes to a folder out to
26471 disk periodically in order to avoid losing those changes when system or
26472 software problems occur.
26473 New-mail checking and checkpointing while you are not composing are not
26474 affected by this option.
26477 &lt;End of help on this topic&gt;
26478 </BODY>
26479 </HTML>
26480 ====== h_config_quell_checks_comp_inbox =====
26481 <HTML>
26482 <HEAD>
26483 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26484 </HEAD>
26485 <BODY>
26486 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26488 This option is closely related to the
26489 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26490 option, the
26491 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26492 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26494 If this option is set, then the normal new-mail checking that happens
26495 while you are composing will not happen for your INBOX.
26496 Checking of other folders is controlled in a similar way with the
26497 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26499 You might want to set this option if you are experiencing delays while
26500 composing that you think might be related to the speed of the new-mail
26501 checks.
26503 Even with this option turned on, an occasional new-mail check may be done
26504 in order to keep the server from killing the connection to the folder.
26505 For example, IMAP servers may remove a connection to a folder if there
26506 has been no activity on the connection for 30 minutes or more.
26507 Instead of letting that happen, Alpine will check for new mail before the
26508 30 minutes is up even though you have turned on this feature to quell
26509 those checks.
26511 Besides new-mail checks, checkpoint operations on the INBOX
26512 will also be quelled when you set this option.
26513 The purpose of checkpointing is to write the changes to a folder out to
26514 disk periodically in order to avoid losing those changes when system or
26515 software problems occur.
26516 New-mail checking and checkpointing while you are not composing are not
26517 affected by this option.
26519 &lt;End of help on this topic&gt;
26520 </BODY>
26521 </HTML>
26522 ====== h_config_maildropcheck =====
26523 <HTML>
26524 <HEADER>
26525 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26526 </HEADER>
26527 <BODY>
26528 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26530 New-mail checking for a
26531 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26532 mail checking for a regular folder.
26533 One of the differences is that the connection to the Mail Drop is not
26534 kept open and so the cost of checking
26535 (delay for you and additional load for the server) may be significant.
26536 Because of this additional cost we set a minimum time that
26537 must pass between checks.
26538 This minimum only applies to the automatic checking done by Alpine.
26539 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26540 at the end of a folder index, then the check is done right away.
26542 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26543 new-mail checks.
26544 You may want to set this minimum high in order to avoid experiencing some
26545 of the delays associated with the checks.
26546 Note that the time between checks is still controlled by the regular
26547 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26548 When Alpine is about to do an automatic check for new mail (because
26549 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26550 new-mail check
26551 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26552 the Mail Drop is checked for new mail as well.
26553 Therefore, it is only useful to set this option to a value that is higher
26554 than the <!--#echo var="VAR_mail-check-interval"-->.
26556 If this option is set to zero, automatic Mail Drop new-mail
26557 checking is disabled.
26558 There is a minimum value, normally 60 seconds.
26559 The default value is normally 60 seconds as well.
26560 This applies to the INBOX and to the currently open folder if that is
26561 different from the INBOX.
26564 <UL>   
26565 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26566 </UL><P>
26567 &lt;End of help on this topic&gt;
26568 </BODY>
26569 </HTML>
26570 ====== h_config_nntprange =====
26571 <HTML>
26572 <HEADER>
26573 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26574 </HEADER>
26575 <BODY>
26576 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26578 This option applies only to newsgroups accessed using the NNTP protocol.
26579 It does not, for example,
26580 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26583 When you open a connection to a News server using the NNTP protocol, you
26584 normally have access to all of the articles in each newsgroup.
26585 If a server keeps a large backlog of messages it may speed performance
26586 some to restrict attention to only the newer messages in a group.
26587 This option allows you to set how many article numbers should be checked
26588 when opening a newsgroup.
26589 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26590 of messages you ever want to see.
26591 For example, if you only ever wanted to look at the last 500 messages in each
26592 newsgroup you could set this option to 500.
26593 In actuality, it isn't quite that.
26594 Instead, for performance reasons, it specifies the range of article
26595 numbers to be checked, beginning
26596 with the highest numbered article and going backwards from there.
26597 If there are messages that have been canceled or deleted
26598 their article numbers are still counted as part of the range.
26600 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26601 numbers
26602 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26604 to be considered when reading a newsgroup.
26605 The number of messages that show up in your index will be less than or equal
26606 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26609 The purpose of this option is simply to speed up access when reading news.
26610 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26611 numbers, and can avoid downloading any information about the ignored articles.
26612 There is a cost you pay for this speedup.
26613 That cost is that there is no way for you to see those ignored articles.
26614 The articles that come before the range you specify are invisible to you and
26615 to Alpine, as if they did not exist at all.
26616 There is no way to see those messages using, for example, an unexclude command
26617 or something similar.
26618 The only way to see those articles is to set this option high enough (or
26619 set it to zero) and then to reopen the newsgroup.
26622 If this option is set to 0 (which is also the default),
26623 then the range is unlimited.
26624 This option applies globally to all NNTP servers and to all newsgroups
26625 on those servers.
26626 There is no way to set different values for different newsgroups or servers.
26629 <UL>   
26630 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26631 </UL><P>
26632 &lt;End of help on this topic&gt;
26633 </BODY>
26634 </HTML>
26635 ====== h_config_news_active =====
26636 <html>
26637 <header>
26638 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26639 </header>
26640 <body>
26641 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26643 This option tells Alpine where to look for the "active file" for newsgroups
26644 when accessing news locally, rather than via NNTP.  The default path is
26645 usually "/usr/lib/news/active".<p>
26646 <UL>   
26647 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26648 </UL><P>
26649 &lt;End of help on this topic&gt;
26650 </body>
26651 </html>
26652 ====== h_config_news_spool =====
26653 <html>
26654 <header>
26655 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26656 </header>
26657 <body>
26658 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26660 This option tells Alpine where to look for the "news spool" for newsgroups
26661 when accessing news locally, rather than via NNTP.  The default path is
26662 usually "/var/spool/news".<p>
26663 <UL>   
26664 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26665 </UL><P>
26666 &lt;End of help on this topic&gt;
26667 </body>
26668 </html>
26669 ====== h_config_image_viewer =====
26670 <html>
26671 <header>
26672 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26673 </header>
26674 <body>
26675 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26676 <body>
26677 This option specifies the program Alpine should call to view MIME
26678 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26679 no longer needed, but remains for backward compatibility.  The more
26680 general method for associating external printing and viewing programs with
26681 specific MIME data types is to use the system's (or your personal)
26682 "mailcap" configuration file.<p>
26683 <UL>   
26684 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26685 </UL><P>
26686 &lt;End of help on this topic&gt;
26687 </body>
26688 </html>
26689 ====== h_config_domain_name =====
26690 <HTML>
26691 <HEAD>
26692 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26693 </HEAD>
26694 <BODY>
26695 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26697 This option is used only if the 
26698 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26699 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26700 strips the hostname from your return (&quot;From&quot;) address and when 
26701 completing unqualified addresses that you enter into the composer.
26703 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26704 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26707 <!--chtml if pinemode="os_windows"-->
26708 <P>This option is not applicable to PC-Alpine.
26709 <!--chtml else-->
26711 <!--chtml endif-->
26712 <UL>
26713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26714 </UL>
26716 &lt;End of help on this topic&gt;
26717 </BODY>
26718 </HTML>
26719 ====== h_config_prune_date =====
26720 <HTML>
26721 <HEAD>
26722 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26723 </HEAD>
26724 <BODY>
26725 <H1>OPTION: Last-Time-Prune Question</H1>
26727 This value records the last time you were asked about deleting old
26728 sent-mail.
26729 It is set automatically by Alpine at the beginning of each month.
26730 In the past, if you wished to suppress the monthly sent-mail
26731 pruning feature, you could set this to a date in the future.
26732 This value is relative to the year 1900, so 
26733 to set this, for example, to October 2005, use 105.10.
26735 You can still do that if you wish, or you can use the
26736 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26737 a little more convenient to use.
26739 <UL>   
26740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26741 </UL><P>
26742 &lt;End of help on this topic&gt;
26743 </BODY>
26744 </HTML>
26745 ====== h_config_goto_default =====
26746 <HTML>
26747 <HEAD>
26748 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26749 </HEAD>
26750 <BODY>
26751 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26753 This value affects Alpine's behavior when you use the Goto command.
26754 Alpine's usual behavior has two parts.  If your current folder is
26755 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26756 default.  If the current folder is other than &quot;Inbox&quot;,
26757 &quot;Inbox&quot; is offered as the default.
26760 The available options include:
26762 <DL>
26764  <DT>folder-in-first-collection</DT>
26766  <DD> Alpine will offer the most recently visited folder in the default
26767 collection found in the &quot;Collection List&quot; screen as the default.
26768 </DD>
26770  <DT> inbox-or-folder-in-first-collection</DT>
26772  <DD> If the current folder is &quot;Inbox&quot;,
26773 Alpine will offer the most recently visited folder in the
26774 default collection found in the &quot;Collection List&quot; screen.
26775 If the current folder is other than &quot;Inbox&quot;,
26776 &quot;Inbox&quot; is offered as the default.
26777 </DD>
26779  <DT> inbox-or-folder-in-recent-collection</DT>
26781  <DD> This is Alpine's default behavior.
26782 If the current folder is &quot;Inbox&quot;,
26783 Alpine will offer the last open
26784 folder as the default.
26785 If the current folder is other than &quot;Inbox&quot;,
26786 &quot;Inbox&quot; is offered as the default.
26787 </DD>
26789  <DT> first-collection-with-inbox-default</DT>
26791  <DD> Instead of offering the most recently visited folder in the default
26792 collection, the default collection is offered but with &quot;Inbox&quot; as
26793 the default folder.
26794 If you type in a folder name it will be in the default collection.
26795 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26796 </DD>
26798  <DT> most-recent-folder</DT>
26800  <DD> The last accepted value simply causes the most recently opened
26801 folder to be offered as the default regardless of the currently opened
26802 folder.
26803 </DD>
26804 </DL>
26807 NOTE: The default while a newsgroup is open remains the same; the last
26808 open newsgroup.
26811 <UL>   
26812 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26813 </UL><P>
26814 &lt;End of help on this topic&gt;
26815 </BODY>
26816 </HTML>
26817 ====== h_config_thread_lastreply_char =====
26818 <HTML>
26819 <HEAD>
26820 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26821 </HEAD>
26822 <BODY>
26823 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26825 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26826 INDEX display when using a
26827 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26828 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26829 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26830 The value of this option is a single character.
26831 This character is used instead of the vertical line character when there are
26832 no more replies directly to the parent of the current message.
26833 It can be used to &quot;round-off&quot; the bottom of the vertical line
26834 by setting it to a character such as a backslash (&#92;) or
26835 a backquote (&#96;).
26836 The default value of this option is the backslash character (&#92;).
26837 This option may not be set to the Empty Value.
26838 In that case, the default will be used instead.
26841 <UL>   
26842 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26843 </UL><P>
26844 &lt;End of help on this topic&gt;
26845 </BODY>
26846 </HTML>
26847 ====== h_config_thread_indicator_char =====
26848 <HTML>
26849 <HEAD>
26850 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26851 </HEAD>
26852 <BODY>
26853 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26855 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26856 INDEX display when using a
26857 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26858 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26859 The value of this option is a single character.
26860 This character is used to indicate that part of a thread (a conversation) is
26861 hidden beneath a message.
26862 The message could be expanded
26863 if desired with the &quot;/&quot; Collapse/Expand command.
26864 By default, the value of this option is the greater than sign (&gt;).
26866 If this option is set to the Empty Value, then the column (and the following
26867 blank column) will be deleted from the display.
26870 This option is closely related to the
26871 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26872 Another similar option that affects the thread display is the
26873 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26876 <UL>   
26877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26878 </UL><P>
26879 &lt;End of help on this topic&gt;
26880 </BODY>
26881 </HTML>
26882 ====== h_config_thread_exp_char =====
26883 <HTML>
26884 <HEAD>
26885 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26886 </HEAD>
26887 <BODY>
26888 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26890 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26891 INDEX display when using a
26892 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26893 than &quot;none&quot;.
26894 The value of this option is a single character.
26895 This character is used to indicate that part of a thread has been expanded
26896 and could be collapsed if desired with
26897 the &quot;/&quot; Collapse/Expand command.
26898 By default, the value of this option is a dot (.).
26900 If this option is set to the Empty Value, then the column (and the following
26901 blank column) will be deleted from the display.
26904 This option is closely related to the
26905 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26906 Another similar option that affects the thread display is the
26907 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26910 <UL>   
26911 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26912 </UL><P>
26913 &lt;End of help on this topic&gt;
26914 </BODY>
26915 </HTML>
26916 ====== h_config_thread_index_style =====
26917 <HTML>
26918 <HEAD>
26919 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26920 </HEAD>
26921 <BODY>
26922 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26924 When a folder is sorted by Threads or OrderedSubject,
26925 this option will affect the INDEX displays.
26928 The possible values for this option are:
26930 <DL>
26931 <DT>regular-index-with-expanded-threads</DT>
26932 <DD>This is the default display.
26933 If the configuration option
26934 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26935 is set to something other than &quot;none&quot;, then this setting
26936 will cause Alpine to start off with a MESSAGE INDEX with all of
26937 the threads expanded.
26938 That is, each message will have a line in the MESSAGE INDEX display.
26939 The Collapse/Expand command (/) may be used to manually collapse or
26940 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26942 This setting affects the display when the folder is first threaded.
26943 The collapsed state may also be re-initialized by re-sorting the folder manually
26944 using the SortIndex command ($).
26945 After re-sorting the threads will once again all be expanded, even if you
26946 have previously collapsed some of them.
26948 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26949 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26950 in a different order.
26951 </DD>
26953 <DT>regular-index-with-collapsed-threads</DT>
26954 <DD>If the configuration option
26955 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26956 is set to something other than &quot;none&quot;, then this setting
26957 will cause Alpine to start out with all of the threads collapsed instead of
26958 starting out with all of the threads expanded.
26959 The Collapse/Expand command (/) may be used to manually collapse or
26960 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26962 This setting affects the display when the folder is first threaded.
26963 The collapsed state may also be re-initialized by re-sorting the folder manually
26964 using the SortIndex command ($).
26965 After re-sorting the threads will once again all be collapsed, even if you
26966 have previously expanded some of them.
26967 </DD>
26969 <DT>separate-index-screen-always</DT>
26970 <DD>With this setting and the next, you will see an index of threads
26971 instead of an
26972 index of messages, provided you have sorted by Threads or OrderedSubject.
26974 The THREAD INDEX contains a '*' in the first column if any message in the thread
26975 is marked Important.
26976 If not, it contains a '+' if any message in the thread is to you.
26977 The second column is blank. The third column contains a 'D' if all of the
26978 messages in the thread are deleted.
26979 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26981 When you view a particular thread from the THREAD INDEX you will be
26982 in the MESSAGE INDEX display
26983 but the index will only contain messages from the thread you are viewing.
26984 </DD>
26986 <DT>separate-index-screen-except-for-single-messages</DT>
26987 <DD>This is very similar to the option above.
26988 When you are in the THREAD INDEX, one of the available commands
26989 is &quot;ViewThd&quot;.
26990 With the setting &quot;separate-index-screen-always&quot; (the option above)
26991 when you view a particular thread you will be in the
26992 MESSAGE INDEX display and the index will only contain messages from
26993 the thread you are viewing.
26994 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26995 will be an index with only one message in it.
26996 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26997 setting instead, then that index that contains a single message
26998 will be skipped and you will go directly from the THREAD INDEX into the
26999 MESSAGE TEXT screen.
27000 </DD>
27002 </DL>
27005 <UL>   
27006 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27007 </UL><P>
27008 &lt;End of help on this topic&gt;
27009 </BODY>
27010 </HTML>
27011 ====== h_config_thread_disp_style =====
27012 <HTML>
27013 <HEAD>
27014 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
27015 </HEAD>
27016 <BODY>
27017 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
27019 When a folder is sorted by Threads or OrderedSubject,
27020 this option will affect the MESSAGE INDEX display.
27021 By default, Alpine will display the MESSAGE INDEX in the
27022 &quot;show-thread-structure&quot; style if a folder is sorted
27023 by Threads or OrderedSubject.
27026 The possible values for this option are:
27028 <DL>
27029 <DT>none</DT>
27030 <DD>Regular index display.
27031 The same index line as would be displayed without threading is used.
27032 The only difference will be in the order of the messages.
27033 </DD>
27035 <DT>show-thread-structure</DT>
27036 <DD>Threaded Subjects will be indented and vertical bars and horizontal
27037 lines will be added to make it easier to see the relationships among
27038 the messages in a thread (a conversation).
27039 </DD>
27041 <DT>mutt-like</DT>
27042 <DD>This is the same as the option above except that the Subject
27043 is suppressed (is blank) if it matches the previous Subject in the thread.
27044 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
27045 Here is an example of what a mutt-like index might look like.
27046 In this example, the first column represents the message number, the
27047 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
27048 is set to &quot;regular-index-with-expanded-threads&quot;, and the
27049 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
27050 is set to a backslash:
27051 <PRE>
27052 &nbsp;&nbsp;&nbsp;1    Some topic
27053 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
27054 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
27055 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
27056 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
27057 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
27058 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
27059 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
27060 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
27061 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
27062 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
27063 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
27064 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
27065 &nbsp;&nbsp;&nbsp;14    Next topic
27066 </PRE>
27067 </DD>
27069 <DT>indent-subject-1</DT>
27070 <DD>Threaded Subjects will be indented one space per level of the conversation.
27071 The bars and lines that show up in the show-thread-structure display will
27072 not be there with this style.
27073 </DD>
27075 <DT>indent-subject-2</DT>
27076 <DD>Same as above but indent two spaces per level instead of one space.
27077 </DD>
27079 <DT>indent-from-1</DT>
27080 <DD>Similar to indent-subject-1, except that instead of indenting the
27081 Subject field one space the From field of a thread will be indented one
27082 space per level of the conversation.
27083 </DD>
27085 <DT>indent-from-2</DT>
27086 <DD>Same as above but indent two spaces per level instead of one space.
27087 </DD>
27089 <DT>show-structure-in-from</DT>
27090 <DD>The structure of the thread is illustrated with indenting, vertical bars,
27091 and horizontal lines just like with the show-thread-structure option, but
27092 the From field is used to show the relationships instead of the Subject field. 
27093 </DD>
27095 </DL>
27098 <UL>   
27099 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27100 </UL><P>
27101 &lt;End of help on this topic&gt;
27102 </BODY>
27103 </HTML>
27104 ====== h_config_pruning_rule =====
27105 <HTML>
27106 <HEAD>
27107 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
27108 </HEAD>
27109 <BODY>
27110 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
27112 By default, Alpine will ask at the beginning of each month whether or not
27113 you want to rename your sent-mail folder to a name like sent-mail-month-year.
27114 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
27115 change the format of the folder to sent-mail-yyyy-mm.)
27116 It will also ask whether you would like to delete old sent-mail folders.
27117 If you have defined
27118 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
27120 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
27121 Alpine will also ask about pruning those folders.
27124 With this option you may provide an automatic answer to these questions.
27125 The default value is to ask you what you'd like to do.
27128 The six possible values for this option are:
27130 <DL>
27131 <DT>ask about rename, ask about deleting</DT>
27132 <DD>This is the default.
27133 Alpine will ask whether you want to rename the folders and whether you
27134 want to delete each of the old folders.
27135 </DD>
27137 <DT>ask about rename, don't delete</DT>
27138 <DD>Alpine will ask whether you want to rename the folders, but won't
27139 ask about or delete old folders.
27140 </DD>
27142 <DT>always rename, ask about deleting</DT>
27143 <DD>This means you want to always answer yes and have Alpine automatically
27144 rename the folder if possible.
27145 You will also be asked about deleting old folders.
27146 </DD>
27148 <DT>always rename, don't delete</DT>
27149 <DD>This means you want to always answer yes and have Alpine automatically
27150 rename the folder if possible.
27151 There will be no deleting of old folders.
27152 </DD>
27154 <DT>don't rename, ask about deleting</DT>
27155 <DD>This means you want to always answer no.
27156 Alpine will not rename the folder.
27157 You will be asked about deleting old folders.
27158 </DD>
27160 <DT>don't rename, don't delete</DT>
27161 <DD>This means you want to always answer no.
27162 Alpine will not rename the folder.
27163 There will be no deleting of old folders, either.
27164 </DD>
27165 </DL>
27168 <UL>   
27169 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27170 </UL><P>
27171 &lt;End of help on this topic&gt;
27172 </BODY>
27173 </HTML>
27174 ====== h_config_reopen_rule =====
27175 <HTML>
27176 <HEAD>
27177 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
27178 </HEAD>
27179 <BODY>
27180 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
27182 Alpine normally checks for new mail in the currently open folder
27183 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
27186 There are some situations where automatic new-mail checking does not work.
27187 For example, if a mail folder is opened using the POP protocol or a newsgroup
27188 is being read using the NNTP protocol, then new-mail checking is disabled.
27191 It may be possible to check for new mail in these cases by reopening the
27192 folder.
27193 Alpine does not do this for you automatically, but you may do the commands
27194 manually to cause this to happen.
27195 You reopen by going back to the folder list screen from the message
27196 index screen with the &quot;&lt;&quot; command,
27197 and then going back into the message index screen with
27198 the &quot;&gt;&quot; command.
27199 (Actually, any method you would normally use to open a folder will work the
27200 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
27201 For example, the GoTo Folder command will work, or you may use L to go to the
27202 Folder List screen and Carriage Return to reopen the folder.)
27205 There are some cases where Alpine knows that reopening the folder should
27206 be useful as a way to discover new mail.
27207 At the time of this writing, connections made using the POP protocol,
27208 news reading using the NNTP protocol, local news reading, and local
27209 ReadOnly folders that are in the traditional UNIX or the MMDF format all
27210 fall into this category.
27211 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
27212 has no way of knowing, so it might also just be an exercise in futility.
27213 All remote, ReadOnly folders other than those listed just above fall into this
27214 category.
27215 The setting of this option together with the type of folder
27216 controls how Alpine will react to the apparent attempt to reopen a folder.
27219 If you don't reopen, then you will just be back in
27220 the message index with no change.
27221 You left the index and came back, but the folder remained &quot;open&quot;
27222 the whole time.
27223 However, if you do reopen the folder, the folder is closed and then reopened.
27224 In this case, the current state of the open folder is lost.
27225 The New status, Important and Answered flags,
27226 selected state, Zoom state, collapsed or expanded state of threads,
27227 current message number,
27228 and any other temporary state is all lost when the reopen happens.
27229 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27232 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27233 several places.
27234 That really implies the case where Alpine knows it is a good way to discover
27235 new mail, which is more than just POP and NNTP, but POP and NNTP are
27236 the cases of most interest.
27237 This option probably has more possible values than it deserves. They are:
27239 <DL>
27240 <DT>Always reopen</DT>
27241 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27242 whenever you type a command that implies a reopen, regardless of the
27243 access method.
27244 In other words, it is assumed you would always answer Yes if asked
27245 about reopening.
27246 </DD>
27248 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27249 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27250 will ask you whether to reopen other remote folders,
27251 with a default answer of Yes.
27252 </DD>
27254 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27255 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27256 will ask you whether to reopen other remote folders,
27257 with a default answer of No.
27258 </DD>
27260 <DT>Yes for POP/NNTP, No for other remote</DT>
27261 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27262 will assume a No answer for all other remote folders.
27263 </DD>
27265 <DT>Always ask [Yes]</DT>
27266 <DD>Alpine will not differentiate based on access method.
27267 It will always ask for all remote folders, with a default answer of Yes.
27268 </DD>
27270 <DT>Always ask [No]</DT>
27271 <DD>Alpine will not differentiate based on access method.
27272 It will always ask for all remote folders, with a default answer of No.
27273 </DD>
27275 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27276 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27277 of Yes.
27278 It will never attempt to reopen other remote folders.
27279 </DD>
27281 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27282 <DD>This is the default.
27283 Alpine will ask if the access method is POP or NNTP, with a default answer
27284 of No.
27285 It will never attempt to reopen other remote folders.
27286 </DD>
27288 <DT>Never reopen</DT>
27289 <DD>Alpine will never attempt to reopen already open folders.
27290 </DD>
27291 </DL>
27294 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27295 any of the other situations where it is likely that reopening is a good way
27296 to discover new mail.
27299 There is an alternative that may be of useful in some situations.
27300 Instead of manually checking for new mail you can set up a
27301 <A HREF="h_maildrop">Mail Drop</A>
27302 and automatically check for new mail.
27305 <UL>   
27306 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27307 </UL><P>
27308 &lt;End of help on this topic&gt;
27309 </BODY>
27310 </HTML>
27311 ====== h_config_inc_startup =====
27312 <HTML>
27313 <HEAD>
27314 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27315 </HEAD>
27316 <BODY>
27317 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27319 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27320 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27321 It determines which message will be the <EM>current message</EM> when
27322 the folder is first opened.
27323 The default value is &quot;first-unseen&quot;.
27326 The seven possible values for this option are:
27328 <DL>
27329 <DT>first-unseen</DT>
27330 <DD>The current message is set to the first
27331 unseen message that has not been marked deleted, or the last message if
27332 all of the messages have been seen previously.
27333 Messages which have not been seen or which have been seen but re-marked
27334 as New are considered unseen messages.
27335 See the note at the bottom of this help about newsgroups.
27336 </DD>
27338 <DT>first-recent</DT>
27339 <DD>Similar to the default, but rather than starting on the first
27340 unseen message Alpine starts on the first <EM>recent</EM> message.
27341 A message is recent if it arrived since the last time the folder was
27342 open.  This value causes the current message to be set to the first
27343 recent message if there is one, otherwise to the last
27344 message in the folder.
27345 </DD>
27347 <DT>first-important</DT>
27348 <DD>This will result in the current message being set to the first
27349 message marked Important (but not Deleted).
27350 If no messages are marked Important, then it will be the last message.
27351 Messages are marked Important by <EM>you</EM>, not by the sender, using
27353 <A HREF="h_common_flag">Flag command</A>.
27354 Or they may be marked Important by an Alpine
27355 <A HREF="h_mainhelp_filtering">Filter</A>
27356 that you have set up.
27357 </DD>
27359 <DT>first-important-or-unseen</DT>
27360 <DD>This selects the first of the first unseen and the first important
27361 messages.
27362 </DD>
27364 <DT>first-important-or-recent</DT>
27365 <DD>This selects the first of the first recent and the first important
27366 messages.
27367 </DD>
27369 <DT>first</DT>
27370 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27371 If all messages are deleted you start on the last message.
27372 </DD>
27374 <DT>last</DT>
27375 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27376 If all messages are deleted you start on the last message.
27377 </DD>
27378 </DL>
27381 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27382 &quot;first-recent&quot; are the same and are affected by whether or not the
27383 feature 
27384 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27385 is turned on. 
27386 Also, there is no permanent storage in news for an Important flag.
27387 This means that no messages will be marked Important when a newsgroup is
27388 first opened.
27391 <UL>   
27392 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27393 </UL><P>
27394 &lt;End of help on this topic&gt;
27395 </BODY>
27396 </HTML>
27397 ====== h_config_browser =====
27398 <HTML>
27399 <HEAD>
27400 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27401 </HEAD>
27402 <BODY>
27403 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27404 <!--chtml if pinemode="os_windows"-->
27405 PC-Alpine users do not need to enter anything here, unless:<UL>
27406 <LI> they want to override, for use with Alpine, the application defined
27407 in the Windows operating system for handling URLs; or
27408 <LI> they are (planning on) using the same configuration file with 
27409 Unix Alpine.
27410 </UL>
27412 Note that if using a viewer that has a space in its path, you should
27413 use the DOS name for that directory or file. Example:
27414 <PRE>
27415 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27416 </PRE>
27417 <HR><P>
27418 <!--chtml endif-->
27419 This option affects Alpine's handling of URLs that are found in 
27420 messages you read.  Normally, only URLs Alpine can handle directly
27421 are automatically offered for selection in the &quot;Message
27422 Text&quot; screen.  When one or more applications
27423 capable of deciphering URLs on their command line are added here, Alpine
27424 will choose the first available to display URLs it cannot handle directly.
27425 A viewer's availability is based on its being specified with a <B>full
27426 directory path</B> and the evaluation of any optionally supplied
27427 parameters described below.
27430 Additionally, to support various connection methods and applications, each
27431 entry in this list can optionally begin with one or more of
27432 the following special tokens.  The allowed tokens include:
27435 <DL>
27436 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27437 <DD>
27438 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27439 evaluate a viewer's availability.  The command specified by the test
27440 string is run and if its resulting exit status is non-zero, Alpine will
27441 not consider the associated viewer for use.
27442 </DD>
27444 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27445 <DD>
27446 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27447 URL schemes that are to be used with the associated viewer.  This is
27448 the way to configure Alpine to recognize URLs other than the built-in set.
27450 It can also be used to override Alpine's built-in handlers.
27451 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27452 and Alpine would use (provided it passed all other criteria) the associated
27453 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27455 </DD>
27456 </DL>
27459 By default, Alpine will simply append a space character followed by the
27460 selected URL prior to launching the command in your specified SHELL.  You can
27461 optionally specify where in the command the selected URL should appear
27462 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27463 will be replaced with the selected URL before the command is handed
27464 to the shell.  If such replacement occurs, the default appending of the
27465 selected URL does not take place.
27468 NOTE: If the viewer you specify has any command-line arguments,
27469 including the &quot;_URL_&quot; token, you will need to add a
27470 double-quote character before the command path and after the last
27471 argument (see the &quot;lynx&quot; example below).
27474 So, here are some example entries:
27475 <PRE>
27476 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27477               &quot;/usr/local/bin/lynx _URL_&quot;
27478               C:&#92;BIN&#92;NETSCAPE.BAT
27479 </PRE>
27481 This example shows that for the first viewer in the list to be used
27482 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27483 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27484 If neither condition is met,
27485 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27486 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27487 If the path to &quot;lynx&quot; is invalid,
27488 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27489 Note that the last
27490 entry is a DOS/Windows path.  This is one way to support Alpine running
27491 on more than one architecture with the same configuration file.<P>
27493 <!--chtml if pinemode="os_windows"-->
27494 <!--chtml else-->
27495 Note that depending on the type of browser used and the method of 
27496 its invocation (such as whether it will open in a separate window) from
27497 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27498 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27499 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27500 In other words, launching the browser from Alpine may make Alpine 
27501 &quot;disappear&quot; (although it is still &quot;running&quot;)
27502 until you close the browser again.<P>  
27503 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27504 environment: for advanced users and  systems administrators</A>
27505 </UL>
27506 <!--chtml endif-->
27507 <P>If you are unsure what browsers are available on your system or how to 
27508 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27509 local computing support staff.
27510 <P><UL>
27511 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27512 </UL>
27514 &lt;End of help on this topic&gt;
27515 </BODY>
27516 </HTML>
27517 ====== h_config_history =====
27518 <HTML>
27519 <HEAD>
27520 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
27521 </HEAD>
27522 <BODY>
27523 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
27525 This option allows you to input a list of directories that Alpine will offer 
27526 for you to use when you are saving or exporting attachments. This is useful
27527 when navigating to specific directories becomes too tedious, or when you 
27528 need to do this on a daily basis, and want Alpine to remember this on a 
27529 permanent basis.
27531 The list of directories saved here can be accessed using the ^Y and ^V commands
27532 in the save prompt for attachments, or the export command.
27534 <P><UL>
27535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27536 </UL>
27538 &lt;End of help on this topic&gt;
27539 </BODY>
27540 </HTML>
27541 ====== h_config_browser_xterm =====
27542 <HTML>
27543 <HEAD>
27544 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27545 </HEAD>
27546 <BODY>
27547 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27548 environment: for advanced users and  systems administrators</H1>
27549 If you are using Alpine with an X-terminal (emulator) and want to define an 
27550 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27551 you may want to do so in a manner that causes any <B>already</B> 
27552 invoked viewer application to be used for viewing URLs you select from Alpine 
27553 messages, and a <B>new</B> URL-viewer process to be 
27554 started <B>only</B> if the same application has <B>not already</B> 
27555 been launched -- for one reason, to avoid file-locking contentions among 
27556 multiple invocations of the same URL-viewer application.  
27557 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27558 option does not do this.)  A method of doing that would be:<OL>
27559 <LI> use 
27560 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27561 check (using commands appropriate for your Unix shell
27562 in place of <VAR>test-string</VAR>) for the presence of a 
27563 lockfile created by the URL-viewer application -- which implies that the 
27564 application is already running, though this is not foolproof. 
27565 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27566 application with its appropriate command line option(s) to 
27567 show the URL selected from the Alpine message in an already open window of 
27568 that application, or perhaps in a new window of that application.  
27570 <LI> In the 
27571 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27572 application without those command line options, but this time using the 
27573 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27574 is defined.
27575 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27576 windows environment (for instance, using VT-100 terminal emulation), you 
27577 may wish to specify a non-X windows URL-viewer application such as Lynx
27578 as the last entry.
27579 </OL><BR>
27580 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27581 the command shell, the URL-viewer application(s), and possibly the specific 
27582 version of the latter, you are using.  
27584 Relevant command 
27585 line options for the Netscape browser for showing URLs (selected from Alpine) 
27586 when Netscape is already running are discussed in the document
27587 &quot;Remote Control of UNIX Netscape&quot; 
27588 found at the URL (as of 12 Aug. 1998):
27591 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27593 <P>(If the URL-viewer application is 
27594 <B>not</B> running on the same host as Alpine, but being launched from an 
27595 applications server, you may not be able to use the command line options for 
27596 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27598 <!--chtml if this-method="shown-to-work"-->
27599 An example using the Korn shell and the Netscape browser (first entry wrapped 
27600 because of its length, but should all appear on one line):
27602 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27604 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27605               &quot;/usr/local/bin/lynx '_URL_'&quot;
27607 <!--chtml endif-->
27609 <UL>   
27610 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27611 </UL><P>
27612 &lt;End of help on this topic&gt;
27613 </BODY>
27614 </HTML>
27615 ====== h_config_enable_full_hdr =====
27616 <HTML>
27617 <HEAD>
27618 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27619 </HEAD>
27620 <BODY>
27621 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27623 This feature enables the &quot;H Full Headers&quot; command which toggles between
27624 the display of all headers in the message and the normal edited view of
27625 headers.  The Full Header command also controls which headers are included
27626 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27627 Full Header mode will respect the
27628 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27629 feature setting.)
27631 If Full Header mode is turned on and you Forward a message, you will
27632 be asked if you'd like to forward the message as an attachment, as opposed
27633 to including the text of the message in the body of your new message.
27635 If you have also turned on the
27636 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27637 option then the Full Headers command actually rotates through three states
27638 instead of just two.
27639 The first is the normal view with long quotes suppressed.
27640 The second is the normal view but with the long quotes included.
27641 The last enables the display of all headers in the message.
27642 When using Export, Pipe, Print, Forward, or Reply the quotes are
27643 never suppressed, so the first two states are identical.
27645 Normally, the Header Mode will reset
27646 to the default behavior when moving to a new message.
27647 The mode can be made to persist from message to message by setting the feature
27648 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27650 <UL>   
27651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27652 </UL><P>
27653 &lt;End of help on this topic&gt;
27654 </BODY>
27655 </HTML>
27656 ====== h_config_enable_full_hdr_and_text =====
27657 <HTML>
27658 <HEAD>
27659 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27660 </HEAD>
27661 <BODY>
27662 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27664 This feature affects how the &quot;H Full Headers&quot; command displays
27665 message text.  If set, the raw message text will be displayed.  This
27666 especially affects MIME formatted email, where the entire MIME format
27667 will be displayed.  This feature similarly affects how messages are
27668 included for the Export, Pipe, Print, Forward, and Reply functions.
27670 When viewing a raw message that has attachments with this feature set,
27671 you will not be able to view attachments without first leaving full 
27672 headers mode.  This is because MIME parsing is not done on the raw message.
27674 <UL>   
27675 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27676 </UL><P>
27677 &lt;End of help on this topic&gt;
27678 </BODY>
27679 </HTML>
27680 ====== h_config_enable_pipe =====
27681 <HTML>
27682 <HEAD>
27683 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27684 </HEAD>
27685 <BODY>
27686 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27688 This feature enables the "| Pipe" command that sends the current message
27689 to the specified command for external processing.
27692 A short description of how the pipe command works is given
27693 <A HREF="h_pipe_command">here</A>.
27696 <UL>   
27697 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27698 </UL><P>
27699 &lt;End of help on this topic&gt;
27700 </BODY>
27701 </HTML>
27702 ====== h_config_quell_full_hdr_reset =====
27703 <HTML>
27704 <HEAD>
27705 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27706 </HEAD>
27707 <BODY>
27708 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27710 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27711 normally resets to the default state when switching to a new message.
27712 For example, if you've used the &quot;H&quot; command to turn on Full
27713 Headers for a message you are viewing, and then you type the Next command
27714 to look at the next message, the full headers will no longer be shown.
27715 Setting this feature disables that reset.
27716 Instead, the Header Mode remains the same from message to message.
27719 The presence or absence of the HdrMode command is determined by the
27720 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27721 Feature-List option.
27723 <UL>   
27724 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27725 </UL><P>
27726 &lt;End of help on this topic&gt;
27727 </BODY>
27728 </HTML>
27729 ====== h_config_enable_tab_complete =====
27730 <HTML>
27731 <HEAD>
27732 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27733 </HEAD>
27734 <BODY>
27735 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27737 This feature enables the TAB key when at a prompt for a filename. In this
27738 case, TAB will cause the partial name already entered to be automatically
27739 completed, provided the partial name is unambiguous.
27740 This feature is on by default.
27742 Similarly, this feature also enables TAB completion of address book
27743 nicknames when at a prompt for a nickname,
27744 or when typing in an address field in the composer.
27746 &lt;End of help on this topic&gt;
27747 </BODY>
27748 </HTML>
27749 ====== h_config_quit_wo_confirm =====
27750 <HTML>
27751 <HEAD>
27752 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27753 </HEAD>
27754 <BODY>
27755 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27757 This feature controls whether or not Alpine will ask for confirmation when a
27758 Quit command is received.
27760 &lt;End of help on this topic&gt;
27761 </BODY>
27762 </HTML>
27763 ====== h_config_quote_replace_noflow =====
27764 <HTML>
27765 <HEAD>
27766 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27767 </HEAD>
27768 <BODY>
27769 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27771 This feature, which is only active when
27772 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27773 also set,
27774 enables quote-replacement on non-flowed messages.  It is off
27775 by default because a non-flowed message is more dependent on its format,
27776 and thus quote-replacement may cause less-than-pleasing results.
27777 Setting this feature will cause quote-replacement similar to that of flowed
27778 messages, but with the added possibility of long lines being wrapped
27779 into new lines if the Quote-Replacement-String is longer than the string
27780 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27782 &lt;End of help on this topic&gt;
27783 </BODY>
27784 </HTML>
27785 ====== h_config_enable_jump =====
27786 <HTML>
27787 <HEAD>
27788 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27789 </HEAD>
27790 <BODY>
27791 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27793 When this feature is set you may enter a number (followed by RETURN)
27794 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27795 screens.  In other words, it obviates the need for typing the "J" for the
27796 Jump command.
27798 &lt;End of help on this topic&gt;
27799 </BODY>
27800 </HTML>
27801 ====== h_config_enable_alt_ed =====
27802 <HTML>
27803 <HEAD>
27804 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27805 </HEAD>
27806 <BODY>
27807 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27809 If this feature is set (the default), and the 
27810 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27811 <B>is not</B> set, entering
27812 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27813 for the name of the editor you would like to use.
27815 If the environment variable $EDITOR is set, its value will be offered as
27816 a default.
27818 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27819 <B>is</B> set, the ^_ key will activate the specified
27820 editor without prompting, in which case it is not necessary to
27821 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27823 <UL>   
27824 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27825 </UL><P>
27826 &lt;End of help on this topic&gt;
27827 </BODY>
27828 </HTML>
27829 ====== h_config_alt_ed_now =====
27830 <HTML>
27831 <HEAD>
27832 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27833 </HEAD>
27834 <BODY>
27835 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27837 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27838 variable are both set, Alpine will
27839 automatically activate the specified editor when the cursor is moved from
27840 the header of the message being composed into the message text.  For
27841 replies, the alternate editor will be activated immediately.  If this
27842 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27843 automatically ask for the name of an alternate editor when the cursor
27844 is moved out of the header being composed, or if a reply is being done.
27846 <P><UL>
27847 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27848 </UL>
27850 &lt;End of help on this topic&gt;
27851 </BODY>
27852 </HTML>
27853 ====== h_config_enable_bounce =====
27854 <HTML>
27855 <HEAD>
27856 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27857 </HEAD>
27858 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27859 <BODY>
27861 Setting this feature enables the "B Bounce" command, which will prompt
27862 for an address and *remail* the message to the new recipient.  This command
27863 is used to re-direct messages that you have received in error, or need to
27864 be redirected for some other reason (e.g. list moderation).  The final
27865 recipient will see a header indicating that you have Resent the msg, but
27866 the message's From: header will show the original author of the message,
27867 and replies to it will go back to that author, and not to you.
27869 &lt;End of help on this topic&gt;
27870 </BODY>
27871 </HTML>
27872 ====== h_config_enable_agg_ops =====
27873 <HTML>
27874 <HEAD>
27875 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27876 </HEAD>
27877 <BODY>
27878 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27880 When this feature is set you may use the commands and subcommands that relate to
27881 performing operations on more than one message at a time.  We call these
27882 &quot;aggregate operations&quot;.  In particular, the 
27883 <!--chtml if pinemode="function_key"-->&quot;F5
27884 <!--chtml else-->&quot;;
27885 <!--chtml endif--> Select&quot;, 
27887 <!--chtml if pinemode="function_key"-->
27888 &quot;F6
27889 <!--chtml else-->
27890 &quot;A 
27891 <!--chtml endif-->
27892 Apply&quot;, and 
27893 <!--chtml if pinemode="function_key"-->
27894 &quot;F4
27895 <!--chtml else-->
27896 &quot;Z 
27897 <!--chtml endif-->
27898 Zoom&quot; commands are enabled by this feature.  Select is used to
27899 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27900 then be used to apply any message command to all of the selected/tagged
27901 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27902 view between just those Selected and all messages in the folder.
27904 This feature also enables the 
27905 <!--chtml if pinemode="function_key"-->
27906 &quot;F7&quot; 
27907 <!--chtml else-->
27908 &quot;^X&quot; 
27909 <!--chtml endif-->
27911 subcommand in the MESSAGE INDEX 
27912 WhereIs command that causes all messages matching the WhereIs argument to 
27913 become selected; and the Select, Select Current, and ZoomMode commands in the
27914 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27916 Some related help topics are
27917 <UL>
27918 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27919 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27920 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27921 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27922 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27923 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27924 </UL>
27926 <UL>   
27927 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27928 </UL><P>
27929 &lt;End of help on this topic&gt;
27930 </BODY>
27931 </HTML>
27933 ====== h_config_enable_flag =====
27934 <HTML>
27935 <HEAD>
27936 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27937 </HEAD>
27938 <BODY>
27939 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27941 Setting this feature enables the
27942 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27943 command that allows you to
27944 manipulate the status flags associated with a message.  By default, Flag
27945 will set the "Important" flag, which results in an asterisk being
27946 displayed in column one of the MESSAGE INDEX for such messages.
27948 &lt;End of help on this topic&gt;
27949 </BODY>
27950 </HTML>
27951 ====== h_config_flag_screen_default =====
27952 <HTML>
27953 <HEAD>
27954 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27955 </HEAD>
27956 <BODY>
27957 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27959 The feature modifies the behavior of the
27960 <a href="h_common_flag">Flag</a>
27961 command (provided it too is
27962 <A HREF="h_config_enable_flag">enabled</A>).
27963 By default, when the "* Flag" command is selected,
27964 Alpine offers a prompt to set one of several flags and also offers the
27965 option of entering the detailed flag manipulation screen via the "^T"
27966 key. Enabling this feature causes Alpine to immediately enter the detailed
27967 flag screen rather than first offer the simple prompt.
27969 <A HREF="h_config_flag_screen_kw_shortcut"><!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></A> option offers a slightly different way of setting keywords.
27971 &lt;End of help on this topic&gt;
27972 </BODY>
27973 </HTML>
27974 ====== h_config_flag_screen_kw_shortcut =====
27975 <HTML>
27976 <HEAD>
27977 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27978 </HEAD>
27979 <BODY>
27980 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27982 This feature modifies the behavior of the
27983 <a href="h_common_flag">Flag</a> command
27984 and the <A HREF="h_index_cmd_select">Select</A> command.
27985 This feature is set by default.
27986 When this feature is not set, when the "* Flag" command is selected,
27987 Alpine offers a prompt to set one of several flags and also offers the
27988 option of entering the detailed flag manipulation screen via the "^T"
27989 key.
27990 If you have
27991 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27992 defined, then enabling this feature adds a shortcut way to set or unset
27993 keywords.
27994 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27995 a keyword if you've given it a nickname) and that will set the keyword.
27997 An example is easier to understand than the explanation.
27998 The flag command can always be used to set the system flags.
27999 For example, to set the Answered flag you would type
28001 <CENTER><SAMP>* A</SAMP></CENTER>
28003 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
28004 option in the Config screen.
28005 By default, to set a keyword like &quot;Work&quot; you would usually
28006 have to go to the Flag Details screen using
28007 the &quot;^T To Flag Details&quot; command.
28008 Instead, if you have enabled this feature, you may type
28010 <CENTER><SAMP>* W</SAMP></CENTER>
28012 to set the Work flag, or
28014 <CENTER><SAMP>* ! W</SAMP></CENTER>
28016 to unset it.
28017 Just like for the other flag setting commands, the case of the letter does
28018 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
28019 keyword.
28021 Notice that you can only use this trick for one keyword that begins
28022 with &quot;W&quot;.
28023 If you happen to have a &quot;Work&quot; keyword and another keyword that is
28024 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
28025 your list of keywords.
28026 Also, there are five letters that are reserved for system
28027 flags and the NOT command.
28028 If you type &quot;* A&quot; it will always set the Answered flag, not
28029 your &quot;Aardvark&quot; keyword.
28030 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
28031 the Flag Details screen.
28033 Because enabling the
28034 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
28035 option causes Alpine to skip directly to the Flag Details screen when the
28036 Flag command is used, 
28037 setting it will cause this feature to have no effect at all.
28039 Similarly, when Selecting by Keyword, setting this option will allow you
28040 to use Keyword initials instead of full keywords.
28042 &lt;End of help on this topic&gt;
28043 </BODY>
28044 </HTML>
28045 ====== h_config_can_suspend =====
28046 <HTML>
28047 <HEAD>
28048 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
28049 </HEAD>
28050 <BODY>
28051 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
28053 Setting this feature will allow you to type ^Z (Control Z) to 
28054 <!--chtml if pinemode="os_windows"-->
28055 minimize Alpine into its icon, bringing into focus whatever
28056 application is running behind the PC-Alpine window.
28057 <!--chtml else-->
28058 temporarily suspend Alpine.
28061 This does not exit Alpine, but puts it in the background to watch
28062 for new mail and such.  Normally, you type a command, such
28063 as &quot;fg&quot; at your system prompt to return to your Alpine session.
28066 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
28067 adjusts whether Alpine is placed into the background of the shell its 
28068 running in or starts a news shell.
28069 <!--chtml endif-->
28072 <UL>   
28073 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28074 </UL><P>
28075 &lt;End of help on this topic&gt;
28076 </BODY>
28077 </HTML>
28078 ====== h_config_take_lastfirst ======
28079 <HTML>
28080 <HEAD>
28081 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
28082 </HEAD>
28083 <BODY>
28084 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
28086 Normally, when TakeAddr is used to copy an address from a message into
28087 an address book entry, Alpine will attempt to rewrite the full name of the
28088 address in the form
28091 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
28093 instead of<P>
28095 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
28098 It does this because many people find it useful to sort by Last name
28099 instead of First name.  If this feature is set, then the TakeAddr command
28100 will not attempt to reverse the name in this manner.
28102 &lt;End of help on this topic&gt;
28103 </BODY></HTML>
28104 ====== h_config_disable_regex ======
28105 <HTML>
28106 <HEAD>
28107 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
28108 </HEAD>
28109 <BODY>
28110 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
28112 Normally, the
28113 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
28114 option is interpreted as a regular expression.
28115 One type of address that might cause trouble is an address that
28116 contains a plus sign.
28117 If you want to have an address with a plus as one of your
28118 <!--#echo var="VAR_alt-addresses"-->
28119 and you don't want to use regular expressions, then setting this
28120 feature will cause Alpine to treat the addresses you list literally instead.
28122 &lt;End of help on this topic&gt;
28123 </BODY></HTML>
28124 ====== h_config_take_fullname ======
28125 <HTML>
28126 <HEAD>
28127 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
28128 </HEAD>
28129 <BODY>
28130 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
28132 Normally, when TakeAddr is used to copy an address or addresses
28133 from a message into an address book entry, Alpine will try to preserve
28134 the full name associated with each address in the list of addresses.
28135 The reason for this is so that if the entry is a list or later becomes a
28136 list, then information about the individual addresses in the list
28137 is preserved.
28138 If you would rather just have the simple addresses in the list of addresses,
28139 set this feature. For example, with the default setting you might
28140 see something like this in the ADDRESS BOOK editor after you type TakeAddr
28142 <PRE>
28143  Nickname  : nick
28144  Fullname  : Bedrock Elders
28145  Fcc       :
28146  Comment   :
28147  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
28148              Barney Rubble &lt;rubble@bedrock.org&gt;
28149 </PRE>
28151 but with this feature set it would look like
28153 <PRE>
28154  Nickname  : nick
28155  Fullname  : Bedrock Elders
28156  Fcc       :
28157  Comment   :
28158  Addresses : flint@bedrock.org,
28159              rubble@bedrock.org
28160 </PRE>
28162 instead. Note the difference in the Addresses field.
28164 &lt;End of help on this topic&gt;
28165 </BODY></HTML>
28166 ====== h_config_print_from ======
28167 <HTML>
28168 <HEAD>
28169 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
28170 </HEAD>
28171 <BODY>
28172 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
28174 If this feature is set, then the Berkeley-mail style From line is included
28175 at the start of each message that is printed.  This line looks something
28176 like the following, with the address replaced by the address from the
28177 From line of the message being printed:
28179 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
28180 14:11:06 1998
28182 &lt;End of help on this topic&gt;
28183 </BODY>
28184 </HTML>
28185 ====== h_config_expanded_distlists ======
28186 <HTML>
28187 <HEAD>
28188 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
28189 </HEAD>
28190 <BODY>
28191 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
28192 If this feature is set, then distribution lists in the address book
28193 screen will always be expanded automatically.
28195 &lt;End of help on this topic&gt;
28196 </BODY>
28197 </HTML>
28198 ====== h_config_compose_news_wo_conf ======
28199 <HTML>
28200 <HEAD>
28201 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
28202 </HEAD>
28203 <BODY>
28204 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
28205 This feature controls one aspect of Alpine's Composer.  If you enter the
28206 composer while reading a newsgroup, you will normally be prompted to
28207 determine whether you intend the new message to be posted to the current
28208 newsgroup or not.  If this feature is set, Alpine will not prompt you
28209 in this situation, and will assume that you do indeed wish to post
28210 to the newsgroup you are reading.
28212 &lt;End of help on this topic&gt;
28213 </BODY>
28214 </HTML>
28215 ====== h_config_compose_rejects_unqual ======
28216 <HTML>
28217 <HEAD>
28218 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
28219 </HEAD>
28220 <BODY>
28221 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28223 This feature controls one aspect of the message composer; in particular,
28224 what happens when an unqualified name is entered into an address header.
28225 If set, unqualified names entered as addresses will be treated as errors
28226 unless they match an addressbook nickname.  Alpine will not attempt to turn
28227 them into complete addresses by adding your local domain.<P>
28229 A complete (fully qualified) address is one containing a username followed
28230 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28231 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28232 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28234 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28238 When you enter a fully qualified address, Alpine does not interpret or
28239 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28240 your system.  Alpine conforms to the Internet standards governing message
28241 headers and will not send an unqualifed name to the MTA.  Therefore, when
28242 you enter an unqualified name, Alpine will normally attempt to turn it into
28243 a fully qualified address, first by checking to see if you have entered a
28244 matching nickname in your addressbook, or failing that, by simply adding
28245 your own domain to the name entered.  So if your address is
28246 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28247 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28248 that into &quot;fred@example.com&quot;.<P>
28250 There are situations where it is not desirable for Alpine to interpret such
28251 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28252 turned out to be a typo (intended to be an addressbook nickname), but
28253 there actually was a &quot;fred&quot; in your local domain, the message might 
28254 be mis-delivered without your realizing it.  In order to reduce the likelihood
28255 of such accidents, setting this feature will cause Alpine to treat such
28256 addresses as errors, and require that you explicitly enter the full local
28257 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28258 matches an address book nickname.<P>
28260 Consider this a safety feature against mis-directed mail.
28262 <UL>   
28263 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28264 </UL><P>
28265 &lt;End of help on this topic&gt;
28266 </BODY>
28267 </HTML>
28268 ====== h_config_quell_local_lookup ======
28269 <HTML>
28270 <HEAD>
28271 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28272 </HEAD>
28273 <BODY>
28274 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28276 This feature controls an aspect of Alpine's Composer, and if needed, will
28277 usually be set by your system manager in Alpine's system-wide configuration
28278 file. Specifically, if this feature is set, Alpine will not attempt to look
28279 in the system password file to find a Full Name for the entered address.
28281 Normally, names you enter into address fields (e.g. To: or Cc:) are
28282 checked against your address book(s) to see if they match an address book
28283 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28284 the Unix password file.  If the entered name matches a username in the
28285 system password file, Alpine extracts the corresponding Full Name information
28286 for that individual, and adds that to the address being entered.
28288 However, password file matching can have surprising (incorrect) results if
28289 other users of the system do not receive mail at the domain you are using.
28290 That is, if either the 
28291 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28292 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28293 option
28294 is set such that the administrative domain of other users on the system
28295 isn't accurately reflected, Alpine should be told that a passwd file match
28296 is coincidental, and Full Name info will be incorrect.  For example, a
28297 personal name from the password file could get falsely paired with the
28298 entered name as it is turned into an address in the configured domain.
28300 If you are seeing this behavior, enabling this feature will prevent Unix
28301 Alpine from looking up names in the password file to find the Full Name
28302 for incomplete addresses you enter.<P>
28303 <UL>
28304 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28305 </UL>
28307 &lt;End of help on this topic&gt;
28308 </BODY>
28309 </HTML>
28310 ====== h_config_tab_checks_recent ======
28311 <HTML>
28312 <HEAD>
28313 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28314 </HEAD>
28315 <BODY>
28316 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28318 In a FOLDER LIST screen, the TAB key usually just changes which
28319 folder is highlighted.
28320 If this feature is set, then the TAB key will cause the number of
28321 recent messages and the total number of messages in the highlighted folder
28322 to be displayed instead.
28325 &lt;End of help on this topic&gt;
28326 </BODY>
28327 </HTML>
28328 ====== h_config_maildrops_preserve_state ======
28329 <HTML>
28330 <HEAD>
28331 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28332 </HEAD>
28333 <BODY>
28334 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28336 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28337 Normally, when mail is moved from a Mail Drop folder to a destination
28338 folder, it is delivered as new mail.
28339 Any Seen/New, Answered, Important/Flagged state that has changed will be
28340 ignored.
28341 All of the mail will be considered unSeen, unAnswered, and unImportant after
28342 it is moved.
28344 If this feature is set, then the state changes that have been made
28345 to the messages in the Mail Drop folder will be preserved.
28347 In any case, messages that are already marked Deleted when the
28348 mail is to be moved from the Mail Drop will be ignored.
28350 &lt;End of help on this topic&gt;
28351 </BODY>
28352 </HTML>
28353 ====== h_config_preopen_stayopens ======
28354 <HTML>
28355 <HEAD>
28356 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28357 </HEAD>
28358 <BODY>
28359 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28361 This feature is related to the option
28362 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28363 Normally, Stay Open folders are only opened on demand, when the user
28364 asks to open them.
28365 From then on they are kept open for the duration of the session.
28366 However, if this feature is set, then the Stay Open folders will all be
28367 opened at startup, at the same time that the INBOX is opened.
28370 &lt;End of help on this topic&gt;
28371 </BODY>
28372 </HTML>
28373 ====== h_config_expunge_inbox ======
28374 <HTML>
28375 <HEAD>
28376 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28377 </HEAD>
28378 <BODY>
28379 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28381 The INBOX is normally treated differently from regular folders in several
28382 ways.
28383 One of the differences is that the normal &quot;close&quot; sequence of
28384 events is deferred until Alpine is exited, instead of happening when you
28385 leave the INBOX to view another folder.
28386 The &quot;close&quot; sequence normally includes the Expunging
28387 of deleted messages
28388 (either automatically or after a prompt, controlled by the features
28389 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28390 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28391 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28392 handling of the
28393 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28396 If this feature is set the &quot;close&quot; sequence handling will take
28397 place every time you leave the INBOX.
28398 The INBOX will still be kept open, but the offer to Expunge and the archiving
28399 to the <!--#echo var="VAR_read-message-folder"-->
28400 will take place each time you leave the INBOX instead of only once at the
28401 end of the session.
28404 &lt;End of help on this topic&gt;
28405 </BODY>
28406 </HTML>
28407 ====== h_config_expunge_stayopens ======
28408 <HTML>
28409 <HEAD>
28410 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28411 </HEAD>
28412 <BODY>
28413 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28415 This feature is related to the option
28416 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28417 Stay Open folders are treated differently from regular folders in several
28418 ways.
28419 One of the differences is that the normal &quot;close&quot; sequence of
28420 events is deferred until Alpine is exited, instead of happening when you
28421 leave the folder to view another folder.
28422 The &quot;close&quot; sequence normally includes the Expunging
28423 of deleted messages
28424 (either automatically or after a prompt, controlled by the features
28425 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28426 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28427 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28428 handling of
28429 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28432 If this feature is set the &quot;close&quot; sequence handling will take
28433 place when you leave the Stay Open folder.
28434 The folder will still be kept open, but the offer to Expunge and the archiving
28435 will take place each time you leave the folder instead of only once at the
28436 end of the session.
28437 This feature does not affect the INBOX, which will still only be processed
28438 when you exit Alpine.
28439 However, there is a similar feature that affects only the INBOX called
28440 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28443 &lt;End of help on this topic&gt;
28444 </BODY>
28445 </HTML>
28446 ====== h_config_preserve_start_stop ======
28447 <HTML>
28448 <HEAD>
28449 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28450 </HEAD>
28451 <BODY>
28452 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28454 This feature controls how special control key characters, typically
28455 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28456 are known as the "stop" and "start" characters and are sometimes used in
28457 communications paths to control data flow between devices that operate at
28458 different speeds.
28462 By default, Alpine turns the system's handling of these special characters
28463 off except during printing.  However, if you see Alpine reporting input errors
28464 such as:
28466 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28468 and, at the same time, see your display become garbled, then it is likely
28469 that setting this option will solve the problem.  Be aware, though, that
28470 enabling this feature will also cause Alpine to ostensibly "hang" 
28471 whenever the Ctrl-S key combination is entered as the system is now
28472 interpreting such input as a "stop output" command.  To "start
28473 output"  again, simply type Ctrl-Q. 
28475 &lt;End of help on this topic&gt;
28476 </BODY>
28477 </HTML>
28478 ====== h_config_enable_incoming ======
28479 <HTML>
28480 <HEAD>
28481 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28482 </HEAD>
28483 <BODY>
28484 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28486 Alpine's Incoming Message Folders collection
28487 provides a convenient way to access multiple incoming folders.
28488 It is also useful if you have accounts on multiple computers.
28491 If set, this feature defines a pseudo-folder collection called
28492 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28493 in this collection will be your INBOX, which will no longer show up in
28494 your Default folder collection.
28497 You may add more folders to the Incoming Message Folders collection by
28498 using the
28499 <!--chtml if pinemode="function_key"-->
28500 &quot;F10
28501 <!--chtml else-->
28502 &quot;A
28503 <!--chtml endif-->
28504 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28505 the host the folder is stored on (which defaults to the same host used
28506 for your INBOX), a nickname, and the actual folder name.  Once a set
28507 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28508 or MESSAGE TEXT screens) may be used to scan the folders for those
28509 with Recent messages.  If you add more folders to
28510 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28511 no effect.
28513 NOTE: Normally the software that actually delivers mail (the stuff that happens
28514 before Alpine is involved) is in a better position to do delivery filtering
28515 than is Alpine itself.
28516 If possible, you may want to look at programs such as
28517 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28518 filtering programs.
28519 If you'd prefer to have Alpine do the filtering for you, you may set that
28521 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28523 <UL>   
28524 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28525 </UL><P>
28526 &lt;End of help on this topic&gt;
28527 </BODY>
28528 </HTML>
28529 ====== h_config_enable_incoming_checking ======
28530 <HTML>
28531 <HEAD>
28532 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28533 </HEAD>
28534 <BODY>
28535 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28537 This feature is only operational if you have enabled the optional
28538 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28539 If you do have Incoming Message Folders and you also set this feature,
28540 then the number of Unseen messages in each folder will be displayed
28541 in the FOLDER LIST screen for the Incoming Message Folders.
28542 The number of Unseen messages in a folder will be displayed in parentheses
28543 to the right of the name of each folder.
28544 If there are no Unseen messages in a folder then only the name
28545 is displayed, not a set of parentheses with zero inside them.
28546 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28547 the Incoming Message Folders to cause an immediate update.
28549 If a check for Unseen messages fails for a particular folder then Alpine
28550 will no longer attempt to check that folder for the duration of the
28551 session and this will be indicated by a question mark inside the
28552 parentheses.
28554 The features
28555 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28556 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28557 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28558 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28559 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28560 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28561 all affect how this feature behaves.
28563 <UL>   
28564 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28565 </UL><P>
28566 &lt;End of help on this topic&gt;
28567 </BODY>
28568 </HTML>
28569 ====== h_config_incoming_checking_total ======
28570 <HTML>
28571 <HEAD>
28572 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28573 </HEAD>
28574 <BODY>
28575 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28577 This option has no effect unless the feature
28578 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28579 is set, which in turn has no effect unless
28580 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28581 is set.
28583 When incoming folder checking is turned on the default is to display
28584 the number of unseen messages in each folder.
28585 More precisely, it is the number of undeleted unseen messages.
28586 Using this option you may also display the total number of messages
28587 in each folder.
28588 Instead of a single number representing the number of unseen messages
28589 you will get two numbers separated by a slash character.
28590 The first is the number of unseen messages and the second is the
28591 total number of messages.
28593 You may also use the recent message count instead of the unseen message
28594 count by turning on the feature
28595 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28597 <UL>   
28598 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28599 </UL><P>
28600 &lt;End of help on this topic&gt;
28601 </BODY>
28602 </HTML>
28603 ====== h_config_incoming_checking_recent ======
28604 <HTML>
28605 <HEAD>
28606 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28607 </HEAD>
28608 <BODY>
28609 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28611 This option has no effect unless the feature
28612 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28613 is set, which in turn has no effect unless
28614 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28615 is set.
28617 When incoming folder checking is turned on the default is to display
28618 the number of unseen messages in each folder.
28619 More precisely, it is the number of undeleted unseen messages.
28620 Using this option you may display the number of recent messages instead
28621 of the number of unseen messages.
28622 A message is only counted as recent if this is the first session to
28623 see it, so the recent count might be less than the unseen count.
28624 The difference between the two would be accounted for by the unseen messages
28625 in the folder which were there previously but have not been looked at yet.
28627 If you simultaneously run more than one email client at a time
28628 (for example, you run more than one Alpine in parallel) then turning
28629 this feature on can cause some confusion.
28630 The confusion stems from the fact that each message is only considered to be
28631 recent in one session.
28632 That means that the counts of new messages may be different in the two
28633 Alpines running side by side, because each incoming message will only be
28634 counted as recent in one of the two sessions.
28636 You may also display the total number of messages
28637 in each folder by using the
28638 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28639 option.
28641 <UL>   
28642 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28643 </UL><P>
28644 &lt;End of help on this topic&gt;
28645 </BODY>
28646 </HTML>
28647 ====== h_config_attach_in_reply ======
28648 <HTML>
28649 <HEAD>
28650 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28651 </HEAD>
28652 <BODY>
28653 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28655 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28656 attachments that were part of the original message will automatically be
28657 included in the Reply.
28659 &lt;End of help on this topic&gt;
28660 </BODY>
28661 </HTML>
28662 ====== h_config_include_header =====
28663 <HTML>
28664 <HEAD>
28665 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28666 </HEAD>
28667 <BODY>
28668 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28670 This feature controls an aspect of Alpine's Reply command. If set, and the
28671 original message is being included in the reply, then headers from that
28672 message will also be part of the reply.
28674 &lt;End of help on this topic&gt;
28675 </HEAD>
28676 </HTML>
28677 ====== h_config_sig_at_bottom =====
28678 <HTML>
28679 <HEAD>        
28680 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28681 </HEAD>
28682 <BODY>
28683 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28685 This feature controls an aspect of Alpine's Reply command.  If this feature
28686 is set, and the original message is being included in the reply, then the
28687 contents of your signature file (if any) will be inserted after the included
28688 message.
28690 This feature does not affect the results of a Forward command.
28692 &lt;End of help on this topic&gt;
28693 </BODY>
28694 </HTML>
28695 ====== h_config_sigdashes =====
28696 <HTML>
28697 <HEAD>
28698 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28699 </HEAD>
28700 <BODY>
28701 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28703 This feature enables support for the common USENET news convention 
28704 of preceding a message signature with the special line consisting of 
28705 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28708 When enabled and a
28709 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28710 Alpine will insert the special line before including the file's text (unless
28711 the special line already exists somewhere in the file's text).
28714 In addition, when you Reply or Followup to a message containing one of
28715 these special lines and choose to include its text, Alpine will observe
28716 the convention of not including text beyond the special line in your
28717 reply.
28718 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28719 mode is enabled and turned on, then Alpine <EM>will</EM>
28720 include the text beyond the special line regardless of the setting of
28721 this feature.
28724 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28725 for a related feature.
28728 <UL>   
28729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28730 </UL><P>
28731 &lt;End of help on this topic&gt;
28732 </BODY>
28733 </HTML>
28734 ====== h_config_new_thread_blank_subject =====
28735 <HTML>
28736 <HEAD>
28737 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28738 </HEAD>
28739 <BODY>
28740 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28742 When this feature is enabled (the default) Alpine will create a new thread
28743 every time that the subject line becomes empty at any time during composition.
28746 This behavior is particularly useful in case you are replying to a message.
28747 Replying to a message causes the message to be in the same thread than the
28748 original message that is being replied to. However, many authors want to create
28749 a new message (in a different thread) while replying to a message, and they do
28750 this by changing the full subject, by first deleting the original subject and
28751 typing the new subject of the current message.
28754 Enabling this feature causes that any time that the subject is deleted, the 
28755 message being composed will be considered the first message of a new thread.
28758 <UL>   
28759 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28760 </UL><P>
28761 &lt;End of help on this topic&gt;
28762 </BODY>
28763 </HTML>
28764 ====== h_config_strip_sigdashes =====
28765 <HTML>
28766 <HEAD>
28767 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28768 </HEAD>
28769 <BODY>
28770 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28772 This feature doesn't do anything if the feature
28773 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28774 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28775 then turning on this feature enables support for the convention
28776 of not including text beyond the sigdashes line when Replying or Following
28777 up to a message and including the text of that message.
28778 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28779 mode is enabled and turned on, then Alpine <EM>will</EM>
28780 include the text beyond the special line regardless of the setting of
28781 this feature.
28783 In other words, this is a way to turn on the signature stripping behavior
28784 without also turning on the dashes-adding behavior.
28786 <UL>   
28787 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28788 </UL><P>
28789 &lt;End of help on this topic&gt;
28790 </BODY>
28791 </HTML>
28792 ====== h_config_forward_as_attachment =====
28793 <HTML>
28794 <HEAD>
28795 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28796 </HEAD>
28797 <BODY>
28798 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28800 This feature affects the way forwarded message text is handled.  When set, rather than 
28801 include the text of the forwarded message below any additional text you provide in the
28802 composer, the forwarded message is attached in its entirety to the message you send.
28804 This is useful in that it keeps the text you provide in the composer distinct from the
28805 text of the forwarded message.  Similarly, it allows the recipient to 
28806 conveniently operate on the forwarded message.  For example, they might reply directly to
28807 the sender of the forwarded message, or process it as part of a spam report.
28808 <UL>   
28809 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28810 </UL><P>
28811 &lt;End of help on this topic&gt;
28812 </BODY>
28813 </HTML>
28814 ====== h_config_preserve_field =====
28815 <HTML>
28816 <HEAD>
28817 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28818 </HEAD>
28819 <BODY>
28820 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28822 This feature affects Alpine's behavior when one replies to a message. 
28823 When you receive a message, some or all of the recipients of the message 
28824 have been added to the To: and Cc: fields. If you reply to such message, 
28825 and this feature is disabled, then the original sender of the message is 
28826 added to the To: field, and all other recipients are added to the Cc: 
28827 field, while your address is added to the From: field.
28830 However, if this feature is enabled, then Alpine will preserve the 
28831 original fields as sent in the original message, so the Cc: and To: 
28832 fields will be preserved. The sender's address will be added to the To: 
28833 field, while your address is added to the From: field.
28836 The behavior of this feature is that replies to all messages will behave 
28837 in the way described above. If you only intend this to happen on a per 
28838 message basis, then keep this feature disabled, and when replying to a 
28839 message you will see a new option in the menu for the &quot;Reply to all 
28840 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28841 make Alpine toggle its question so you can preserve the To: and Cc: 
28842 fields for that message only.
28844 <UL>   
28845 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28846 </UL><P>
28847 &lt;End of help on this topic&gt;
28848 </BODY>
28849 </HTML>
28850 ====== h_config_sub_lists =====
28851 <HTML>
28852 <HEAD>
28853 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28854 </HEAD>
28855 <BODY>
28856 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28858 This feature affects the subcommands available when Saving, 
28859 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28860 available. This command allows you to type in a substring of the folder
28861 you are looking for and when you type ^X it will display all folders
28862 that contain that substring in their names.
28863 This feature is set by default.
28866 &lt;End of help on this topic&gt;
28867 </BODY>
28868 </HTML>
28869 ====== h_config_scramble_message_id =====
28870 <HTML>
28871 <HEAD>
28872 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28873 </HEAD>
28874 <BODY>
28875 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28877 Normally the Message-ID header that Alpine generates when sending a message
28878 contains the name of the computer from which the message is being sent.
28879 Some believe that this hostname could be used by spammers or could
28880 be used by others for nefarious purposes.
28881 If this feature is set, that name will be transformed with a simple
28882 Rot13 transformation.
28883 The result will still have the correct syntax for a Message-ID but the
28884 part of the MessageID that is often a domain name will not be an actual
28885 domain name because the letters will be scrambled.
28887 In addition, other information such as the name program, version, and
28888 a code for operating system used to build Alpine, will be encoded using
28889 the Rot13 transformation, except for the version number which will be
28890 encoded using a Rot5 transformation.
28892 It is possible (but unlikely?) that some spam detection
28893 software will use that as a reason to reject the mail as spam.
28894 It has also been reported that some spam detection software uses the
28895 fact that there are no dots after the &quot;@&quot; as a reason to reject
28896 messages.
28897 If your PC-Alpine Message-ID is using a name without a dot that is because
28898 that is what Windows thinks is your &quot;Full computer name&quot;.
28899 The method used to set this varies from one type of Windows to another but
28900 check under Settings -> Control Panel -> System and
28901 look for Network Identification or Computer Name or something similar.
28902 How to set it is beyond the scope of Alpine.
28905 &lt;End of help on this topic&gt;
28906 </BODY>
28907 </HTML>
28908 ====== h_downgrade_multipart_to_text =====
28909 <HTML>
28910 <HEAD>
28911 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28912 </HEAD>
28913 <BODY>
28914 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28917 This feature affects Alpine's behavior when sending mail.  Internet
28918 standards require Alpine to translate all non-ASCII characters in
28919 messages that it sends using MIME encoding.  This encoding can be
28920 ostensibly broken for recipients if any agent between Alpine and the
28921 recipient, such as an email list expander, appends text to the
28922 message, such as list information or advertising.  When sending such
28923 messages Alpine attempts to protect such encoding by placing extra
28924 MIME boundaries around the message text.
28926 These extra boundaries are invisible to recipients that 
28927 use MIME-aware email programs (the vast majority).  However, if
28928 you correspond with users of email programs that are not MIME-aware,
28929 or do not handle the extra boundaries gracefully, you can
28930 use this feature to prevent Alpine from including the extra
28931 MIME information.  Of course, it will increase the likelihood
28932 that non-ASCII text you send may appear corrupt to the recipient.
28934 &lt;End of help on this topic&gt;
28935 </BODY>
28936 </HTML>
28937 ====== h_config_show_sort =====
28938 <HTML>
28939 <HEAD>
28940 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28941 </HEAD>
28942 <BODY>
28943 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28945 If this feature is set and there is sufficient space on the screen,
28946 a short indication of the current sort order will be
28947 added in the titlebar (the top line on the screen), before the name
28948 of the folder.
28949 For example, with the default Arrival sort in effect,
28950 the display would have the characters
28952 <P><CENTER>[A]</CENTER><P>
28954 added between the title of the screen and the folder name.
28955 The letters are the same as the letters you may type to manually
28956 sort a folder with the SortIndex command ($).
28957 The letters in the table below are the ones that may show
28958 up in the titlebar line.
28960 <TABLE>   
28961 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28962 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28963 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28964 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28965 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28966 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28967 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28968 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28969 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28970 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28971 </TABLE>
28973 If the sort order is Reversed, the letter above will be preceded by the letter
28974 &quot;R&quot;, for example
28976 <P><CENTER>[RS]</CENTER><P>
28978 means that a Reverse Subject sort is in effect.
28979 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28980 left out, and just an &quot;R&quot; is shown.
28982 <P><CENTER>[R]</CENTER>
28985 &lt;End of help on this topic&gt;
28986 </BODY>
28987 </HTML>
28988 ====== h_config_disable_reset_disp =====
28989 <HTML>
28990 <HEAD>
28991 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28992 </HEAD>
28993 <BODY>
28994 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28996 UNIX Alpine only.
28998 This feature affects Alpine's behavior when using
28999 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
29000 Normally, before the display filter is run, the terminal mode is reset
29001 to what it was before you started Alpine.
29002 This may be necessary if the filter requires the use of the terminal.
29003 For example, it may need to interact with you.
29004 If you set this feature, then the terminal mode will not be reset.
29005 One thing that turning on this feature should fix is the coloring of
29006 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
29007 breaks because the terminal reset resets the color state of the terminal.
29010 &lt;End of help on this topic&gt;
29011 </BODY>
29012 </HTML>
29013 ====== h_config_disable_sender =====
29014 <HTML>
29015 <HEAD>
29016 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
29017 </HEAD>
29018 <BODY>
29019 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
29021 This feature affects Alpine's generation of the &quot;Sender:&quot; or
29022 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
29023 header fields.
29024 By default, Alpine will generate such a header in situations where the
29025 username or domain are not the same as
29026 the &quot;From:&quot; header on the message.
29027 With this feature set,
29028 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
29029 This may be desirable on a system that is virtually hosting many domains,
29030 and the sysadmin has other methods available for tracking a message to
29031 its originator.
29033 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
29036 &lt;End of help on this topic&gt;
29037 </BODY>
29038 </HTML>
29039 ====== h_config_use_sender_not_x =====
29040 <HTML>
29041 <HEAD>
29042 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
29043 </HEAD>
29044 <BODY>
29045 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
29047 Normally Alpine adds a header line
29048 labeled &quot;X-X-Sender&quot;, if the sender is
29049 different from the From: line.
29050 The standard specifies that this header
29051 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
29052 Setting this feature causes
29053 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
29055 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
29058 &lt;End of help on this topic&gt;
29059 </BODY>
29060 </HTML>
29061 ====== h_config_use_fk =====
29062 <HTML>
29063 <HEAD>
29064 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
29065 </HEAD>
29066 <BODY>
29067 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
29069 This feature specifies that Alpine will respond to function keys instead of
29070 the normal single-letter commands. In this mode, the key menus at the
29071 bottom of each screen will show function key designations instead of the
29072 normal mnemonic key.
29075 &lt;End of help on this topic&gt;
29076 </BODY>
29077 </HTML>
29078 ====== h_config_cancel_confirm =====
29079 <HTML>
29080 <HEAD>
29081 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
29082 </HEAD>
29083 <BODY>
29084 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
29086 This feature affects what happens when you type ^C to cancel a composition.
29087 By default, if you attempt to cancel a composition by typing ^C, you will be
29088 asked to confirm the cancellation by typing a &quot;C&quot;
29089 for <EM>C</EM>onfirm.
29090 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
29091 risky because the &quot;^C Y&quot; needed to cancel a message
29092 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
29094 If this feature is set the confirmation asked for
29095 will be a &quot;<EM>Y</EM>es&quot;
29096 instead of a &quot;<EM>C</EM>onfirm&quot; response.
29099 &lt;End of help on this topic&gt;
29100 </BODY>
29101 </HTML>
29102 ====== h_config_compose_maps_del =====
29103 <HTML>
29104 <HEAD>
29105 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
29106 </HEAD>
29107 <BODY>
29108 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
29110 This feature affects the behavior of the DELETE key.
29111 If set, Delete will be equivalent to ^D, and delete
29112 the current character.  Normally Alpine defines the Delete key
29113 to be equivalent to ^H, which deletes the <EM>previous</EM>
29114 character.
29117 &lt;End of help on this topic&gt;
29118 </BODY>
29119 </HTML>
29120 ====== h_config_compose_bg_post =====
29121 <HTML>
29122 <HEAD>
29123 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
29124 </HEAD>
29125 <BODY>
29126 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
29128 This feature affects the behavior of Alpine's mail sending.  If set, this
29129 feature enables a subcommand in the composer's "Send?" confirmation
29130 prompt.  The subcommand allows you to tell Alpine to handle the actual
29131 posting in the background.  While this feature usually allows posting
29132 to appear to happen very fast, it has no affect on the actual delivery
29133 time it takes a message to arrive at its destination.
29136 Please Note:
29137 <OL>
29138  <LI>This feature will have no effect if the feature
29139        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
29140        is set.
29141  <LI>This feature isn't supported on all systems.  All DOS and Windows,
29142        as well as several Unix ports, do not recognize this feature.
29143  <LI>Error handling is significantly different when this feature is
29144         enabled.  Any message posting failure results in the message
29145         being appended to your &quot;Interrupted&quot; mail folder.  When you
29146         type the <A HREF="h_common_compose">C</A>ompose command,
29147         Alpine will notice this folder and
29148         offer to extract any messages contained.  Upon continuing a 
29149         failed message, Alpine will display the nature of the failure 
29150         in the status message line.
29151  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
29152         for message data to
29153         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
29154         if you typically run close to any sort of disk-space limits or quotas.
29155 </OL>
29157 &lt;End of help on this topic&gt;
29158 </BODY>
29159 </HTML>
29160 ====== h_config_compose_dsn =====
29161 <HTML>
29162 <HEAD>
29163 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
29164 </HEAD>
29165 <BODY>
29166 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
29168 This feature affects the behavior of Alpine's mail sending.  If set, this
29169 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
29170 prompt.  The subcommand allows you to tell Alpine to request the type of
29171 Delivery Status Notification (DSN) that you would like.  Most users will
29172 be happy with the default, and need not enable this feature.
29174 If the feature
29175 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29176 then this feature has no effect and the type of DSN is not selectable.
29179 Turning on this feature and then turning on the DSNOpts from the send
29180 prompt reveals four on-off toggles at the bottom of the screen.
29181 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
29182 that no notification be returned to you, even if there is a delivery
29183 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
29184 server that you are willing (or not) to receive delay notifications, which
29185 happen when there is an unusual delay at some mail server (in that mail
29186 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
29187 Success requests that you be sent a DSN message when the message is
29188 successfully delivered to the recipients mailbox.  Setting NoErrRets will
29189 automatically turn off Delay and Success notification, and will flip the
29190 toggles to show that.  Similarly, turning on Delay and/or Success will
29191 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
29192 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
29193 the full message be returned in any failed DSN.  RetHdrs requests that
29194 only the headers be returned in any failed DSN.  Notice that this command
29195 applies only to failed delivery status reports.  For delay or success
29196 reports, the full message is never returned, only the headers are returned.
29199 If you don't enable the DSN feature or if you don't turn it on for a
29200 particular message, the default is that you will be notified about failures,
29201 you might be notified about delays, and you won't be notified about
29202 successes.  You will usually receive the full message back when there is
29203 a failure.
29206 If you turn on the DSNOpts the default is to return as much information as
29207 possible to you.  That is, by default, the Success and Delay options are
29208 turned on and the full message will be returned on failure.
29211 The sending prompt will display the current DSN request (if any) in a
29212 shorthand form.  It will be:
29214 <P><CENTER>[Never]</CENTER>
29217 if you have requested NoErrRets.  Otherwise, it will look something like:
29219 <P><CENTER>[FDS-Hdrs]</CENTER>
29222 The &quot;F&quot; will always be there, indicating that you will be notified
29223 of failures.  (Alpine doesn't provide a way to request no failure notification
29224 and at the same time request either success or delay notification.  The only
29225 way to request no failure notifications is to request no notifications at
29226 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29227 requested Delay and/or Success notification.  If one of those is missing,
29228 that means you are requesting no notification of the corresponding type.
29229 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29230 the headers and Full means to return the full message (applies to
29231 failure notifications only).
29234 NOTE: This feature relies on your system's mail transport agent or
29235 configured
29236 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29237 having the negotiation mechanism introduced in
29238 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29239 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
29240 are using doesn't support DSN, a short warning will be shown to you on
29241 the message line at the bottom of the screen after you send your message,
29242 but your message will have been sent anyway.
29245 Note that DSNs don't provide a mechanism to request read receipts.  That
29246 is, if you request notification on success you are notified when the
29247 message is delivered to the mailbox, not when the message is read.
29250 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29251 it is possible that this feature might cause problems for some servers. 
29254 &lt;End of help on this topic&gt;
29255 </BODY>
29256 </HTML>
29257 ====== h_config_auto_zoom =====
29258 <HTML>
29259 <HEAD>
29260 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29261 </HEAD>
29262 <BODY>
29263 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29265 This feature affects the behavior of the Select command.
29266 If set, the select command will automatically perform a zoom
29267 after the select is complete.
29268 This feature is set by default.
29270 Some related help topics are
29271 <UL>
29272 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29273 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29274 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29275 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29276 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29277 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29278 </UL>
29281 &lt;End of help on this topic&gt;
29282 </BODY>
29283 </HTML>
29284 ====== h_config_auto_unzoom =====
29285 <HTML>
29286 <HEAD>
29287 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29288 </HEAD>
29289 <BODY>
29290 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29292 This feature affects the behavior of the Apply command.  If set, and if
29293 you are currently looking at a Zoomed Index view of selected messages,
29294 the Apply command will do the operation you specify, but then will
29295 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29296 the normal Index view after the Apply. 
29297 This feature is set by default.
29300 Some related help topics are
29301 <UL>
29302 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29303 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29304 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29305 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29306 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29307 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29308 </UL>
29310 &lt;End of help on this topic&gt;
29311 </BODY>
29312 </HTML>
29313 ====== h_config_auto_unselect =====
29314 <HTML>
29315 <HEAD>
29316 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29317 </HEAD>
29318 <BODY>
29319 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29321 This feature affects the behavior of the Apply command.  If set,
29322 the Apply command will do the operation you specify, but then will
29323 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29324 the normal Index view after the Apply. 
29327 Some related help topics are
29328 <UL>
29329 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29330 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29331 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29332 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29333 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29334 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29335 </UL>
29337 &lt;End of help on this topic&gt;
29338 </BODY>
29339 </HTML>
29340 ====== h_config_fast_recent =====
29341 <HTML>
29342 <HEAD>
29343 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29344 </HEAD>
29345 <BODY>
29346 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29348 This feature controls the behavior of the TAB key when traversing folders
29349 in the optional 
29350 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29351 collection or in optional <!--#echo var="VAR_news-collections"-->.
29354 When the TAB
29355 (<A HREF="h_common_nextnew">NextNew</A>)
29356 key is pressed, the default behavior is to
29357 explicitly examine the status of the folder for the number of recent
29358 messages (messages delivered since the last time it was viewed).
29359 Depending on the size and number of messages in the folder, this test
29360 can be time consuming.
29363 Enabling this feature will cause Alpine to only test for the existence of
29364 any recent messages rather than to obtain the count.  This is much faster
29365 in many cases.  The downside is that you're not given the number of recent
29366 messages when prompted to view the next folder.
29367 If the feature
29368 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29369 is turned on, then the present feature will have no effect.
29372 <UL>   
29373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29374 </UL><P>
29375 &lt;End of help on this topic&gt;
29376 </BODY>
29377 </HTML>
29378 ====== h_config_arrow_nav =====
29379 <HTML>
29380 <HEAD>
29381 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29382 </HEAD>
29383 <BODY>
29384 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29386 This feature controls the behavior of the left and right arrow keys.
29387 If set, the left and right arrow keys will operate like the usual
29388 navigation keys &lt; and &gt;.
29389 This feature is set by default.
29392 If you set this feature, and do not like the changed behavior of the up/down 
29393 arrow 
29394 keys when navigating through the FOLDER LIST screen -- 
29395 <B>first</B> from column to column, if more than one folder is 
29396 displayed per row, 
29397 and <B>then</B> from row to row -- you may either also wish to set the feature 
29398 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29399 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29400 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29401 folders in each column.
29403 <UL>   
29404 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29405 </UL><P>
29406 &lt;End of help on this topic&gt;
29407 </BODY>
29408 </HTML>
29409 ====== h_config_relaxed_arrow_nav =====
29410 <HTML>
29411 <HEAD>
29412 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29413 </HEAD>
29414 <BODY>
29415 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29417 This feature controls the behavior of the left, right, up and down
29418 arrow keys in the FOLDER LIST screen when the &quot;<A
29419 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29420 set.
29421 This feature is set by default.
29425 When this feature is set, the left and right
29426 arrow keys in the FOLDER LIST screen
29427 move the highlight bar to the left or right, and the up and
29428 down arrows move it up or down.
29431 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29432 feature is not set;
29433 the left and right arrow keys in the Folder List screen strictly
29434 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29435 and down arrow keys move the highlight bar to the previous and next
29436 folder or directory name.
29439 <UL>   
29440 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29441 </UL><P>
29442 &lt;End of help on this topic&gt;
29443 </BODY>
29444 </HTML>
29445 ====== h_config_alt_compose_menu =====
29446 <HTML>
29447 <HEAD>
29448 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29449 </HEAD>
29450 <BODY>
29451 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29453 This feature controls the menu that is displayed when Compose is selected.
29454 If set, a list of options will be presented, with each option representing
29455 the type of composition that could be used. This feature is most useful for
29456 users who want to avoid being prompted with each option separately, or who
29457 want to avoid the checking of remote postponed or form letter folders.
29458 The possible types of composition are:
29461 New, for starting a new composition. Note that if New is selected and roles
29462 are set, roles are checked for matches and applied according to the setting
29463 of the matching role.
29466 Interrupted, for continuing an interrupted composition. This option is only
29467 offered if an interrupted message folder is detected.
29470 Postponed, for continuing postponed compositions. This option is offered
29471 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29472 the postponed folder actually exists. This option is especially handy
29473 for avoiding having to check for the existence of a remote postponed folder.
29476 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29477 is set in the config, and is not checked for existence for reasons similar
29478 to those explained by the postponed option.
29481 setRole, for selecting a role to apply to a composition.
29484 &lt;End of help on this topic&gt;
29485 </BODY>
29486 </HTML>
29487 ====== h_config_alt_role_menu =====
29488 <HTML>
29489 <HEAD>
29490 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29491 </HEAD>
29492 <BODY>
29493 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29495 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29496 a role and compose a new message using that role.
29497 When this feature is set, the role command will first ask whether you want to
29498 Compose a new message, Forward the current message, Reply to the
29499 current message, or Bounce the current message.
29500 If you are not in the MESSAGE INDEX and are not viewing a message,
29501 then there is no current message and the question will be skipped.
29502 After you have chosen to Compose, Forward, Reply, or Bounce you will
29503 then choose the role to be used.
29505 When Bouncing the &quot;Set From&quot; address is used for the
29506 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29507 provided that the option
29508 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29509 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29510 set.
29511 Other actions of the role are ignored when Bouncing.
29514 &lt;End of help on this topic&gt;
29515 </BODY>
29516 </HTML>
29517 ====== h_config_always_spell_check =====
29518 <HTML>
29519 <HEAD>
29520 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29521 </HEAD>
29522 <BODY>
29523 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29525 When this feature is set, every composed message will be spell-checked before
29526 being sent.
29528 &lt;End of help on this topic&gt;
29529 </BODY>
29530 </HTML>
29531 ====== h_config_quell_asterisks =====
29532 <HTML>
29533 <HEAD>
29534 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29535 </HEAD>
29536 <BODY>
29537 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29539 When you are running Alpine you will sometimes be asked for a password
29540 in a prompt on the third line from the bottom of the screen.
29541 Normally each password character you type will cause an asterisk to echo
29542 on the screen. That gives you some feedback to know that your typing is
29543 being recognized.
29544 There is a very slight security risk in doing it this way because someone
29545 watching over your shoulder might be able to see how many characters there
29546 are in your password.
29547 If you'd like to suppress the echoing of the asterisks set this feature.
29549 &lt;End of help on this topic&gt;
29550 </BODY>
29551 </HTML>
29552 ====== h_config_quell_flowed_text =====
29553 <HTML>
29554 <HEAD>
29555 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29556 </HEAD>
29557 <BODY>
29558 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29560 Alpine generates flowed text where possible.
29561 The method for generating flowed text is defined by
29562 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29563 the benefit of doing so is
29564 to send message text that can properly be viewed both on normal width displays
29565 and on displays with smaller or larger than normal screen widths.
29566 With flowed text, a space at the end of a line tells the receiving mail
29567 client that the following line belongs to the same paragraph.
29568 Quoted text will also be affected, with only the innermost
29569 level of &quot;&gt;&quot; quoting being followed by a space.
29570 However, if you have changed the
29571 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29572 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29573 quoted text will not be flowed.
29574 For this reason, we recommend that you leave your
29575 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29577 This feature turns off the generation of flowed text, as it might be
29578 desired to more tightly control how a message is displayed on the receiving end.
29580 If this feature is <EM>not</EM> set, you can control on a message by message
29581 basis whether or not flowed text is generated.
29582 You do this by typing ^V at the Send confirmation prompt that you get
29583 after typing ^X to send a message.
29584 ^V is a toggle that turns flowing off and back on if typed again.
29585 If for some reason flowing cannot be done on a particular message, then the
29586 ^V command will not be available.
29587 This would be the case, for example, if this feature was set, or if your
29588 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29589 If the feature
29590 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29591 then the opportunity to control on a message by message basis
29592 whether or not flowed text is generated is lost.
29594 When this feature is not set and you have typed ^V to turn off flowing,
29595 the Send confirmation prompt will change to look like
29597 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29599 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29600 also turn off the sending of flowed text messages, but it differs in that
29601 it also trims all trailing white space from a message before sending it.
29603 If alternate editors are used extensively, be aware that a message will still
29604 be sent flowed if this feature is unset.  In most cases this will be fine,
29605 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29606 use that.
29608 &lt;End of help on this topic&gt;
29609 </BODY>
29610 </HTML>
29611 ====== h_config_strip_ws_before_send =====
29612 <HTML>
29613 <HEAD>
29614 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29615 </HEAD>
29616 <BODY>
29617 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29619 By default, trailing whitespace is not stripped from
29620 a message before sending.  Trailing whitespace should have no effect on an
29621 email message, and in flowed text can aid in delimiting paragraphs.
29622 However, the old behavior of stripping trailing whitespace was in place
29623 to better deal with older clients that couldn't handle certain types of
29624 text encodings.  This feature restores the old behavior
29626 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29627 generated by default but can be turned off via the
29628 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29629 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29630 of flowed text.
29632 &lt;End of help on this topic&gt;
29633 </BODY>
29634 </HTML>
29635 ====== h_config_alt_reply_menu =====
29636 <HTML>
29637 <HEAD>
29638 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
29639 </HEAD>
29640 <BODY>
29641 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
29643 Note that if this option is enabled, then the option
29644 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29645 is ignored. See below to understand why.
29647 When you reply to a message, a series of questions are asked that 
29648 determines how your reply will be handled by Alpine. This feature only 
29649 affects the result of the first question you are asked, and its purpose is 
29650 to set values that could override defaults set in Alpine's main 
29651 configuration screen. As a result, this menu allows you to configure even 
29652 more features than you would be able to do without this option. For 
29653 example, this menu always allows you to override or select a <A 
29654 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
29655 override your indent string, regardless of if you have enabled 
29656 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
29657 The full list of options can be found below.
29659 Here is an example of how this option works. After you press Reply,
29660 if you see &quot;A Inc Attach&quot; in the menu, it means that 
29661 if you press &quot;A&quot;, then Alpine will include the attachments
29662 of the original message, and the default is not to include them. 
29663 Conversely, if you see &quot;A No Attach&quot; 
29664 then by pressing &quot;A&quot; Alpine will not include
29665 attachments in your reply, and the default is that Alpine will 
29666 include them in your reply. The value that you see when you 
29667 start your reply is controlled by the option
29668 <A HREF="h_config_attach_in_reply">
29669 <!--#echo var="FEAT_include-attachments-in-reply"-->
29670 </A>. If the feature is enabled, then Alpine will display 
29671 &quot;A No Attach&quot; to override the default behavior. You can
29672 toggle between the two values of this option by pressing &quot;A&quot;.
29673 Remember that the value that you see in the menu is the action that will 
29674 be done when you press the associated command.
29676 Below are your options:
29677 <OL>
29678 <LI><B>A</B>: This determines if Alpine will include or not the 
29679 attachments sent to you in the message that you are replying to. The default 
29680 is to use the value of the configuration option 
29681 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overriden by using this command.
29683 <LI><B>H</B>: This command determines if the headers of a message are
29684 included in the body of the message that is being replied to. By default 
29685 Alpine will use the value of the configuration option 
29686 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
29687 Observe that by toggling this option to include headers, text will be toggled
29688 to be included by default.
29690 <LI><B>R</B>: Can be used to set a role different from the default.
29692 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
29693 message. The default is to strip the signature when the message is not
29694 viewed in headers mode, and you either have enabled
29695 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
29697 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
29699 <LI><B>Ctrl-R</B>: Can be used to edit the 
29700 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
29701 </OL>
29703 In order to include the text of the original message in the reply
29704 you either need to press 'y' to include the original text, or 'n' to 
29705 exclude it from the reply. Pressing return will execute the default 
29706 action, which is to include text only if the option
29707 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29708 is enabled. However, notice that the default is to include text if you edit the 
29709 reply indent string or if you explicitly set through this menu that you
29710 want headers included in the reply message.
29713 &lt;End of help on this topic&gt;
29714 </BODY>
29715 </HTML>
29716 ====== h_config_del_from_dot =====
29717 <HTML>
29718 <HEAD>
29719 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29720 </HEAD>
29721 <BODY>
29722 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29724 This feature controls the behavior of the Ctrl-K command in the composer.
29725 If set, ^K will cut from the current cursor position to the end of the line,
29726 rather than cutting the entire line.
29729 &lt;End of help on this topic&gt;
29730 </BODY>
29731 </HTML>
29732 ====== h_config_print_index =====
29733 <HTML>
29734 <HEAD>
29735 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29736 </HEAD>
29737 <BODY>
29738 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29740 This feature controls the behavior of the Print command when in the
29741 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29742 asking if you wish to print the message index, or the currently highlighted
29743 message. If not set, the message will be printed.
29746 &lt;End of help on this topic&gt;
29747 </BODY>
29748 </HTML>
29749 ====== h_config_allow_talk =====
29750 <HTML>
29751 <HEAD>
29752 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29753 </HEAD>
29754 <BODY>
29755 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29757 UNIX Alpine only.
29759 By default, permission for others to &quot;talk&quot; to your terminal is turned
29760 off when you are running Alpine.  When this feature is set, permission is
29761 instead turned on.  If enabled, you may see unexpected messages in the
29762 middle of your Alpine screen from someone attempting to contact you via the
29763 &quot;talk&quot; program.
29766 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29767 talk daemon on your system will attempt to print a message on your screen 
29768 when someone else is trying to contact you.  If you wish to see these
29769 messages while you are running Alpine, you should enable this feature.
29772 If you do enable this feature and see a &quot;talk&quot; message, you must 
29773 suspend or quit Alpine before you can respond.
29776 &lt;End of help on this topic&gt;
29777 </BODY>
29778 </HTML>
29779 ====== h_config_send_filter_dflt =====
29780 <HTML>
29781 <HEAD>
29782 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29783 </HEAD>
29784 <BODY>
29785 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29786 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29787 configured, setting this feature will cause
29788 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29789 instead of unfiltered, the usual default.
29791 <UL>   
29792 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29793 </UL><P>
29794 &lt;End of help on this topic&gt;
29795 </BODY>
29796 </HTML>
29797 ====== h_config_custom_print =====
29798 <HTML>
29799 <HEAD>
29800 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29801 </HEAD>
29802 <BODY>
29803 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29805 When this feature is set, the print command will have an additional
29806 subcommand called "C CustomPrint".  If selected, you will have
29807 the opportunity to enter any system print command --instead of being 
29808 restricted to using those that have been previously configured in the 
29809 printer setup menu.
29812 &lt;End of help on this topic&gt;
29813 </BODY>
29814 </HTML>
29815 ====== h_config_enable_dot_files =====
29816 <HTML>
29817 <HEAD>
29818 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29819 </HEAD>
29820 <BODY>
29821 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29823 When this feature is set, files beginning with dot (".") will be
29824 visible in the file browser.  For example, you'll be able to select them
29825 when using the browser to add an attachment to a message.
29827 &lt;End of help on this topic&gt;
29828 </BODY>
29829 </HTML>
29830 ====== h_config_enable_dot_folders =====
29831 <HTML>
29832 <HEAD>        
29833 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29834 </HEAD>
29835 <BODY>
29836 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29838 When this feature is set, folders beginning with dot (".") may be added
29839 and viewed.
29841 &lt;End of help on this topic&gt;
29842 </BODY>
29843 </HTML>
29844 ====== h_config_ff_between_msgs =====
29845 <HTML>
29846 <HEAD>
29847 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29848 </HEAD>
29849 <BODY>
29850 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29852 Setting this feature causes a formfeed to be printed between messages when
29853 printing multiple messages (with Apply Print command).
29855 &lt;End of help on this topic&gt;
29856 </BODY>
29857 </HTML>
29858 ====== h_config_blank_keymenu =====
29859 <HTML>
29860 <HEAD>
29861 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29862 </HEAD>
29863 <BODY>
29864 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29866 If this feature is set the command key menu that normally appears on the
29867 bottom two lines of the screen will not usually be there.  Asking for
29868 help with ^G or ? will cause the key menu to appear instead of causing
29869 the help message to come up.  If you want to actually see the help text,
29870 another ^G or ? will show it to you.  After the key menu has popped
29871 up with the help key it will remain there for an O for Other command but
29872 disappear if any other command is typed.
29874 &lt;End of help on this topic&gt;
29875 </BODY>
29876 </HTML>
29877 ====== h_config_enable_mouse =====
29878 <HTML>
29879 <HEAD>
29880 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29881 </HEAD>
29882 <BODY>
29883 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29885 This feature controls whether or not an X terminal mouse can be used with
29886 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29887 being used, the left mouse button on the mouse can be used to select text
29888 or commands.
29889 Clicking on a command at the bottom of the screen will behave as if you had
29890 typed that command.
29891 Clicking on an index line will move the current message highlight to
29892 that line.
29893 Double-clicking on an index line will view the message.
29894 Double-clicking on a link will view the link.
29896 This type of mouse support will also work in some terminal emulators which are
29897 not actually X terminals, but which have extra code to support the xterm
29898 style mouse.
29899 For those emulators you not only need to turn this feature on but you also
29900 have to set the $DISPLAY environment variable even though it isn't needed
29901 for your terminal.
29902 That will cause Alpine to think that it is an xterm and to properly interpret the
29903 escape sequences sent by the mouse.
29905 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29906 also modified.  It is sometimes possible to hold the shift key down while clicking
29907 left or middle mouse buttons for the normal xterm cut/paste operations. 
29908 There is also an Alpine command to toggle this mode on or off.
29909 The command is Ctrl-&#92; (Control-backslash).
29911 &lt;End of help on this topic&gt;
29912 </BODY>
29913 </HTML>
29914 ====== h_config_enable_xterm_newmail =====
29915 <HTML>
29916 <HEAD>        
29917 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29918 </HEAD>
29919 <BODY>
29920 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29922 This feature controls whether or not Alpine will attempt to announce new
29923 mail arrival when it is running in an X terminal window and that window
29924 is iconified.  If set, and the $DISPLAY variable indicates that an X
29925 terminal is being used, Alpine will send appropriate escape sequences to
29926 the X terminal to modify the label on Alpine's icon to indicate that new
29927 mail has arrived. Alpine will also modify the Alpine window's title to
29928 indicate new mail.
29929 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29931 &lt;End of help on this topic&gt;
29932 </BODY></HTML>
29933 ====== h_config_enable_newmail_short_text =====
29934 <HTML>
29935 <HEAD>        
29936 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29937 </HEAD>
29938 <BODY>
29939 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29941 This feature controls the text to be displayed in an icon in the event
29942 of a new message arrival.  Normally, the message will
29943 be the one that is displayed on the screen.  This feature shortens the
29944 message to a count of the number of new messages in brackets.  This may be
29945 more useful for those who use the window's title bar in the task bar as a
29946 new mail indicator.  This feature is only useful if the
29947 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29948 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29949 feature, this feature is only relevant when run in an xterm environment.
29951 &lt;End of help on this topic&gt;
29952 </BODY></HTML>
29953 ====== h_config_copy_to_to_from =====
29954 <HTML>
29955 <HEAD>
29956 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29957 </HEAD>
29958 <BODY>
29959 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29961 This feature affects the From address used when Replying to a message.
29962 It is probably only useful if you have some
29963 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29964 defined.
29965 When enabled, it checks to see if any of the addresses in the To or Cc
29966 fields of the message you are replying to is one of your addresses.
29967 If it is, and there is only one of them, then that address is used as
29968 the From address in the message you are composing.
29969 In other words, you will be using a From address that is the same
29970 as the To address that was used to get the mail to you in the first place.
29973 If a role is being used and it has a From address defined, that From address will
29974 be used rather than the one derived from this feature.
29977 <UL>   
29978 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29979 </UL><P>
29980 &lt;End of help on this topic&gt;
29981 </BODY>
29982 </HTML>
29983 ====== h_config_prefix_editing =====
29984 <HTML>
29985 <HEAD>
29986 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29987 </HEAD>
29988 <BODY>
29989 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29991 This feature affects the Reply command's &quot;Include original message
29992 in Reply?&quot; prompt.  When enabled, it causes the
29993 &quot;Edit Indent String&quot; sub-command to appear which allows 
29994 you to edit the string Alpine would otherwise use to denote included 
29995 text from the message being replied to.<P>
29997 Thus, you can change Alpine's default message quote character (usually
29998 an angle bracket) on a per message basis. So you could change your quoted message to
29999 look, for example, like this:<p>
30001 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
30003 John: I just wanted to say hello and to congratulate you
30004 John: on a job well done!</pre><p>
30006 The configuration option
30007 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30008 may be used to change what appears as the default string to be edited.
30010 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
30011 currently being replied to.
30013 If you change your <!--#echo var="VAR_reply-indent-string"-->
30014 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30015 quoted text will not be flowed
30016 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
30017 when you reply.
30018 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
30019 set to the default value.
30021 <UL>   
30022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30023 </UL><P>
30024 &lt;End of help on this topic&gt;
30025 </BODY>
30026 </HTML>
30027 ====== h_config_enable_search_and_repl =====
30028 <HTML>
30029 <HEAD>
30030 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
30031 </HEAD>
30032 <BODY>
30033 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
30035 This feature modifies the behavior of Alpine's composer.  Setting this
30036 feature causes Alpine to offer the "^R Replace" subcommand, which
30037 allows you to search and replace text strings in a message you are composing, 
30038 inside the "^W Where is" command.  
30042 To search and replace text, first enter the text to be replaced at the 
30043 "Search: " prompt.  Then, rather than pressing Enter to just search for that
30044 text, press ^R, which turns the prompt into 
30048 Search (to replace): 
30052 and then press Enter.  The cursor will highlight the first occurrence 
30053 of the text string you entered, and the prompt will show: 
30057 Replace "<your text string>" with : 
30061 where <your text string> is what you entered at the previous prompt;
30062 here, enter the replacement text.  To only replace the highlighted 
30063 occurrence, simply press Enter now; to replace all occurrences in the 
30064 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
30065 each replacement.
30069 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
30070 ^X toggles between "Replace All" and "Replace One."
30074 If you previously searched for text in a message, it will be offered for 
30075 re-use as part of the prompt, shown in [ ] brackets.
30078 &lt;End of help on this topic&gt;
30079 </BODY>
30080 </HTML>
30081 ====== h_config_enable_view_attach =====
30082 <HTML>
30083 <HEAD>
30084 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
30085 </HEAD>
30086 <BODY>
30087 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
30089 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30090 Setting this feature causes Alpine to present attachments in boldface.
30091 The first available attachment is displayed in inverse.  This is the
30092 "selected" attachment.  Pressing RETURN will cause Alpine to display
30093 the selected attachment.  Use the arrow keys to change which of the
30094 attachments displayed in boldface is the current selection.
30098 Speaking of arrow keys, the Up and Down Arrows will select the next
30099 and previous attachments if one is available on the screen for selection.
30100 Otherwise, they will simply adjust the viewed text one line up or down.
30104 Similarly, when selectable items are present in a message, the Ctrl-F key
30105 can be used to select the next item in the message independent of which
30106 portion of the viewed message is currently displayed. The Ctrl-B key can
30107 be used to select the previous item in the same way. 
30108 <P> 
30109 &lt;End of help on this topic&gt;
30110 </BODY>
30111 </HTML>
30112 ====== h_config_enable_y_print =====
30113 <HTML>
30114 <HEAD>
30115 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
30116 </HEAD>
30117 <BODY>
30118 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
30120 This feature modifies the behavior of Alpine's Print command.
30122 By default, Alpine's print command is available by pressing the "%" key.  
30123 (This command is a substantial change from Pine versions before 4.00 -- 
30124 where the print command was "Y" -- based on numerous complaints about 
30125 printing being invoked inadvertently, since Y also means "Yes.")  
30129 This feature is supplied to mitigate any disruption or anxiety users 
30130 might feel as a result of this change.  
30134 Enabling this feature will cause Alpine to recognize both the old
30135 command, "Y" for Prynt, as well the new "%" method for invoking
30136 printing.  Note, key menu labels are not changed as a result of
30137 enabling this feature.
30141 &lt;End of help on this topic&gt;
30142 </BODY>
30143 </HTML>
30144 ====== h_config_enable_lessthan_exit =====
30145 <HTML>
30146 <HEAD>
30147 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
30148 </HEAD>
30149 <BODY>
30150 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
30152 If this feature is set, then on screens where there is an Exit command
30153 but no < command, the < key will perform the same function as the Exit
30154 command.
30155 This feature is set by default.
30157 &lt;End of help on this topic&gt;
30158 </BODY>
30159 </HTML>
30160 ====== h_config_enable_view_url =====
30161 <HTML>
30162 <HEAD>
30163 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
30164 </HEAD>
30165 <BODY>
30166 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
30167 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30168 When this feature is set (the default) Alpine will select possible URLs from the
30169 displayed text and display them in boldface for selection.
30171 The first available URL is displayed in inverse.  This is the
30172 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
30173 the selected URL via either built-in means as with mailto:, imap:,
30174 news:, and nntp:, or via an external application as defined
30175 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30176 variable.
30178 Use the arrow keys to change which of the URLs displayed in boldface
30179 is the current selection.
30181 Speaking of arrow keys, the Up and Down Arrows will select the next
30182 and previous URL if one is available on the screen for selection (unless 
30183 you have set the feature 
30184 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
30185 Otherwise, they will simply adjust the viewed text one line up or down.
30187 Similarly, when selectable items are present in a message, the Ctrl-F
30188 key can be used to select the next item in the message independent
30189 of which portion of the viewed message is currently displayed. The
30190 Ctrl-B key can be used to select the previous item in the same way.
30192 <UL>   
30193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30194 </UL><P>
30195 &lt;End of help on this topic&gt;
30196 </BODY>
30197 </HTML>
30198 ====== h_config_enable_view_web_host =====
30199 <HTML>
30200 <HEAD>
30201 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
30202 </HEAD>
30203 <BODY>
30204 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
30206 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30207 When this feature is set (the default) Alpine will select possible web hostnames
30208 from the displayed text and display them in boldface for selection.  
30209 This can be useful when you receive messages referencing World Wide Web 
30210 sites without the use of complete URLs; for example, specifying only 
30211 &quot;www.some.site.com&quot; (which will <B>not</B> become a 
30212 selectable 
30213 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
30214 rather than explicitly
30215 &quot;http://www.some.site.com&quot;.  
30217 The first available hostname is displayed in inverse.  This is the
30218 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
30219 the selected hostname via an external application as defined
30220 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30221 variable.
30223 Use the arrow keys (unless you have set the feature 
30224 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30225 to change which of the hostnames displayed in
30226 boldface is the current selection.
30228 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30229 key can be used to select the next web hostname in the message independent
30230 of which portion of the viewed message is currently displayed. The
30231 Ctrl-B key can be used to select the previous web hostnames in the same way.
30233 <UL>   
30234 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30235 </UL><P>
30236 &lt;End of help on this topic&gt;
30237 </BODY>
30238 </HTML>
30239 ====== h_config_enable_view_addresses =====
30240 <HTML>
30241 <HEAD>
30242 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30243 </HEAD>
30244 <BODY>
30245 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30247 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30248 Setting this feature causes Alpine to select possible email addresses
30249 from the displayed text and display them in boldface for selection.  
30252 The first available email address is displayed in inverse.  This is the
30253 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30254 the message composition screen with the To: field filled in with the
30255 selected address.
30257 Use the arrow keys (unless you have set the feature 
30258 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30259 to change which of the hostnames displayed in
30260 boldface is the current selection.
30262 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30263 key can be used to select the next web hostname in the message independent
30264 of which portion of the viewed message is currently displayed. The
30265 Ctrl-B key can be used to select the previous web hostnames in the same way.
30267 <UL>   
30268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30269 </UL><P>
30270 &lt;End of help on this topic&gt;
30271 </BODY>
30272 </HTML>
30273 ====== h_config_enable_view_arrows =====
30274 <HTML>
30275 <HEAD>
30276 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30277 </HEAD>
30278 <BODY>
30279 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30281 This feature modifies Up and Down arrow key behavior in Alpine's
30282 MESSAGE TEXT screen when selectable Attachments, URL's, or
30283 web-hostnames are presented. Alpine's usual behavior is to move to
30284 the next or previous selectable item if currently displayed or
30285 simply to adjust the screen view by one line.
30289 Setting this feature causes the UP and Down arrow key to behave as
30290 if no selectable items were present in the message.
30294 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30295 item) functionality is unchanged.
30298 &lt;End of help on this topic&gt;
30299 </BODY>
30300 <HTML>
30301 ====== h_config_quell_charset_warning =====
30302 <HTML>
30303 <HEAD>
30304 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30305 </HEAD>
30306 <BODY>
30307 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30309 By default, if the message you are viewing contains characters that are
30310 not representable in your
30311 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30312 then Alpine will
30313 add a warning to the start of the displayed text.
30314 If this option is set, then that editorial message will be suppressed.
30316 Setting this feature also suppresses the comment about the character set
30317 in header lines.
30318 For example, when viewing a message you might see
30320 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30322 in the From header if your Character-Set is something other than ISO-8859-2.
30323 If you set this feature, the comment about the character set will
30324 no longer be there.
30326 &lt;End of help on this topic&gt;
30327 </BODY>
30328 </HTML>
30329 ====== h_config_quell_host_after_url =====
30330 <HTML>
30331 <HEAD>
30332 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
30333 </HEAD>
30334 <BODY>
30335 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
30337 By default, links in HTML text are displayed with the host the link
30338 references appended, within square brackets, to the link text.  Alpine
30339 does this to help indicate where a link will take you, particularly when
30340 the link text might suggest a different destination.
30343 Setting this feature will prevent the server name from being appended
30344 to the displayed text.
30347 &lt;End of help on this topic&gt;
30348 </BODY>
30349 </HTML>
30350 ====== h_config_prefer_plain_text =====
30351 <HTML>
30352 <HEAD>
30353 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
30354 </HEAD>
30355 <BODY>
30356 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
30358 A message being viewed may contain alternate versions of the same content.
30359 Those alternate versions are supposed to be ordered by the sending software such that the
30360 first alternative is the least preferred and the last alternative is the
30361 most preferred. Alpine will normally display the most-preferred version that
30362 it knows how to display. This is most often encountered where the two
30363 alternate versions are a plain text version and an HTML version, with the
30364 HTML version listed last as the most preferred.
30366 If this option is set, then any plain text version will be preferred to
30367 all other versions.
30369 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
30370 which will temporarily change the sense of this option.
30371 If this option is set you will first see the plain text version of a
30372 message.
30373 If you then type the &quot;A&quot; command, you will see the most preferred version,
30374 most likely HTML, instead.
30375 Typing the &quot;A&quot; command a second time will switch it back.
30376 Alternatively, if the present option is not set you will originally see
30377 the most preferred version of the message and typing &quot;A&quot; will switch to
30378 the plain text version.
30380 &lt;End of help on this topic&gt;
30381 </BODY>
30382 </HTML>
30383 ====== h_config_pass_control =====
30384 <HTML>
30385 <HEAD>
30386 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
30387 </HEAD>
30388 <BODY>
30389 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
30391 It is probably not useful to set this option.
30392 This is a legacy option left behind &quot;just in case&quot;.
30393 Multi-byte characters that have an octet that has the same
30394 value as a control character are permitted through whether or not
30395 this option is turned on.
30397 This feature controls how certain characters contained in messages are
30398 displayed.
30399 If set, all characters in a message will be sent to the
30400 screen. Normally, control characters are displayed as shown below to
30401 avoid a garbled screen and to 
30402 avoid inadvertently changing terminal setup parameters.
30403 Control characters are usually displayed as two character sequences like
30404 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
30405 for Control-C,
30406 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
30407 for ESCAPE,
30408 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
30409 for DELETE, and
30410 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
30411 for the character with value 133 (0x85).
30412 (The DEL character is displayed as ^?, regular control characters are displayed
30413 as the character ^ followed by the character obtained by adding the
30414 five low-order bits of the character to 0x40, and the C1
30415 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
30416 character obtained by adding the
30417 five low-order bits of the character to 0x40.)
30418 Sometimes, in cases where changing a single control character into a
30419 two-character sequence would confuse Alpine's display routines,
30420 a question mark is substituted for the control character.
30422 If you wish to filter out regular control characters but pass the
30423 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30424 you may leave this feature unset and set the feature <A HREF="h_config_pass_c1_control"><!--#echo var="FEAT_pass-c1-control-characters-as-is"--></A> instead.
30426 &lt;End of help on this topic&gt;
30427 </BODY>
30428 </HTML>
30429 ====== h_config_pass_c1_control =====
30430 <HTML>
30431 <HEAD>
30432 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
30433 </HEAD>
30434 <BODY>
30435 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
30437 It is probably not useful to set this option.
30438 This is a legacy option left behind &quot;just in case&quot;.
30439 Multi-byte characters that have an octet that has the same
30440 value as a control character are permitted through whether or not
30441 this option is turned on.
30443 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30444 is set, then this feature has no effect.
30445 However, if you wish to filter out regular control characters but pass the
30446 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30447 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30448 unset and set this feature.
30450 &lt;End of help on this topic&gt;
30451 </BODY>
30452 </HTML>
30453 ====== h_config_fcc_on_bounce =====
30454 <HTML>
30455 <HEAD>
30456 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30457 </HEAD>
30458 <BODY>
30459 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30461 This feature controls an aspect of Alpine's behavior when bouncing a
30462 message. If set, normal FCC ("File Carbon Copy") processing will be
30463 done, just as if you had composed a message to the address you are
30464 bouncing to.  If not set, no FCC of the message will be saved. 
30466 &lt;End of help on this topic&gt;
30467 </BODY>
30468 </HTML>
30469 ====== h_config_show_cursor =====
30470 <HTML>
30471 <HEAD>
30472 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30473 </HEAD>
30474 <BODY>
30475 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30477 This feature controls an aspect of Alpine's displays.  If set, the system
30478 cursor will move to convenient locations in the displays.  For example,
30479 to the beginning of the status field of the highlighted index line, or
30480 to the highlighted word after a successful WhereIs command.  It is intended
30481 to draw your attention to an "interesting" spot on the screen.
30483 &lt;End of help on this topic&gt;
30484 </BODY>
30485 </HTML>
30486 ====== h_config_sort_fcc_alpha =====
30487 <HTML>
30488 <HEAD>
30489 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30490 </HEAD>
30491 <BODY>
30492 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30494 This feature controls an aspect of Alpine's FOLDER LIST screen.
30495 If set, the default Fcc folder will be sorted alphabetically with the other
30496 folders instead of appearing right after the INBOX.
30498 &lt;End of help on this topic&gt;
30499 </BODY>
30500 </HTML>
30501 ====== h_config_sort_save_alpha =====
30502 <HTML>
30503 <HEAD>
30504 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30505 </HEAD>
30506 <BODY>
30507 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30509 This feature controls an aspect of Alpine's FOLDER LIST screen.
30510 If set, the default save folder will be sorted alphabetically with the other
30511 folders instead of appearing right after the INBOX (and default FCC folder).
30513 &lt;End of help on this topic&gt;
30514 </BODY>
30515 </HTML>
30516 ====== h_config_single_list =====
30517 <HTML>
30518 <HEAD>
30519 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30520 </HEAD>
30521 <BODY>
30522 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30524 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30525 the folders will be listed one per line instead of several per line
30526 in the FOLDER LIST display.
30528 &lt;End of help on this topic&gt;
30529 </BODY>
30530 </HTML>
30531 ====== h_config_vertical_list =====
30532 <HTML>
30533 <HEAD>
30534 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30535 </HEAD>
30536 <BODY>
30537 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30539 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30540 the folders will be listed alphabetically down the columns rather
30541 than across the columns as is the default.
30543 &lt;End of help on this topic&gt;
30544 </BODY>
30545 </HTML>
30546 ====== h_config_verbose_post =====
30547 <HTML>
30548 <HEAD>
30549 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30550 </HEAD>
30551 <BODY>
30552 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30553 This feature controls an aspect of Alpine's message sending.  When enabled,
30554 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30555 intended to cause the SMTP server to provide a more detailed account of
30556 the transaction.  This feature is typically only useful to system
30557 administrators and other support personel as an aid in troublshooting
30558 problems.
30560 Note, this feature relies on a specific capability of the system's mail
30561 transport agent or configured 
30562 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30563 It is possible that this
30564 feature will cause problems for some tranport agents, and may result in
30565 sending failure.  In addition, as the verbose output comes from the mail
30566 transport agent, it is likely to vary from one system to another. 
30567 <P><UL>
30568 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30569 </UL><P>
30570 &lt;End of help on this topic&gt;
30571 </BODY>
30572 </HTML>
30573 ====== h_config_auto_reply_to =====
30574 <HTML>
30575 <HEAD>
30576 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30577 </HEAD>
30578 <BODY>
30579 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30581 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30582 will not prompt when a message being replied to contains a "Reply-To:"
30583 header value, but will simply use its value (as opposed to using the
30584 "From:" field's value).
30588 Note: Using the "Reply-To:" address is usually the preferred behavior,
30589 however, some mailing list managers choose to place the list's address in
30590 the "Reply-To:" field of any message sent out to the list.  In such
30591 cases, this feature makes it all too easy for personal replies to be
30592 inadvertently sent to the entire mail list, so be careful! 
30594 &lt;End of help on this topic&gt;
30595 </BODY>
30596 </HTML>
30597 ====== h_config_del_skips_del =====
30598 <HTML>
30599 <HEAD>
30600 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30601 </HEAD>
30602 <BODY>
30603 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30605 This feature controls an aspect of Alpine's Delete command.  If set, this
30606 feature will cause the Delete command to advance past following messages that
30607 are marked deleted.  In other words, pressing "D" will both mark the
30608 current message deleted and advance to the next message that is not marked
30609 deleted.
30610 This feature is set by default.
30612 &lt;End of help on this topic&gt;
30613 </BODY></HTML>
30614 ====== h_config_expunge_manually =====
30615 <HTML>
30616 <HEAD>
30617 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30618 </HEAD>
30619 <BODY>
30620 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30622 Normally, when you close a folder that contains deleted messages you are
30623 asked if you want to expunge those messages from the folder permanently.
30624 If this feature is set, you won't be asked and the deleted messages will
30625 remain in the folder.
30626 If you choose to set this feature you will have to expunge the
30627 messages manually using the eXpunge command, which you can use while
30628 in the MESSAGE INDEX screen.
30629 If you do not expunge deleted messages the size of your
30630 folder will continue to increase until you are out of disk space.
30632 <UL>   
30633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30634 </UL><P>
30635 &lt;End of help on this topic&gt;
30636 </BODY>
30637 </HTML>
30638 ====== h_config_auto_expunge =====
30639 <HTML>
30640 <HEAD>
30641 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30642 </HEAD>
30643 <BODY>
30644 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30646 This features controls an aspect of Alpine's eXpunge command.  If set, you
30647 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30648 place.
30649 Actually, this is only true for the INBOX folder and for folders in the
30650 Incoming Folders collection. See the feature
30651 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30653 <UL>   
30654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30655 </UL><P>
30656 &lt;End of help on this topic&gt;
30657 </BODY>
30658 </HTML>
30659 ====== h_config_full_auto_expunge =====
30660 <HTML>
30661 <HEAD>
30662 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30663 </HEAD>
30664 <BODY>
30665 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30667 This features controls an aspect of Alpine's eXpunge command.  If set, you
30668 will <B>not</B> be prompted to confirm your intent before the expunge 
30669 takes place.  This feature sets this behavior for all folders, unlike the
30670 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30671 feature that works only for incoming folders.
30673 <UL>   
30674 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30675 </UL><P>
30676 &lt;End of help on this topic&gt;
30677 </BODY>
30678 </HTML>
30679 ====== h_config_auto_read_msgs =====
30680 <HTML>
30681 <HEAD>
30682 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30683 </HEAD>
30684 <BODY>
30685 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30686 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30687 and the 
30688 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30689 option is also set, then Alpine will
30690 automatically transfer all read messages to the designated folder and mark
30691 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30692 &quot;N&quot; (meaning New, or unseen) are not affected.
30694 <UL>   
30695 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30696 </UL><P>
30697 &lt;End of help on this topic&gt;
30698 </BODY>
30699 </HTML>
30700 ====== h_config_auto_fcc_only =====
30701 <HTML>
30702 <HEAD>
30703 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30704 </HEAD>
30705 <BODY>
30706 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30707 This features controls an aspect of Alpine's composer.
30708 The only time this feature will be used is if you attempt to send mail
30709 that has no recipients but does have an Fcc.
30710 Normally, Alpine will ask if you really mean to copy the message only to
30711 the Fcc.
30712 That is, it asks if you really meant to have no recipients.
30713 If this feature is set, you
30714 will <B>not</B> be prompted to confirm your intent to make only a copy
30715 of a message with no recipients.
30717 This feature is closely related to
30718 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30719 The difference between this feature and that feature is that this feature
30720 considers a Bcc to be a recipient while that feature will ask for confirmation
30721 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30722 The default values also differ. This feature defaults to asking the question
30723 and you have to turn it off.
30724 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30725 unless you turn it on.
30728 <UL>   
30729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30730 </UL><P>
30731 &lt;End of help on this topic&gt;
30732 </BODY>
30733 </HTML>
30734 ====== h_config_mark_fcc_seen =====
30735 <HTML>
30736 <HEAD>
30737 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30738 </HEAD>
30739 <BODY>
30740 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30742 This features controls the way Fccs (File carbon copies) are
30743 made of the messages you send.
30746 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30747 copy will be marked as Unseen.
30748 When you look at the folder it was saved in the message will appear to
30749 be a New message until you read it.
30750 When this feature is enabled, the message will be marked as having
30751 been Seen.
30754 <UL>   
30755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30756 </UL><P>
30757 &lt;End of help on this topic&gt;
30758 </BODY>
30759 </HTML>
30760 ====== h_config_no_fcc_attach =====
30761 <HTML>
30762 <HEAD>
30763 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30764 </HEAD>
30765 <BODY>
30766 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30768 This features controls the way Fcc's (File carbon copies) are
30769 made of the messages you send.
30772 Normally, Alpine saves an exact copy of your message as it was sent.
30773 When this feature is enabled, the &quot;body&quot; of the message
30774 you send (the text you type in the composer) is preserved in the 
30775 copy as before, however all attachments are replaced with text
30776 explaining what had been sent rather than the attachments themselves.
30779 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30780 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30781 allows you to interactively set whether or not attachments are saved
30782 to the Fcc'd copy.
30785 <UL>   
30786 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30787 </UL><P>
30788 &lt;End of help on this topic&gt;
30789 </BODY>
30790 </HTML>
30791 ====== h_config_read_in_newsrc_order =====
30792 <HTML>
30793 <HEAD>
30794 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30795 </HEAD>
30796 <BODY>
30797 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30799 This feature controls the order in which newsgroups will be presented.  If
30800 set, they will be presented in the same order as they occur in your 
30801 <!--chtml if pinemode="os_windows"-->
30802 &quot;NEWSRC&quot;
30803 <!--chtml else-->
30804 &quot;.newsrc&quot;
30805 <!--chtml endif-->
30806 file (the default location of which can be changed with the 
30807 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30809 If not set, the newsgroups will be presented in alphabetical order.
30811 <UL>   
30812 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30813 </UL><P>
30814 &lt;End of help on this topic&gt;
30815 </BODY>
30816 </HTML>
30817 ====== h_config_quell_tz_comment =====
30818 <HTML>
30819 <HEAD>
30820 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30821 </HEAD>
30822 <BODY>
30823 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30825 Normally, when Alpine generates a Date header for outgoing mail,
30826 it will try to include the symbolic timezone at the end of the
30827 header inside parentheses.
30828 The symbolic timezone is often three characters long, but on
30829 some operating systems, it may be longer.
30830 Apparently there are some SMTP servers in the world that will reject an
30831 incoming message if it has a Date header longer than about 80 characters.
30832 If this feature is set, the symbolic timezone normally generated by
30833 Alpine will not be included.
30834 You probably don't need to worry about this feature unless you run into
30835 the problem described above.
30838 &lt;End of help on this topic&gt;
30839 </BODY>
30840 </HTML>
30841 ====== h_config_post_wo_validation =====
30842 <HTML>
30843 <HEAD>
30844 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30845 </HEAD>
30846 <BODY>
30847 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30849 This feature controls whether the NNTP server is queried as newsgroups
30850 are entered for posting.  Validation over slow links (e.g. dialup using
30851 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30853 &lt;End of help on this topic&gt;
30854 </BODY>
30855 </HTML>
30856 ====== h_config_send_wo_confirm =====
30857 <HTML>
30858 <HEAD>
30859 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30860 </HEAD>
30861 <BODY>
30862 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30864 By default, when you send or post a message you will be asked to confirm
30865 with a question that looks something like:
30868 <CENTER><SAMP>Send message?</SAMP></CENTER>
30871 If this feature is set, you
30872 will <B>not</B> be prompted to confirm your intent to send
30873 and your message will be sent.
30875 If this feature is set it disables some possibilities and renders some
30876 other features meaningless.
30877 You will not be able to use
30878 <A HREF="h_config_sending_filter">Sending Filters</A>,
30879 Verbose sending mode,
30880 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30881 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30882 or ^V to turn off the generation of flowed text for this message.
30883 These options are normally available as suboptions in the Send prompt, but
30884 with no Send prompt the options are gone.
30887 A somewhat related feature is
30888 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30889 which may be used to eliminate the extra confirmation
30890 question when posting to a newsgroup.
30892 <UL>   
30893 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30894 </UL><P>
30895 &lt;End of help on this topic&gt;
30896 </BODY>
30897 </HTML>
30898 ====== h_config_quell_filtering_done_message =====
30899 <HTML>
30900 <HEAD>
30901 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30902 </HEAD>
30903 <BODY>
30904 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30906 If you use Filter Rules that move messages or set status of messages
30907 you sometimes see a message from Alpine that looks like
30910 <CENTER><SAMP>filtering done</SAMP></CENTER>
30913 If this feature is set, this message will be suppressed.
30914 If the feature
30915 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30916 is set then this message will be suppressed regardless.
30919 <UL>   
30920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30921 </UL><P>
30922 &lt;End of help on this topic&gt;
30923 </BODY>
30924 </HTML>
30925 ====== h_config_quell_filtering_messages =====
30926 <HTML>
30927 <HEAD>
30928 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30929 </HEAD>
30930 <BODY>
30931 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30933 If you use Filter Rules that move messages or set status of messages
30934 you sometimes see messages from Alpine that look like
30937 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30943 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30949 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30952 If this feature is set, these messages will be suppressed.
30953 The feature
30954 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30955 is related.
30958 <UL>   
30959 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30960 </UL><P>
30961 &lt;End of help on this topic&gt;
30962 </BODY>
30963 </HTML>
30964 ====== h_config_quell_post_prompt =====
30965 <HTML>
30966 <HEAD>
30967 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30968 </HEAD>
30969 <BODY>
30970 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30972 By default, when you post a message to a newsgroup you are asked to confirm
30973 that you want to post with the question
30976 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30979 If this feature is set, you
30980 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30981 and your message will be posted.
30984 <UL>   
30985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30986 </UL><P>
30987 &lt;End of help on this topic&gt;
30988 </BODY>
30989 </HTML>
30990 ====== h_config_check_mail_onquit =====
30991 <HTML>
30992 <HEAD>
30993 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30994 </HEAD>
30995 <BODY>
30996 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30998 If this feature is set, Alpine will check for new mail after you give the
30999 Quit command.
31000 If new mail has arrived since the previous check, you will be notified
31001 and given the choice of quitting or not quitting.
31003 <UL>   
31004 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31005 </UL><P>
31006 &lt;End of help on this topic&gt;
31007 </BODY>
31008 </HTML>
31009 ====== h_config_inbox_no_confirm =====
31010 <HTML>
31011 <HEAD>
31012 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
31013 </HEAD>
31014 <BODY>
31015 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
31017 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31018 command and there are no more folders or newsgroups to visit, you are asked
31019 if you want to return to the INBOX.
31020 If this feature is set you will not be asked.
31021 It will be assumed that you do want to return to the INBOX.
31023 <UL>   
31024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31025 </UL><P>
31026 &lt;End of help on this topic&gt;
31027 </BODY>
31028 </HTML>
31029 ====== h_config_dates_to_local =====
31030 <HTML>
31031 <HEAD>
31032 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
31033 </HEAD>
31034 <BODY>
31035 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
31037 Normally, the message dates that you see in the
31038 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
31039 For example, if a message was sent to you from a few timezones to the east
31040 it might appear that it was sent from the future;
31041 or if it was sent from somewhere to the west it might appear
31042 as if it is from yesterday even though it was sent only a few minutes ago.
31043 If this feature is set an attempt will be made to convert the dates
31044 to your local timezone to be displayed.
31046 Note that this does not affect the results of Select by Date or of
31047 anything else other than these displayed dates.
31048 When viewing the message you may look at the original unconverted value of the Date
31049 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
31051 <UL>   
31052 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31053 </UL><P>
31054 &lt;End of help on this topic&gt;
31055 </BODY>
31056 </HTML>
31057 ====== h_config_tab_no_prompt =====
31058 <HTML>
31059 <HEAD>
31060 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
31061 </HEAD>
31062 <BODY>
31063 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
31065 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31066 command and there is a problem checking a folder, you are asked
31067 whether you want to continue with the search in the following folder or not.
31068 This question gives you a chance to stop the NextNew processing.
31069 (The checking problem might be caused by the fact that the folder does not
31070 exist, or by an authentication problem, or by a server problem
31071 of some sort.)
31074 If this feature is set you will not be asked.
31075 It will be assumed that you do want to continue.
31077 <UL>   
31078 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31079 </UL><P>
31080 &lt;End of help on this topic&gt;
31081 </BODY>
31082 </HTML>
31083 ====== h_config_input_history =====
31084 <HTML>
31085 <HEAD>
31086 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
31087 </HEAD>
31088 <BODY>
31089 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
31091 Many of the prompts that ask for input in the status line near the
31092 bottom of the screen will respond to Up Arrow and Down Arrow
31093 with the history of previous entries.
31094 For example, in the MESSAGE INDEX screen when you use the WhereIs
31095 command the text you entered will be remembered and can be recalled
31096 by using the Up Arrow key.
31097 Another example, when saving a message the folders saved to will
31098 be remembered and can be recalled using the arrow keys.
31100 In the Save prompt, some users prefer that the Up and Down arrow keys
31101 be used for the Previous Collection and Next Collection commands
31102 instead of for a history of previous saves.
31103 If this option is set the Up and Down arrow keys will become synonyms for the
31104 Previous Collection and Next Collection (^P and ^N) commands in the
31105 prompt for the name of a folder to Save to or in the prompt for the
31106 name of a folder to GoTo.
31107 When this feature is not set (the default), ^P and ^N will change the
31108 collection and the arrow keys will show the history.
31110 <UL>   
31111 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31112 </UL><P>
31113 &lt;End of help on this topic&gt;
31114 </BODY>
31115 </HTML>
31116 ====== h_config_confirm_role =====
31117 <HTML>
31118 <HEAD>
31119 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
31120 </HEAD>
31121 <BODY>
31122 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
31124 If you have roles, when you Reply to or Forward a message, or Compose
31125 a new message, Alpine
31126 will search through your roles for one that matches.
31127 Normally, if no matches are found you will be placed into the composer
31128 with no opportunity to select a role.
31129 If this feature is set, then you will be asked to confirm that you don't
31130 want a role.
31131 This will give you the opportunity to select a role (with the ^T command).
31132 If you confirm no role with a Return, you will be placed in
31133 the composer with no role.
31134 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
31135 These behave the same as if you pressed the Return.
31136 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
31137 match what you might type if there was a role match.)
31139 If you are using the alternate form of the Compose command called
31140 &quot;Role&quot;, then all of your roles will be available to you,
31141 independent of the value of this feauture and of the values set for all of
31142 Reply Use, Forward Use, and Compose Use.
31144 <UL>   
31145 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31146 </UL><P>
31147 &lt;End of help on this topic&gt;
31148 </BODY>
31149 </HTML>
31150 ====== h_config_news_cross_deletes =====
31151 <HTML>
31152 <HEAD>
31153 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
31154 </HEAD>
31155 <BODY>
31156 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
31158 This feature controls what Alpine does when you delete a message in a
31159 newsgroup that appears in more than one newsgroup.  Such a message
31160 is sometimes termed a &quot;crossposting&quot; in that it was posted
31161 across several newsgroups.
31164 Alpine's default behavior when you delete such a message is to remove
31165 only the copy in the current newsgroup from view when you use the
31166 &quot;Exclude&quot; command or the next time you visit the newsgroup.
31169 Enabling this feature causes Alpine to remove every occurrence of the
31170 message from all newsgroups it appears in and to which you are
31171 subscribed.
31174 NOTE: As currently implemented, enabling this feature may increase the
31175 time it takes the Expunge command and newsgroup closing to complete.
31178 <UL>   
31179 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31180 </UL><P>
31181 &lt;End of help on this topic&gt;
31182 </BODY>
31183 </HTML>
31184 ====== h_config_news_catchup =====
31185 <HTML>
31186 <HEAD>
31187 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
31188 </HEAD>
31189 <BODY>
31190 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
31192 This feature controls what Alpine does as it closes a newsgroup.
31193 When set, Alpine will offer to delete all messages from the newsgroup
31194 as you are quitting Alpine or opening a new folder.
31197 This feature is useful if you typically read all the interesting messages
31198 in a newsgroup each time you open it.  This feature saves you from
31199 having to delete each message in a newsgroup as you read it or from
31200 selecting all the messages and doing an
31201 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
31202 move on to the next folder or newsgroup.
31205 <UL>   
31206 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31207 </UL><P>
31208 &lt;End of help on this topic&gt;
31209 </BODY>
31210 </HTML>
31211 ====== h_config_next_thrd_wo_confirm =====
31212 <HTML>
31213 <HEAD>
31214 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
31215 </HEAD>
31216 <BODY>
31217 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
31219 This feature controls an aspect of Alpine's Next and Prev commands in
31220 the case where you are using one of the
31221 &quot;separate-index-screen&quot; styles for the configuration option
31222 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31223 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31224 When you are Viewing a particular thread you have a
31225 MESSAGE INDEX of only the messages in that thread.
31226 If you press the Next command with the last message in the thread highlighted
31227 you will normally be asked if you want to &quot;View next thread?&quot;,
31228 assuming there is a next thread to view.
31229 If this feature is set it will be assumed that you always want to view the
31230 next thread and you won't be asked to confirm that.
31231 Similarly, if the first message of the thread is highlighted and you
31232 press the Prev command, this feature will prevent the question
31233 &quot;View previous thread&quot;.
31235 This feature only has an effect in the MESSAGE INDEX screen.
31236 If you then view a particular message from that screen and press the
31237 Next command, you will be sent to the next thread without being asked,
31238 independent of the setting of this feature.
31240 The feature
31241 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31243 &lt;End of help on this topic&gt;
31244 </BODY>
31245 </HTML>
31246 ====== h_config_kw_braces =====
31247 <HTML>
31248 <HEAD>
31249 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31250 </HEAD>
31251 <BODY>
31252 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31254 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31255 TEXT screens.
31256 If you have modified the
31257 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31258 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31259 are used to display keywords or their initials along with the Subject; then
31260 this option may be used to modify the resulting display slightly.
31261 By default, the keywords or initials displayed for these tokens will be
31262 surrounded with curly braces ({ and }) and a trailing space.
31263 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31264 a message, the &quot;SUBJKEY&quot; token will normally look like
31266 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31268 and the SUBJKEYINIT token would look like
31270 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31272 The default character before the keywords is the left brace ({) and the
31273 default after the keywords is the right brace followed by a space (} ).
31275 This option allows you to change that.
31276 You should set it to two values separated by a space.
31277 The values may be quoted if they include space characters.
31278 So, for example, the default value could be specified explicitly by setting this
31279 option to
31281 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31283 The first part wouldn't need to be quoted (but it doesn't hurt).
31284 The second part does need the quotes because it includes a space character.
31285 If you wanted to change the braces to brackets you could use
31287 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31289 Inside the quotes you can use backslash quote to mean quote, so
31291 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31293 would produce
31295 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31297 It is also possible to color keywords in the index using the
31298 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31300 It is not possible to change the fact that a space character is used to
31301 separate the keywords if more than one keyword is set for a message.
31302 It is also not possible to change the fact that there are no separators
31303 between the keyword initials if more than one keyword is set.
31305 &lt;End of help on this topic&gt;
31306 </BODY>
31307 </HTML>
31308 ====== h_config_opening_sep =====
31309 <HTML>
31310 <HEAD>
31311 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31312 </HEAD>
31313 <BODY>
31314 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31316 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31317 With some setups the text of the subject is followed
31318 by the opening text of the message if there is any room available in the index line.
31319 If you have configured your
31320 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31321 to include one of the Subject tokens that causes this behavior
31322 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
31323 to modify what is displayed slightly.
31324 By default, the Subject is separated from the opening text of the message by
31325 the three characters space dash space;
31327 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
31329 Use this option to set it to something different.
31330 The value must be quoted if it includes any space characters.
31331 For example, the default value could be specified explicitly by setting this
31332 option to
31334 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
31336 &lt;End of help on this topic&gt;
31337 </BODY>
31338 </HTML>
31339 ====== h_config_select_wo_confirm =====
31340 <HTML>
31341 <HEAD>
31342 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
31343 </HEAD>
31344 <BODY>
31345 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
31347 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
31348 These commands all take text input to specify the name of the folder or
31349 file to be used, but allow you to press ^T for a list of possible names.
31350 If set, the selected name will be used immediately, without further
31351 opportunity to confirm or edit the name.
31353 Some related help topics are
31354 <UL>
31355 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
31356 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
31357 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
31358 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
31359 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
31360 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
31361 </UL>
31363 &lt;End of help on this topic&gt;
31364 </BODY>
31365 </HTML>
31366 ====== h_config_save_part_wo_confirm =====
31367 <HTML>
31368 <HEAD>
31369 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
31370 </HEAD>
31371 <BODY>
31372 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
31374 This feature controls an aspect of Alpine's Save command.
31375 By default, when you Save a message that has some deleted parts, you will
31376 be asked to confirm that you want to Save with a prompt that looks like:
31378 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
31380 If this feature is set, you will not be asked.
31382 &lt;End of help on this topic&gt;
31383 </BODY>
31384 </HTML>
31385 ====== h_config_use_resentto =====
31386 <HTML>
31387 <HEAD>
31388 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
31389 </HEAD>
31390 <BODY>
31391 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
31393 This feature is turned off by default because turning it on causes problems
31394 with some deficient IMAP servers.
31395 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
31396 <A HREF="h_rule_patterns">Pattern</A>
31397 contains a To header pattern and this feature is turned on,
31398 then a check is made in the message to see
31399 if a Resent-To header is present, and that is used instead of the To header.
31400 If this feature is not turned on, then the regular To header will always
31401 be used.
31404 &lt;End of help on this topic&gt;
31405 </BODY>
31406 </HTML>
31407 ====== h_config_use_reg_start_for_stayopen =====
31408 <HTML>
31409 <HEAD>
31410 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
31411 </HEAD>
31412 <BODY>
31413 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
31415 This feature affects which message is selected as the current message
31416 when you enter a
31417 <A HREF="h_config_permlocked">Stay Open</A> folder.
31419 Normally, the starting position for an incoming folder (which most Stay Open
31420 folders will likely be) is controlled by the
31421 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
31422 However, if a folder is a Stay Open folder, when you re-enter the folder
31423 after the first time the current message will be the same as it was when
31424 you left the folder.
31425 An exception is made if you use the TAB command to get to the folder.
31426 In that case, the message number will be incremented by one from what it
31427 was when you left the folder.
31429 The above special behavior is thought to be useful.
31430 However, it is special and different from what you might at first expect.
31431 If this feature is set, then Stay Open folders will not be treated specially
31432 as far as the startup rule is concerned.
31435 &lt;End of help on this topic&gt;
31436 </BODY>
31437 </HTML>
31438 ====== h_config_use_current_dir =====
31439 <HTML>
31440 <HEAD>
31441 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
31442 </HEAD>
31443 <BODY>
31444 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31446 This feature controls an aspect of several commands. 
31447 If set, your &quot;current working directory&quot; 
31448 <!--chtml if pinemode="running"-->
31449 (which, at least for your current Alpine &quot;session,&quot; 
31450 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31451 <!--chtml endif-->
31452 will be used instead of your home directory 
31453 <!--chtml if pinemode="running"-->
31454 (which, in the present configuration of your system, is
31455  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31456 <!--chtml endif-->
31457 for all of the following operations:<UL>
31458     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31459     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31460     <LI> <!--chtml if pinemode="function_key"-->F4
31461          <!--chtml else-->Ctrl-R
31462          <!--chtml endif--> file inclusion in the COMPOSER
31463     <LI> <!--chtml if pinemode="function_key"-->F5
31464          <!--chtml else-->Ctrl-J
31465          <!--chtml endif--> file attachment in the COMPOSER
31466 </UL>
31467 <!--chtml if pinemode="os_windows"-->
31469 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31470 you can set the &quot;current drive&quot; 
31471 by specifying it in the &quot;Start in:&quot; 
31472 box found in the Shortcut tab of the Properties.  
31473 <!--chtml endif-->
31475 <UL>   
31476 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31477 </UL>
31480 &lt;End of help on this topic&gt;
31481 </BODY>
31482 </HTML>
31483 ====== h_config_save_wont_delete =====
31484 <HTML>
31485 <HEAD>
31486 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31487 </HEAD>
31488 <BODY>
31489 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31491 This feature controls one aspect of the Save command.  If set, Save will
31492 not mark the message &quot;deleted&quot; (its default behavior) after
31493 it has been copied to the designated folder.
31496 &lt;End of help on this topic&gt;
31497 </BODY>
31498 </HTML>
31499 ====== h_config_use_boring_spinner =====
31500 <HTML>
31501 <HEAD>
31502 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31503 </HEAD>
31504 <BODY>
31505 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31507 When Alpine is delayed for some reason it usually shows that
31508 something is happening with a small animated display in the status
31509 message line near the bottom of the screen.
31510 Setting this feature will cause that animation to be the same
31511 each time instead of having Alpine choose a random animation.
31512 You may turn the animation off altogether by setting the
31513 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31514 option to zero.
31517 &lt;End of help on this topic&gt;
31518 </BODY>
31519 </HTML>
31520 ====== h_config_unsel_wont_advance =====
31521 <HTML>
31522 <HEAD>
31523 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31524 </HEAD>
31525 <BODY>
31526 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31528 This feature controls one aspect of the Unselect Current message command.
31529 Normally, when the Unselect current message command (:) is typed when the
31530 current message is selected, the message will be unselected and the next
31531 message will become the current message.
31532 If this feature is set, the cursor will not advance to the next message.
31533 Instead, the current message will remain the current message after
31534 unselecting.
31537 &lt;End of help on this topic&gt;
31538 </BODY>
31539 </HTML>
31540 ====== h_config_prune_uses_iso =====
31541 <HTML>
31542 <HEAD>
31543 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31544 </HEAD>
31545 <BODY>
31546 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31548 By default, Alpine asks monthly whether or not you would like to rename
31549 some folders to a new name containing the date.
31550 It also asks whether or not you would like to delete some old folders.
31551 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31552 explanation.
31555 By default, the name used when renaming a folder looks like
31557 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31559 For example, the first time you run Alpine in May of 2004,
31560 the folder &quot;sent-mail&quot; might be renamed to
31562 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31564 If this feature is set, the name used will be of the form
31566 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31568 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31569 month (01, 02, ..., 12).
31570 For the April, 2004 example above, it would instead be
31572 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31574 because April is the 4th month of the year.
31575 A reason you might want to set this feature is so that the folders
31576 will sort in chronological order.
31579 &lt;End of help on this topic&gt;
31580 </BODY>
31581 </HTML>
31582 ====== h_config_save_advances =====
31583 <HTML>
31584 <HEAD>
31585 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31586 </HEAD>
31587 <BODY>
31588 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31590 This feature controls one aspect of the Save command.  If set, Save will
31591 (in addition to copying the current message to the designated folder) also
31592 advance to the next message.
31595 &lt;End of help on this topic&gt;
31596 </BODY>
31597 </HTML>
31598 ====== h_config_force_arrow =====
31599 <HTML>
31600 <HEAD>
31601 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31602 </HEAD>
31603 <BODY>
31604 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31606 This feature affects Alpine's MESSAGE INDEX display routine.
31607 If set, the normal inverse-video cursor will be
31608 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31609 second column of the index display.
31611 This is the same index cursor you get if you turn on
31612 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31613 line coloring will still be present if this feature is turned on and
31614 <!--#echo var="FEAT_assume-slow-link"--> is off.
31616 An alternative version of the Arrow cursor is available by including the
31617 <A HREF="h_config_index_arrow_color">ARROW</A>
31618 token in the
31619 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31621 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31622 but that is not implemented.
31625 &lt;End of help on this topic&gt;
31626 </BODY>
31627 </HTML>
31628 ====== h_config_ignore_size =====
31629 <HTML>
31630 <HEAD>
31631 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31632 </HEAD>
31633 <BODY>
31634 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31636 When you have an account residing in an IMAP server, Alpine records the 
31637 size of each message as reported by the server. However, when Alpine saves 
31638 a message in such IMAP server, Alpine will compute the size of the message 
31639 independently, from the data it received. If these two numbers do not 
31640 match for a message, Alpine asks you if you still want to take the risk of 
31641 saving such message, since data corruption or loss of data could result 
31642 from this save.
31645 Sometimes the root of this problem is that the IMAP server does not 
31646 compute sizes correctly, and there will not be loss of information when 
31647 saving such message. Enabling this feature will make Alpine ignore such 
31648 error and continue saving the message without producing any warnings or 
31649 ever stopping the process, as if there had not been any error. This option 
31650 applies to all IMAP servers that you use, so if you enable this feature, 
31651 size discrepancy warnings will not be given for any IMAP server you 
31652 connect to.
31655 Example of a server where you could reproduce this problem is the Gmail 
31656 IMAP server. Another example can be found in some versions of the Exchange 
31657 server.
31660 It is recommended that this feature be disabled most of the time and only 
31661 enabled when you find a server which you can determine that has the above 
31662 mentioned defect, but be disabled again after making the save operation 
31663 succeed.
31666 &lt;End of help on this topic&gt;
31667 </BODY>
31668 </HTML>
31669 ====== h_config_force_low_speed =====
31670 <HTML>
31671 <HEAD>
31672 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31673 </HEAD>
31674 <BODY>
31675 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31677 UNIX Alpine only.
31679 This feature affects Alpine's display routines.  If set, the normal
31680 inverse-video cursor (used to highlight the current item in a list) will be
31681 replaced by an &quot;arrow&quot; cursor and other
31682 screen update optimizations for
31683 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31684 One of the optimizations is that colored index lines (set up with Indexcolor
31685 Rules) will not be colored.
31686 If you are just turning this feature on because you like using
31687 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31688 coloring by turning this feature off and the
31689 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31692 &lt;End of help on this topic&gt;
31693 </BODY>
31694 </HTML>
31695 ====== h_config_show_delay_cue =====
31696 <HTML>
31697 <HEAD>
31698 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31699 </HEAD>
31700 <BODY>
31701 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31703 If set, this feature will cause an asterisk to appear in the upper
31704 left-hand corner of the screen whenever Alpine checks for new mail.
31705 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31706 mailbox to disk.
31708 <!--chtml if pinemode="os_windows"-->
31710 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31711 it is trying to open a network connection (e.g, to open your INBOX
31712 on an IMAP
31713 server) or read from the network connection.  A greater-than symbol,
31714 will be displayed when PC-Alpine is trying to write to the network
31715 connection (e.g, sending a command to your IMAP server).
31716 <!--chtml endif-->
31719 &lt;End of help on this topic&gt;
31720 </BODY>
31721 </HTML>
31722 ====== h_config_color_style =====
31723 <HTML>
31724 <HEAD>
31725 <TITLE>OPTION: Color Style</TITLE>
31726 </HEAD>
31727 <BODY>
31728 <H1>OPTION: Color Style</H1>
31730 UNIX Alpine only.
31732 If the terminal or terminal emulator you are using is capable of displaying
31733 colors, this option controls whether or not color will be used in Alpine.
31734 If you turn color on and things are set up correctly,
31735 you should see color appear on the screen immmediately.
31736 Modern terminal emulators are usually capable of displaying colors.
31738 The available options include:
31741 <DL>
31742 <DT>no-color</DT>
31743 <DD>Don't use color.
31744 </DD>
31746 <DT>use-termdef</DT>
31747 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31748 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31749 how Alpine was compiled.
31750 This is a good option to choose if you switch between a color and a non-color
31751 terminal with the same Alpine configuration.
31752 Alpine will know to use color on the color terminal because it is described
31753 in the termcap entry, and Alpine will know to use black and white on the
31754 non-color terminal.
31755 The Alpine Technical Notes
31756 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31757 have more information on configuring a TERMCAP or TERMINFO
31758 entry for color Alpine.
31759 This is usually something a system administrator does.
31760 </DD>
31762 <DT>force-ansi-8color</DT>
31763 <DD>This is probably the setting that most people should use.
31764 Because setting up a termcap entry is confusing and because the
31765 terminal capabilities database is often not correctly configured for color,
31766 this choice and the next may be easier for you to use.
31767 If your terminal emulator responds to ANSI color escape sequences, which
31768 many do, this option will cause Alpine to believe your terminal will respond
31769 to the escape sequences that produce eight different foreground and background
31770 colors.
31771 The escape sequences used to set the foreground colors are
31773   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31775 where the color_number is an ASCII digit between 0 and 7.
31776 The numbers 0 through 7 should correspond to the colors black, red, green,
31777 yellow, blue, magenta, cyan, and white.
31778 Some terminal emulators use a pre-ANSI scheme that swaps
31779 the colors blue and red and the colors yellow and cyan.
31780 This will cause the default colors to be different, but other than that
31781 things should work fine.
31782 There is also a 9th color available, the last one shown, which is the default
31783 color from the terminal emulator.
31784 When used as a background color some people refer to this color as
31785 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31786 shown in the color swatch of the SETUP COLOR screen.
31787 The foreground transparent color is shown as
31788 the color of the &quot;TRAN&quot; text.
31789 (The transparent color will not work correctly in a PC-Alpine configuration.)
31790 The escape sequences used to set the background colors are the same
31791 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31792 The escape sequences for foreground and background default colors (transparent)
31793 are 39m and 49m.
31795 Note: With the Tera Term terminal emulator this setting works well.
31796 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31797 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31798 menu, in the &quot;Window&quot; submenu.
31799 </DD>
31801 <DT>force-ansi-16color</DT>
31802 <DD>Many terminal emulators know about the same eight colors above
31803 plus eight more.
31804 This option attempts to use all 16 colors.
31805 The same escape sequences as for the eight-color terminal are used
31806 for the first eight colors.
31807 The escape sequences used to set foreground colors 8-15 are the same as
31808 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31809 The background color sequences for colors 8-15 are the same as for 0-7
31810 except the &quot;4&quot; is replaced with &quot;10&quot;.
31811 You can tell if the 16 colors are working by turning on this option
31812 and then going into one of the color configuration screens, for example,
31813 the configuration screen for Normal Color.
31814 If you see 16 different colors to select from (plus a 17th for
31815 the transparent color), it's working.
31816 </DD>
31818 <DT>force-xterm-256color</DT>
31819 <DD>Some versions of xterm (and some other terminal emulators)
31820 have support for 256 colors.
31821 The escape sequences used to set the foreground colors are
31823   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31825 where the color_number is an ASCII digit between 0 and 255.
31826 Background colors are the same with the 38 replaced with a 48.
31827 The numbers 0 through 15 are probably similar to the 16 color version
31828 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31829 The terminal default (transparent) color is the 257th color at the bottom.
31830 Some terminal emulators will misinterpret these escape sequences causing
31831 the terminal to blink or overstrike characters or to do something else
31832 undesirable.
31834 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31835 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31836 this 256-color setting.
31838 </DD>
31839 </DL>
31842 The normal default is &quot;no-color&quot;.
31845 Once you've turned on color you may set the
31846 colors of many objects on the screen individually.
31847 For example, you may add colors to the status letters on the MESSAGE
31848 INDEX page.
31849 Most categories of color that Alpine supports are configurable here.
31850 For example, &quot;Normal Color&quot;
31851 is the color used to display most of the text in Alpine, and
31852 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31853 current message in the MESSAGE INDEX.
31855 Lines in the MESSAGE INDEX may also be colored.
31856 Use Setup Rules to get to the Indexcolor configuration screen.
31859 <UL>   
31860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31861 </UL><P>
31862 &lt;End of help on this topic&gt;
31863 </BODY>
31864 </HTML>
31865 ====== h_config_disable_index_locale_dates =====
31866 <HTML>
31867 <HEAD>
31868 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31869 </HEAD>
31870 <BODY>
31871 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31873 This feature affects the display of dates in the MESSAGE INDEX.
31874 Normally an attempt is made to localize the dates
31875 used in the MESSAGE INDEX display to your locale.
31876 This is controlled with the
31877 LC_TIME locale setting on a UNIX system.
31878 On Windows the Regional Options control panel may be used to set the date format.
31879 At the programming level, Alpine is using the strftime routine
31880 to print the parts of a date.
31882 If this feature is set, dates are displayed in English and
31883 with the conventions of the United States.
31886 <UL>   
31887 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31888 </UL><P>
31889 &lt;End of help on this topic&gt;
31890 </BODY>
31891 </HTML>
31892 ====== h_config_auto_open_unread =====
31893 <HTML>
31894 <HEAD>
31895 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31896 </HEAD>
31897 <BODY>
31898 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
31900 This feature controls the behavior of the TAB key when traversing folders
31901 in the optional 
31902 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
31903 collection or in optional <!--#echo var="VAR_news-collections"-->.
31905 When the TAB
31906 (<A HREF="h_common_nextnew">NextNew</A>)
31907 key is pressed, and there
31908 are no more unseen messages in the current (incoming message or news)
31909 folder, Alpine will search the list of folders in the current collection for
31910 one containing New or Recent (new since the last time the folder was
31911 opened) messages.
31912 This behavior may be modified slightly with the
31913 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31914 feature that causes Alpine to look for Unseen messages instead of Recent
31915 messages.
31916 Normally, when such a folder is found, Alpine will ask
31917 whether you wish to open the folder.  If this feature is set, Alpine will
31918 automatically open the folder without prompting.
31920 This feature also affects some other similar situations.
31921 If you have a
31922 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31923 that is equal to one of the &quot;separate-&quot; values, and you are
31924 viewing a thread; then when you type the NextNew command and are at the
31925 end of the current thread you will automatically go to the next thread
31926 if this feature is set.
31927 By default, you would be asked if you want to view the next thread.
31928 You will also be asked at times whether or not you want to view the next
31929 thread after you delete the last message in the thread.
31930 Setting this feature will also cause that question to be skipped.
31933 <UL>   
31934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31935 </UL><P>
31936 &lt;End of help on this topic&gt;
31937 </BODY>
31938 </HTML>
31939 ====== h_config_auto_include_reply =====
31940 <HTML>
31941 <HEAD>
31942 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31943 </HEAD>
31944 <BODY>
31945 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31947 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31948 will ask whether you wish to include the original message in your reply.
31949 If this feature is set and the feature
31950 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31951 is <EM>not</EM> set, then the original message will be included in the reply
31952 automatically, without prompting.
31954 &lt;End of help on this topic&gt;
31955 </BODY>
31956 </HTML>
31957 ====== h_config_select_in_bold =====
31958 <HTML>
31959 <HEAD>
31960 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31961 </HEAD>
31962 <BODY>
31963 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31965 This feature controls an aspect of Alpine's 
31966 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31967 commands; in
31968 particular, the Select and WhereIs commands. Select and WhereIs (with the
31969 ^X subcommand) will search the current folder for messages meeting a
31970 specified criteria, and &quot;tag&quot; the resulting messages with an 
31971 &quot;X&quot; in the
31972 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31973 is set, instead of using the &quot;X&quot; to denote a selected message, 
31974 Alpine will
31975 attempt to display those index lines in boldface. Whether this is
31976 preferable to the &quot;X&quot; will depend on personal taste and the type of
31977 terminal being used.
31979 <UL>   
31980 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31981 </UL><P>
31982 &lt;End of help on this topic&gt;
31983 </BODY>
31984 </HTML>
31985 ====== h_config_alt_auth =====
31986 <HTML>
31987 <HEAD>
31988 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31989 </HEAD>
31990 <BODY>
31991 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31993 This feature affects how Alpine connects to IMAP servers.
31994 It's utility has largely been overtaken by events,
31995 but it may still be useful in some circumstances.
31996 If you only connect to modern IMAP servers that support
31997 &quot;TLS&quot; you can ignore this feature.
32000 Details:
32003 By default, Alpine will attempt to connect to an IMAP server on the
32004 normal IMAP service port (143), and if the server offers &quot;Transport Layer
32005 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
32006 then a secure (encrypted) session will be negotiated.
32009 With this feature enabled, before connecting on the normal IMAP port, Alpine
32010 will first attempt to connect to an alternate IMAP service port (993) used
32011 specifically for encrypted IMAP sessions via the Secure Sockets Layer
32012 (SSL) method.
32013 If the SSL attempt fails, Alpine will then try the default
32014 behavior described in the previous paragraph.
32017 TLS negotiation on the normal port is preferred, and supersedes the use of
32018 SSL on port 993, but older servers may not provide TLS support.
32019 This feature may be convenient when accessing IMAP servers that do not support
32020 TLS, but do support SSL connections on port 993.
32021 However, it is important to understand that with this feature enabled,
32022 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
32023 but it will proceed to make an insecure connection if that is the only
32024 option offered by the server, or if the Alpine in question has been built
32025 without encryption capability.
32028 Note that this feature specifies a per-user (or system-wide) default
32029 behavior, but host/folder specification flags may be used to control the
32030 behavior of any specific connection.
32031 This feature interacts with some of
32032 the possible host/folder path specification flags as follows:
32035 The <SAMP>/tls</SAMP> host flag, for example,
32038 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
32040 will over-ride this feature for the specified host by bypassing the
32041 SSL connection attempt.
32042 Moreover, with <SAMP>/tls</SAMP> specified,
32043 the connection attempt will fail if the
32044 service on port 143 does not offer TLS support.
32047 The <SAMP>/ssl</SAMP> host flag, for example,
32050 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
32052 will insist on an SSL connection for the specified host,
32053 and will fail if the SSL service on port 993 is not available.
32054 Alpine will not subsequently retry a connection
32055 on port 143 if <SAMP>/ssl</SAMP> is specified.
32058 <UL>   
32059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32060 </UL><P>
32061 &lt;End of help on this topic&gt;
32062 </BODY>
32063 </HTML>
32064 ====== h_config_file_dir ======
32065 <HTML>
32066 <HEAD>
32067 <TITLE>OPTION: File Directory</TITLE>
32068 </HEAD>
32069 <BODY>
32070 <H1>OPTION: File Directory</H1>
32072 PC-Alpine only.
32074 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
32075 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
32076 Message Index's &quot;E&nbsp;Export&quot; command.
32079 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
32080 component, Alpine assumes the file exists in the user's home directory.
32081 Under Windows operating systems, this definition isn't always clear.  This 
32082 feature allows you to explictly set where Alpine should look for files
32083 without a leading path.
32086 NOTE: this feature's value is ignored if either 
32087 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
32088 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
32091 <UL>   
32092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32093 </UL><P>
32094 &lt;End of help on this topic&gt;
32095 </BODY>
32096 </HTML>
32097 ====== h_config_quote_all_froms =====
32098 <HTML>
32099 <HEAD>
32100 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
32101 </HEAD>
32102 <BODY>
32103 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
32105 This feature controls an aspect of the Save command (and also the way
32106 outgoing messages are saved to an FCC folder).  If set, Alpine will add
32107 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
32108 when they are saved to another folder, including lines syntactically
32109 distinguishable from the type of message separator line commonly used on
32110 Unix systems.
32113 The default behavior is that a &quot;>&quot; will be prepended only to lines
32114 beginning with &quot;From &quot; that might otherwise be confused with a message
32115 separator line on Unix systems.  If pine is the only mail program you use,
32116 this default is reasonable.  If another program you use has trouble
32117 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
32118 enable this feature.  This feature only applies to the common Unix mailbox
32119 format that uses message separator lines beginning with &quot;From &quot;.  If
32120 Alpine has been configured to use a different mailbox format (possibly
32121 incompatible with other mail programs), then this issue does not arise,
32122 and the feature is irrelevant.
32125 &lt;End of help on this topic&gt;
32126 </BODY>
32127 </HTML>
32128 ====== h_config_normal_color =====
32129 <HTML>
32130 <HEAD>
32131 <TITLE>OPTION: Normal Color</TITLE>
32132 </HEAD>
32133 <BODY>
32134 <H1>OPTION: Normal Color</H1>
32136 Sets the color Alpine normally uses.
32137 The foreground color is the color of the actual character and the
32138 background color is the color of the area behind the character.
32139 By default this color is black characters on a white background.
32141 <A HREF="h_color_setup">Descriptions of the available commands</A>
32143 Look <A HREF="h_edit_nav_cmds">here</A>
32144 to see the available Editing and Navigation commands.
32146 &lt;End of help on this topic&gt;
32147 </BODY>
32148 </HTML>
32149 ====== h_config_reverse_color =====
32150 <HTML>
32151 <HEAD>
32152 <TITLE>OPTION: Reverse Color</TITLE>
32153 </HEAD>
32154 <BODY>
32155 <H1>OPTION: Reverse Color</H1>
32157 Sets the color Alpine uses for reverse video characters.
32158 The foreground color is the color of the actual character and the
32159 background color is the color of the area behind the character.
32161 <A HREF="h_color_setup">Descriptions of the available commands</A>
32163 Look <A HREF="h_edit_nav_cmds">here</A>
32164 to see the available Editing and Navigation commands.
32166 &lt;End of help on this topic&gt;
32167 </BODY>
32168 </HTML>
32169 ====== h_config_title_color =====
32170 <HTML>
32171 <HEAD>
32172 <TITLE>OPTION: Title Color</TITLE>
32173 </HEAD>
32174 <BODY>
32175 <H1>OPTION: Title Color</H1>
32177 Sets the color Alpine uses for the titlebar (the top line on the screen).
32178 The foreground color is the color of the actual character and the
32179 background color is the color of the area behind the character.
32180 By default, the Title Color is black characters on a yellow background.
32182 The actual titlebar color may be different from the Title Color if
32183 the option
32184 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
32185 is set to some value other than the default.
32186 It may also be different if the current folder is closed and the
32187 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
32188 color is set to something different from the Title Color.
32190 <A HREF="h_color_setup">Descriptions of the available commands</A>
32192 Look <A HREF="h_edit_nav_cmds">here</A>
32193 to see the available Editing and Navigation commands.
32195 &lt;End of help on this topic&gt;
32196 </BODY>
32197 </HTML>
32198 ====== h_config_titleclosed_color =====
32199 <HTML>
32200 <HEAD>
32201 <TITLE>OPTION: Title Closed Color</TITLE>
32202 </HEAD>
32203 <BODY>
32204 <H1>OPTION: Title Closed Color</H1>
32206 Sets the color Alpine uses for the titlebar (the top line on the screen)
32207 when the current folder is closed.
32208 The foreground color is the color of the actual character and the
32209 background color is the color of the area behind the character.
32210 By default, the Title Color Closed Color is white characters on a red background.
32212 By setting this color to something noticeable you will be alerted to the
32213 fact that the current folder is closed, perhaps unexpectedly.
32215 &lt;End of help on this topic&gt;
32216 </BODY>
32217 </HTML>
32218 ====== h_config_status_color =====
32219 <HTML>
32220 <HEAD>
32221 <TITLE>OPTION: Status Color</TITLE>
32222 </HEAD>
32223 <BODY>
32224 <H1>OPTION: Status Color</H1>
32226 Sets the color Alpine uses for status messages written to the message
32227 line near the bottom of the screen.
32228 The foreground color is the color of the actual character and the
32229 background color is the color of the area behind the character.
32230 By default, the Status Color is the same as the Reverse Color.
32232 <A HREF="h_color_setup">Descriptions of the available commands</A>
32234 Look <A HREF="h_edit_nav_cmds">here</A>
32235 to see the available Editing and Navigation commands.
32237 &lt;End of help on this topic&gt;
32238 </BODY>
32239 </HTML>
32240 ====== h_config_index_opening_color =====
32241 <HTML>
32242 <HEAD>
32243 <TITLE>OPTION: Index Opening Color</TITLE>
32244 </HEAD>
32245 <BODY>
32246 <H1>OPTION: Index Opening Color</H1>
32248 With some setups the text of the subject is followed
32249 by the opening text of the message if there is any room available in the index line.
32250 If you have configured your
32251 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32252 to include one of the Subject tokens that causes this behavior
32253 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32254 this opening text with this option.
32255 This coloring takes place for all but the current index line, and the Opening
32256 Color appears to be in front of any color from an Index Color Rule.
32258 By default the Index Opening Color is gray characters on a white background.
32261 <A HREF="h_color_setup">Descriptions of the available commands</A>
32263 Look <A HREF="h_edit_nav_cmds">here</A>
32264 to see the available Editing and Navigation commands.
32266 &lt;End of help on this topic&gt;
32267 </BODY>
32268 </HTML>
32269 ====== h_config_index_pri_color =====
32270 <HTML>
32271 <HEAD>
32272 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32273 </HEAD>
32274 <BODY>
32275 <H1>OPTION: Index Priority Symbol Colors</H1>
32277 The X-Priority header is a non-standard header that is used in a
32278 somewhat standard way by many mail programs.
32279 Alpine expects the value of this header to be a digit with a value
32280 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32281 Alpine can be made to display an indication of this priority in
32282 messages by use of one of the tokens
32283 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32284 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32285 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32288 You may set the color used to draw these tokens by use of the colors
32289 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32290 This coloring takes place for all but the current index line, and the Priority
32291 Color appears to be in front of any color from an Index Color Rule.
32292 If the priority has a value of 1 or 2 the High Priority color will be
32293 used,
32294 and if the value is 4 or 5 the Low Priority color will be used.
32296 If you don't set these colors the index line will be colored in the same color as
32297 the bulk of the index line.
32300 <A HREF="h_color_setup">Descriptions of the available commands</A>
32302 Look <A HREF="h_edit_nav_cmds">here</A>
32303 to see the available Editing and Navigation commands.
32305 &lt;End of help on this topic&gt;
32306 </BODY>
32307 </HTML>
32308 ====== h_config_index_subject_color =====
32309 <HTML>
32310 <HEAD>
32311 <TITLE>OPTION: Index Subject Color</TITLE>
32312 </HEAD>
32313 <BODY>
32314 <H1>OPTION: Index Subject Color</H1>
32316 You may set the color used to draw the Subject part of the index line.
32317 This coloring takes place for all but the current index line, and the Subject
32318 Color appears to be in front of any color from an Index Color Rule.
32320 If you don't set this color it will be colored in the same color as
32321 the bulk of the index line.
32324 <A HREF="h_color_setup">Descriptions of the available commands</A>
32326 Look <A HREF="h_edit_nav_cmds">here</A>
32327 to see the available Editing and Navigation commands.
32329 &lt;End of help on this topic&gt;
32330 </BODY>
32331 </HTML>
32332 ====== h_config_index_from_color =====
32333 <HTML>
32334 <HEAD>
32335 <TITLE>OPTION: Index From Color</TITLE>
32336 </HEAD>
32337 <BODY>
32338 <H1>OPTION: Index From Color</H1>
32340 You may set the color used to draw the From part of the index line.
32341 This coloring takes place for all but the current index line, and the From
32342 Color appears to be in front of any color from an Index Color Rule.
32344 If you don't set this color it will be colored in the same color as
32345 the bulk of the index line.
32348 <A HREF="h_color_setup">Descriptions of the available commands</A>
32350 Look <A HREF="h_edit_nav_cmds">here</A>
32351 to see the available Editing and Navigation commands.
32353 &lt;End of help on this topic&gt;
32354 </BODY>
32355 </HTML>
32356 ====== h_config_index_arrow_color =====
32357 <HTML>
32358 <HEAD>
32359 <TITLE>OPTION: Index Arrow Color</TITLE>
32360 </HEAD>
32361 <BODY>
32362 <H1>OPTION: Index Arrow Color</H1>
32364 If you have configured your
32365 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32366 to include the &quot;ARROW&quot; token, you may set the color of
32367 the arrow displayed with this option.
32368 If you don't set the color it will be colored in the same color as
32369 the bulk of the index line.
32372 <A HREF="h_color_setup">Descriptions of the available commands</A>
32374 Look <A HREF="h_edit_nav_cmds">here</A>
32375 to see the available Editing and Navigation commands.
32377 &lt;End of help on this topic&gt;
32378 </BODY>
32379 </HTML>
32380 ====== h_config_index_color =====
32381 <HTML>
32382 <HEAD>
32383 <TITLE>OPTION: Index Colors</TITLE>
32384 </HEAD>
32385 <BODY>
32386 <H1>OPTION: Index Colors</H1>
32388 You may add color to the single character symbols that give the status
32389 of each message in the MESSAGE INDEX.
32390 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
32391 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
32392 screen depending on whether the message is addressed to you, and whether
32393 the message is marked Important, is Deleted, is Answered, or is New.
32394 The color for each of those characters may be specified by setting the
32395 &quot;Index-to-me&quot; Symbol Color,
32396 the &quot;Index-important&quot; Symbol Color,
32397 the &quot;Index-deleted&quot; Symbol Color,
32398 the &quot;Index-answered&quot; Symbol Color,
32399 and the &quot;Index-new&quot; Symbol Color.
32400 There are also two other symbol colors called &quot;Index-recent&quot;
32401 and &quot;Index-unseen&quot;.
32402 These two colors will only be used if you have configured your
32403 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32404 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
32406 The default colors for these symbols are:
32407 <TABLE>
32408 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
32409 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
32410 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32411 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
32412 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
32413 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32414 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32415 </TABLE>
32417 Besides coloring the message status symbols, you may also color the
32418 entire index line.
32419 This is done by using the
32420 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
32421 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
32422 When the entire line is colored that color will be &quot;behind&quot; the
32423 status symbol colors talked about in the paragraph above.
32425 You may also color
32426 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32427 in the index using the
32428 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
32429 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
32430 the Subject using
32431 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
32432 the From field using
32433 <A HREF="h_config_index_from_color">Index From Color</A>;
32434 and the
32435 <A HREF="h_config_index_opening_color">Index Opening</A> text.
32437 <A HREF="h_color_setup">Descriptions of the available commands</A>
32439 Look <A HREF="h_edit_nav_cmds">here</A>
32440 to see the available Editing and Navigation commands.
32442 &lt;End of help on this topic&gt;
32443 </BODY>
32444 </HTML>
32445 ====== h_config_metamsg_color =====
32446 <HTML>
32447 <HEAD>
32448 <TITLE>OPTION: Meta-Message Color</TITLE>
32449 </HEAD>
32450 <BODY>
32451 <H1>OPTION: Meta-Message Color</H1>
32453 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32454 that aren't part of the message itself.
32455 For example, an attachment that isn't shown might produce a meta
32456 message something like:
32458 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32460 If you set the
32461 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32462 option you might see
32464 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32466 Warnings about suspicious looking URLs in HTML will also be colored
32467 with this color.
32469 The foreground color is the color of the actual character and the
32470 background color is the color of the area behind the character.
32471 By default, the Meta-Message Color is black characters on a yellow background.
32473 <A HREF="h_color_setup">Descriptions of the available commands</A>
32475 Look <A HREF="h_edit_nav_cmds">here</A>
32476 to see the available Editing and Navigation commands.
32478 &lt;End of help on this topic&gt;
32479 </BODY>
32480 </HTML>
32481 ====== h_config_keylabel_color =====
32482 <HTML>
32483 <HEAD>
32484 <TITLE>OPTION: KeyLabel Color</TITLE>
32485 </HEAD>
32486 <BODY>
32487 <H1>OPTION: KeyLabel Color</H1>
32489 Sets the color Alpine uses for the labels of the keys in the two-line
32490 menu at the bottom of the screen.
32491 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32492 This option sets the color used when displaying &quot;PrevMsg&quot;.
32493 The foreground color is the color of the actual character and the
32494 background color is the color of the area behind the character.
32495 By default, the KeyLabel Color is the same as the Normal Color.
32497 WARNING: Some terminal emulators have the property that the screen will scroll
32498 down one line whenever a character is written to the character cell in the
32499 lower right corner of the screen.
32500 Alpine can usually avoid writing a character in that corner of the screen.
32501 However, if you have defined a KeyLabel Color then Alpine does have to write
32502 a character in that cell in order to color the cell correctly.
32503 If you find that your display sometimes scrolls up a line this could be
32504 the problem.
32505 The most obvious symptom is probably that the titlebar at the top of the
32506 screen scrolls off the screen.
32507 Try setting KeyLabel Color to Default to see if that fixes the problem.
32509 <A HREF="h_color_setup">Descriptions of the available commands</A>
32511 Look <A HREF="h_edit_nav_cmds">here</A>
32512 to see the available Editing and Navigation commands.
32514 &lt;End of help on this topic&gt;
32515 </BODY>
32516 </HTML>
32517 ====== h_config_keyname_color =====
32518 <HTML>
32519 <HEAD>
32520 <TITLE>OPTION: KeyName Color</TITLE>
32521 </HEAD>
32522 <BODY>
32523 <H1>OPTION: KeyName Color</H1>
32525 Sets the color Alpine uses for the names of the keys in the two-line
32526 menu at the bottom of the screen.
32527 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32528 This option sets the color used when displaying the &quot;P&quot;.
32529 The foreground color is the color of the actual character and the
32530 background color is the color of the area behind the character.
32531 By default, the KeyName Color is the same as the Reverse Color.
32533 <A HREF="h_color_setup">Descriptions of the available commands</A>
32535 Look <A HREF="h_edit_nav_cmds">here</A>
32536 to see the available Editing and Navigation commands.
32538 &lt;End of help on this topic&gt;
32539 </BODY>
32540 </HTML>
32541 ====== h_config_slctbl_color =====
32542 <HTML>
32543 <HEAD>
32544 <TITLE>OPTION: Selectable Item Color</TITLE>
32545 </HEAD>
32546 <BODY>
32547 <H1>OPTION: Selectable Item Color</H1>
32549 Sets the color Alpine uses for selectable items, such as URLs.
32550 The foreground color is the color of the actual character and the
32551 background color is the color of the area behind the character.
32552 By default, the Selectable Item Color is the same as the Normal Color,
32553 except that it is bold.
32555 <A HREF="h_color_setup">Descriptions of the available commands</A>
32557 Look <A HREF="h_edit_nav_cmds">here</A>
32558 to see the available Editing and Navigation commands.
32560 &lt;End of help on this topic&gt;
32561 </BODY>
32562 </HTML>
32563 ====== h_config_quote_color =====
32564 <HTML>
32565 <HEAD>
32566 <TITLE>OPTION: Quote Colors</TITLE>
32567 </HEAD>
32568 <BODY>
32569 <H1>OPTION: Quote Colors</H1>
32571 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32572 screen.
32573 If a line begins with a &gt; character (or space followed by &gt;)
32574 it is considered a quote.
32575 That line will be given the Quote1 Color (first level quote).
32576 If there is a second level of quoting then the Quote2 Color will be used.
32577 Alpine considers there to be a second level of quoting if that first &gt; is
32578 followed by another &gt; (or space followed by &gt;).
32579 If there are characters other than whitespace and &gt; signs, then it isn't
32580 considered another level of quoting.
32581 Similarly, if there is a third level of quoting the Quote3 Color will be
32582 used.
32583 If there are more levels after that the Quote Colors are re-used.
32584 If you define all three colors then it would repeat like Color1, Color2, Color3,
32585 Color1, Color2, Color3, ...
32586 If you only define the first two it would be
32587 Color1, Color2, Color1, Color2, ...
32588 If you define only the Quote1 Color, then the entire quote would be that
32589 color regardless of the quoting levels.
32590 By default, the Quote1 Color is black characters on a greenish-blue background;
32591 the Quote2 Color is black characters on a dull yellow background; and
32592 the Quote3 Color is black characters on a green background.
32594 <A HREF="h_color_setup">Descriptions of the available commands</A>
32596 Look <A HREF="h_edit_nav_cmds">here</A>
32597 to see the available Editing and Navigation commands.
32599 &lt;End of help on this topic&gt;
32600 </BODY>
32601 </HTML>
32602 ====== h_config_folder_color =====
32603 <HTML>
32604 <HEAD>
32605 <TITLE>OPTION: Folder Color</TITLE>
32606 </HEAD>
32607 <BODY>
32608 <H1>OPTION: Folder Color</H1>
32610 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32611 screen. By default, the Folder Color is the normal text color.
32614 If you set a color for this feature, other than the normal color
32615 (the default), or a color for
32616 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32617 will be colored according to the color specified in the
32618 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32619 case, the color will be the only indication that the colored name
32620 refers to a directory. The normal behavior is that Alpine
32621 indicates that a name refers to a directory by appending a
32622 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32623 the folder.
32626 If a folder is a directory, then the folder name will be painted
32627 according to the color defined by this variable, and a separator
32628 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32629 to the name. That
32630 indicator will be painted according to the color defined in the
32631 <A HREF="h_config_directory_color">Directory Color</A> option.
32634 &lt;End of help on this topic&gt;
32635 </BODY>
32636 </HTML>
32637 ====== h_config_directory_color =====
32638 <HTML>
32639 <HEAD>
32640 <TITLE>OPTION: Directory Color</TITLE>
32641 </HEAD>
32642 <BODY>
32643 <H1>OPTION: Directory Color</H1>
32645 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32646 screen. By default, the Folder Color is the normal text color.
32648 If you set a color for this feature, other than the normal color
32649 (the default), or a color for
32650 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32651 will be colored according to the color specified in the
32652 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32653 case, the color will be the only indication that the colored name
32654 refers to a directory. The normal behavior is that Alpine
32655 indicates that a name refers to a directory by appending a
32656 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32657 the folder.
32659 If a folder is a directory, then the folder name will be painted
32660 according to the color defined by the option
32661 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32662 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32663 after the name. That
32664 indicator will be painted according to the color defined in this
32665 option.
32667 &lt;End of help on this topic&gt;
32668 </BODY>
32669 </HTML>
32670 ====== h_config_folder_list_color =====
32671 <HTML>
32672 <HEAD>
32673 <TITLE>OPTION: Folder-List Color</TITLE>
32674 </HEAD>
32675 <BODY>
32676 <H1>OPTION: Folder-List Color</H1>
32678 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32679 screen. By default, the Folder-List Color is the normal text color.
32681 This text refers to the informative text that Alpine displays so you
32682 can recognize each collection. The color of the content of each collection
32683 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32684 and <A HREF="h_config_directory_color">Directory Color</A>.
32686 Unlike the options
32687 <A HREF="h_config_folder_color">Folder Color</A>
32688 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32689 this option does not affect the way that Alpine reports folders,
32690 directories and folders that are directories.
32692 &lt;End of help on this topic&gt;
32693 </BODY>
32694 </HTML>
32695 ====== h_config_incunseen_color =====
32696 <HTML>
32697 <HEAD>
32698 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32699 </HEAD>
32700 <BODY>
32701 <H1>OPTION: Incoming Unseen Color</H1>
32703 If the option
32704 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32705 is turned on it is possible to highlight the folders that contain
32706 unseen messages by coloring them with this color.
32707 By default, this is the same as the Normal Color and no highlighting is done.
32709 Usually the &quot;current&quot; folder (the folder the cursor is on)
32710 is highlighted using reverse video.
32711 If the current folder is colored because it contains unseen messages then
32712 the color used to show that it is also the current folder is controlled
32713 by the
32714 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32715 feature at the top of the SETUP COLOR screen.
32717 <A HREF="h_color_setup">Descriptions of the available commands</A>
32719 Look <A HREF="h_edit_nav_cmds">here</A>
32720 to see the available Editing and Navigation commands.
32722 &lt;End of help on this topic&gt;
32723 </BODY>
32724 </HTML>
32725 ====== h_config_signature_color =====
32726 <HTML>
32727 <HEAD>
32728 <TITLE>OPTION: Signature Color</TITLE>
32729 </HEAD>
32730 <BODY>
32731 <H1>OPTION: Signature Color</H1>
32733 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32734 screen. According to USENET conventions, the signature is defined as the
32735 paragraph following the &quot;sigdashes&quot;, that is, the special line
32736 consisting of the three characters
32737 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32738 empty line right after the sigdashes to be considered as part of the
32739 signature.
32740 By default, the Signature Color is blue characters on a white background.
32742 <A HREF="h_color_setup">Descriptions of the available commands</A>
32744 Look <A HREF="h_edit_nav_cmds">here</A>
32745 to see the available Editing and Navigation commands.
32747 &lt;End of help on this topic&gt;
32748 </BODY>
32749 </HTML>
32750 ====== h_config_prompt_color =====
32751 <HTML>
32752 <HEAD>
32753 <TITLE>OPTION: Prompt Color</TITLE>
32754 </HEAD>
32755 <BODY>
32756 <H1>OPTION: Prompt Color</H1>
32758 Sets the color Alpine uses for confirmation prompts and questions that
32759 appear in the status line near the bottom of the screen.
32760 The foreground color is the color of the actual character and the
32761 background color is the color of the area behind the character.
32762 By default, the Prompt Color is the same as the Reverse Color.
32764 <A HREF="h_color_setup">Descriptions of the available commands</A>
32766 Look <A HREF="h_edit_nav_cmds">here</A>
32767 to see the available Editing and Navigation commands.
32769 &lt;End of help on this topic&gt;
32770 </BODY>
32771 </HTML>
32772 ====== h_config_header_general_color =====
32773 <HTML>
32774 <HEAD>
32775 <TITLE>OPTION: Header General Color</TITLE>
32776 </HEAD>
32777 <BODY>
32778 <H1>OPTION: Header General Color</H1>
32780 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32781 screen.
32782 The foreground color is the color of the actual character and the
32783 background color is the color of the area behind the character.
32784 By default, this is the same as the Normal Color.
32786 It is also possible to set the colors for specific header fields, for
32787 example the Subject, using
32788 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32789 If both a Header General Color and a specific Viewer Header Color are set
32790 the specific color will override the general color, as you would expect.
32792 <A HREF="h_color_setup">Descriptions of the available commands</A>
32794 Look <A HREF="h_edit_nav_cmds">here</A>
32795 to see the available Editing and Navigation commands.
32797 &lt;End of help on this topic&gt;
32798 </BODY>
32799 </HTML>
32800 ====== h_config_incol =====
32801 <HTML>
32802 <HEAD>
32803 <TITLE>Index Line Color</TITLE>
32804 </HEAD>
32805 <BODY>
32806 <H1>Index Line Color</H1>
32808 This option is used to set the color of a line in the index when the
32809 message for that line matches the Pattern.
32810 This colors the whole index line, except possibly the status letters,
32811 which may be colored separately using the
32812 <A HREF="h_color_setup">Setup Kolor</A> screen.
32813 The foreground color is the color of the actual characters and the
32814 background color is the color of the area behind the characters.
32816 <A HREF="h_color_setup">Descriptions of the available commands</A>
32818 Look <A HREF="h_edit_nav_cmds">here</A>
32819 to see the available Editing and Navigation commands.
32821 &lt;End of help on this topic&gt;
32822 </BODY>
32823 </HTML>
32824 ====== h_config_usetransparent_color =====
32825 <HTML>
32826 <HEAD>
32827 <TITLE>OPTION: Use Transparent Color</TITLE>
32828 </HEAD>
32829 <BODY>
32830 <H1>OPTION: Use Transparent Color</H1>
32832 This is a special color supported by some terminal emulators.
32833 It is intended to result in the default foreground or background color
32834 from the terminal emulator.
32835 This is the color the terminal was displaying characters in before you started Alpine.
32836 The reason it is called Transparent is because you could set the foreground color
32837 to some specific color, like Red, and then set the background color to the
32838 Transparent Color. If it works as expected, the background color from the terminal
32839 window in which Alpine is running will show through but with the Red characters
32840 in the foreground.
32842 <A HREF="h_color_setup">Descriptions of the available commands</A>
32844 Look <A HREF="h_edit_nav_cmds">here</A>
32845 to see the available Editing and Navigation commands.
32847 &lt;End of help on this topic&gt;
32848 </BODY>
32849 </HTML>
32850 ====== h_config_usenormal_color =====
32851 <HTML>
32852 <HEAD>
32853 <TITLE>OPTION: Use Normal Color</TITLE>
32854 </HEAD>
32855 <BODY>
32856 <H1>OPTION: Use Normal Color</H1>
32858 When you use this color value, the actual color used will be the same
32859 as the corresponding Normal Color.
32860 For example if your Normal Color is black on white and you set both
32861 the foreground and background colors here to use the Normal Color, you'll
32862 get black on white. If you later change the Normal Color to red on blue
32863 this color will also change to red on blue.
32865 <A HREF="h_color_setup">Descriptions of the available commands</A>
32867 Look <A HREF="h_edit_nav_cmds">here</A>
32868 to see the available Editing and Navigation commands.
32870 &lt;End of help on this topic&gt;
32871 </BODY>
32872 </HTML>
32873 ====== h_config_usenone_color =====
32874 <HTML>
32875 <HEAD>
32876 <TITLE>OPTION: Use None Color</TITLE>
32877 </HEAD>
32878 <BODY>
32879 <H1>OPTION: Use None Color</H1>
32881 This is a special color that simply means to leave the color alone.
32882 It is useful for Index symbols and for Keyword Colors used in the Subject
32883 field of an index line.
32884 The most likely use is to set an explicit foreground color and then set
32885 the background color to the None Color.
32886 That will cause the symbol or keyword to be drawn in the foreground color
32887 with a background equal to whatever color the rest of the index line is already
32888 drawn in.
32889 You will see no visible effect unless you have assigned Indexcolor Rules to
32890 color index lines or you have set an actual color for the Reverse Color.
32892 <A HREF="h_color_setup">Descriptions of the available commands</A>
32894 Look <A HREF="h_edit_nav_cmds">here</A>
32895 to see the available Editing and Navigation commands.
32897 &lt;End of help on this topic&gt;
32898 </BODY>
32899 </HTML>
32900 ====== h_config_dflt_color =====
32901 <HTML>
32902 <HEAD>
32903 <TITLE>OPTION: Default Color</TITLE>
32904 </HEAD>
32905 <BODY>
32906 <H1>OPTION: Default Color</H1>
32908 Setting default will cause the color to be the default color.
32909 Unsetting default is normally done by choosing a color, but in some cases
32910 you may want to declare the current default color to be your non-default
32911 choice.
32912 For example, the default Keyname Color is the same as the Reverse Color.
32913 Whenever the Reverse Color changes the Keyname Color will also change, unless
32914 you've changed it or unset the default box.
32916 <A HREF="h_color_setup">Descriptions of the available commands</A>
32918 Look <A HREF="h_edit_nav_cmds">here</A>
32919 to see the available Editing and Navigation commands.
32921 &lt;End of help on this topic&gt;
32922 </BODY>
32923 </HTML>
32924 ====== h_config_bold_slctbl =====
32925 <HTML>
32926 <HEAD>
32927 <TITLE>OPTION: Bold</TITLE>
32928 </HEAD>
32929 <BODY>
32930 <H1>OPTION: Bold</H1>
32932 The color for this particular section may have the Bold attribute turned
32933 on or off.
32934 Setting bold will cause the characters to be bold.
32936 <A HREF="h_color_setup">Descriptions of the available commands</A>
32938 Look <A HREF="h_edit_nav_cmds">here</A>
32939 to see the available Editing and Navigation commands.
32941 &lt;End of help on this topic&gt;
32942 </BODY>
32943 </HTML>
32944 ====== h_config_kw_color =====
32945 <HTML>
32946 <HEAD>
32947 <TITLE>OPTION: Keyword Colors</TITLE>
32948 </HEAD>
32949 <BODY>
32950 <H1>OPTION: Keyword Colors</H1>
32952 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32953 Keywords are displayed as part of the Subject by default.
32954 They are also displayed as part of the Subject if the tokens
32955 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32956 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32957 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32958 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32960 For example, you might have set up a Keyword
32961 &quot;Work&quot; using the
32962 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32963 You could cause that Keyword to show up as a special color
32964 by setting up the Keyword Color using this option, and then including it
32965 in the MESSAGE INDEX screen using one of the tokens listed above in the
32966 <!--#echo var="VAR_index-format"-->.
32968 <A HREF="h_color_setup">Descriptions of the available commands</A>
32970 Look <A HREF="h_edit_nav_cmds">here</A>
32971 to see the available Editing and Navigation commands.
32973 &lt;End of help on this topic&gt;
32974 </BODY>
32975 </HTML>
32976 ====== h_config_customhdr_color =====
32977 <HTML>
32978 <HEAD>
32979 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32980 </HEAD>
32981 <BODY>
32982 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32984 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32985 For example, you may set the color of the Subject header or the From header.
32986 The foreground color is the color of the actual character and the
32987 background color is the color of the area behind the character.
32989 In addition to setting the colors for particular headers (like the Subject)
32990 you may also set a color to be used for all headers unless overridden by a
32991 more specific Viewer Header Color.
32992 To do this use the
32993 <A HREF="h_config_header_general_color">Header General Color</A>.
32995 For Header Colors,
32996 there is an additional line on the
32997 screen labeled &quot;Pattern to match&quot;.
32998 If you leave that blank, then the whole field for that header will
32999 be colored.
33000 However, if you give a pattern to match, the coloring will only take place
33001 if there is a match for that pattern in the value of the field.
33002 For example, if you are working on a color for the Subject header and
33003 you fill in a pattern of &quot;important&quot;, then only Subjects that
33004 contain the word &quot;important&quot; will be colored.
33006 If the pattern you enter is a comma-separated list of patterns, then coloring
33007 happens if any of those patterns matches.
33009 <A HREF="h_color_setup">Descriptions of the available commands</A>
33011 Look <A HREF="h_edit_nav_cmds">here</A>
33012 to see the available Editing and Navigation commands.
33014 &lt;End of help on this topic&gt;
33015 </BODY>
33016 </HTML>
33017 ====== h_config_indextoken_color =====
33018 <HTML>
33019 <HEAD>
33020 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
33021 </HEAD>
33022 <BODY>
33023 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
33025 This option allows you to set up the color in which any token, not specified by the
33026 previous options, will be colored in the MESSAGE INDEX screen. 
33028 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
33029 a token that can be used in the index format. 
33030 The list of available tokens is <A HREF="h_index_tokens">here</A>.
33032 If you fail to enter a valid token your entry will be ignored, and you will be asked to
33033 enter a new one. Once you have entered a valid token, a line will be added to the
33034 configuration screen that you can use to set up the colors in which that token will
33035 be painted. This is done in the same way that you configure colors for other
33036 variables.
33038 <A HREF="h_color_setup">Descriptions of the available commands</A>
33040 Look <A HREF="h_edit_nav_cmds">here</A>
33041 to see the available Editing and Navigation commands.
33043 &lt;End of help on this topic&gt;
33044 </BODY>
33045 </HTML>
33046 ====== h_config_customhdr_pattern =====
33047 <HTML>
33048 <HEAD>
33049 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
33050 </HEAD>
33051 <BODY>
33052 <H1>OPTION: Viewer Header Color Pattern</H1>
33054 If you leave this blank, then the whole field for the header will
33055 be colored.
33056 If you give a pattern to match, the coloring will only take place
33057 if there is a match for that pattern in the value of the field.
33058 For example, if you are working on a color for the Subject header and
33059 you fill in a pattern of &quot;important&quot;, then only Subjects that
33060 contain the word &quot;important&quot; will be colored.
33062 For address headers (like From and To) and for the Newsgroups header,
33063 a pattern match will cause only the matched addresses or newsgroups to be
33064 colored.
33065 If there is no pattern to match, then all of the addresses or newsgroups
33066 in the relevant header will be colored.
33068 The matching pattern may be a comma-separated list of patterns to match
33069 instead of a single pattern.
33070 For example, you could use the pattern &quot;important,urgent&quot; which would
33071 cause a match if either the word &quot;important&quot; or the word
33072 &quot;urgent&quot; appeared in the value of the header.
33073 You could list several comma-separated email addresses in the Header
33074 From Color pattern so that those addresses will be colored when any of
33075 them appear in the From header.
33077 To add a new matching pattern or change the existing pattern use the 
33078 <!--chtml if pinemode="function_key"-->
33079 &quot;F4&quot;
33080 <!--chtml else-->
33081 &quot;C&quot;
33082 <!--chtml endif-->
33083 &quot;Change&quot; command that is available when the &quot;Pattern to
33084 match&quot; line is highlighted.
33086 <!--chtml if pinemode="function_key"-->
33087 &quot;F10&quot;
33088 <!--chtml else-->
33089 &quot;D&quot;
33090 <!--chtml endif-->
33091 &quot;Delete&quot; command may be used to quickly remove all patterns
33092 for a particular header.
33094 &lt;End of help on this topic&gt;
33095 </BODY>
33096 </HTML>
33097 ====== h_color_setup =====
33098 <HTML>
33099 <HEAD>
33100 <TITLE>SETUP COLOR COMMANDS</TITLE>
33101 </HEAD>
33102 <BODY>
33103 <H1>SETUP COLOR COMMANDS</H1>
33104 <!--chtml if pinemode="function_key"-->
33105 <PRE>
33106 Available Commands -- Group 1
33107 -------------------------------
33108 F1  Display this help text
33109 F2  Show other available commands
33110 F3  Exit to MAIN MENU
33111 F4  Select the highlighted foreground or background color
33112 F5  Move to previous line
33113 F6  Move to next line
33114 F7  Previous page
33115 F8  Next page
33116 F9  Add a config section for a header field
33117 F10 Restore all default colors (for all sections)
33118 F11 Print color configuration screen
33119 F12 Whereis (search for word)
33121 Available Commands -- Group 2
33122 -------------------------------
33123 F1  Display this help text
33124 F2  Show other available commands
33125 F5  Delete config section for highlighted header field
33126 F6  Shuffle the order of Header Color sections
33127 </PRE>
33128 <!--chtml else-->
33129 <PRE>
33130 General commands
33131 -------------------------------------------------
33132  ?  Display this help text     E  Exit back to MAIN MENU
33133  P  Previous Line              N  Next Line
33134  -  Previous page             Spc (space bar) Next page
33135  W  WhereIs (search for word)  %  Print color configuration screen
33137 Color Setup Commands
33138 ------------------------------------------------
33139  *  Select the highlighted foreground or background color
33140  A  Add a config section for a header field
33141  D  Delete config section for highlighted header field
33142  R  Restore all default colors (for all sections)
33143  $  Shuffle the order of Header Color sections
33144 </PRE>
33145 <!--chtml endif-->
33147 <H2>Description of the Setup Color Screen</H2>
33149 From this screen you may turn on color and set the colors of
33150 various parts of the Alpine display.
33151 For help on turning on color move your cursor into the Color Style section
33152 at the top of the Setup Color screen and ask for help.
33155 There are several sections in the Setup Color Screen.
33156 At the top are some settings that handle the style of color used
33157 with your terminal emulator (UNIX only), and some settings that
33158 control how the current indexline and the titlebar are colored.
33159 After that comes a long section called GENERAL COLORS that allows
33160 you to set the color of many elements in the Alpine screens.
33161 For example, the color of the titlebar, status messages,
33162 selectable links, quotes and signatures in messages, and so on.
33163 After that is a section called INDEX COLORS that allows you to
33164 set the colors of various pieces of the displayed index lines in
33165 the MESSAGE INDEX screen.
33166 The next section is HEADER COLORS. This is for coloring headers of
33167 messages in the MESSAGE TEXT screen in just about any way you would like.
33168 Finally, the KEYWORD COLORS section allows you to highlight
33169 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33170 in the MESSAGE INDEX screen.
33173 To change a color, highlight the color you want to change (for example,
33174 the Status Color) by moving
33175 the cursor into it.
33176 You may want to read the help text for the color to see a brief desription
33177 of what you are coloring.
33178 Then press &quot;C&quot; for Change to set the color to something new.
33179 That will put you into a screen with two columns of colors, one for
33180 the foreground color and one for the background color.
33181 The foreground color is just the color you want the actual characters
33182 to be and the background color is the color of the rest of the rectangle
33183 behind the characters.
33184 Select the foreground and background colors desired by using the Next and
33185 Prev keys to highlight the color, and the * command to select it.
33187 To set a color to its default value, set the X in the Default line at
33188 the bottom of the list of colors.
33191 The HEADER COLORS section is a little bit different from the others.
33192 Besides coloring the specific fields that Alpine knows about, you may also
33193 color specific header fields when viewing a message in the MESSAGE TEXT
33194 screen.
33195 For example, you may color the Subject header a particular color.
33196 There are a few commands for use with headers.
33197 The &quot;AddHeader&quot; command adds a section to the color
33198 configuration screen that allows you to set the color for that header.
33199 You'll be asked for the name of the header field you want to color.
33200 If you wanted to color the Subject, you would answer
33201 with the word &quot;subject&quot;.
33202 Once you've added a header field, the color setting works just like the
33203 other color fields, except that there is an additional line on the
33204 configuration screen labeled &quot;Pattern to match&quot;.
33205 If you leave that blank, then the whole field for that header will always
33206 be colored.
33207 However, if you give a pattern to match, the coloring will only take place
33208 if there is a match for that pattern in the value of the field.
33209 For example, if you are working on a color for the Subject header and
33210 you fill in a pattern of &quot;important&quot;, then only Subjects that
33211 contain the word &quot;important&quot; will be colored.
33213 The &quot;DeleteHdr&quot; command removes a header section from the
33214 configuration altogether.
33215 The &quot;Shuffle&quot; command changes the order of header sections.
33216 This is only necessary if you use header sections with pattern fields.
33217 For example, if you have two Subject sections, one with one pattern and
33218 another with another pattern, and the subject for a particular message
33219 happens to match both, then the color from the first match is used.
33222 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33223 Each section will change to the default value used for that section when
33224 color is first enabled.
33225 When you restore all default colors the color settings for the Header Colors
33226 will be unset (since that's the default), but the header fields you've
33227 added will remain so that you may easily reset them.
33228 In order to get rid of them completely you'd have to use
33229 the &quot;DeleteHdr&quot; command.
33232 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33233 may be set with matching rules and that is configured separately from
33234 the rest of the color settings described here.
33235 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33236 instead of in the Setup/Kolor section.
33238 <P><UL>
33239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33240 </UL><P>
33241 &lt;End of help on this topic&gt;
33242 </BODY>
33243 </HTML>
33244 ====== h_config_news_uses_recent ======
33245 <HTML>
33246 <HEAD>
33247 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33248 </HEAD>
33249 <BODY>
33250 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33252 This feature causes certain messages to be marked as "New" in the
33253 MESSAGE INDEX of newsgroups.
33254 This feature is set by default.
33258 When opening a newsgroup, Alpine will consult your "newsrc" file and
33259 determine the last message you have previously disposed of via the "D"
33260 key.  If this feature is set, any subsequent messages will be shown in the
33261 Index with an "N", and the first of these messages will be highlighted.
33262 Although this is only an approximation of true "New" or "Unseen"
33263 status, it provides a useful cue to distinguish more-or-less recent
33264 messages from those you have seen previously, but are not yet ready to
33265 mark deleted.
33269 Background: your "newsrc" file (used to store message status information
33270 for newsgroups) is only capable of storing a single flag, and Alpine uses
33271 this to record whether or not you are "done with" a message, as
33272 indicated by marking the message as "Deleted".  Unfortunately, this
33273 means that Alpine has no way to record exactly which messages you have
33274 previously seen, so it normally does not show the "N" status flag for
33275 any messages in a newsgroup. This feature enables a starting
33276 *approximation* of seen/unseen status that may be useful.
33278 &lt;End of help on this topic&gt;
33279 </BODY>
33280 </HTML>
33281 ====== h_config_expose_hidden_config =====
33282 <HTML>
33283 <HEAD>
33284 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33285 </HEAD>
33286 <BODY>
33287 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33289 If set, this causes configuration options and features that are normally
33290 hidden from view to be editable in the Setup/Config screen.
33293 The purpose of this feature is to allow you to change configuration
33294 features and variables that are normally hidden.
33295 This is particularly useful if you are using a remote configuration,
33296 where it is difficult to edit the contents manually, but it may also be used
33297 on a local pinerc configuration file.
33299 If set, several configuration variables and features that are normally
33300 hidden from view will show up in the Setup/Configuration screen.
33301 They will be at the bottom of the configuration screen.
33302 You can find them by searching for the words &quot;hidden configuration&quot;.
33305 Note that this is an advanced feature that should be used with care.
33306 The reason that this part of the configuration is normally hidden is because
33307 there is a significant potential for causing problems if you change these
33308 variables.
33309 If something breaks after a change try changing it back to see if that is
33310 what is causing the problem.
33311 There are also some variables that are normally hidden because they are
33312 manipulated through Alpine in other ways.
33313 For example, colors are normally set using the Setup/Kolors screen and
33314 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33315 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33316 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33317 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33318 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33319 internally by Alpine and not set directly by the user.
33321 <UL>   
33322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33323 </UL><P>
33324 &lt;End of help on this topic&gt;
33325 </BODY>
33326 </HTML>
33327 ====== h_config_disable_signature_edit =====
33328 <HTML>
33329 <HEAD>
33330 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
33331 </HEAD>
33332 <BODY>
33333 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
33335 If set, this disables the editing of signature files from within
33336 the Setup/Config screen.
33338 <UL>   
33339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33340 </UL><P>
33341 &lt;End of help on this topic&gt;
33342 </BODY>
33343 </HTML>
33344 ====== h_config_disable_roles_templateedit =====
33345 <HTML>
33346 <HEAD>
33347 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
33348 </HEAD>
33349 <BODY>
33350 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
33352 If set, this disables the editing of template files within the
33353 Role setup screen.
33355 <UL>   
33356 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33357 </UL><P>
33358 &lt;End of help on this topic&gt;
33359 </BODY>
33360 </HTML>
33361 ====== h_config_disable_roles_sigedit =====
33362 <HTML>
33363 <HEAD>
33364 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
33365 </HEAD>
33366 <BODY>
33367 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
33369 If set, this disables the editing of signature files within the
33370 Role setup screen.
33372 <UL>   
33373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33374 </UL><P>
33375 &lt;End of help on this topic&gt;
33376 </BODY>
33377 </HTML>
33378 ====== h_config_disable_roles_setup =====
33379 <HTML>
33380 <HEAD>
33381 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
33382 </HEAD>
33383 <BODY>
33384 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
33386 If set, this disables the Setup/Rules/Roles command.
33388 <UL>   
33389 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33390 </UL><P>
33391 &lt;End of help on this topic&gt;
33392 </BODY>
33393 </HTML>
33394 ====== h_config_disable_pipes_in_templates =====
33395 <HTML>
33396 <HEAD>
33397 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
33398 </HEAD>
33399 <BODY>
33400 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
33402 By default, if a template file name is followed by a vertical bar (|) then
33403 that causes the file to be executed to produce the text for the template.
33404 If this feature is set, then this is not allowed.
33406 <UL>   
33407 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33408 </UL><P>
33409 &lt;End of help on this topic&gt;
33410 </BODY>
33411 </HTML>
33412 ====== h_config_disable_pipes_in_sigs =====
33413 <HTML>
33414 <HEAD>
33415 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
33416 </HEAD>
33417 <BODY>
33418 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
33420 By default, if a signature file name is followed by a vertical bar (|) then
33421 that causes the file to be executed to produce the text for the signature.
33422 If this feature is set, then this is not allowed.
33424 <UL>   
33425 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33426 </UL><P>
33427 &lt;End of help on this topic&gt;
33428 </BODY>
33429 </HTML>
33430 ====== h_config_disable_password_cmd =====
33431 <HTML>
33432 <HEAD>
33433 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
33434 </HEAD>
33435 <BODY>
33436 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
33438 If set, then the Setup/Newpassword command is disabled.
33440 <UL>   
33441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33442 </UL><P>
33443 &lt;End of help on this topic&gt;
33444 </BODY>
33445 </HTML>
33446 ====== h_config_disable_password_caching =====
33447 <HTML>
33448 <HEAD>
33449 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33450 </HEAD>
33451 <BODY>
33452 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33454 Normally, loginname/password combinations are cached in Alpine so that
33455 you do not have to enter the same password more than once in a session.
33456 A disadvantage to this approach is that the password must be stored in
33457 the memory image of the running Alpine in order that it can be re-used.
33458 In the event that Alpine crashes and produces a core dump, and that core
33459 dump is readable by others, the loginname and password could be read
33460 from the core dump.
33462 If this feature is set, then the passwords will not be cached and you
33463 will have to retype the password whenever Alpine needs it.
33464 Even with this feature set there is still some chance that the core
33465 file will contain a password, so care should be taken to make the
33466 core files unreadable.
33468 NOTE: If PASSFILE caching is enabled, this does not disable it.
33469 That is a separate and independent feature.
33470 <UL>   
33471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33472 </UL><P>
33473 &lt;End of help on this topic&gt;
33474 </BODY>
33475 </HTML>
33476 ====== h_config_disable_password_file_saving =====
33477 <HTML>
33478 <HEAD>
33479 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33480 </HEAD>
33481 <BODY>
33482 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33484 This feature changes the behavior of Alpine when a login name and password combination
33485 for a specific server is not found in the password file. The default behavior is that
33486 Alpine will ask the user if they wish to save this information in the password file for future
33487 use. It is assumed that if a user created a password file it is because they intend
33488 to use it, but in some instances a user might want to save some passwords and not others.
33489 In this case, enabling this feature will make Alpine not add any more passwords to the
33490 password file and will only use the passwords that it already saved. If you wish to allow
33491 Alpine to save more passwords in the password file, disable this feature.
33493 <UL>   
33494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33495 </UL><P>
33496 &lt;End of help on this topic&gt;
33497 </BODY>
33498 </HTML>
33499 ====== h_config_disable_kb_lock =====
33500 <HTML>
33501 <HEAD>
33502 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33503 </HEAD>
33504 <BODY>
33505 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33507 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33509 <UL>   
33510 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33511 </UL><P>
33512 &lt;End of help on this topic&gt;
33513 </BODY>
33514 </HTML>
33515 ====== h_config_disable_config_cmd =====
33516 <HTML>
33517 <HEAD>
33518 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33519 </HEAD>
33520 <BODY>
33521 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33523 If set, then the Setup/Config screen is disabled.
33525 <UL>   
33526 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33527 </UL><P>
33528 &lt;End of help on this topic&gt;
33529 </BODY>
33530 </HTML>
33531 ====== h_config_allow_chg_from =====
33532 <HTML>
33533 <HEAD>
33534 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33535 </HEAD>
33536 <BODY>
33537 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33539 This feature affects Alpine's handling of the &quot;From:&quot; header field
33540 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33541 option.
33543 If this feature is set then the From line can be changed just like
33544 all the other header fields that can be changed.
33545 This feature defaults to <EM>ON</EM>.
33547 Even with this feature turned ON (the default) you will not be able 
33548 to change the From header unless you add it to your list of
33549 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33550 You may also want to change the
33551 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33552 if you want the From header to always show up in the composer without
33553 having to type the Rich Headers command first.
33555 Note that many sites restrict the use of this feature in order to
33556 reduce the chance of falsified addresses and misdirected mail.
33557 If you want to change the value of what gets included in the From header
33558 in messages you send
33559 look <A HREF="h_config_change_your_from">here</A> for a description.
33561 <UL>   
33562 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33563 </UL><P>
33564 &lt;End of help on this topic&gt;
33565 </BODY>
33566 </HTML>
33567 ====== h_config_disable_collate =====
33568 <HTML>
33569 <HEAD>
33570 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33571 </HEAD>
33572 <BODY>
33573 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33575 This is a hard to understand feature that should only be used in rare cases.
33576 Normally, the C function call
33578 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33580 is used by Alpine.
33581 If you want to try turning it off,
33582 setting this feature will turn it off.
33583 This part of the locale has to do with the sort order
33584 of characters in your locale.
33586 <UL>   
33587 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33588 </UL><P>
33589 &lt;End of help on this topic&gt;
33590 </BODY>
33591 </HTML>
33592 ====== h_config_quell_attach_extra_prompt =====
33593 <HTML>
33594 <HEAD>
33595 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33596 </HEAD>
33597 <BODY>
33598 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33600 By default, when you attempt to view an attachment externally
33601 from the &quot;Attachment View&quot; screen, you are asked if you
33602 really want to view the selected attachment.
33605 If this feature is set, you will <B>not</B> be prompted to confirm
33606 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33607 prompt. This feature was added for those wanting to preserve that
33608 behavior (along with 
33609 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33612 <UL>   
33613 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33614 </UL><P>
33615 &lt;End of help on this topic&gt;
33616 </BODY>
33617 </HTML>
33618 ====== h_config_quell_attach_ext_warn =====
33619 <HTML>
33620 <HEAD>
33621 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33622 </HEAD>
33623 <BODY>
33624 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33627 This feature suppresses the extra warning you can get when trying
33628 to view an attachment for which there is no mime-type match.  Turning
33629 on this feature will just run the program according to extension
33630 instead of first warning the user that it will run according to the
33631 file's extension.
33633 This feature can be used along side 
33634 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33635 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33637 <UL>   
33638 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33639 </UL><P>
33640 &lt;End of help on this topic&gt;
33641 </BODY>
33642 </HTML>
33643 ====== h_config_mailcap_params =====
33644 <HTML>
33645 <HEAD>
33646 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33647 </HEAD>
33648 <BODY>
33649 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33651 If set, this will allow mailcap named parameter substitution to occur
33652 in mailcap entries.
33653 By default, this is turned off to prevent security problems that may occur
33654 with some incorrect mailcap configurations.
33655 For more information, see RFC1524 and look for "named parameters" in the
33656 text of the RFC.
33658 <UL>   
33659 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33660 </UL><P>
33661 &lt;End of help on this topic&gt;
33662 </BODY>
33663 </HTML>
33664 ====== h_config_disable_shared =====
33665 <HTML>
33666 <HEAD>
33667 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33668 </HEAD>
33669 <BODY>
33670 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33672 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33673 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33674 will be disabled.
33675 The reason this feature exists is because there are some implementations
33676 of system password lookup routines that are very slow when presented with
33677 a long loginname that does not exist.
33678 This feature could be set to prevent the delay at startup time when the
33679 names above are searched for in the password file.
33681 <UL>   
33682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33683 </UL><P>
33684 &lt;End of help on this topic&gt;
33685 </BODY>
33686 </HTML>
33687 ====== h_config_hide_nntp_path =====
33688 <HTML>
33689 <HEAD>
33690 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33691 </HEAD>
33692 <BODY>
33693 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33695 Normally the Path header that Alpine generates when posting to a newsgroup
33696 contains the name of the computer from which the message is being sent and
33697 the user name.
33698 Some believe that this information is used by spammers.
33699 If this feature is set, that information will be replaced with the text
33701 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33703 instead.
33705 It should be noted that many servers being connected to will still reveal
33706 the information that this feature attempts to protect.
33708 <UL>   
33709 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33710 </UL><P>
33711 &lt;End of help on this topic&gt;
33712 </BODY>
33713 </HTML>
33714 ====== h_config_no_bezerk_zone =====
33715 <HTML>
33716 <HEAD>
33717 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33718 </HEAD>
33719 <BODY>
33720 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33722 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33723 (the line that begins with From <SPACE>).
33724 Some versions of Berkeley mail have trouble with this, and don't recognize
33725 the line as a message delimiter.
33726 If this feature is set, the timezone will be left off the delimiter line.
33728 <UL>   
33729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33730 </UL><P>
33731 &lt;End of help on this topic&gt;
33732 </BODY>
33733 </HTML>
33734 ====== h_config_quell_domain_warn =====
33735 <HTML>
33736 <HEAD>
33737 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33738 </HEAD>
33739 <BODY>
33740 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33742 When your configuration is set up so that your domain name contains no dots,
33743 it is usually a configuration error.
33744 By default, Alpine will warn you about this when you start it up.
33745 You will see a warning message that looks like
33748 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33751 If this feature is set, the warning is turned off.
33753 <UL>   
33754 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33755 </UL><P>
33756 &lt;End of help on this topic&gt;
33757 </BODY>
33758 </HTML>
33759 ====== h_config_quell_imap_env =====
33760 <HTML>
33761 <HEAD>
33762 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33763 </HEAD>
33764 <BODY>
33765 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33767 In the MESSAGE INDEX screen, if the open folder is being accessed
33768 using IMAP, Alpine normally tries to paint the index lines on the screen
33769 as soon as the information arrives from the IMAP server.
33770 This means that the index information makes it onto the screen more quickly
33771 than it otherwise would.
33772 This sometimes results in behavior that bothers some users.
33773 For example, when paging to a new page of the index, it may be possible for
33774 the lines to be painted on the screen in a random order, rather than from
33775 top to bottom.
33778 Setting this feature causes Alpine to wait for all of the information
33779 to be gathered before it paints the index screen.
33780 Once it collects all of the information, the screen will be painted quickly
33781 from top to bottom.
33783 <UL>   
33784 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33785 </UL><P>
33786 &lt;End of help on this topic&gt;
33787 </BODY>
33788 </HTML>
33789 ====== h_config_quell_news_env =====
33790 <HTML>
33791 <HEAD>
33792 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33793 </HEAD>
33794 <BODY>
33795 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33797 In the MESSAGE INDEX screen, if the open folder is being accessed
33798 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33799 as soon as the information arrives from the NNTP server.
33800 This means that the index information makes it onto the screen more quickly
33801 than it otherwise would.
33802 This sometimes results in behavior that bothers some users.
33803 For example, when paging to a new page of the index, it may be possible for
33804 the lines to be painted on the screen in a random order, rather than from
33805 top to bottom.
33808 Setting this feature causes Alpine to wait for all of the information
33809 to be gathered before it paints the index screen.
33810 Once it collects all of the information, the screen will be painted quickly
33811 from top to bottom.
33813 <UL>   
33814 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33815 </UL><P>
33816 &lt;End of help on this topic&gt;
33817 </BODY>
33818 </HTML>
33819 ====== h_config_quell_content_id =====
33820 <HTML>
33821 <HEAD>
33822 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33823 </HEAD>
33824 <BODY>
33825 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33827 This feature changes the behavior of Alpine when sending messages.
33828 It is intended to work around a bug in Microsoft's Outlook XP mail user
33829 agent.
33830 As of this writing, Microsoft has acknowledged the bug but
33831 has not added it to the Knowledge Base.
33832 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33833 This particular bug has bug fix number OfficeQFE:4781.
33834 The nature of the bug is that messages with attachments that
33835 contain a Content-ID header (which standard Alpine attachments do)
33836 do not show the attachment indicator (a paperclip) when viewed with
33837 Outlook XP.
33838 So the user has no indication that the message contains an attachment.
33841 If this feature is set then Alpine will remove most Content-ID headers
33842 before sending a message.
33843 If an attachment is of type MESSAGE, then the existing Content-ID headers
33844 inside the message will be left intact.
33845 This would only happen with Alpine if a message was forwarded as an attachment
33846 or if a message with a message attached was forwarded.
33847 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33848 the Content-ID headers of the alternative parts will not be removed.
33851 Because the Content-ID header is a standard part of MIME it is possible
33852 that setting this feature will break something.
33853 For example, if an attachment has a Content-ID header that is necessary
33854 for the correct functioning of that attachment, it is possible that Alpine
33855 may remove that header when the attachment is forwarded.
33856 However, it seems fairly safe at this time.
33859 <UL>   
33860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33861 </UL><P>
33862 &lt;End of help on this topic&gt;
33863 </BODY>
33864 </HTML>
33865 ====== h_config_winpos_in_config =====
33866 <HTML>
33867 <HEAD>
33868 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33869 </HEAD>
33870 <BODY>
33871 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33873 PC-Alpine only.
33876 Normally, PC-Alpine will store its window size and position in the
33877 Windows Registry.
33878 This is convenient if you want to use the same remote
33879 configuration from more than one PC.
33880 If you use multiple configuration files to start PC-Alpine, you may want
33881 to store the window size and position in the configuration file instead
33882 of in the Registry.
33883 Setting this feature causes the value to be stored in 
33884 <A HREF="h_config_window_position">Window-Position</A>.
33887 <UL>   
33888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33889 </UL><P>
33890 &lt;End of help on this topic&gt;
33891 </BODY>
33892 </HTML>
33893 ====== h_config_quell_ssl_largeblocks =====
33894 <HTML>
33895 <HEAD>
33896 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33897 </HEAD>
33898 <BODY>
33899 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
33901 PC-Alpine only.
33903 This feature changes the behavior of fetching messages
33904 and attachments so that the message data is fetched in chunks no larger
33905 than 12K bytes.
33906 This works around a bug in Microsoft's SSL/TLS support.
33907 Some versions of Microsoft SSL are not able to read full-sized (16K)
33908 SSL/TLS packets.
33909 Some servers will send such packets and this will
33910 cause PC-Alpine to crash with the error
33913 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
33916 Microsoft is aware of the problem and has developed a hotfix for it, it is
33917 discussed in article 300562 in the Microsoft Knowledge Base.
33919 <UL>   
33920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33921 </UL><P>
33922 &lt;End of help on this topic&gt;
33923 </BODY>
33924 </HTML>
33925 ====== h_config_quell_partial =====
33926 <HTML>
33927 <HEAD>
33928 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
33929 </HEAD>
33930 <BODY>
33931 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33933 Partial fetching is a feature of the IMAP protocol.
33934 By default, Alpine
33935 will use partial fetching when copying the contents of a message or attachment
33936 from the IMAP server to Alpine.
33937 This means that the fetch will be done in many
33938 small chunks instead of one big chunk. The main benefit of this approach is
33939 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33940 to stop the fetch early. In some cases partial fetching may cause a performance
33941 problem so that the fetching of data takes significantly longer when partial
33942 fetching is used. Turning on this feature will turn off partial fetching.
33944 <UL>   
33945 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33946 </UL><P>
33947 &lt;End of help on this topic&gt;
33948 </BODY>
33949 </HTML>
33950 ====== h_config_quell_personal_name_prompt =====
33951 <HTML>
33952 <HEAD>
33953 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33954 </HEAD>
33955 <BODY>
33956 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33958 PC-Alpine only.  This feature quells the prompting for a 
33959 <A HREF="h_config_pers_name">personal name</A>.  This
33960 prompt normally happens before composing a message, and only happens when
33961 there is no personal name already set.
33963 <UL>   
33964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33965 </UL><P>
33966 &lt;End of help on this topic&gt;
33967 </BODY>
33968 </HTML>
33969 ====== h_config_quell_user_id_prompt =====
33970 <HTML>
33971 <HEAD>
33972 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33973 </HEAD>
33974 <BODY>
33975 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33977 PC-Alpine only.  This feature quells the prompting for a 
33978 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33979 if the information can be obtained from the login name used
33980 to open the INBOX.  Normally, this prompt happens before composing
33981 a message, and only happens when there is no user-id already set
33982 in the configuration.
33984 With this feature set, composing a message is only possible after
33985 establishing a connection to the INBOX.
33987 <UL>   
33988 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33989 </UL><P>
33990 &lt;End of help on this topic&gt;
33991 </BODY>
33992 </HTML>
33993 ====== h_config_save_aggregates =====
33994 <HTML>
33995 <HEAD>
33996 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33997 </HEAD>
33998 <BODY>
33999 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
34001 This feature will optimize an aggregate copy operation, if
34002 possible, by issuing a single IMAP <EM>COPY</EM> command with a
34003 list of the messages to be copied.
34004 This feature is set by default.
34005 This may reduce network traffic and elapsed time for the Save.
34006 <EM>However, many IMAP servers (including the UW IMAP server) do
34007 not preserve the order of messages when this optimization is applied.</EM>
34008 If this feature is not set, 
34009 Alpine will copy each message individually and the order of the messages
34010 will be preserved.
34012 <UL>   
34013 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34014 </UL><P>
34015 &lt;End of help on this topic&gt;
34016 </BODY>
34017 </HTML>
34018 ====== h_config_use_system_translation =====
34019 <HTML>
34020 <HEAD>
34021 <TITLE>FEATURE: Use System Translation</TITLE>
34022 </HEAD>
34023 <BODY>
34024 <H1>FEATURE: Use System Translation</H1>
34026 UNIX Alpine only.
34028 Alpine normally uses its own internal software to convert between the multi-byte
34029 representation of characters and the Unicode representation of those
34030 same characters.
34031 It converts from the multi-byte characters your keyboard produces to Unicode,
34032 and from Unicode to the multi-byte characters your display expects.
34033 Alpine also uses its own internal software to decide how much space on
34034 the screen a particular Unicode character will occupy.
34037 Setting this feature tells Alpine to use the system-supplied routines to
34038 perform these tasks instead.
34039 In particular there are three tasks and three system routines that will
34040 be used for these tasks.
34043 To convert from multi-byte to Unicode the routine
34046 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
34049 is used.
34050 To convert from Unicode to multi-byte the routine
34053 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
34056 is used.
34057 And to find the screen width a particular Unicode character will
34058 occupy the routine used is
34061 <CENTER><SAMP>wcwidth</SAMP></CENTER>
34064 This feature has been only lightly tested.
34065 The internal routines should normally be used unless you run into
34066 a problem that you think may be solved by using the system routines.
34067 Note that your environment needs to be set up for these
34068 routines to work correctly.
34069 In particular, the LANG or LC_CTYPE variable in your environment will
34070 need to be set.
34073 <UL>   
34074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34075 </UL><P>
34076 &lt;End of help on this topic&gt;
34077 </BODY>
34078 </HTML>
34079 ====== h_config_suspend_spawns =====
34080 <HTML>
34081 <HEAD>
34082 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
34083 </HEAD>
34084 <BODY>
34085 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
34087 This feature affects Alpine's behavior when process suspension is enabled
34088 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
34089 temporarily interact with the operating system command &quot;shell&quot; 
34090 without
34091 quitting Alpine, and then subsequently resume the still-active Alpine session.
34094 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
34095 is set and subsequently the Ctrl-Z key
34096 is pressed, Alpine will normally suspend itself and return temporary control
34097 to Alpine's parent shell process.  However, if this feature is set, Alpine
34098 will instead create an inferior subshell process.  This is useful when the
34099 parent process is not intended to be used interactively.  Examples include
34100 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
34101 or via a menu system.<P>
34103 Note that one typically resumes a suspended Alpine by entering the Unix
34104 &quot;fg&quot; command, but if this feature is set, it will be necessary to
34105 enter the &quot;exit&quot; command instead.
34107 <UL>   
34108 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34109 </UL><P>
34110 &lt;End of help on this topic&gt;
34111 </BODY>
34112 </HTML>
34113 ====== h_config_8bit_smtp =====
34114 <HTML>
34115 <HEAD>
34116 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
34117 </HEAD>
34118 <BODY>
34119 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
34121 This feature affects Alpine's behavior when sending mail.
34122 By default, this feature is set.
34123 Internet standards
34124 require that all electronic mail messages traversing the global Internet
34125 consist of 7bit ASCII characters unless a pair of cooperating mail 
34126 transfer agents explicitly agree to allow 8bit messages.  In general, 
34127 then, exchanging messages in non-ASCII characters requires MIME encoding.
34129 However, there are now Internet standards that allow for unencoded 8bit
34130 exchange of messages between cooperating systems.  When this feature is set
34131 Alpine will try to negotiate unencoded 8bit transmission during the
34132 sending process.  Should the negotiation fail, Alpine will fall back to its
34133 ordinary encoding rules. 
34135 Note, this feature relies on your system's mail transport agent or
34136 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
34137 having the negotiation mechanism introduced in
34138 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
34139 &quot;8BITMIME&quot;. 
34141 ESMTP allows for graceful migration to upgraded mail transfer agents, but
34142 it is possible that this feature might cause problems for some servers. 
34143 <P><UL>
34144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34145 </UL>
34146 <P>&lt;End of help on this topic&gt;
34147 </BODY>
34148 </HTML>
34149 ====== h_config_8bit_nntp =====
34150 <HTML>
34151 <HEAD>
34152 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
34153 </HEAD>
34154 <BODY>
34155 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
34157 This feature affects Alpine's behavior when posting news.  
34161 The Internet standard for exchanging USENET news messages (RFC-1036)
34162 specifies that USENET messages should conform to Internet mail standards
34163 and contain only 7bit characters, but much of the news transport software
34164 in use today is capable of successfully sending messages containing 8bit
34165 characters.  Hence, many people believe that it is appropriate to send 8bit
34166 news messages without any MIME encoding.
34170 Moreover, there is no Internet standard for explicitly negotiating 8bit
34171 transfer, as there is for Internet email.  Therefore, Alpine provides the
34172 option of posting unencoded 8bit news messages, though not as the default.
34173 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
34174 postings that contain 8bit characters. 
34178 Note, articles may cross a path or pass through news transport software
34179 that is unsafe or even hostile to 8bit characters.  At best this will only
34180 cause the posting to become garbled.  The safest way to transmit 8bit
34181 characters is to leave Alpine's MIME encoding turned on, but recipients
34182 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
34183 messages.
34185 &lt;End of help on this topic&gt;
34186 </BODY>
34187 </HTML>
34188 ====== h_config_mark_for_cc =====
34189 <HTML>
34190 <HEAD>
34191 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
34192 </HEAD>
34193 <BODY>
34194 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
34196 This feature affects Alpine's MESSAGE INDEX display.
34197 By default, a '+' is displayed in the first column if the
34198 message is addressed directly to you.
34199 When this feature is set and the message is not addressed to you, then a
34200 '-' character is displayed if the message is instead Cc'd directly
34201 to you.
34204 <UL>   
34205 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34206 </UL><P>
34207 &lt;End of help on this topic&gt;
34208 </BODY>
34209 </HTML>
34210 ====== h_config_tab_uses_unseen =====
34211 <HTML>
34212 <HEAD>
34213 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
34214 </HEAD>
34215 <BODY>
34216 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
34218 This feature affects Alpine's behavior when using the TAB
34219 <A HREF="h_common_nextnew">NextNew Command</A>
34220 to move from one folder to the next.
34221 Alpine's usual behavior is to search for folders
34222 with <EM>Recent</EM> messages in them.
34223 Recent messages are messages that have arrived since the last time the
34224 folder was opened.
34227 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34228 messages instead of Recent messages.
34229 Unseen messages remain Unseen until you view them (or flag then as Seen with
34230 the <A HREF="h_common_flag">Flag Command</A>).
34231 Setting this feature allows you to locate messages you have not read
34232 instead of only recently received messages.
34233 When this feature is set, the feature
34234 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34235 will have no effect, so the checking may be slower.
34238 Another reason why you might want to use this feature is that Alpine sometimes
34239 opens folders implicitly behind the scenes, and this clears the
34240 Recent status of all messages in the folder.
34241 One example where this happens is when Saving or filtering a
34242 message to another folder.
34243 If that message has some <A HREF="h_config_keywords">keywords</A>
34244 set, then because of some shortcomings
34245 in the IMAP specification, the best way to ensure that those keywords are
34246 still set in the saved copy of the message is to open the folder and
34247 set the keywords explicitly.
34248 Because this clears the Recent status of all messages in that folder the
34249 folder will not be found by the NextNew command unless this feature is set.
34252 &lt;End of help on this topic&gt;
34253 </BODY>
34254 </HTML>
34255 ====== h_config_tab_new_only =====
34256 <HTML>
34257 <HEAD>
34258 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34259 </HEAD>
34260 <BODY>
34261 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34263 This feature affects Alpine's behavior when using the TAB key to move from
34264 one message to the next.  Alpine's usual behavior is to select the next
34265 unread message or message flagged as "Important".
34269 Setting this feature causes Alpine to skip the messages flagged as important,
34270 and select unread messages exclusively.  Tab behavior when there are no
34271 new messages left to select remains unchanged.
34273 &lt;End of help on this topic&gt;
34274 </BODY>
34275 </HTML>
34276 ====== h_config_warn_if_subj_blank =====
34277 <HTML>
34278 <HEAD>
34279 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34280 </HEAD>
34281 <BODY>
34282 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34284 This feature affects Alpine's behavior when you send a message being
34285 composed.
34286 If this option is set, Alpine will check to see if the message about to be sent
34287 has a subject or not.
34288 If not, you will be asked if you want to send the message anyway.
34291 <UL>   
34292 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34293 </UL><P>
34294 &lt;End of help on this topic&gt;
34295 </BODY>
34296 </HTML>
34297 ====== h_config_warn_if_fcc_blank =====
34298 <HTML>
34299 <HEAD>
34300 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34301 </HEAD>
34302 <BODY>
34303 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34305 This feature affects Alpine's behavior when you send a message being
34306 composed.
34307 If this option is set, Alpine will check to see if the message about to be sent
34308 has an Fcc or not.
34309 If not, you will be asked if you want to send the message anyway.
34312 <UL>   
34313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34314 </UL><P>
34315 &lt;End of help on this topic&gt;
34316 </BODY>
34317 </HTML>
34318 ====== h_config_warn_if_no_to_or_cc =====
34319 <HTML>
34320 <HEAD>
34321 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
34322 </HEAD>
34323 <BODY>
34324 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
34326 This feature affects Alpine's behavior when you send a message being
34327 composed.
34328 If this option is set, Alpine will check to see if the message about to be sent
34329 has either a To address, a Cc address, or a Newsgroup.
34330 If none of these is set,
34331 you will be asked if you want to send the message anyway.
34334 This feature is closely related to
34335 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
34336 Alpine will normally ask if you want to copy a message only to the Fcc.
34337 This feature also applies to cases where there is a Bcc but still no To, Cc,
34338 or Newsgroup.
34339 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
34340 message with only an Fcc, then you won't be asked about sending with
34341 a blank To and Cc and Newsgroups header even if this feature is set.
34342 Similarly, if you have already been asked if you want to send to the Fcc
34343 only and you have answered Yes, then you won't be asked again about sending with
34344 blank To, Cc, and Newsgroups headers even if this feature is set.
34347 <UL>   
34348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34349 </UL><P>
34350 &lt;End of help on this topic&gt;
34351 </BODY>
34352 </HTML>
34353 ====== h_config_quell_dead_letter =====
34354 <HTML>
34355 <HEAD>
34356 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
34357 </HEAD>
34358 <BODY>
34359 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
34361 This feature affects Alpine's behavior when you cancel a message being
34362 composed.  Alpine's usual behavior is to write the canceled message to
34363 a file named 
34364 <!--chtml if pinemode="os_windows"-->
34365 &quot;DEADLETR&quot;,
34366 <!--chtml else-->
34367 &quot;dead.letter&quot; in your home directory,
34368 <!--chtml endif-->
34369 overwriting any previous message. Under
34370 some conditions (some routine), this can introduce a noticeable delay.
34371 Setting this feature will cause Alpine NOT to write canceled compositions
34372 into the file.
34374 NOTE: Enabling this feature means NO record of canceled messages is
34375 maintained.
34377 This feature affects the newer option
34378 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
34379 number of dead letter files to keep around.
34380 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
34382 <UL>   
34383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34384 </UL><P>
34385 &lt;End of help on this topic&gt;
34386 </BODY>
34387 </HTML>
34388 ====== h_config_quell_beeps =====
34389 <HTML>
34390 <HEAD>
34391 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
34392 </HEAD>
34393 <BODY>
34394 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
34396 This feature affects Alpine's behavior when it displays status message
34397 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
34398 will not affect the display of such messages, but will cause those that
34399 emit a beep to become silent.
34402 <UL>   
34403 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34404 </UL><P>
34405 &lt;End of help on this topic&gt;
34406 </BODY>
34407 </HTML>
34408 ====== h_config_suppress_user_agent =====
34409 <HTML>
34410 <HEAD>
34411 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
34412 </HEAD>
34413 <BODY>
34414 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
34416 If this feature is set then Alpine will not generate a
34417 <CODE>User-Agent</CODE> header in outgoing messages.
34419 <UL>   
34420 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34421 </UL><P>
34422 &lt;End of help on this topic&gt;
34423 </BODY>
34424 </HTML>
34425 ====== h_config_quell_lock_failure_warnings =====
34426 <HTML>
34427 <HEAD>
34428 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
34429 </HEAD>
34430 <BODY>
34431 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
34433 This feature affects Alpine's behavior when it encounters a problem
34434 acquiring a mail folder lock.  Typically, a secondary file associated
34435 with the mail folder being opened is created as part of the locking
34436 process.  On some systems, such file creation has been administratively
34437 precluded by the system configuration.
34439 Alpine issues a warning when such failures occur, which can become bothersome
34440 if the system is configured to disallow such actions.  Setting this
34441 feature causes Alpine to remain silent when this part of lock creation fails.
34443 WARNING: systems that have been configured in a way that precludes locking
34444 introduce some risk of mail folder corruption when more than one program
34445 attempts to modify the mail folder.  This is most likely to occur to one's
34446 INBOX or other incoming message folder. 
34448 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34450 <UL>   
34451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34452 </UL><P>
34453 &lt;End of help on this topic&gt;
34454 </BODY>
34455 </HTML>
34456 ====== h_config_enable_role_take ======
34457 <HTML>
34458 <HEAD>
34459 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34460 </HEAD>
34461 <BODY>
34462 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34464 Normally, the Take command takes addresses from a message and helps you
34465 put them into your Address Book.
34466 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34467 you may find it useful
34468 to be able to Take information from a message's headers and put it into
34469 a new Rule.
34470 When this feature is set, you will be given an extra prompt that gives
34471 you the choice to Take into the Address Book or Take into a rule.
34472 <P><UL>
34473 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34474 </UL>
34476 &lt;End of help on this topic&gt;
34477 </BODY>
34478 </HTML>
34479 ====== h_config_enable_take_export ======
34480 <HTML>
34481 <HEAD>
34482 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34483 </HEAD>
34484 <BODY>
34485 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34487 Normally, the Take command takes addresses from a message and helps you
34488 put them into your Address Book.
34489 When this feature is set, you will be given an extra prompt that gives you
34490 the choice to Take addresses into a file instead of your Address
34491 Book.
34492 Only the user@domain_name part of the address is put in the file.
34493 <P><UL>
34494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34495 </UL>
34497 &lt;End of help on this topic&gt;
34498 </BODY>
34499 </HTML>
34500 ====== h_config_quell_folder_internal_msg ======
34501 <HTML>
34502 <HEAD>
34503 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34504 </HEAD>
34505 <BODY>
34506 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34508 This feature determines whether or not Alpine will create 
34509 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34510 MMDF format. <P> 
34512 Alpine will normally create these pseudo messages when they are not already
34513 present in a standard Unix or MMDF folder.  Their purpose is to record
34514 certain mailbox state data needed for correct IMAP and POP server
34515 operation, and also for Alpine to be able to mark messages as Answered when
34516 the Reply has been postponed.<P>
34518 Sites that do not use IMAP/POP for remote mail access, and that need to
34519 support mail tools that are adversely affected by the presence of the
34520 pseudo-messages (e.g. some mail notification tools) may enable this
34521 feature to tell Alpine not to create them.  Note that Alpine's 
34522 &quot;Answered&quot; flag
34523 capability will be adversely affected if this is done.<P>
34525 Note too that, even if this feature is enabled, Alpine will not remove
34526 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34527 or ipopd servers.) This feature has no effect on folders that are not in
34528 standard Unix or MMDF format, as pseudo-messages are not needed in the
34529 other formats to record mailbox state information.
34530 <P><UL>
34531 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34532 </UL>
34534 &lt;End of help on this topic&gt;
34535 </BODY>
34536 </HTML>
34537 ====== h_config_mulnews_as_typed ======
34538 <HTML>
34539 <HEAD>
34540 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34541 </HEAD>
34542 <BODY>
34543 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34545 This feature will be of little use to most users.
34546 It has no effect unless the feature
34547 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34548 is set.
34550 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34551 then the setting of this feature may have an effect on the names of the
34552 newsrc files used.
34553 Normally, the name of the news server will be canonicalized before it is
34554 used in the newsrc file name.
34555 For example, if you type the news server name
34558 <CENTER><SAMP>servername</SAMP></CENTER>
34561 it is likely that the canonical name will be something like
34564 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34567 Or it may be the case that
34570 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34573 is really an alias (a DNS CNAME) for
34576 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34579 If this feature is not set, then the canonicalized names will be used.
34580 If this feature is set, then the name you typed in (or put in your
34581 configuration) will be used.
34583 <P><UL>
34584 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34585 </UL>
34587 &lt;End of help on this topic&gt;
34588 </BODY>
34589 </HTML>
34590 ====== h_config_quell_empty_dirs ======
34591 <HTML>
34592 <HEAD>
34593 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34594 </HEAD>
34595 <BODY>
34596 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34598 This feature causes Alpine to remove from the display any directories
34599 that do not contain at least one file or directory.  This can be useful
34600 to prevent overly cluttered folder lists when a collection is stored on
34601 a server that treats all names as both a folder and a directory.
34604 Note, enabling this feature can cause surprising behavior!  For example,
34605 you can still use Add to create a directory, but unless you immediately
34606 enter that directory and create a folder, that newly created directory
34607 may not be displayed next time you enter the folder list.
34610 The description above is not quite correct.
34611 Only directories which potentially may hold messages are hidden if empty.
34612 That is, a directory which is really just a directory and is not selectable
34613 as a folder will not be hidden.
34614 Such directories can occur on servers that treat most names as both a folder
34615 and a directory.
34616 These directories are typically created implicitly when a folder is created
34617 inside a directory that does not yet exist.
34620 <UL>   
34621 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34622 </UL><P>
34623 &lt;End of help on this topic&gt;
34624 </BODY>
34625 </HTML>
34626 ====== h_config_termcap_wins =====
34627 <HTML>
34628 <HEAD>
34629 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34630 </HEAD>
34631 <BODY>
34632 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34634 This feature may affect Alpine's low-level input routines.  Termcap (or
34635 terminfo, depending on how your copy of Alpine was compiled and linked)
34636 is the name of the database that describes terminal capabilities.  In
34637 particular, it describes the sequences of characters that various keys
34638 will emit.
34641 An example would be the Up Arrow key on the keyboard.  Up
34642 Arrow is not a distinct character on most Unix systems.  When you press
34643 the Up Arrow key a short sequence of characters are produced.  This
34644 sequence is supposed to be described in the termcap database by the
34645 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34646 are using terminfo instead of termcap).
34649 By default, Alpine defines some terminal
34650 escape sequences that are commonly used.  For example, the sequence
34651 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34652 &quot;ESC&nbsp;[&nbsp;A&quot;
34653 is also recognized as an Up Arrow key.  These are chosen because common
34654 terminals like VT100's or ANSI standard terminals produce these
34655 sequences when you press the Up Arrow key.
34658 If your system's termcap
34659 (terminfo) database assigns some other function to the sequence
34660 &quot;ESC&nbsp;O&nbsp;A&quot;
34661 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34662 database assigns a sequence that doesn't begin with an escape
34663 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34664 This usually works fine
34665 because most terminals emit the escape sequences that Alpine has defined
34666 by default.  We have also found that it is usually better to have these
34667 defaults take precedence over the definitions contained in the database
34668 because the defaults are more likely to be correct than the database.
34671 There are some terminals where this breaks down.  If you want Alpine to
34672 believe the definitions given in your termcap (terminfo) database in
34673 preference to the defaults the Alpine itself sets up, then you may turn
34674 this feature on.  Then, sequences of characters that are defined in
34675 both termcap (terminfo) and in Alpine's set of defaults will be
34676 interpreted the way that termcap (terminfo) says they should be
34677 interpreted.  Also, if your terminal capabilities database assigns a
34678 sequence that doesn't begin with escape, it will not be ignored.
34681 <UL>   
34682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34683 </UL><P>
34684 &lt;End of help on this topic&gt;
34685 </BODY>
34686 </HTML>
34687 ====== h_config_cruise_mode =====
34688 <HTML>
34689 <HEAD>
34690 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34691 </HEAD>
34692 <BODY>
34693 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34695 This feature affects Alpine's behavior when you hit the
34696 &quot;Space&nbsp;Bar&quot; at
34697 the end of a displayed message.  Typically, Alpine complains that the end
34698 of the text has already been reached.  Setting this feature causes such
34699 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34700 taking you to the next &quot;interesting&quot; message,
34701 or scanning ahead to the 
34702 next incoming folder with &quot;interesting&quot; messages.
34705 <UL>   
34706 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34707 </UL><P>
34708 &lt;End of help on this topic&gt;
34709 </BODY>
34710 </HTML>
34711 ====== h_config_cruise_mode_delete =====
34712 <HTML>
34713 <HEAD>
34714 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34715 </HEAD>
34716 <BODY>
34717 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34719 This feature modifies the behavior of Alpine's 
34720 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34721 Setting this feature causes Alpine to implicitly delete read
34722 messages when it moves on to display the next &quot;interesting&quot; message.
34724 NOTE: Beware when enabling this feature AND the 
34725 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34726 feature.
34728 <UL>   
34729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34730 </UL><P>
34731 &lt;End of help on this topic&gt;
34732 </BODY>
34733 </HTML>
34734 ====== h_config_slash_coll_entire =====
34735 <HTML>
34736 <HEAD>
34737 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34738 </HEAD>
34739 <BODY>
34740 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34742 The slash (/) command is available from the MESSAGE INDEX screen when
34743 the folder is sorted by either Threads or OrderedSubject, and the
34744 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34745 is set to something other than &quot;none&quot;.
34746 Normally, the slash command Collapses or Expands the subthread that
34747 starts at the currently highlighted message, if any.
34748 If this option is set, then the slash command Collapses or Expands the
34749 <EM>entire</EM> current thread instead of just the subthread.
34750 The current thread is simply the top-level thread that contains the
34751 current message.
34754 <UL>   
34755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34756 </UL><P>
34757 &lt;End of help on this topic&gt;
34758 </BODY>
34759 </HTML>
34760 ====== h_config_color_thrd_import =====
34761 <HTML>
34762 <HEAD>
34763 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34764 </HEAD>
34765 <BODY>
34766 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34768 This option affects only the THREAD INDEX screen.
34769 Whether or not you ever see a THREAD INDEX screen depends on the setting
34770 of the configuration option
34771 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34772 and on the sort order of the index.
34775 If a message within a thread is flagged as Important
34776 and this option is set, then
34777 the entire line in the THREAD INDEX will be colored the color of the
34778 Index-important Symbol, which can be set using the
34779 <A HREF="h_color_setup">Setup Kolor</A> screen.
34782 <UL>   
34783 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34784 </UL><P>
34785 &lt;End of help on this topic&gt;
34786 </BODY>
34787 </HTML>
34788 ====== h_config_allow_goto =====
34789 <HTML>
34790 <HEAD>        
34791 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34792 </HEAD>
34793 <BODY>
34794 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34796 This feature modifies the behavior of Alpine's file browser.  Setting this
34797 feature causes Alpine to offer the "G Goto" command in the file browser.
34798 That is the default.
34802 The Goto command allows you to explicitly type in the desired directory.
34804 &lt;End of help on this topic&gt;
34805 </BODY></HTML>
34806 ====== h_config_add_ldap =====
34807 <HTML>
34808 <HEAD>
34809 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34810 </HEAD>
34811 <BODY>
34812 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34814 If both the Directory option
34815 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34816 and this feature are set,
34817 then when an implicit directory lookup is done from the
34818 composer you will automatically be prompted to add the result of the
34819 directory lookup to your address book.
34821 <UL>   
34822 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34823 </UL><P>
34824 &lt;End of help on this topic&gt;
34825 </BODY>
34826 </HTML>
34827 ===== h_patterns_compat_behavior =====
34828 <HTML>
34829 <HEAD>
34830 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34831 </HEAD>
34832 <BODY>
34833 <H1>Rules Behavior Changes in Pine 4.50</H1>
34835 In Alpine, Rules that contain unrecognized elements
34836 are ignored.
34837 In most cases, the unrecognized elements will be something that was
34838 added as a new Rules feature in a later version of Alpine.
34839 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34840 ignore rules that contained unrecognized elements.
34841 For example, a new element of Rules that was added in Pine 4.50 is
34842 Age interval.
34843 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34844 all messages older than a week red.
34845 Now, if you run Pine 4.44 using that same configuration file, it will not
34846 recognize the Age interval and so will just ignore it.
34847 That means that all messages will match that rule so all messages will
34848 be colored red when using Pine version 4.44.
34851 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34852 However, since the behavior still exists in versions prior to Pine 4.50 and
34853 since Filtering is a potentially destructive operation, another measure
34854 was taken to attempt to avoid unintentional Filtering of messages.
34855 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34856 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34857 will be copied to a new Filters configuration variable
34858 with a different name (&quot;Patterns-Filters2&quot;).
34859 From then on, Alpine will continue to use the new
34860 variable.
34861 Of course, Pine version 4.44 or lower will continue to use the old
34862 variable.
34863 That means that if you are using Alpine
34864 and also using a version of Pine that is older than 4.50, they will not
34865 share the configuration information about Filters.
34866 If you make a change in one version you won't see it in the other version.
34869 Since Scoring can be used to trigger Filtering, the same thing has been
34870 done for Score rules.
34871 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34872 and the new name is (&quot;Patterns-Scores2&quot;).
34873 The same is not true of Role, Indexcolor, and Other rules that are
34874 thought to be less harmful when a mistake is made.
34877 &lt;End of help on this topic&gt;
34878 </BODY>
34879 </HTML>
34880 ======= h_config_filt_opts_sentdate =======
34881 <HTML>
34882 <HEAD>
34883 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34884 </HEAD>
34885 <BODY>
34886 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34888 By default, the Age interval of a Pattern uses a message's time of
34889 arrival to compute the age of the message.
34890 If this feature is set, the date in the message's Date header will
34891 be used instead.
34893 &lt;End of help on this topic&gt;
34894 </BODY>
34895 </HTML>
34896 ======= h_config_filt_opts_notdel =======
34897 <HTML>
34898 <HEAD>
34899 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
34900 </HEAD>
34901 <BODY>
34902 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
34904 If this option is set then a message will be moved into the
34905 specified folder only if it is not marked for deletion.
34906 This is useful if you have multiple Alpine sessions running
34907 simultaneously and you don't want messages to be filtered into a
34908 folder more than once.
34909 It is also useful if you want to filter
34910 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
34911 This method is not foolproof.
34912 There may be cases where a message
34913 gets marked deleted and so it is never filtered into the folder.
34914 For example, if you deleted it in another Alpine session or another mail
34915 program that didn't use the filtering rule.
34917 This option has no effect if the Filter Action is not set to Move.
34919 &lt;End of help on this topic&gt;
34920 </BODY>
34921 </HTML>
34922 ======= h_config_filt_opts_nonterm =======
34923 <HTML>
34924 <HEAD>
34925 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
34926 </HEAD>
34927 <BODY>
34928 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
34930 If this option is set then this is a non-terminating rule.
34931 Usually, for each message, Alpine searches through the Filter Rules until
34932 a match is found and then it performs the action associated with that rule.
34933 Rules following the match are not considered.
34934 If this option is set then the search for matches will continue at the next
34935 rule.
34937 If a non-terminating rule matches then the actions associated with
34938 that rule, except for any implied deletion of the message, are performed
34939 before the match for the next rule is checked.
34940 For example, if the non-terminating rule sets the Important status, then that
34941 status will be set when the next rule is considered.
34942 However, if the non-terminating rule Moves the message, the message will
34943 actually be copied instead of copied and deleted so that it is still there
34944 for the next rule.
34945 A moved message is deleted after all the relevant rules have been checked.
34946 The name of the &quot;Move&quot; action is confusing in this case because
34947 a single message can be moved to more than one folder.
34948 It turns the Move into a Copy instead, but it is still followed by a deletion
34949 at the end.
34951 This option may be useful if you want to have a single message filtered to
34952 two different folders because it matches two different Patterns.
34953 For example, suppose you normally filter messages to a particular mailing
34954 list into one folder, and messages addressed directly to you into a second
34955 folder.
34956 If a message is sent to both you and the list (and you can tell that by
34957 looking at the headers of the message) this option may give you a convenient
34958 way to capture a copy to each folder.
34959 (It may also cause you to capture two copies to each folder,
34960 depending on whether your mail system delivers one or two copies of the
34961 message to you and on how the list works.)
34963 &lt;End of help on this topic&gt;
34964 </BODY>
34965 </HTML>
34966 ===== h_mainhelp_smime ======
34967 <HTML>
34968 <HEAD>
34969 <TITLE>S/MIME Overview</TITLE>
34970 </HEAD>
34971 <BODY>
34972 <H1>S/MIME Overview</H1>
34974 S/MIME is a standard for the public key encryption and signing of email.
34975 UNIX Alpine contains a basic implementation of S/MIME based on
34976 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries. The
34977 same support can be provided using the 
34978 <A HREF="http://www.libressl.org/">LibreSSL</A> libraries. The
34979 support for S/MIME in PC-Alpine is fully based on the LibreSSL libraries.
34980 To check if this version of Alpine supports S/MIME look at
34981 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34982 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34984 Some limitations:
34985 <UL>
34986    <LI> There is no provision for checking for CRLs
34987         (Certificate Revocation Lists) in Alpine.
34988    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34989    <LI> There is no mechanism available for feeding either an entire incoming
34990         or an entire outgoing message to an external
34991         filter and using that external filter to do S/MIME or PGP processing.
34992    <LI> Because the implementation currently uses OpenSSL, there is only a very
34993         limited integration with the Mac OS Keychain (the storing and access of
34994         public certificates).
34995 </UL>
34997 The S/MIME configuration screen is reached by going to the Main Menu and typing
34998 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
35001 <H2>S/MIME BASICS</H2>
35003 In order to digitally sign messages you send you must have a public/private key-pair.
35004 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
35005 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
35006 users or a company which provides certificates for its workers.
35007 These certificates are bound to an email address, so the identity being verified is the
35008 email address not a person's name.
35010 Mail is signed by using the sender's private key, which only the owner of the private key
35011 has access to.
35012 The signature is verified using the signer's public key, which anyone can
35013 have access to.
35014 With Alpine, the first time you receive a signed message the public key of the
35015 sender will be stored for future use.
35018 Mail is encrypted using the recipient's public key and decrypted by
35019 the recipient with their private key.
35022 You need a key of your own in order to sign outgoing messages and to have others
35023 encrypt messages sent to you.
35024 You do not need a key of your own to verify signed messages sent by others or to
35025 encrypt messages sent to others.
35027 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
35029 By default UNIX Alpine stores the certificates it uses in a directory in your
35030 home directory.
35031 The directory name is
35033 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
35035 For PC-Alpine, the equivalent directory is called 
35036 <CENTER><SAMP>alpine-smime</SAMP></CENTER>
35037 and is also located under your home directory.
35039 Within that directory are three subdirectories.
35040 Each of the three subdirectories contains files with PEM-encoded contents,
35041 the default format for OpenSSL.
35042 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
35043 The files within that directory have names that are email addresses with the
35044 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
35045 An example filename is
35047 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35049 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
35050 your private key.
35051 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
35052 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
35053 Authorities that you want to trust but that aren't contained in the set of system CAs.
35054 Those files may have arbitrary names as long as they end with the
35055 suffix &quot;<SAMP>.crt</SAMP>&quot;.
35057 <H2>HOW TO SIGN AND ENCRYPT</H2>
35059 If you have a certificate you may sign outgoing messages.
35060 After typing the Ctrl-X command to send a message you will see the prompt
35062 <CENTER><SAMP>Send message?</SAMP></CENTER>
35064 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
35065 Typing the &quot;G&quot; command will change the prompt to
35067 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
35069 Typing the &quot;E&quot; command will change the prompt to
35071 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
35073 You may even type both to get
35075 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
35078 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
35080 The reading of a signed message should not require any special action on
35081 your part.
35082 There should be an editorial addition at the start of the message which
35083 says either
35085 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
35089 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
35091 If an encrypted message is sent to you the encrypted text will not
35092 be shown.
35093 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
35094 you are viewing the message) and supply your passphrase when asked.
35096 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
35097 which gives you some information about the certificate used to sign or encrypt the message.
35099 <H2>MISCELLANEOUS</H2>
35101 If you have access to a private certificate in the PKCS12 format, which 
35102 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
35103 use the following commands to generate private keys, public and certificate
35104 authorities certificates. In the examples below, we assume that the 
35105 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
35106 that your email address is &quot;your@address.com&quot;.
35109 In order to create a private key use the command
35111 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
35113 In order to create a public certificate use the command
35115 <CENTER><SAMP>
35116 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
35117 </SAMP></CENTER>
35119 In order to create a certificate authority certificate use the command
35121 <CENTER><SAMP>
35122 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
35123 </SAMP></CENTER>
35125 <P> If the previous command produces an empty file, it means that the 
35126 certificate authority was not included in the .p12 file, so you will have 
35127 to get it from some other sources. You will need these certificates, so 
35128 that you can validate correctly signatures.
35131 After you have exported these certificates and keys, you can  use the import 
35132 command in Alpine, from the S/MIME configuration screen,
35133 to import these certificates into Alpine. They will be available for use
35134 as soon as you import them.
35136 &lt;End of help on this topic&gt;
35137 </BODY>
35138 </HTML>
35139 ====== h_config_smime_pubcertdir =====
35140 <HTML>
35141 <HEAD>
35142 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
35143 </HEAD>
35144 <BODY>
35145 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
35148 If the option
35149 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35150 is set then this option will have no effect.
35152 Normally, Public Certificates for use with S/MIME will be stored in the directory
35153 which is the value of this option.
35154 Those certificates will be stored in PEM format, one certificate per file.
35155 The name of the file for the certificate corresponding to
35157 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35159 should be
35161 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
35163 For example, a file for user@example.com would be in the file
35165 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35167 in this directory.
35169 Use the Setup/SMIME screen to modify this variable.
35171 Typically, the public certificates that you have will come from S/MIME signed
35172 messages that are sent to you.
35173 Alpine will extract the public certificate from the signed message and store
35174 it in the certificates directory.
35175 These PEM format public certificates look something like:
35176 <PRE>
35177 -----BEGIN CERTIFICATE-----
35178 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
35179 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
35180 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
35182 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
35183 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
35184 -----END CERTIFICATE-----
35185 </PRE>
35187 <UL>   
35188 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35189 </UL><P>
35191 <UL>   
35192 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35193 </UL><P>
35194 &lt;End of help on this topic&gt;
35195 </BODY>
35196 </HTML>
35197 ====== h_config_smime_pubcertcon =====
35198 <HTML>
35199 <HEAD>
35200 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
35201 </HEAD>
35202 <BODY>
35203 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
35206 If this option is set it will be used instead of
35207 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35209 This option gives you a way to store certificates remotely on an IMAP server
35210 instead of storing the certificates one per file locally.
35211 In order to do that you just give this option a remote folder name for a folder
35212 which does not yet exist.
35213 The name is similar to the name you might use for a remote configuration file.
35214 A remote folder name might look something like:
35216 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
35219 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35220 about the syntax of folder names.
35222 Use the Setup/SMIME screen to modify this variable.
35224 <UL>   
35225 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35226 </UL><P>
35228 <UL>   
35229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35230 </UL><P>
35231 &lt;End of help on this topic&gt;
35232 </BODY>
35233 </HTML>
35234 ====== h_config_smime_privkeydir =====
35235 <HTML>
35236 <HEAD>
35237 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
35238 </HEAD>
35239 <BODY>
35240 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
35243 In order to sign outgoing S/MIME messages you will need a
35244 personal digital ID certificate.
35245 You will usually get such a certificate from a certificate authority such as
35246 Thawte or CAcert.
35247 (In order to encrypt outgoing messages you don't need a personal digital ID, you
35248 need the public certificate of the recipient instead.)
35249 If the option
35250 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
35251 is set then this option will have no effect.
35253 Normally, Private Keys for use with S/MIME will be stored in the directory
35254 which is the value of this option.
35255 Those certificates will be stored in PEM format, one certificate per file.
35256 The name of the file for the certificate corresponding to your
35258 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35260 should be
35262 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
35264 For example, if your address is user@example.com the name of the file would be
35266 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
35268 in this directory.
35270 Use the Setup/SMIME screen to modify this variable.
35272 Typically, the private key that you have will come from a Certificate
35273 Authority.
35274 The private key should be stored in a PEM format file that
35275 looks something like:
35276 <PRE>
35277 -----BEGIN RSA PRIVATE KEY-----
35278 Proc-Type: 4,ENCRYPTED
35279 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
35281 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
35282 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
35283 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
35285 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
35286 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
35287 -----END RSA PRIVATE KEY-----
35288 </PRE>
35290 <UL>   
35291 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35292 </UL><P>
35294 <UL>   
35295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35296 </UL><P>
35297 &lt;End of help on this topic&gt;
35298 </BODY>
35299 </HTML>
35300 ====== h_config_smime_privkeycon =====
35301 <HTML>
35302 <HEAD>
35303 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
35304 </HEAD>
35305 <BODY>
35306 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
35309 If this option is set it will be used instead of
35310 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35312 This option gives you a way to store keys remotely on an IMAP server
35313 instead of storing the keys one per file locally.
35314 In order to do that you just give this option a remote folder name for a folder
35315 which does not yet exist.
35316 The name is similar to the name you might use for a remote configuration file.
35317 A remote folder name might look something like:
35319 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
35322 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35323 about the syntax of folder names.
35325 Use the Setup/SMIME screen to modify this variable.
35327 <UL>   
35328 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35329 </UL><P>
35331 <UL>   
35332 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35333 </UL><P>
35334 &lt;End of help on this topic&gt;
35335 </BODY>
35336 </HTML>
35337 ====== h_config_smime_cacertdir =====
35338 <HTML>
35339 <HEAD>
35340 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
35341 </HEAD>
35342 <BODY>
35343 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
35346 If the option
35347 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
35348 is set then this option will have no effect.
35350 CACert is a shorthand name for certification authority certificate.
35351 Normally Alpine will use the CACerts that are located in the standard system
35352 location for CACerts.
35353 It may be the case that one of your correspondents has a Digital ID which has
35354 been signed by a certificate authority that is not in the regular set of system certificate
35355 authorities.
35356 You may supplement the system list by adding further certificates of your own.
35357 These should  be stored in the directory
35358 which is the value of this option.
35359 The certificates will be stored in PEM format, one certificate per file.
35360 The names of the files can be anything ending in &quot;.crt&quot;.
35362 Use the Setup/SMIME screen to modify this variable.
35364 These PEM format CA certificates look very similar to your public
35365 certificates for particular email addresses
35366 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
35368 <UL>   
35369 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35370 </UL><P>
35372 <UL>   
35373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35374 </UL><P>
35375 &lt;End of help on this topic&gt;
35376 </BODY>
35377 </HTML>
35378 ====== h_config_smime_cacertcon =====
35379 <HTML>
35380 <HEAD>
35381 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
35382 </HEAD>
35383 <BODY>
35384 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
35387 If this option is set it will be used instead of
35388 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35390 This option gives you a way to store certificates remotely on an IMAP server
35391 instead of storing the certificates one per file locally.
35392 In order to do that you just give this option a remote folder name for a folder
35393 which does not yet exist.
35394 The name is similar to the name you might use for a remote configuration file.
35395 A remote folder name might look something like:
35397 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
35400 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35401 about the syntax of folder names.
35403 Use the Setup/SMIME screen to modify this variable.
35405 <UL>   
35406 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35407 </UL><P>
35409 <UL>   
35410 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35411 </UL><P>
35412 &lt;End of help on this topic&gt;
35413 </BODY>
35414 </HTML>
35415 ========== h_config_smime_sign_by_default ==========
35416 <HTML>
35417 <HEAD>
35418 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
35419 </HEAD>
35420 <BODY>
35421 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
35424 This feature only has an effect if your version of Alpine includes
35425 support for S/MIME.
35426 It affects Alpine's behavior when you send a message.
35427 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
35429 Only the default value is affected.
35430 In any case, you may still toggle the Signing option on or off before sending
35431 with the &quot;G Sign&quot; command (provided you have a personal digital ID
35432 certificate).
35434 <UL>   
35435 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35436 </UL><P>
35439 <UL>   
35440 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35441 </UL><P>
35442 &lt;End of help on this topic&gt;
35443 </BODY>
35444 </HTML>
35445 ========== h_config_smime_use_cert_store ==========
35446 <HTML>
35447 <HEAD>
35448 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35449 </HEAD>
35450 <BODY>
35451 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35454 This feature only has an effect if your version of Alpine includes
35455 support for S/MIME.
35456 It affects Alpine's behavior when you validate a message, and should
35457 not be disabled, unless you are performing a test.
35459 There are two important aspects of validation: validation of the message
35460 (that is, the message was not modified after it was sent) 
35461 as well as validation of the identity of the sender. This option has to 
35462 do with the latter. 
35464 In order to validate that the message came from the sender in the message
35465 and not an impersonator, Alpine can 
35466 either use the certificates that come in the message, or the ones that 
35467 you have personally stored. If this feature is enabled (the default) then 
35468 Alpine will use certificates that you have already saved in your store 
35469 and not those that come in the message to validate the sender of the 
35470 message. In particular, the first time that you receive a signed message
35471 from a sender, and their certificate does not validate against your
35472 store, then you will be asked if you wish to save such certificate. If
35473 you do not wish to save the certificate, then Alpine will fail to validate
35474 the signature of the message. Otherwise, Alpine will proceed to validate
35475 the signature of the message. This behavior helps you prevent against impersonation, because 
35476 it is assumed that you trust the certificates that you have saved, and 
35477 might not trust those that came with the message that you are validating.
35479 <UL>   
35480 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35481 </UL><P>
35484 <UL>   
35485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35486 </UL><P>
35487 &lt;End of help on this topic&gt;
35488 </BODY>
35489 </HTML>
35490 ========== h_config_smime_pubcerts_in_keychain ==========
35491 <HTML>
35492 <HEAD>
35493 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35494 </HEAD>
35495 <BODY>
35496 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35499 If this feature is set the Mac OS X default keychain will be used as the place
35500 to store public certificates instead of a
35501 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35502 or a
35503 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35505 <UL>   
35506 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35507 </UL><P>
35509 <UL>   
35510 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35511 </UL><P>
35512 &lt;End of help on this topic&gt;
35513 </BODY>
35514 </HTML>
35515 ========== h_config_smime_dont_do_smime ==========
35516 <HTML>
35517 <HEAD>
35518 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35519 </HEAD>
35520 <BODY>
35521 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35524 Setting this feature turns off all of Alpine's S/MIME support.
35525 You might want to set this if you are having trouble due to the S/MIME support.
35527 <UL>   
35528 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35529 </UL><P>
35532 <UL>   
35533 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35534 </UL><P>
35535 &lt;End of help on this topic&gt;
35536 </BODY>
35537 </HTML>
35538 ========== h_config_smime_encrypt_by_default ==========
35539 <HTML>
35540 <HEAD>
35541 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35542 </HEAD>
35543 <BODY>
35544 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35547 This feature only has an effect if your version of Alpine includes
35548 support for S/MIME.
35549 It affects Alpine's behavior when you send a message.
35550 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35552 Only the default value is affected.
35553 In any case, you may still toggle the Encrypt option on or off before sending
35554 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35555 for the recipient).
35557 <UL>   
35558 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35559 </UL><P>
35562 <UL>   
35563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35564 </UL><P>
35565 &lt;End of help on this topic&gt;
35566 </BODY>
35567 </HTML>
35568 ========== h_config_smime_remember_passphrase ==========
35569 <HTML>
35570 <HEAD>
35571 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35572 </HEAD>
35573 <BODY>
35574 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35577 This feature only has an effect if your version of Alpine includes
35578 support for S/MIME.
35579 If this option is set, you will only have to enter your passphrase for your private key
35580 once during an Alpine session.
35582 <UL>   
35583 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35584 </UL><P>
35587 <UL>   
35588 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35589 </UL><P>
35590 &lt;End of help on this topic&gt;
35591 </BODY>
35592 </HTML>
35593 ====== h_config_smime_transfer_pub_to_con =====
35594 <HTML>
35595 <HEAD>
35596 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35597 </HEAD>
35598 <BODY>
35599 <H1>S/MIME: Transfer Public Certs to Container</H1>
35602 The Transfer command will copy the public certificates in your configured
35603 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35604 to the container in your configured
35605 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35606 This might be useful if you decide to switch from using a cert directory to a cert
35607 container.
35609 Warning: Any previous contents in the container will be lost.
35611 <UL>   
35612 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35613 </UL><P>
35615 <UL>   
35616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35617 </UL><P>
35618 &lt;End of help on this topic&gt;
35619 </BODY>
35620 </HTML>
35621 ====== h_config_smime_transfer_pub_to_dir =====
35622 <HTML>
35623 <HEAD>
35624 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35625 </HEAD>
35626 <BODY>
35627 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35630 The Transfer command will copy the public certificates in your configured
35631 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35632 to the directory in your configured
35633 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35634 This might be useful if you decide to switch from using a cert container to a cert
35635 directory.
35637 <UL>   
35638 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35639 </UL><P>
35641 <UL>   
35642 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35643 </UL><P>
35644 &lt;End of help on this topic&gt;
35645 </BODY>
35646 </HTML>
35647 ====== h_config_smime_transfer_priv_to_con =====
35648 <HTML>
35649 <HEAD>
35650 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35651 </HEAD>
35652 <BODY>
35653 <H1>S/MIME: Transfer Private Keys to Container</H1>
35656 The Transfer command will copy the private keys in your configured
35657 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35658 to the container in your configured
35659 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35660 This might be useful if you decide to switch from using a key directory to a key
35661 container.
35663 Warning: Any previous contents in the container will be lost.
35665 <UL>   
35666 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35667 </UL><P>
35669 <UL>   
35670 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35671 </UL><P>
35672 &lt;End of help on this topic&gt;
35673 </BODY>
35674 </HTML>
35675 ====== h_config_smime_transfer_priv_to_dir =====
35676 <HTML>
35677 <HEAD>
35678 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35679 </HEAD>
35680 <BODY>
35681 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35684 The Transfer command will copy the private keys in your configured
35685 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35686 to the directory in your configured
35687 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35688 This might be useful if you decide to switch from using a key container to a key
35689 directory.
35691 <UL>   
35692 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35693 </UL><P>
35695 <UL>   
35696 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35697 </UL><P>
35698 &lt;End of help on this topic&gt;
35699 </BODY>
35700 </HTML>
35701 ====== h_config_smime_transfer_cacert_to_con =====
35702 <HTML>
35703 <HEAD>
35704 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35705 </HEAD>
35706 <BODY>
35707 <H1>S/MIME: Transfer CA Certs to Container</H1>
35710 The Transfer command will copy the CA certificates in your configured
35711 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35712 to the container in your configured
35713 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35714 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35715 container.
35717 Warning: Any previous contents in the container will be lost.
35719 <UL>   
35720 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35721 </UL><P>
35723 <UL>   
35724 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35725 </UL><P>
35726 &lt;End of help on this topic&gt;
35727 </BODY>
35728 </HTML>
35729 ====== h_config_smime_transfer_cacert_to_dir =====
35730 <HTML>
35731 <HEAD>
35732 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35733 </HEAD>
35734 <BODY>
35735 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35738 The Transfer command will copy the CA certificates in your configured
35739 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35740 to the directory in your configured
35741 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35742 This might be useful if you decide to switch from using a CA cert container to a CA cert
35743 directory.
35745 <UL>   
35746 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35747 </UL><P>
35749 <UL>   
35750 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35751 </UL><P>
35752 &lt;End of help on this topic&gt;
35753 </BODY>
35754 </HTML>
35755 ====== h_config_smime_transfer_pubcon_to_key =====
35756 <HTML>
35757 <HEAD>
35758 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35759 </HEAD>
35760 <BODY>
35761 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35763 Mac OS X Alpine only.
35765 The Transfer command will copy the public certificates in your configured
35766 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35767 to your default Mac OS X Keychain.
35768 This might be useful if you decide to switch from using a cert container to using
35769 the Keychain to store your public certs, which you may do by using the
35770 feature
35771 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35773 <UL>   
35774 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35775 </UL><P>
35777 <UL>   
35778 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35779 </UL><P>
35780 &lt;End of help on this topic&gt;
35781 </BODY>
35782 </HTML>
35783 ====== h_config_smime_transfer_pubkey_to_con =====
35784 <HTML>
35785 <HEAD>
35786 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35787 </HEAD>
35788 <BODY>
35789 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35792 The Transfer command will copy the public certificates in your configured
35793 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35794 to your default Mac OS X Keychain.
35795 This might be useful if you decide to switch from using a cert container to using
35796 the Keychain to store your public certs.
35798 <UL>   
35799 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35800 </UL><P>
35802 <UL>   
35803 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35804 </UL><P>
35805 &lt;End of help on this topic&gt;
35806 </BODY>
35807 </HTML>
35808 ====== h_config_smime_public_certificates =====
35809 <HTML>
35810 <HEAD>
35811 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35812 </HEAD>
35813 <BODY>
35814 <H1>S/MIME: Manage Public Certificates</H1>
35817 This menu item allows you to manage your public certificates, this
35818 may include your own public certificate, but it normally includes
35819 certificates of people you correspond with. These certificates are
35820 saved by Alpine automatically when they are found in signed messages
35821 that you receive. This interface allows you to manage them, by
35822 giving you the option to delete them, or trust them (in the case
35823 of self-signed certificates).
35826 Please note that Alpine will not validate a message that was sent to you
35827 using a self-signed certificate, unless you decide to trust that certificate.
35828 Internally, a certificate is trusted by copying it to the
35829 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35830 collection. If you decide that you want to stop trusting a self-signed
35831 certificate, you must delete such certificate from such collection.
35833 The <B>I</B> Import command available in this screen allows you to 
35834 import a command to this collection.
35836 <UL>   
35837 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35838 </UL><P>
35840 <UL>   
35841 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35842 </UL><P>
35843 &lt;End of help on this topic&gt;
35844 </BODY>
35845 </HTML>
35846 ====== h_config_smime_private_keys =====
35847 <HTML>
35848 <HEAD>
35849 <TITLE>S/MIME: Manage Private Keys</TITLE>
35850 </HEAD>
35851 <BODY>
35852 <H1>S/MIME: Manage Private Keys</H1>
35855 This option allows you to manage your private key. Normally a person has only
35856 one key, in the same way that a person only has one valid passport, or ID card,
35857 at any given time. This option allows you to manage private keys. You can
35858 delete them or import them. Additionally, you can view information
35859 about your public certificate, such as the issuer and the dates of validity
35860 of such certificate, among others.
35863 If you have more than one e-mail address for which you want to use the 
35864 same private key, you must add all those addresses to the private key at 
35865 the moment that the key is generated. When you receive a signed message using 
35866 a key generated for several e-mail addresses, Alpine will save a 
35867 certificate for each e-mail address included in such certificate.
35869 The <B>I</B> Import command available in this screen allows you to 
35870 import a command to this collection.
35872 <UL>   
35873 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35874 </UL><P>
35876 <UL>   
35877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35878 </UL><P>
35879 &lt;End of help on this topic&gt;
35880 </BODY>
35881 </HTML>
35882 ====== h_config_smime_certificate_authorities =====
35883 <HTML>
35884 <HEAD>
35885 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35886 </HEAD>
35887 <BODY>
35888 <H1>S/MIME: Manage Certificate Authorities</H1>
35891 This collection contains certificates that are needed to validate the 
35892 certificate of another person, and therefore contains certificates that 
35893 you trust. Typically a certificate is signed by another entity, called a 
35894 certificate authority. This option allows you to manage which certificates 
35895 you trust, allowing you to import them and to delete them or view information
35896 about each certificate, such as the issuer and the dates of validity
35897 of such certificate.
35899 The <B>I</B> Import command available in this screen allows you to 
35900 import a command to this collection.
35902 <UL>   
35903 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35904 </UL><P>
35906 <UL>   
35907 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35908 </UL><P>
35909 &lt;End of help on this topic&gt;
35910 </BODY>
35911 </HTML>
35912 ====== h_config_smime_password_file_certificates =====
35913 <HTML>
35914 <HEAD>
35915 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
35916 </HEAD>
35917 <BODY>
35918 <H1>S/MIME: Manage Password File Certificates</H1>
35921 This option allows you to manage the certificates that are used to
35922 encrypt and decrypt your password file. This is useful in case you
35923 want to change the certificates used to encrypt your password file.
35925 Depending on the version of Alpine that you used for the first time
35926 to set this up, you might have had to enter a password to enter this
35927 screen. In the case that you did not enter a password to enter this
35928 screen, you should know two things that are important:
35929 <UL>
35930 <LI> If anyone takes control of your computer (for example, if you 
35931 left it unattended) then that person can add a password to your
35932 password file and make it unreadable to you in the future.
35933 <LI> If anyone can access your computer (this includes remote access)
35934 then that person can steal your password file and decrypt it without
35935 your help. This gives access to that person to the same services you
35936 have access and such person can use your name to access that service.
35937 In particular, that person can try to hack into your service provider
35938 with your name on it, or that person could try to send spam with
35939 your name.
35940 </UL>
35941 <P> Needless to say, this is not advisable. You should keep your
35942 password file protected. In order to do so, all you need to do is use
35943 the &quot;Create Key&quot; command to create a key. Once you do this,
35944 Alpine will use that key, encrypted with the password used to create that
35945 key, to protect your password file.
35947 In this screen you can import a new key to encrypt your password file, 
35948 and read cryptographic information on your current key.
35950 To import a new key press &quot;RETURN&quot; and enter the location of
35951 the new key. You will be asked to enter the password of the new key. If
35952 this part of the process is successful, Alpine will search for the 
35953 certificate that matches that key. If your key is named 
35954 &quot;your_email@address.com.key&quot;, then Alpine will look for your
35955 certificate in the same directory in the file named
35956 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
35957 as part of your key (that is, it will look to see if your certificate
35958 is in the file &quot;your_email@address.com.key&quot;), if all of this
35959 fails, Alpine will ask you to enter the location of the certificate
35960 that matches the key you unlocked. If a certificate is found, it will be 
35961 used, and in this case, the password file will be read, decrypted with the 
35962 old key and encrypted with the new key. Once this is done, the new key and 
35963 certificates are saved, and the old keys are permanently deleted.
35965 Alpine does not create a backup of your password file, or your old keys
35966 that will be replaced. If you need to keep old copies, you will have to do
35967 this operation outside Alpine.
35969 Observe that you can use this screen to remove the password for the key.
35970 As explained earlier, this is not advisable, but you can always restore the
35971 password to encrypt your password file by creating a new key.
35973 Be safe and keep your password file encrypted with a password.
35974 <UL>   
35975 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35976 </UL><P>
35978 <UL>   
35979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35980 </UL><P>
35981 &lt;End of help on this topic&gt;
35982 </BODY>
35983 </HTML>
35984 ====== h_certificate_information =====
35985 <HTML>
35986 <HEAD>
35987 <TITLE>S/MIME: Certificate Information Screen</TITLE>
35988 </HEAD>
35989 <BODY>
35990 <H1>S/MIME: Certificate Information Screen</H1>
35993 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
35994 such as its owner, e-mail address, issuer, and interval of validity, 
35995 among others.
35997 In the case of public certificates, this screen shows you if there was a
35998 failure when attempting to validate such message. If the certificate is
35999 self-signed, then the <B>T</B> Trust command will be available, which
36000 you can use to trust such certificate and make Alpine not fail validating 
36001 signatures signed with such certificate.
36003 You can also mark a certificate deleted, with the <B>D</B> command, or 
36004 remove the deleted mark with the <B>U</B> undelete command.
36006 In the case of your private key, Alpine shows you the information
36007 from your public key. Additionally, Alpine allows you to see public
36008 and private information about your key, with the <B>B</B> and
36009 <B>R</B> commands respectively.
36010 <UL>   
36011 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36012 </UL><P>
36014 <UL>   
36015 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36016 </UL><P>
36017 &lt;End of help on this topic&gt;
36018 </BODY>
36019 </HTML>
36020 ====== h_config_smime_manage_public_menu =====
36021 <HTML>
36022 <HEAD>
36023 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
36024 </HEAD>
36025 <BODY>
36026 <H1>S/MIME: Commands that Manage Public Certificates</H1>
36029 This screen allows you to manage your public certificates. 
36031 The format of this screen is as follows. There are five fields: The 
36032 leftmost field is normally empty, but it could contain the letter 
36033 &quot;D&quot; to indicate that that certificate has been marked for 
36034 deletion. The next field is the e-mail address of the owner of the 
36035 certificate, shown in its entirety. The third and fourth field are the 
36036 first and last day validity for that certificate, respectively. The date
36037 is displayed in the user's locale unless the option 
36038 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
36039 is set. In this case, the month, day and year are represented by two
36040 digits, and the format used is mm/dd/yy. Finally, the fifth 
36041 field is what can be displayed of the MD5 hash of the certificate. You can 
36042 use any of the last three fields to distinguish between two certificates 
36043 for the same owner.
36045 Available commands in this screen and a short description of what they 
36046 do follows.
36047 <UL>
36048 <LI> <B>I</B> Imports a public certificate to this collection.
36049 <LI> <B>V</B> View information about a certificate such as the name of the person the
36050 certificate was issued to, its dates of validity, and validity status.
36051 <LI> <B>D</B> Marks a certificate deleted.
36052 <LI> <B>U</B> Removes the deletion mark on a certificate.
36053 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36054 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
36055 trust a certificate by copying it to the collection of trusted certificates.
36056 </UL>
36058 All commands provide feedback to let you know about their success or failure.
36060 <UL>   
36061 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36062 </UL><P>
36064 <UL>   
36065 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36066 </UL><P>
36067 &lt;End of help on this topic&gt;
36068 </BODY>
36069 </HTML>
36070 ====== h_config_smime_manage_private_menu =====
36071 <HTML>
36072 <HEAD>
36073 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
36074 </HEAD>
36075 <BODY>
36076 <H1>S/MIME: Commands that Manage Private Keys</H1>
36079 This screen allows you to manage your private key.
36081 The format of this screen is as follows. There are five fields: The 
36082 leftmost field is normally empty, but it could contain the letter 
36083 &quot;D&quot; to indicate that that certificate has been marked for 
36084 deletion. The next field is the e-mail address of the owner of the 
36085 certificate, shown in its entirety. The third field is the first day of 
36086 validity for that certificate; the fourth field in the last day that that 
36087 certificate is valid, and the fifth field is what can be displayed of the 
36088 MD5 hash of the public certificate corresponding to this private key. You 
36089 can use any of the last three fields to distinguish between two 
36090 certificates for the same owner.
36092 Available commands and a short description of what they do follows.
36093 <UL>
36094 <LI> <B>I</B> Imports a new public key to this collection.
36095 <LI> <B>V</B> View information about the public certificate corresponding to this
36096 key.
36097 <LI> <B>D</B> Marks a key to be deleted.
36098 <LI> <B>U</B> Removes the deletion mark on a key.
36099 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
36100 Note that expunging a private key does not remove the public key, which must
36101 be removed separately.
36102 </UL>
36104 All commands provide feedback to let you know about their success or failure.
36106 <UL>   
36107 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36108 </UL><P>
36110 <UL>   
36111 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36112 </UL><P>
36113 &lt;End of help on this topic&gt;
36114 </BODY>
36115 </HTML>
36116 ====== h_config_smime_manage_cacerts_menu =====
36117 <HTML>
36118 <HEAD>
36119 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
36120 </HEAD>
36121 <BODY>
36122 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
36125 This screen allows you to manage your collection of certificates that you
36126 trust. 
36128 The format of this screen is as follows. There are five fields: The 
36129 leftmost field is normally empty, but it could contain the letter 
36130 &quot;D&quot; to indicate that that certificate has been marked for 
36131 deletion. The next field is the e-mail address of the owner of the 
36132 certificate, shown in its entirety. The third field is the first day of 
36133 validity for that certificate; the fourth field in the last day that that 
36134 certificate is valid, and the fifth field is what can be displayed of the 
36135 MD5 hash of the certificate. You can use any of the last three fields to 
36136 distinguish between two certificates for the same owner.
36138 Available commands and a short description of what they do follows.
36139 <UL>
36140 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
36141 done by reading the certificate and validating it. Once a certificate
36142 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
36143 to the certificate, if necessary.
36144 <LI> <B>V</B> View information about this certificate, such as its issuer 
36145 and validity dates.
36146 <LI> <B>D</B> Marks a certificate to be deleted.
36147 <LI> <B>U</B> Removes the deletion mark on a certificate.
36148 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36149 </UL>
36151 All commands provide feedback to let you know about their success or failure.
36153 <UL>
36154 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36155 </UL><P>
36157 <UL>   
36158 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36159 </UL><P>
36160 &lt;End of help on this topic&gt;
36161 </BODY>
36162 </HTML>
36163 ====== h_config_lame_list_mode =====
36164 <HTML>
36165 <HEAD>
36166 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
36167 </HEAD>
36168 <BODY>
36169 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
36171 This feature modifies the method Alpine uses to ask your IMAP
36172 server for folder names to display in the FOLDER LIST screen.
36173 It is intended to compensate for a small set of IMAP servers that
36174 are programmed to ignore a part of the request, and thus respond
36175 to Alpine's query with nonsensical results.
36178 If you find that Alpine is erroneously displaying blank folder lists,
36179 try enabling this feature.
36182 NOTE: Enabling this feature has consequences for the Goto and Save
36183 commands.  Many servers allow access to folders outside the area
36184 reserved for your personal folders via some reserved character,
36185 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
36186 allows, at the Goto and Save prompts, quick access to folders
36187 outside your personal folder collection without requiring a specific
36188 collection definition.  This behavior will generally not be available
36189 when this feature is enabled.
36192 <UL>   
36193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36194 </UL><P>
36195 &lt;End of help on this topic&gt;
36196 </BODY>
36197 </HTML>
36198 ====== h_config_enable_mulnewsrcs =====
36199 <HTML>
36200 <HEAD>
36201 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
36202 </HEAD>
36203 <BODY>
36204 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
36206 This feature makes it so Alpine can use multiple newsrcs based on
36207 the news server being connected to, which allows for separate lists
36208 of subscribed-to newsgroups. When this feature is not set, there is only
36209 one list of newsgroups.
36211 Under this feature, the name of a newsrc is based on the news server.
36212 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
36213 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
36214 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
36215 Setting this feature for the first time will allow for the option of using
36216 your old newsrc the next time you read news.
36218 If this feature is set, then the feature
36219 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
36220 also may affect the name of the newsrc file that is used.
36222 <UL>   
36223 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36224 </UL><P>
36225 &lt;End of help on this topic&gt;
36226 </BODY>
36227 </HTML>
36228 ======= h_ab_export_vcard =======
36229 <HTML>
36230 <HEAD>
36231 <TITLE>Address Book Export Format</TITLE>
36232 </HEAD>
36233 <BODY>
36234 <H1>Address Book Export Format</H1>
36236 You are exporting address book data from Alpine to a file outside of Alpine.
36237 You are being asked to choose the format of the export.
36238 Here are the choices:
36240 <DL>
36241 <DT><EM>A</EM>ddress List</DT>
36242 <DD>
36243 The addresses from the address book entries you are saving
36244 from will be saved one address per line.
36245 Address book lists (those with more than one address) will have
36246 all of their addresses saved separately.
36247 </DD>
36249 <DT><EM>V</EM>Card</DT>
36250 <DD>
36251 The entries will be saved in
36252 <A HREF="h_whatis_vcard">vCard</A> format.
36253 </DD>
36255 <DT><EM>T</EM>ab Separated</DT>
36256 <DD>
36257 The entries will be saved in tab-separated columns.
36258 There will be just 4 columns of data that correspond to Alpine's
36259 Nickname field, Full Name field, Address field, and Comment field.
36260 It might prove useful to Select only the Simple, non-List address book
36261 entries before Saving.
36262 </DD>
36264 <DT><EM>^C</EM> Cancel</DT>
36265 <DD>
36266 Cancel out of the Save.
36267 </DD>
36269 </DL>
36273 &lt;End of help on this topic&gt;
36274 </BODY>
36275 </HTML>
36276 ====== h_config_predict_nntp_server =====
36277 <HTML>
36278 <HEAD>
36279 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
36280 </HEAD>
36281 <BODY>
36282 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
36284 This feature allows Alpine to assume that the open NNTP server at the
36285 time of composition is the NNTP server to which the message should be
36286 posted.  This is especially recommended when there are multiple News
36287 collections.  If this feature is not set, Alpine will try to post to the first server in
36288 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
36289 this feature also negates the need to add News collection servers to
36290 the <!--#echo var="VAR_nntp-server"--> variable.
36292 This feature can be especially handy when used in conjunction with
36293 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
36295 <UL>   
36296 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36297 </UL><P>
36298 &lt;End of help on this topic&gt;
36299 </BODY>
36300 </HTML>
36301 ====== h_config_nntp_search_uses_overview =====
36302 <HTML>
36303 <HEAD>
36304 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
36305 </HEAD>
36306 <BODY>
36307 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
36309 This feature should probably be turned on unless it causes trouble.
36310 The results of the NNTP overview command (XOVER) may be used to help
36311 with some searches in news groups.
36312 It should result in quicker response time.
36313 Turning this feature on apparently causes search results which are
36314 different from what you would get with the feature turned off on some
36315 servers.
36317 <UL>   
36318 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36319 </UL><P>
36320 &lt;End of help on this topic&gt;
36321 </BODY>
36322 </HTML>
36323 ====== h_config_thread_sorts_by_arrival =====
36324 <HTML>
36325 <HEAD>
36326 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
36327 </HEAD>
36328 <BODY>
36329 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
36331 This feature affects how a threading sort arranges threads.  The default way
36332 to arrange threads is by the date of the earliest message in the thread.
36333 This feature arranges threads by the last message to arrive in a thread.
36335 This feature causes old threads that get recent messages to sort to the bottom,
36336 where previously a message arrival to a thread would not rearrange the order of
36337 that thread.
36339 <UL>   
36340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36341 </UL><P>
36342 &lt;End of help on this topic&gt;
36343 </BODY>
36344 </HTML>
36345 ====== h_config_textplain_int =====
36346 <HTML>
36347 <HEAD>
36348 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
36349 </HEAD>
36350 <BODY>
36351 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
36353 This feature modifies the method Alpine uses to display Text/Plain
36354 MIME attachments from the Attachment Index screen.  Normally, the
36355 &quot;View&quot; command searches for any externally defined (usually
36356 via the
36357 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
36358 and displays the selected text within that viewer.
36361 Enabling this feature causes Alpine to ignore any external viewer
36362 settings and always display text with Alpine's internal viewer.
36365 <UL>   
36366 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36367 </UL><P>
36368 &lt;End of help on this topic&gt;
36369 </BODY>
36370 </HTML>
36371 ====== h_config_wp_columns =====
36372 <HTML>
36373 <HEAD>
36374 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
36375 </HEAD>
36376 <BODY>
36377 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
36379 Web Alpine only.
36381 This configuration setting specifies the number of horizontal characters
36382 used to format various WebAlpine pages.  Smaller values will tend to reduce
36383 the amount of horizontal scrolling required to view pages within narrow
36384 browsers, such as those found on PDAs, and larger values will tend to 
36385 spread more information across the page.
36388 The Message List page uses the width to determine how many characters
36389 to assign each field.  Note, a smaller value may result in a disproportionate
36390 amount of blank space between fields on each line.  Similarly, a large
36391 value may result in cramped fields or horizontal scrolling.
36394 The Message View page uses this value to determine when to wrap lines
36395 in displayed message text.  Note, a smaller value may result in jagged
36396 right margins or confusing quoting.  A larger value may cause lines of text to
36397 run beyond the browser's right edge, requiring horizontal scrolling.
36400 <UL>   
36401 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36402 </UL><P>
36403 &lt;End of help on this topic&gt;
36404 </BODY>
36405 </HTML>
36406 ====== h_config_wp_state =====
36407 <HTML>
36408 <HEAD>
36409 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
36410 </HEAD>
36411 <BODY>
36412 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
36414 Web Alpine only.
36416 Various aspects of cross-session state.
36419 <UL>   
36420 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36421 </UL><P>
36422 &lt;End of help on this topic&gt;
36423 </BODY>
36424 </HTML>
36425 ====== h_config_wp_aggstate =====
36426 <HTML>
36427 <HEAD>
36428 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
36429 </HEAD>
36430 <BODY>
36431 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
36433 Web Alpine only.
36435 Aggregate operations tab state.
36438 <UL>   
36439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36440 </UL><P>
36441 &lt;End of help on this topic&gt;
36442 </BODY>
36443 </HTML>
36444 ====== h_config_wp_indexlines =====
36445 <HTML>
36446 <HEAD>
36447 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36448 </HEAD>
36449 <BODY>
36450 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36452 Web Alpine only.
36454 Number of index lines in table.
36457 <UL>   
36458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36459 </UL><P>
36460 &lt;End of help on this topic&gt;
36461 </BODY>
36462 </HTML>
36463 ====== h_config_wp_indexheight =====
36464 <HTML>
36465 <HEAD>
36466 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36467 </HEAD>
36468 <BODY>
36469 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36471 Web Alpine only.
36473 Index table row height.
36476 <UL>   
36477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36478 </UL><P>
36479 &lt;End of help on this topic&gt;
36480 </BODY>
36481 </HTML>
36482 ====== h_config_rss_news =====
36483 <HTML>
36484 <HEAD>
36485 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36486 </HEAD>
36487 <BODY>
36488 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36490 Web Alpine only.
36492 RSS News feed.
36495 <UL>   
36496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36497 </UL><P>
36498 &lt;End of help on this topic&gt;
36499 </BODY>
36500 </HTML>
36501 ====== h_config_rss_weather =====
36502 <HTML>
36503 <HEAD>
36504 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36505 </HEAD>
36506 <BODY>
36507 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36509 Web Alpine only.
36511 RSS Weather feed.
36514 <UL>   
36515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36516 </UL><P>
36517 &lt;End of help on this topic&gt;
36518 </BODY>
36519 </HTML>
36520 ====== h_config_send_confirms_only_expanded =====
36521 <HTML>
36522 <HEAD>
36523 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36524 </HEAD>
36525 <BODY>
36526 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36528 This Web Alpine option specifies whether or not a Send confirmations
36529 happens when a composed message is readied for sending or not.  The
36530 default behavior is to not confirm that the nicknames were expanded to
36531 the intended addresses.
36534 <UL>   
36535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36536 </UL><P>
36537 &lt;End of help on this topic&gt;
36538 </BODY>
36539 </HTML>
36540 ====== h_config_enable_jump_command =====
36541 <HTML>
36542 <HEAD>
36543 <TITLE>FEATURE: enable-jump-command</TITLE>
36544 </HEAD>
36545 <BODY>
36546 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36548 This Web Alpine option specifies whether or not a Jump command is
36549 offered in the Message List and Message View pages.  The command is
36550 implemented as an input field in the left column of the List and View
36551 screens. 
36554 When enabled and a number is entered in the input field while the
36555 Message List is displayed, the Message List is reframed with the
36556 specified message.  While viewing a message, the message associated
36557 with the specified message number is displayed.
36560 <UL>   
36561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36562 </UL><P>
36563 &lt;End of help on this topic&gt;
36564 </BODY>
36565 </HTML>
36566 ====== h_config_enable_newmail_sound =====
36567 <HTML>
36568 <HEAD>
36569 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36570 </HEAD>
36571 <BODY>
36572 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36574 This Web Alpine option specifies whether or not a sound file is sent
36575 to the web browser along with the newmail notification message.
36579 <UL>   
36580 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36581 </UL><P>
36582 &lt;End of help on this topic&gt;
36583 </BODY>
36584 </HTML>
36585 ====== h_config_render_html_internally =====
36586 <HTML>
36587 <HEAD>
36588 <TITLE>FEATURE: render-html-internally</TITLE>
36589 </HEAD>
36590 <BODY>
36591 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36593 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36594 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36595 the HTML text into plain text in the same way Unix and PC-Alpine do.
36599 <UL>   
36600 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36601 </UL><P>
36602 &lt;End of help on this topic&gt;
36603 </BODY>
36604 </HTML>
36605 ====== h_config_role_undo =====
36606 Yes, remember changes and exit back to list of roles; No, discard changes
36607 made in this screen; ^C, cancel exit and stay in this config screen.
36608 ====== h_exit_editor =====
36609 S, save changes and exit from the editor; D, do not save changes but
36610 do exit from the editor; or ^C, cancel exit and stay in the editor.
36611 ====== h_config_undo =====
36612 Yes, save changes and exit; No, exit without saving any changes made since
36613 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36614 ====== h_os_index_whereis =====
36615 Enter ^V or ^Y to go immediately to the last or first message in the index.
36616 Or, enter the match string followed by RETURN.
36617 ====== h_os_index_whereis_agg =====
36618 Enter ^V or ^Y to go immediately to the last or first message in the index,
36619 Or, enter the match string followed by RETURN (or ^X to select all matches).
36620 =========== h_oe_add_full ==================
36621 Type the full name of the person being added and press the RETURN key.
36622 Press ^C to cancel addition.
36623 =========== h_oe_add_nick ==================
36624 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36625 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36626 ========== h_oe_add_addr ================
36627 Type the e-mail address and press RETURN.
36628 Press ^C to cancel addition.
36629 ========== h_oe_crlst_full ==============
36630 Type a long name or description for the list that you are creating and
36631 press RETURN.  Press ^C to cancel creation of list.
36632 =========== h_oe_crlst_nick =============
36633 Type a nickname (short, easy-to-remember name or single word) for the list
36634 you are creating and press RETURN.  Press ^C to cancel.
36635 ========== h_oe_crlst_addr ==============
36636 Type an e-mail address, or a nickname already in the address book that you
36637 want to be part of this list and press RETURN.
36638 ========== h_oe_adlst_addr =============
36639 Type an e-mail address or a nickname already in the address book that you
36640 want to add to this list and press RETURN.
36641 ========== h_oe_editab_nick ============
36642 Change the nickname using the arrow keys and delete key.  Press RETURN
36643 when done.  Press ^C to cancel editing and leave the nickname as it was.
36644 ========== h_oe_editab_full ============
36645 Change the full name using the arrow keys and delete key.  Press RETURN
36646 when done.  Press ^C to cancel editing and leave the full name as it was.
36647 ========== h_oe_editab_addr ============
36648 Change the address using the arrow keys and delete key.  Press RETURN
36649 when done.  Press ^C to cancel editing and leave the address as it was.
36650 ========== h_oe_editab_fcc ============
36651 Change the fcc using the arrow keys and delete key.  Press RETURN when
36652 done.  Press ^C to cancel editing and leave the fcc as it was.
36653 ========== h_oe_editab_comment ============
36654 Change the comment field using the arrow keys and delete key.  Press RETURN
36655 when done.  Press ^C to cancel editing and leave the comment as it was.
36656 ====== h_ab_forward =====
36657 Yes, expand nicknames and qualify local names with your current domain name;
36658 No, leave nicknames and local names as is;  ^C, cancel.
36659 ========== h_ab_export ==========
36660 Type the name of a file to write the addresses into and
36661 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36662 ========== h_ab_edit_a_field ==========
36663 Edit any of the fields of the currently selected entry by typing one of the
36664 letters at the bottom of the screen.  Press ^C to cancel edit.
36665 ====== h_ab_del_data_revert =====
36666 Press B to completely delete addrbook and revert to default, C to delete config
36667 and revert while leaving data, or D to only delete data (make it empty).
36668 ====== h_ab_del_data_modify =====
36669 Press B to completely delete addrbook, C to delete configuration while leaving
36670 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36671 ====== h_ab_del_config_modify =====
36672 Yes, remove this address book from my configuration.
36673 No, make no changes now.
36674 ====== h_ab_del_config_revert =====
36675 Yes, remove this address book from my config and revert to default.
36676 No, make no changes now.
36677 ====== h_ab_del_default =====
36678 Yes, remove this default address book from my configuration.
36679 No, make no changes now.
36680 ====== h_ab_really_delete =====
36681 Yes, delete the actual contents of the address book, not just the 
36682 configuration.  No, don't delete the data after all, cancel and start over.
36683 ====== h_ab_del_ignore =====
36684 Press I to ignore all the default address books for this category.  Press R to
36685 remove this one address book and add the others to your personal list.
36686 ====== h_ab_del_dir_ignore =====
36687 Press I to ignore all the default directory servers for this category.
36688 Press R to remove this one server and add the others to your personal list.
36689 ====== h_ab_copy_dups =====
36690 Yes, overwrite the existing entry.
36691 No, skip duplicates but save the rest. Press ^C to cancel.
36692 ====== h_confirm_cancel =====
36693 Type C to Confirm that you want to abandon the message you are composing.
36694 Type N or ^C to cancel out of the cancel and keep composing.
36695 ====== h_ab_text_or_vcard =====
36696 Text, start composer with displayed text already included.
36697 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36698 ====== h_ab_backup_or_ldap =====
36699 Backup, copy email address from entry and allow editing of it.
36700 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36701 ====== h_ldap_text_or_vcard =====
36702 Text: export displayed text for selected entry. Address: export only the
36703 email address. VCard: export entry in vCard format. ^C cancels.
36704 ====== h_ab_save_exp =====
36705 Save, save entry or entries to an address book.
36706 Export, save to file outside of pine. ^C cancels save.
36707 ====== h_ab_add =====
36708 A, add a brand new entry to this address book.
36709 E, edit the entry that is currently highlighted. ^C to cancel.
36710 ====== h_ab_shuf =====
36711 U, swap order of highlighted address book and the one above it.
36712 D, swap order of highlighted address book and the one below it. ^C to cancel.
36713 ====== h_ab_shuf_up =====
36714 U, swap order of highlighted address book and the one above it.
36715 Press ^C to cancel.
36716 ====== h_ab_shuf_down =====
36717 D, swap order of highlighted address book and the one below it.
36718 Press ^C to cancel.
36719 ====== h_folder_prop =====
36720 Count is # of messages in the folder, Unseen means messages that have not
36721 been read, New means messages that were Recently added to the folder.
36722 ====== h_role_shuf =====
36723 U, swap order of highlighted rule and the one above it.
36724 D, swap order of highlighted rule and the one below it. ^C to cancel.
36725 ====== h_role_shuf_up =====
36726 U, swap order of highlighted rule and the one above it.
36727 Press ^C to cancel.
36728 ====== h_role_shuf_down =====
36729 D, swap order of highlighted rule and the one below it.
36730 Press ^C to cancel.
36731 ====== h_incoming_shuf =====
36732 B, swap order of highlighted directory and the one before it.
36733 F, swap order of highlighted directory and the one after it. ^C to cancel.
36734 ====== h_incoming_shuf_up =====
36735 B, swap order of highlighted directory and the one before it.
36736 Press ^C to cancel.
36737 ====== h_incoming_shuf_down =====
36738 F, swap order of highlighted directory and the one after it.
36739 Press ^C to cancel.
36740 ====== h_dir_shuf =====
36741 U, swap order of highlighted directory and the one above it.
36742 D, swap order of highlighted directory and the one below it. ^C to cancel.
36743 ====== h_dir_shuf_up =====
36744 U, swap order of highlighted directory and the one above it.
36745 Press ^C to cancel.
36746 ====== h_dir_shuf_down =====
36747 D, swap order of highlighted directory and the one below it.
36748 Press ^C to cancel.
36749 ====== h_hdrcolor_shuf =====
36750 U, swap order of highlighted Header Color and the one above it.
36751 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36752 ====== h_hdrcolor_shuf_up =====
36753 U, swap order of highlighted Header Color and the one above it.
36754 Press ^C to cancel.
36755 ====== h_hdrcolor_shuf_down =====
36756 D, swap order of highlighted Header Color and the one below it.
36757 Press ^C to cancel.
36758 ========== h_oe_editab_al ============
36759 Change the address using the arrow keys and delete key.  Press RETURN
36760 when done.  Press ^C to cancel editing and leave the address as it was.
36761 ========== h_dir_comp_search ===============
36762 Type a string to look for just like you would in the composer. Your configured
36763 rules for the servers with the implicit flag set will be used.
36764 ========== h_oe_searchab ===============
36765 Type the word or name you want to search for and press RETURN.  If you press
36766 RETURN without entering anything the word in [] will be searched for.
36767 ========== h_oe_chooseabook ==========
36768 Choose the address book you want to save the new entry in.
36769 Use ^N or ^P to change address books.  ^C to cancel.
36770 ========== h_oe_takeaddr ==========
36771 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36772 when done.  Press ^C to cancel adding this entry to the address book.
36773 ========== h_oe_take_replace ==========
36774 Press R to replace the old entry with this new data.  You will still have
36775 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36776 ========== h_oe_take_replace_or_add ==========
36777 Press R to replace the old entry.  Press A to add the selected addresses to
36778 the old existing list.  N to enter another nickname. ^C to cancel now.
36779 ========== h_oe_takename ==========
36780 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36781 when done.  Press ^C to cancel adding this entry to the address book.
36782 ========== h_oe_takenick ==========
36783 Type a nickname (short easy-to-remember name, initials or single word) for this
36784 entry in the address book and press RETURN.  Press ^C to cancel addition.
36785 ========== h_oe_jump ==========
36786 Type the message number you want to jump to and press RETURN.  The word "end"
36787 represents the last message. Press ^C to cancel jumping to another message.
36788 ========== h_oe_jump_thd ==========
36789 Type the thread number you want to jump to and press RETURN.  The word "end"
36790 represents the last thread. Press ^C to cancel jumping to another thread.
36791 ========== h_oe_debuglevel ==========
36792 Higher number shows more debugging details.
36793 Press ^C if you want to cancel the change.
36794 ========== h_oe_broach ==========
36795 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36796 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36797 ========== h_oe_foldsearch ==========
36798 Type the text you want to search for in foldernames and press RETURN.  If you
36799 press RETURN without entering anything, any text in [] will be searched for.
36800 ========== h_oe_foldrename ==========
36801 Change the old name of the folder to the new name using the arrow and
36802 delete keys and press RETURN.  Press ^C to cancel rename.
36803 ========== h_oe_login ==========
36804 Enter your login name for the host you are opening the mailbox on.  Just press
36805 RETURN to use your login from this host as is, or edit it with delete key.
36806 ========== h_oe_passwd ==========
36807 Type your password for the host and login shown as part of the prompt.
36808 Press ^C to cancel opening folder.
36809 ========== h_oe_choosep ==========
36810 Enter the number associated with the printer you want to select.  Press ^C to
36811 cancel the printer selection.  The current selection is highlighted.
36812 ========== h_oe_customp ==========
36813 Type the name of the Unix print command and press RETURN.  Press ^C to
36814 cancel the printer selection.
36815 ========== h_oe_searchview ==========
36816 Type the word or name you want to search for and press RETURN.  If you press
36817 RETURN without entering anything the word in [] will be searched for.
36818 ========== h_oe_keylock ==========
36819 The keyboard is in use and locked by another user.  Only that user can
36820 unlock this keyboard by typing the password.
36821 ========== h_wt_expire ==========
36822 At the beginning of each month Alpine offers to rename your current sent-mail
36823 folder to one named for the month so you have a sent-mail folder for each month
36824 ========== h_wt_delete_old ==========
36825 It is the beginning of the month, and we need to conserve disk
36826 space.  Please delete any sent-mail that you do not need.
36827 ========== h_select_sort ==========
36828 Select the order for sorting the index by typing the capitalized letter.
36829 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36830 ========== h_no_F_arg ============
36831 Enter name of file to be opened.
36833 ========== h_sticky_personal_name ==========
36834 Type in your name as you want it to appear on outgoing email.  This entry
36835 will be saved into your Alpine configuration file.
36836 ========== h_sticky_inbox ============
36837 INBOX syntax is usually {complete.machine.name}INBOX
36838 This entry will be saved in your Alpine configuration file.
36839 ========== h_sticky_smtp ============
36840 The name of the computer on your campus that relays your outgoing email
36841 to the Internet.  This entry will be saved in your Alpine configuration file.
36842 ========== h_sticky_user_id ==========
36843 The username or login-id part of your email address.  This entry will be
36844 saved in your Alpine configuration file.
36845 ========== h_sticky_domain ==========
36846 The domain part of your email address, NOT the name of your PC.  This
36847 entry will be saved in your Alpine configuration file.
36848 ========== h_bounce =========
36849 Enter the address or nickname of the intended recipient.  Alpine will resend
36850 the message, which will retain the original author's From: address.
36851 ========== h_incoming_add_folder_nickname =========
36852 Enter an (optional) nickname that will be used in lieu of the actual
36853 host and folder names in the FOLDER LIST display.
36854 ========== h_anon_forward ==========
36855 Enter the address of your intended recipient, or ^C to cancel.
36856 Example: jsmith@somewhere.edu
36857 ========== h_news_subscribe ==========
36858 Enter the name of the newsgroup to which you wish to subscribe,
36859 or ^C to cancel.  Example: comp.mail.pine
36860 ========== h_pipe_msg ==========
36861 Enter the name of the Unix command to which you wish to send this
36862 message, or ^C to cancel.
36863 ========== h_pipe_attach ==========
36864 Enter the name of the Unix command to which you wish to send this
36865 attachment, or ^C to cancel.
36866 ========== h_select_by_num ==========
36867 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36868 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36869 ========== h_select_by_gm_content ==========
36870 Enter your search key in the same way that you would enter a search
36871 key in the web interface for Gmail.
36872 ========== h_select_by_thrdnum ==========
36873 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36874 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36875 ========== h_select_txt_from ==========
36876 Messages with From: headers containing the entered string will be selected.
36877 ^C to cancel. ^G again to see original options.
36878 ========== h_select_txt_not_from ==========
36879 Messages without From: headers containing the entered string will be selected.
36880 ^C to cancel. ^G again to see original options.
36881 ========== h_select_txt_to ==========
36882 Messages with To: headers containing the entered string will be selected.
36883 ^C to cancel. ^G again to see original options.
36884 ========== h_select_txt_not_to ==========
36885 Messages without To: headers containing the entered string will be selected.
36886 ^C to cancel. ^G again to see original options.
36887 ========== h_select_txt_cc ==========
36888 Messages with Cc: headers containing the entered string will be selected.
36889 ^C to cancel. ^G again to see original options.
36890 ========== h_select_txt_not_cc ==========
36891 Messages without Cc: headers containing the entered string will be selected.
36892 ^C to cancel. ^G again to see original options.
36893 ========== h_select_txt_subj ==========
36894 Messages with Subject: headers containing the entered string will be selected.
36895 ^C to cancel.  ^X enters Subject: line of current message.
36896 ========== h_select_txt_not_subj ==========
36897 Messages without Subject headers containing the entered string will be selected.
36898 ^C to cancel.  ^X enters Subject: line of current message.
36899 ========== h_select_txt_all ==========
36900 All messages containing the entered string will be selected.  Headers and body,
36901 but not encoded attachments, will be compared.  Enter ^C to cancel.
36902 ========== h_select_txt_not_all ==========
36903 All messages that don't contain the entered string will be selected.  Headers
36904 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
36905 ========== h_select_txt_body ==========
36906 All messages containing the entered string will be selected. Body text, but
36907 not headers or encoded attachments, will be compared. ^C to cancel.
36908 ========== h_select_txt_not_body ==========
36909 All messages that don't contain the entered string will be selected. Body
36910 text, but not headers or encoded attachments, will be compared. ^C to cancel.
36911 ========== h_select_txt_recip ==========
36912 Messages with Cc: or To: headers containing the entered string will be selected.
36913 ^C to cancel. ^G again to see original options.
36914 ========== h_select_txt_not_recip ==========
36915 Messages without Cc: or To: headers containing the string will be selected.
36916 ^C to cancel. ^G again to see original options.
36917 ========== h_select_txt_partic ==========
36918 Messages with Cc, To, or From headers containing the string will be selected.
36919 ^C to cancel. ^G again to see original options.
36920 ========== h_select_txt_not_partic ==========
36921 Messages without Cc, To, or From headers containing the string will be selected.
36922 ^C to cancel. ^G again to see original options.
36923 ========== h_select_date ==========
36924 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
36925 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
36926 ========== h_attach_index_whereis ==========
36927 Enter some text that appears in the Attachment Index entry for the desired
36928 attachment.  The first attachment containing that text will be highlighted.
36929 ========== h_kb_lock ==========
36930 Keystrokes entered here (up to a RETURN) comprise a password that must
36931 be entered again later in order to unlock the keyboard.
36932 ========== h_compose_default ==========
36933 N, compose a new message. R, set a role.
36934 ^C to cancel.
36935 ========== h_untranslatable ==========
36936 Send using UTF-8 character set; Send but replace untranslatable characters
36937 with question marks; return to the composer; or cancel message altogether.
36938 ========== h_compose_intrptd ==========
36939 N, compose a new msg. I, continue interrupted msg. R, set a role.
36940 ^C to cancel.
36941 ========== h_compose_postponed ==========
36942 N, compose a new message. P, continue postponed msg. R, set a role.
36943 ^C to cancel.
36944 ========== h_compose_intrptd_postponed ==========
36945 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36946 R, set a role. ^C to cancel.
36947 ========== h_compose_form ==========
36948 N, compose a new message. F, use form letter. R, set a role.
36949 ^C to cancel.
36950 ========== h_compose_intrptd_form ==========
36951 N, compose a new msg. I, continue interrupted msg. F, use form letter.
36952 R, set a role. ^C to cancel.
36953 ========== h_compose_postponed_form ==========
36954 N, compose a new message. P, continue postponed msg. F, use form letter.
36955 R, set a role. ^C to cancel.
36956 ========== h_compose_intrptd_postponed_form ==========
36957 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36958 F, use form letter. R, set a role. ^C to cancel.
36959 ========== h_config_context_del_except ==========
36960 If you delete the last exceptional collection you can only add it back by
36961 manually editing the exceptions config file.
36962 ========== h_config_whereis ==========
36963 To move quickly to a particular line, enter a search string or
36964 ^C to cancel.
36965 ========== h_config_edit_scorei ==========
36966 Enter interval in the form (min,max). -INF and INF may be used to represent
36967 -infinity and infinity. ^C to cancel change. RETURN to accept change.
36968 ========== h_config_add ==========
36969 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
36970 pressing RETURN sets the Empty Value (this turns off any global default).
36971 ========== h_config_add_custom_color ==========
36972 Enter a header fieldname. For example, "subject" or "from".
36974 ========== h_config_add_pat_hdr ==========
36975 Enter a header fieldname. For example, "reply-to" or "organization" or
36976 any fieldname you want that isn't included already.
36977 ========== h_config_print_opt_choice ==========
36978 You may edit either the initialization string (characters printed before
36979 printing starts) or the trailer string.  Choose one or ^C to cancel.
36980 ========== h_config_print_init ==========
36981 Enter a C-style string for this.  You may use common backslash escapes like
36982 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
36983 ========== h_config_change ==========
36984 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
36985 delete current (highlighted) character, etc.  Enter ^C to cancel change.
36986 ========== h_config_replace_add ==========
36987 Replace ignores the current default, Add places the current default in your
36988 editing buffer as if you had typed it in.
36989 ========== h_config_insert_after ==========
36990 Enter a nickname for this print command.  (InsertBefore puts the new item
36991 before the current line, InsertAfter puts it after the current line.)
36992 ========== h_config_print_cmd ==========
36993 Enter command to be executed for the printer.  Use normal editing keys
36994 to modify, ^C to cancel, carriage return to accept current value.
36995 ========== h_config_role_del ==========
36996 Answering Yes will remove this rule completely from your rules list.
36997 ========== h_config_role_addfile ==========
36998 Type the name of a file to add to your configuration. You don't need to
36999 use a file, you may add rules directly (with Add) without using a file.
37000 ========== h_config_role_delfile ==========
37001 Answering Yes will remove this rule file completely from your rules list.
37002 The rules data file itself will not be removed.
37003 ========== h_config_print_del ==========
37004 Answering Yes will remove this printer completely from your printer list.
37005 ========== h_config_print_name_cmd ==========
37006 You may edit the Nickname of this printer, the Command to be executed when
37007 printing, or change the Options associated with this printer.
37008 ========== h_send_check_fcc ==========
37009 Yes, send message without an Fcc.
37010 No, return to composer.
37011 ========== h_send_check_subj ==========
37012 Yes, send message without a Subject.
37013 No, return to composer.
37014 ========== h_send_check_to_cc ==========
37015 Yes, send message without a To address, or a Cc address, or a Newsgroup.
37016 No, return to composer.
37017 ========== h_send_fcc_only ==========
37018 Yes, copy message to Fcc only and send to NO recipients.
37019 No, return to composer.
37020 ========== h_send_prompt ==========
37021 Yes, send the message.
37022 No or ^C, return to composer.
37023 ========== h_send_prompt_flowed ==========
37024 Yes, send the message.  No or ^C, return to composer.
37025 What's Flowed? See Do Not Send Flowed Text in config screen.
37026 ========== h_send_prompt_dsn ==========
37027 Yes, send the message.  No or ^C, return to composer.
37028 What's DSNOpts? See Enable Delivery Status Notification in config screen.
37029 ========== h_send_prompt_dsn_flowed ==========
37030 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
37031 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
37032 ========== h_role_confirm ==========
37033 Yes, use displayed role. No, compose without a role.
37034 ^C, cancel the message. ^T, select a role from your other eligible roles.
37035 ========== h_norole_confirm ==========
37036 Return, compose without a role.
37037 ^C, cancel the message. ^T, select a role from your eligible roles.
37038 ========== h_custom_print ==========
37039 Enter a Unix command that accepts its data on standard input.
37040 Alpine will display any information the command sends to standard output.
37041 ========== h_convert_abooks_and_sigs ==========
37042 You will be given the opportunity to convert address books and signature files
37043 to remote configurations.
37044 ========== h_convert_abooks ==========
37045 You will be given the opportunity to convert address books to remote
37046 configurations.
37047 ========== h_flag_keyword ==========
37048 Enter the name of the keyword you want to add for this folder.
37049 No spaces, parentheses, braces, percents or asterisks are allowed.
37050 ========== h_select_keyword ==========
37051 Enter the keyword you want to match, or use ^T to select a keyword from a list
37052 of possible keywords for this folder. Use ! to look for non-matches instead.
37053 ========== h_type_keyword ==========
37054 Enter the keyword you want to add. You may add a nickname in the next step.
37055 No spaces, parentheses, braces, percents or asterisks are allowed.
37056 ========== h_type_keyword_nickname ==========
37057 Enter an optional nickname for the keyword you want to add.
37058 Type Carriage return to use the keyword name instead of a nickname.
37059 ========== h_convert_sigs ==========
37060 You will be given the opportunity to convert signature files to remote
37061 configurations.
37062 ========== h_convert_abook ==========
37063 Yes is fairly safe. You will be ADDing a remote address book that is a copy
37064 of the current address book. The current abook won't be removed automatically.
37065 ========== h_convert_sig ==========
37066 Answering Yes copies the contents of the signature file into your Alpine
37067 configuration file. After that, the contents of the file will not be used.
37068 ========== h_save_addman ==========
37069 Enter the simple name of the folder you want to add. Carriage return to
37070 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
37071 ========== h_reopen_folder ==========
37072 Yes reopens the folder, as if you were starting over. This uncovers new mail.
37073 No leaves the folder index as it was without discovering new mail.
37074 ========== h_convert_pinerc_server ==========
37075 This is the name of the host (computer) where the remote Alpine configuration
37076 will be stored. This should be an IMAP server that you have permission to use.
37077 ========== h_convert_pinerc_folder ==========
37078 Enter the correct remote folder name. This folder is special and should
37079 contain only configuration data. It shouldn't contain other mail messages.
37080 ========== h_role_compose ==========
37081 Compose a New message, Reply to current message, Forward current message, or
37082 Bounce message. Then you will be asked to choose one of your Roles to be used.
37083 ========== h_role_aggregate ==========
37084 Compose a reply, or forward, or bounce the selected messages. Then you 
37085 will be asked to choose one of your Roles to be used for this operation.
37086 ========== h_save_size_changed ==========
37087 The reported size of a message is not the same as the actual size. Answer Yes
37088 to continue and hope for the best or No to Cancel the entire Save.
37089 ========== h_select_by_larger_size ==========
37090 Enter a number or ^C to cancel. All messages greater than this many characters
37091 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37092 ========== h_select_by_smaller_size ==========
37093 Enter a number or ^C to cancel. All messages less than this many characters
37094 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37095 ========== h_preserve_field ==========
37096 Use 'p' to toggle between preserving or not preserving the original To:
37097 and Cc: fields of the message. Enter ^C to cancel message.