* Alpine failed to read an encrypted password file if too many
[alpine.git] / pith / pine.hlp
blob94fee0111c5e05d65ed2c4dde8ff0407de606da8
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-2016 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 170 2016-09-19 02:42:27
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-2016 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:
181 <UL>
182   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
183        user to choose the dictionary used to spell check, in case the user 
184        communicates in more than one language. Examples of values for the 
185        variable are "en_US" or "de_DE", etc. Only the first 10 
186        dictionaries are offered.
188   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
189        Based on a contribution by Wang Kang.
191   <LI> Alpine builds with any version bigger or equal to 1.0.0c, including
192        version 1.1.0, as well as LibreSSL.
194   <LI> New configuration option 
195        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
196        which adds more ways to control features and variables when you
197        start to reply to a message.
199   <LI> Added support for RFC 2971 - IMAP ID extension.
201   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
202        that allows users to ignore errors in the computation of the size
203        of a message from defective servers.
205   <LI> Add the configuration variable "default-directories", which is called
206        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
207        variable saves a list of directories that are readily accessible 
208        for save or export of attachments. This makes it easier to save 
209        attachments in directories that are hard to navigate to, or that 
210        are accessed frequently.
212   <LI> When a filename is attached and its name is encoded, the save 
213        attachment command will offer to save the file in the encoded form. 
214        This might work for some users, but the save command will have a 
215        subcommand ^N to decode the file name and save the file with the 
216        decoded name.
218   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
219        as well as autocompletes automatically when only one possibility exists 
220        for the ^J attach command.
222   <LI> Ignore message from smtp server after a successful authentication
223        challenge.
225   <LI> When a message is saved in the Form Letter folder, add the ability
226        to save the role being used to compose such message so that settings
227        such as the SMTP server set in the role can be used when sending
228        such form message. Suggested and patched by Frank Doepper.
230   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
231        SSLCERTSDIR is not found.
233   <LI> When Alpine sends an attachment, it will set the boundary attribute
234        in lower case, as some SMTP servers, such as those of libero.it 
235        reject messages if the boundary attribute is in uppercase.
237   <LI> Add the ability to change the private key and certificates used
238        to encrypt a password file in the SMIME setup configuration screen.
239        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
241   <LI> SMIME: The ctrl-E command that gives information on the certificate
242        is only available for messages that have a signed or encrypted 
243        part.
245   <LI> SMIME: If a message contains a RFC822 attachment that is
246        signed/decrypted add the ability to view its SMIME information.
248   <LI> SMIME: Certificate information in the S/MIME screen is available 
249        for certificates stored in a container.
251   <LI> SMIME: Offer the common name of the person, instead of the name of
252        file containing the certificate, as the name to be displayed in the 
253        certificate management screen for certificate authorities. 
254        Suggested by Matthias Rieber.
256   <LI> SMIME: Management of several alternate name (SAN) certificates is 
257        improved. When importing a SAN certificate, also import a certificate
258        for the filename, besides for the e-mail addresses in the
259        certificate. Suggested by Matthias Rieber.
261   <LI> SMIME: add full year when displaying information about a certificate
262        in the certificate management screen. Suggested by Matthias Rieber.
264   <LI> SMIME: sort certificates by some type of alphabetical order in the
265        displayed name.
267   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
268        certificates included in signatures, when the option "Validate 
269        Using Certificate Store Only" is enabled. If the user does not wish 
270        to save it, validation will fail.
272   <LI> HTML: Add support for decoding entities in hexadecimal notation.
273        Suggested by Tulip&aacute;nt Gergely.
275   <LI> The &quot;#&quot; command, when used as part of an aggregate
276        operation will allow users to select the role used in either 
277        replying, forwarding or replying to the group of selected messages, 
278        Suggested by Hisashi T Fujinaka.
280   <LI> If the charset of a message can not be determined, use the value set
281        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
283   <LI> Resizing setup screen will redraw screen.
285   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
286        in the width ambiguous zone, it will use other means to determine
287        the width, such as call wcwidth.
289   <LI> Pico: Code reorganization in the search command to make it easier to
290        add subcommands of the search command.
292   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
293        subcommand of the search command to bring this choice into view.
295   <LI> Pico: Add the ability to search for strings in the beginning or end
296        of a line. Use the Ctrl-^ subcommand of the search command to bring 
297        this choice into view.
299   <LI> For a multipart/alternative message, the Take Address command will 
300        work on the part that is being read.
302   <LI> When sending a message, allow for 512 characters of consecutive 
303        non-white space before folding the subject line.
305   <LI> Make sure titlebar (the line at the top of the screen) always 
306        contains the name of the folder/newsgroup that is open, if this 
307        fits in the title.
309   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
310        will also scramble the name, version and operative system in the message-id header. 
311        Based on a contribution by Dennis Davis, which is itself based on a contribution by 
312        Mark Hills.
314   <LI> Change in logic in imap_set_password function to make Alpine ask if
315        a user wants to save a password before reading the password file.
317   <LI> When exporting all parts of a message, if two attachments have the same
318        name, do not overwrite a file more than once, but instead add a counter
319        number to the filename to make a new file that does not exist in the file
320        system.
322   <LI> Add the Control-R subcommand to the save command for attachments. 
323        This subcommand toggles if the saving will be done in binary mode 
324        for text attachments. When a user saves an attachment using binary
325        mode it will be saved as it was sent, otherwise the attachment will
326        be transformed to UTF-8 for further transformation through internal
327        and user defined filters for saving.
329   <LI> Add command line argument -smimedir, which allows to specify
330        the default path for a directory that contains the public, private, 
331        and ca directories. This is useful in case a user has a backup of 
332        old certificates that cannot be installed in the ~/.alpine-smime 
333        dir.
335   <LI> Reimplementation of the code that allows the .pinerc file to be a
336        symbolic link by Kyle George from tcpsoft.com to use realpath.
338   <LI> When saving an attachment, the "^T" command leads to a screen where the
339        "A" command can be used to add a file. A directory can be added by
340        pressing "^X" after the "A" command. Added after a suggestion by
341        Stefan Goessling.
343   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
344        scroll through the history of directories used to save attachments, 
345        while preserving the given name of the file. Suggested by Peter 
346        Koellner.
348   <LI> SMIME: Turn off automatic signing and encrypting of a message when
349        bouncing. Suggested after a discussion with Matthias Rieber.
351   <LI> When messages are selected, warn the user if a message that is not
352        selected will be bounced, or if not all selected messages will be 
353        bounced. Suggested by Ulf-Dietrich Braumann.
355   <LI> The bounce command adds a subcommand to choose a role.
357   <LI> When selecting messages by number, the &quot;.&quot; character can 
358        be used to specify the message on which the cursor is on.
360   <LI> When Alpine opens an attachment, it sometimes changes the extension 
361        of the file that is being opened and replaces it by another for the 
362        same mime type. If Alpine finds that the extension of the file 
363        corresponds with the mime type, according to the mime-types file, 
364        then it will keep it, and no substitution will be made.
366   <LI> Set no restrictions on the length of encoded subjects, but encode
367        words in length of no more than 75 characters.
368 </UL>
372 Bugs that have been addressed include:
373 <UL>
374   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
375        Alpine will use the function ASN1_TIME_print to determine the date 
376        of validity. Reported by Ben Stienstra.
378   <LI> SMIME: Crash when attempting to unlock the password file and an
379        incorrect password is entered.
381   <LI> SMIME: Crash when checking the signature of a message that contains
382        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
383        Krellner.
385   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
387   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
388        remote containers. Reported by Matthias Rieber.
390   <LI> SMIME: certificates included in messages were not being transferred
391        to a remote container.
393   <LI> SMIME: Crash if public certificates are located in an inaccessible
394        remote server and the private key is not available.
396   <LI> SMIME: Alpine does not remove temporary files created when adding a 
397        CA certificate to a container. Reported by Holger Trapp.
399   <LI> SMIME: When reading a local certificate, Alpine converts the name 
400        of the certificate to lowercase, which may make Alpine not be able 
401        to read such certificate. Reported by Dennis Davis.
403   <LI> Alpine would use freed memory while trying to compute the color
404        of the titlebar. This happened when trying to continue a postponed 
405        message.
407   <LI> Alpine failed to read an encrypted password file if too many
408        passwords were saved in the password file.
410   <LI> When selecting messages while in Threaded Index Screen, some 
411        messages other than top of threads could appear in the index, making
412        Alpine display messages &quot;out of the screen.&quot;
414   <LI> Work in progress: Avoid calling non-safe functions when Alpine
415        receives a signal. See bug report 
416        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
418   <LI> Crash when attempting to read a message after a bounce command. 
419        In order to produce a crash one needed to use the ^T subcommand and 
420        do a search in a LDAP directory. The crash is produced by changes 
421        to the text in the title bar. Reported by Heinrich Mislik in the 
422        Alpine-info list.
424   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
425        making Alpine not display the correct character at the position 
426        that wrapping is done. Reported by Wang Kang.
428   <LI> Pico: Searching for a string that is too long causes Pico to crash
429        in the next search.
431   <LI> Fix vulnerability in regex library. This only affects those who use
432        this library, such as the windows version of Alpine. See 
433        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
434        for more details.
436   <LI> Alpine would not set include and lib paths for OpenSSL if this was
437        installed in /usr/local/ssl.
439   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
440        contents when saving its configuration.
442   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
443        the name. Reported by Andreas Fehr.
445   <LI> Mismatch in size of UCS and CELL caused a corruption in the
446        content of a pointer, which made the speller in PC-Alpine get the 
447        content of a word incorrectly.
449   <LI> Skip testing openssl compatibility version when cross-compilation
450        is detected. Fix contributed by Antti Sepp&auml;l&auml;
452   <LI> Alpine fails to remove temporary files used during a display or sending
453        filter. Fix contributed by Phil Brooke.
455   <LI> When the index is in zoomed state, adding new messages to the 
456        selection would not show those messages if those messages are on 
457        top of the current message in the top of the screen. Reported by
458        Ulf-Dietrich Braumann. In addition, when the user scrolls through
459        the index, this scroll smoothly, without jumping pages. Reported
460        by Holger Trapp.
462   <LI> Crash when reviewing history of saving attachments.
464   <LI> Crash in Pico when forwarding messages that contain a direction mark
465        at the end of a line. Reported by James Mingo.
467   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
468 </UL>
472 Version 2.20 addresses bugs found in previous releases and has several 
473 additions as well.
476 Additions include:
479 <UL>
480   <LI> Upgrade UW-IMAP to Panda IMAP from 
481        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
482   <LI> S/MIME: Add screen to manage certificates.
483   <LI> S/MIME: Signatures are validated using the user's certificates instead
484        of the ones included in the message. Behavior can be disabled by
485        disabling the option <A href="h_config_smime_use_cert_store">
486         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
487        by default.
488   <LI> S/MIME: sign messages using intermediate certificates when needed 
489        and possible.
490   <LI> S/MIME: validation of certificates for servers that modify signed 
491        content.
492   <LI> S/MIME: signed and encrypted messages will be signed first and 
493        encrypted second, so that they can be decoded by other clients.
494   <LI> S/MIME: add the sender certificate to the list of certificates in
495        encrypted messages to make it possible for the sender to decrypt
496        the message they sent.
497   <LI> S/MIME: When transferring certificates to a local container, create 
498        container with default names PublicContainer, PrivateContainer and 
499        CAContainer, as appropriate for these files, unless the user has 
500        provided some other names.
501   <LI> S/MIME: Forwarding a message will include the signed part as part
502        of the text and not as a multipart message, just as the reply
503        command does.
504   <LI> HTML: Style tag in body of html message causes Alpine to not write
505        its content until a new &lt;/style&gt;
506   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
507        the same inline tag; the same is valid for the &lt;HR&gt; tag.
508   <LI> Add support to selective expunge through a subcommand of the 
509        select-apply commands. Read more in the <A 
510        HREF="h_index_cmd_expunge">help</A> for the expunge command.
511   <LI> Pico: New subcommand of the search command, allows to reverse the
512        direction of search.
513   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
514        the key and certificate used to encrypt the password file are saved 
515        in the ~/.alpine-smime/.pwd directory, or in the directory specified
516        by the -pwdcertdir command line option. 
517        <A HREF="h_password_file_support">Learn more</A>.
518   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
519        server to use different ways to connect using ssl, for 
520        example {server.com/tls1} will attempt to connect to 
521        server.com at the ssl imap port (port 993) and establish a 
522        connection using TLSv1. These flags can be used in 
523        conjunction with the /ssl flag, the ssl flag is redundant. 
524        Conversely, however, the /ssl flag does not imply any of 
525        these flags; the /ssl flag means SSLv3 or, if not available, 
526        SSLv2 in the SSL port.
527   <LI> Alpine does not attempt to automatically reopen a collection 
528        that was not opened due to cancellation by the user. 
529        Instead, the user must try to open it explicitly.
530   <LI> Alpine searches for a certificate that matches an email address in
531        all addresses in a certificate (instead of just the first 
532        one) but when it tries to unlock the certificate, it asks 
533        for the password for the first email address in that 
534        certificate.
535   <LI> Style tag in body of html message causes Alpine to not write its content
536        until a new &lt;/style&gt;
537   <LI> Experimental: Write the content-type of a message in 
538        lowercase, as some non-compliant servers do not understand 
539        uppercase content-type, such as those of GMX.de.
540   <LI> Experimental: Do not send the RSET command before attempting
541        to send a message, as this causes a delay in some evily managed
542        servers.
543   <LI> Opening a folder updates recent count in maildrops (this 
544        already works for other types of folders)
545   <LI> Automatically redraw screen after opening an attachment 
546        instead of simply clearing it.
547   <LI> Pico: Justification works without need of a predefined quote 
548        string. This allows justification of blocks of text that are 
549        indented with spaces.
550   <LI> Decode the name of attachment names, so they can be written as part   
551        of the description of the part. 
552   <LI> Check bounds and tie strings off to improve security. Contributed 
553        by James Jerkins.
554   <LI> Replace tabs by spaces in From and Subject fields to control for
555        size in screen of these fields. Change only in index screen display.
556   <LI> Aggregate operations allows bouncing a list of messages using a role.
557        Suggested by Ulf-Dietrich Braumann.
558   <LI> Disable saving new passwords to the password file. Implemented
559        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
560   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
561      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
562      Charles M. Register.
563 </UL>
567 Bugs that have been addressed include:
568 <UL>
569   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
570        in personal names. Reported by Lev Gorenstein.
571   <LI> When writing the .pinerc file, lines were truncated if they were longer
572        than 10,000 characters. This could cause data corruption, so now lines
573        are allowed to be of any length.
574   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
575        remove attachments before they were open by a mailcap viewer. It 
576        requires that the user has an equivalent to a command such as "ps 
577        auxww" to list the list of processes, and check if there is any 
578        program using the attachment. The default is "/bin/ps auxww", but 
579        it can be changed at compile time with the option --with-ps-cmd. 
580        See the help of the variable 
581        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
582        for more information.
583   <LI> S/MIME: signed messages that contained an attachment would not validate.
584   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
585        validate. Thanks to Andreas Schamanek for testing, debugging and 
586        advising during the process of fixing this problem.
587   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
588        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
589        and Stefan Mueller.
590   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
591        home directory.
592   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
593        SMIME making it not possible to sign or encrypt messages.
594   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
595        information that is not part of the body, and hence making the body
596        of the message seem wrong.
597   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
598        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
599        enabled, the message contains 8bit characters and the smtp server 
600        supports 8bit sending.
601   <LI> When replying to several messages, subject will be decoded first,
602        and then stripped from re/fwd before they are compared to determine
603        the subject of the replied message.
604   <LI> Crash when tcp connection to NNTP server was lost after connection
605        had been established, but lost immediately afterwards.
606   <LI> Crash with message &quot;lock when already locked&quot;, when painting
607        an index was based on scores that needed information from a remote
608        addressbook in the same server as the folder opened. Reported by
609        Peter Koellner.
610   <LI> Crash in message/rfc822 attachments encoded in base64.
611   <LI> Postponed messages whose content-type is text/html, text/enriched and
612        text/richtext are sent with that content-type, even though, after
613        resuming composition, Alpine had changed its type to text/plain.
614   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
615        character set, which might lead to a crash or a corruption in the 
616        screen. Work was done to contain the bug. A more complete fix will 
617        be done in a future release. Reported by Professor Robert Funnell.
618   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
619   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
620   <LI> Save command did not warn of existence of a message with a deleted 
621        attachment in an aggregate save, unless cursor was positioned on a message 
622        with a deleted attachment. Reported by Florian Herzig.
623   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
624        in an IMAP server.
625   <LI> DATE tokens were not internally transformed to UTF-8, which made their
626        values not appear complete in the screen. Reported by Werner Scheinast.
627   <LI> Fixes to configure script so that it will not require PAM for every system.
628   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
629        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
630        during the build. Fix by Ulf-Dietrich Braumann.
631   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
632        needs to use tcl_getstringresult() instead. Reported by 
633        Ulf-Dietrich Braumann.
634   <LI> Quoted string in URL Viewers configuration variable were not 
635        unquoted before passing to viewer.
636   <LI> Fix in configure script to detect location of tcl library; add
637        /usr/local in FreeBSD and fix a bug in configure script that used 
638        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
639        by Werner Scheinast.
640   <LI> Move SSL configurations from UW-IMAP to configure script, and
641        update OpenSSL configuration for Mac OS X.
642   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
643   <LI> When the download of an attachment is interrumpted, Alpine stills
644      caches what was downloaded, making the download incomplete for 
645      subsequent calls of Alpine attempting to open the attachment. In the 
646      future, Alpine will not cache any downloaded part of the attachment 
647      when it is interrupted.
648 </UL>
653 Version 2.11 addresses bugs found in previous releases and has a few 
654 additions as well.
657 Additions include:
660 <UL>
661    <LI> Alpine requires version 1.0.0c of Openssl to build.
662    <LI> Increase encryption of S/MIME encrypted messages.
663    <LI> Pico: Improvements in justification of paragraphs: lines that begin
664 with a quote string, followed by a space were considered individual paragraphs,
665 now they are considered part of a paragraph. Based on earlier joint work
666 with Jeff Franklin.
667    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
668    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
669 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
670    <LI> Added recognition of ws and wss URIs.
671    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
672  <A HREF="h_config_directory_color">directory names</A>,
673  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
674    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
675 used in the display of the INDEX SCREEN.
676    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
677 that adds the ability to preserve To: and Cc: fields when replying to a 
678 message, as specified by original sender.
679    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
680  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
681    <LI> Quota command includes subcommands for printing, forwarding, etc.
682 </UL>
685 Bugs that have been addressed include:
687 <UL>
688   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
689   <LI> Crash when resizing the screen in a configuration screen.
690   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
691   <LI> Do not use a shell to open a browser.
692   <LI> Configure script did not test for crypto or pam libraries.
693   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
694   <LI> Change Cygwin directory separator to &quot;/&quot;.
695   <LI> Alpine could set List- headers, contrary to RFC 2369.
696 </UL>
699 Version 2.10 addresses bugs found in previous releases and has a few 
700 additions as well.
703 Additions include:
706 <UL>
707    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
708    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
709    <LI> Foreign characters are decoded correctly in IMAP folder names.
710    <LI> Question about breaking connection to slow servers includes their name.
711    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
712    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
713    <LI> Cygwin: Alpine builds without need of patch.
714    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
715    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
716    <LI> Add support for strong encryption of password file when S/MIME is built in.
717 </UL>
720 Bugs that have been addressed include:
723 <UL>
724    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
725    <LI> Double allocation of memory in Pico.
726    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
727    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
728    <LI> Not recognition of environment variables in some options.
729    <LI> Not display of login prompt during initial keystrokes.
730    <LI> justification of long urls breaks them.
731    <LI> Incorrect New Mail message when envelope is not available.
732    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
733    <LI> Crash when resizing the screen after display of LDAP search.
734    <LI> Crash when redrawing screen while opening a remote folder collection.
735    <LI> Infinite loop in scrolltool function during notification of new mail.
736    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
737    <LI> No display of signed and encrypted S/MIME messages.
738    <LI> Alpine will not build with OpenSSL.
739    <LI> Crash for double locking in calls to c-client.
740    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
741    <LI> Ignore the references header when threading messages
742    <LI> No update of colors in index screen after update to addressbook.
743 </UL>
746 Version 2.01 addresses bugs found in previous releases and has a few 
747 additions as well.
750 Additions include:
753 <UL>
754    <LI> Fixed non-ASCII web alpine handling
755    <LI> Added web alpine help.
756    <LI> Allow web alpine inbox on second IMAP server.
757    <LI> Allow web alpine config reset after bad inbox-path gets set.
758    <LI> Added web alpine ability to create group contact from contact list members.
759    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
760    <LI> Tidied up web alpine script layout.
761    <LI> Fixed web alpine status message ordering
762    <LI> Added web alpine Fcc setting via Contacts in Compose
763    <LI> Fixed web alpine autodraft attachment issues
764    <LI> Fixed web alpine problems with recent count maintenance
765    <LI> Fixed web alpine newmail arrival display in message list
766    <LI> Added web alpine confirmation to folder create for Move/Copy
767    <LI> Added web alpine user-domain support
768    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
769 </UL>
772 Bugs that have been addressed include:
775 <UL>
776    <LI> In web alpine fixed delete all selected within a search result to reorient
777         correctly to whole-mailbox message list.
778    <LI> Fixed web alpine delete in view page to be sensitive to sort
779    <LI> Fixed web alpine open of folder within directory from folder manager page.
780    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
781    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
782    <LI> Fixed web alpine adding contacts from message list and view
783    <LI> Fixed web alpine create of non-existent fcc
784    <LI> Remove mistakenly left debugger statement in web alpine javascript.
785    <LI> Some UNIX alpine build problems fixed
786    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
787         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
788         by locale charmap call on some Solaris 8 systems.
789    <LI> MacOS Keychain logins were not working correctly with generic host names, like
790         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
791         new password requests when not needed
792    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
793         last folder in the list
794    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
795         looked for along with the email address
796    <LI> Changes to configure to get spellcheck options with work with arguments.
797    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
798         returned by gethostname (iPhone can do this)
799    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
800         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
801    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
802         Jake Scott of marganstanley.com.
803    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
804         is not used in alpine.
805    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
806         Apparently this causes RIM Blackberry BIS service problems. This is not
807         used in alpine.
808    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
809    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
810         Fix from Ludwig Nussel of SUSE and from Crispin.
811    <LI> Include whole filename in export filename history
812    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
813 </UL>
816 Version 2.00
817 addressed bugs found in previous releases and had a few additions as well.
819 Additions included:
822 <UL>
823    <LI> Redesigned Web Alpine interface
824    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
825         in UNIX versions of Alpine
826    <LI> Attempt to include the attachment filename as part of the name of the
827         temporary file used when viewing an attachment with an external program.
828         Add some randomness to that filename to make it hard to predict the filename.
829         Add a filename extension, usually derived from the type/subtype, to the
830         temporary filename. This was previously done only on Windows and MacOS X.
831    <LI> Enhance address completion in the composer (TAB command) so that it looks
832         through nicknames, fullnames, and addresses from the address book; addresses
833         from the message being viewed, if any; and the results from
834         <A HREF="h_direct_config">LDAP Directory Server</A>
835         lookups for all of the defined directory servers that have the
836         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
837         feature set.
838    <LI> Make the default character set setting more liberal in what it will accept
839         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
840    <LI> Remove the Alpine revision number from the titlebar in released versions
841         while leaving it there in snapshot versions
842    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
843         display of asterisks when you type a password for Alpine
844    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
845    <LI> When the
846         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
847         feature is turned on convert not only the dates in the index screen but also
848         the dates in the MESSAGE VIEW
849 </UL>
852 Bugs addressed in the 2.00 release included:
855 <UL>
856    <LI> Crash when using tab-completion for selecting a Save filename
857    <LI> Make Web Alpine help text images relative for more portability
858    <LI> Fixed attach save of html parts in Web Alpine
859    <LI> Viewing, printing, exporting, replying, and bouncing of message
860         digests was broken. Replying and bouncing should not have been
861         allowed at all for digests. It would be nice to have a more standard
862         index-like view of a message digest but that has not been addressed
863         with this minor bug fix.
864    <LI> Adjust wrapping of HTML messages so that the margins specified by
865         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
866         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
867         are observed correctly
868    <LI> Interrupt of WhereIs command in index was broken
869    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
870         option did not work correctly interpreting unknown characters in message headers
871    <LI> Long address lines could cause blank continuation lines
872    <LI> Save to a local default INBOX failed if the primary collection was also local,
873         which it is by default. The save went to  ~/mail/inbox instead.
874    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
875         inbox, not the inbox in the primary collection
876    <LI> Address book entries with lots of addresses would be truncated when
877         entered in the composer with a screen size wider than 270 or so charcters
878    <LI> Some fields in the index screen were truncated when the screen width was
879         wider than 256 characters
880    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
881         folder, and there is a more than 10 minute pause between typing the TAB
882         and typing the Yes
883 </UL>
886 Version 1.10(962)
887 addressed bugs found in previous releases and had a few additions as well.
889 Additions included:
892 <UL>
893    <LI> Add the possibility of setting a default role
894         (see <A HREF="h_role_select">Roles Screen</A>)
895         which may be convenient if your work flow involves acting in one
896         role for a while then switching to another role and staying in the
897         new role for another period of time
898    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
899         is encountered, ask the user if he or she wants to continue with the
900         risky Save anyway instead of aborting. This may be helpful if your
901         IMAP server is broken in this way but be aware that it is possible there
902         was a real error instead of just a broken server implementation.
903    <LI> Some configure adjustments for Kerberos detection and
904         for SCO OpenServer 5 support
905    <LI> Hide INBOX in a collection if it also appears as an
906         <A HREF="h_config_enable_incoming">Incoming Folder</A>
907    <LI> Show asterisks for feedback when the user is typing a password
908    <LI> Performance improvement for threading of large folders
909    <LI> Previously, the search used to find
910         Pattern matches containing To patterns searched for both To
911         and Resent-To headers. The relatively complicated search this
912         produces causes problems when using some deficient IMAP servers.
913         Now the default is to look only for To headers and ignore the
914         presence of Resent-To. The previous behavior may be restored
915         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
916    <LI> Add an
917         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
918         to help with reading malformed unlabeled messages
919    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
920    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
921    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
922 </UL>
925 Bugs addressed in the 1.10(962) release included:
928 <UL>
929    <LI> Crash when encountering certain errors from an SMTP server
930    <LI> Crash in composer caused by overflow in replace_pat()
931    <LI> Hang when authenticating to an SMTP server that fails with a
932         &quot;connection disconnected&quot; error
933    <LI> Bug in handling of trailing tab character in flowed text
934    <LI> Security enhancement for mailcap parameter substitution
935    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
936         did not work if the message being replied to was not flowed text
937         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
938         was not turned on
939    <LI> Don't allow printer to be changed through hidden config screen
940         if system administrator didn't want it to be allowed
941    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
942         should know that it won't work, causing error messages to appear
943    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
944         of double-quote double-quote didn't work right
945    <LI> Quoting wasn't being done to protect special characters from the
946         MacOS X shell when
947         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
948         was not defined
949    <LI> On MacOS X message attachments should be shown internally instead of
950         being shown using the Mail application
951    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
952         sometimes set the outgoing charset to X-UNKNOWN, making the result
953         unreadable
954    <LI> When the sending of a message failed lines with leading spaces had one
955         additional space inserted in each of those lines when the user
956         was returned to the composer
957    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
958         that contained non-ascii characters because it was truncating the
959         line being searched so that it was shorter than what was visible on
960         the screen
961    <LI> When composing, an attachment with a long name that causes wrapping in
962         just the wrong place would generate an error and cause the send
963         of the attachment to fail
964    <LI> After calling the file browser to attach a file in the composer, a resize
965         of the window when back in the composer would redraw the last screen that
966         had been shown in the browser instead of the current composer screen
967    <LI> Possible crash in index screen when encountering unparseable addresses
968         or when using one of the PRIORITY tokens or the HEADER token in the
969         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
970    <LI> Problems with Header Color editing if the configuration option
971         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
972         was inadvertently changed to the Empty Value in the hidden config screen
973    <LI> When resuming the final postponed message from an Exchange server the user
974         could get a certificate validation failure because alpine was trying
975         to validate the canonical name of the folder instead of the name the
976         user used
977    <LI> Windows line endings in a mimetypes file on a Unix system cause a
978         failure to find a match
979    <LI> Make matching of extension names case independent in mimetypes files
980    <LI> Windows dialog boxes for entering text were not working correctly
981    <LI> Replying to or Forwarding multipart/alternative messages which had a
982         single text/html part did not work well
983    <LI> Printing the print confirmation page caused a crash
984    <LI> A To line with a long, quoted personal name could display incorrectly
985         if it was close to the same width as the screen
986    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
987         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
988         are turned on hide (0/0) when the folder is empty
989    <LI> Folder completion while Saving didn't work if the collection being
990         saved to was the local home directory
991 </UL>
994 Version 1.00
995 was an evolutionary release based on
996 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
997 developed at the University of Washington.
998 It is upwards-compatible for existing Pine users.
1001 Changes included:
1003 <UL>
1004    <LI> Ground-up reorganization of source code around addition
1005         of "pith/" core routine library.
1006    <LI> Fundamental improvement in Alpine's internal text handling, which
1007         is now based exclusively on Unicode. This allows displaying incoming
1008         messages and producing outgoing messages in many different languages.
1009    <LI> Ground-up reorganization of build and install procedures
1010         based on GNU Build System's autotools. NOTE, the included IMAP library
1011         build is not based on autotools, so some features will not work. However,
1012         it should get built automatically during the Alpine build process.
1013    <LI> Web-based version included built on TCL designed to run under
1014         a suitable CGI-supporting web server such as Apache.
1015 </UL>
1019 Details on changes in previous (prerelease) versions of Alpine
1020 may be found at the following URL:
1022 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP></CENTER>
1025 <HR WIDTH="75%"><P>
1027 <H2>Getting Help</H2>
1028 <DL>
1029 <DT>Online Help</DT>
1030 <DD>
1031 Every Alpine screen and command has associated help text
1032 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1033 </DD>
1035 <DT>Web Help</DT>
1036 <DD>
1037 The most current source of information about Alpine,
1038 including new version availability, is the web page at
1040 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></SAMP></CENTER>
1041 </DD>
1042 </DL>
1044 Frequently Asked Questions (and answers) may be found at the following
1045 URL:
1047 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
1050 <HR WIDTH="75%"><P>
1052 <H2>Additional Information</H2>
1054 General Alpine configuration information can be found
1055 <A HREF="h_news_config">here</A>.
1057 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1058 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1059 access is provided by the IMAP Toolkit Environment (c-client library)
1060 version <!--#echo var="C_CLIENT_VERSION"-->.
1061 <P> 
1062 Alpine was developed until 2009 by the Office of Computing 
1063 &amp; Communications at the University of Washington in Seattle.  
1064 Since then, the effort of developing Alpine has been continued by
1065 a community of volunteers who make good software even better!
1068 Alpine Copyright 2013-2016 Eduardo Chappa, 
1069 <BR> Copyright 2006-2008 University of Washington.
1072 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1073 or instead you can find the Apache License, version 2.0 at the web URL:
1076 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1079 &lt;End of Release Notes&gt;
1080 </BODY>
1081 </HTML>
1082 ====== h_password_file_support ======
1083 <HTML>
1084 <HEAD>
1085 <TITLE>Encryption for Password File Support Explained</TITLE>
1086 </HEAD>
1087 <BODY>
1088 <H1>Encryption for Password File Support Explained</H1>
1090 Index<BR>
1091 <OL>
1092 <LI><A HREF="#content">Explanation</A>
1093 <LI><A HREF="#example">Example</A>
1094 </OL>
1096 <P><A NAME="content">Unix Alpine Only.</A>
1098 <P> If your version of Alpine has been built with password file support
1099 then you can use a special file to save your passwords, and avoid typing
1100 them every time you open a connection to a remote server.
1102 <P> If your version of Alpine was built with SMIME support, and you have a
1103 public certificate/private key pair, then Alpine will use such pair to
1104 encrypt your password file. If you have more than one key/certificate
1105 pair, Alpine will pick the first pair that it finds that works. You can also
1106 select a pair, and the way to do this is explained below.
1108 <P> Once a pair has been chosen, it will be copied to the directory 
1109 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1110 that directory. The first time this process is done, this directory will 
1111 be created, a key/certificate pair will be copied to it, and this pair 
1112 will be used in the future to encrypt and decrypt your password file. You 
1113 can create this directory and copy any key/certificate pair there. You
1114 can add a self-signed certificate there, if you like, and you can let
1115 this certificate expire. This will not affect the encryption and decryption
1116 of the password file.
1118 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1119 your key/certificate pair, you can specify a different one with the 
1120 -pwdcertdir command line option in Alpine. If the directory specified by 
1121 this option is not found or there is no valid key/certificate pair there, 
1122 Alpine will fail to encrypt and decrypt your password file. In other words,
1123 Alpine will not initialize this directory for you.
1125 <P> Alpine does not care about the names of the key and certificates in 
1126 this directory, but the private key must have &quot;.key&quot; extension 
1127 and your public certificate must have the &quot;.crt&quot; extension. The
1128 name of the private key will be used in the prompt when you are asked
1129 to unlock your key to decrypt your password.
1131 <P><A NAME="example">An example follows</A>
1133 <P>Assume you have a private key called peter@address.com.key in your, 
1134 ~/.alpine-smime/private directory, and a public certificate called 
1135 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1136 are your only key/certificate pair.
1138 <P> When Alpine starts for the first time, without command line options, 
1139 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1140 it will create it. Then it will go through your keys and certificates and 
1141 find a pair that it can use, and copy the files peter@address.com.key,
1142 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1143 you can do the same by copying these files by yourself. This can be done
1144 with the sequence of commands
1146 <PRE>
1147 mkdir ~/.alpine-smime/.pwd
1148 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1149 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1150 </PRE>
1152 <P> When Alpine starts, you will be asked the password to unlock your
1153 private key with the prompt.
1155 <PRE>
1156 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1157 </PRE>
1159 <P> If you prefer to use different names for your private and public keys 
1160 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1161 preserve the extension of the files. For example, you can use the names 
1162 private_key.key and public_cert.crt instead. In this case, the prompt you 
1163 will see when you are asked to unlock your private key will read
1165 <PRE>
1166 Enter password of key &lt;private_key&gt; to unlock password file:
1167 </PRE>
1169 <P>Observe that you do not need to use an existing key/certificate pair, 
1170 and that you can create a new private key/public certificate pair to 
1171 encrypt and decrypt your password. However, once one is used, Alpine does 
1172 not provide a mechanism to switch the encryption and decryption files to 
1173 another key/certificate pair. This will be implemented in a future 
1174 release of Alpine.
1177 &lt;End of help&gt;
1178 </BODY>
1179 </HTML>
1180 ====== h_tls_failure_details ======
1181 <HTML>
1182 <HEAD>
1183 <TITLE>Certificate Validation Details</TITLE>
1184 </HEAD>
1185 <BODY>
1186 <H1>Certificate Validation Details</H1>
1188 This screen gives details as to why the certificate validation failed: the
1189 name of the desired server system; the reason for failure; and the name on
1190 the certificate.  This is primarily of interest to experts.
1193 &lt;End of help&gt;
1194 </BODY>
1195 </HTML>
1196 ====== h_tls_failure ======
1197 <HTML>
1198 <HEAD>
1199 <TITLE>TLS or SSL Failure</TITLE>
1200 </HEAD>
1201 <BODY>
1202 <H1>TLS or SSL Failure</H1>
1204 An attempt was made to establish a secure, encrypted connection to the
1205 server system using either Transport Layer Security (TLS) or the older
1206 Secure Sockets Layer (SSL).  This attempt failed.
1209 You should contact your server system management for more assistance.
1210 The problem is probably at the server system and not in Alpine or your local
1211 system.  The text in this screen may be helpful for the server system
1212 management in debugging the problem,
1215 &lt;End of help&gt;
1216 </BODY>
1217 </HTML>
1218 ====== h_tls_validation_failure ======
1219 <HTML>
1220 <HEAD>
1221 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1222 </HEAD>
1223 <BODY>
1224 <H1>TLS and SSL Certificate Validation Failures</H1>
1226 An attempt was made to establish a secure, encrypted connection to the
1227 server system using either Transport Layer Security (TLS) or the older
1228 Secure Sockets Layer (SSL).
1231 An important part of this procedure is server certificate validation.  A
1232 server certificate is an &quot;electronic identification card&quot; for the server
1233 system that is signed by a well-known certificate authority (CA).  Alpine
1234 compares the server system identity in the server certificate with the
1235 name of the server system to which it is trying to connect.  Alpine also
1236 verifies that the CA signature is authentic.
1239 Some common failure conditions are:
1242 <UL>
1243   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1244 signed its own certificate.  This does not necessarily indicate anything
1245 bad; the server operators may simply have elected to not purchase a
1246 signed certificate from a certificate authority.
1248   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1249 the signature on the server system is from an unknown certificate authority.
1250 It can also mean that no certificate authority certificates have been
1251 installed on the local UNIX system.
1253   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1254 the same as either of the above two conditions in UNIX Alpine.  Note that
1255 Windows systems typically have a full set of certificate authority
1256 certificates installed, so it is more likely to be a self-signed
1257 certificate than an unknown certificate authority.
1259   <LI> Server name does not match certificate.  This means that the server
1260 presented a proper signed certificate for a name other than the desired
1261 name.
1262 </UL>
1265 Any of these conditions can indicate that you are being attacked and have
1266 been directed to an imposter server that will record your password and
1267 your private mail messages.  It can also mean something innocuous.
1270 If you are certain that the problem is innocuous, you can append the
1271 option
1274 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1277 to the server system name where it appears in your configuration (e.g. the
1278 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1279 a folder-collection, or a news or SMTP server).  This will
1280 disable certificate validation.  On the other hand, if you are attacked,
1281 you will get no warning if you do this.
1284 &lt;End of Cert Validation Failures help&gt;
1285 </BODY>
1286 </HTML>
1287 ====== h_release_tlscerts ======
1288 <HTML>
1289 <HEAD>
1290 <TITLE>TLS and SSL usage note</TITLE>
1291 </HEAD>
1292 <BODY>
1293 <H1>TLS and SSL usage note</H1>
1296 When using Alpine from Unix or Windows 2000,
1297 server certificates must be signed by a trusted certificate authority.
1298 You may relax this requirement (at the cost of some security) by using
1300 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1301 modifier in the mailbox name.
1304 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1307 The fully-qualified host name of the server should be used
1308 so that it matches the host name in the server certificate.
1310 Here is an example of a host specification that directs Alpine to use
1311 the SSL port (993) and an encrypted data stream.
1313 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1315 &lt;End of TLS usage help&gt;
1316 </BODY>
1317 </HTML>
1318 ====== h_news_config ======
1319 <HTML>
1320 <HEAD>
1321 <TITLE>Alpine Configuration</TITLE>
1322 </HEAD>
1323 <BODY>
1324 <H1>Alpine Configuration</H1>
1326 <H2>Using Environment Variables</H2>
1328 The values of Alpine configuration options may include environment variables
1329 that are replaced by the value of the variable at the time Alpine is run
1330 (and also at the time the config option is changed).
1331 The syntax to use environment variables is a subset of the common Unix
1332 shell dollar-syntax.
1333 For example, if
1335 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1337 appears in the value of an Alpine configuration option it is looked up in the
1338 environent (using getenv(&quot;VAR&quot;)) and its
1339 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1340 To include a literal dollar sign you may precede the dollar sign with another
1341 dollar sign.
1342 In other words, if the text
1344 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1346 is the value of a configuration option, it will be expanded to
1348 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1350 and no environment lookup will be done.
1351 For Unix Alpine it will also work to use a backslash character to
1352 escape the special meaning of the dollar sign, but $$ is preferable since
1353 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1354 to be in a shared configuration file.
1357 This all sounds more complicated than it actually is.
1358 An example may make it clearer.
1359 Unfortunately, the way in which environment variables are set is OS-dependent 
1360 and command shell-dependent.
1361 In some Unix command shells you may use
1363 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1364    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1366 Now, if you use Alpine's Setup/Config screen to set
1368 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1370 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1371 so that this would be equivalent to
1373 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1375 Note, environment variable substitution happens after configuration
1376 options that are lists are split into the separate elements of the list,
1377 so a single environment variable can't contain a list of values.
1380 The environment variable doesn't have to be the only thing
1381 after the equal sign.
1382 However, if the name of the variable is not at the end of the line or
1383 followed by a space (so that you can tell where the variable name ends),
1384 it must be enclosed in curly braces like
1386 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1388 It is always ok to use the braces even if you don't need to.
1390 It is also possible to set a default value for an environment variable.
1391 This default value will be used if the environment variable is not
1392 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1393 The syntax used to set a default value is
1395 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1397 If the config file contains
1399 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1401 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1402 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1403 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1404 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1405 the default value.
1406 (Note that the variable is called &quot;personal-name&quot; in the config
1407 file but is displayed in the config screen as
1408 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1409 In general, the value that goes into a config file is never exactly the
1410 same as the value you see on the screen.)
1413 An example where an environment variable might be useful is the
1414 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1415 Suppose most users used the server
1417 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1419 but that there were some exceptions who used
1421 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1423 In this case, the system manager might include the following line in
1424 the systemwide default Alpine configuration file
1426 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1428 For the exceptional users adding
1430 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1432 to their environment should work.
1434 Another example might be the case where a user has to use a different
1435 SMTP server from work and from home.
1436 The setup might be something as simple as
1438 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1440 or perhaps a default value could be given.
1441 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1442 a list of SMTP servers.
1445 <H2>Configuration precedence</H2>
1447 There are several levels of Alpine configuration.  Configuration values at
1448 a given level override corresponding values at lower levels.  In order of
1449 increasing precedence:
1451 <UL>
1452  <LI> built-in defaults
1453  <LI> system-wide
1454 <!--chtml if pinemode="os_windows"-->
1455       config file from command line or provided
1456       by "PINECONF" environment variable
1457 <!--chtml else-->
1458       pine.conf file
1459 <!--chtml endif-->
1460  <LI> personal configuration file
1461  <LI> personal exceptions configuration file
1462  <LI> command-line options
1463  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1464  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1465 </UL>
1467 The values in both the personal configuration file and the
1468 <A HREF="h_config_exceptions">exceptions</A>
1469 configuration file may be set using the Setup command.
1470 Setup/Config is the command to change most of the personal configuration
1471 options.
1472 The other Setup subcommands are also used to change the configuration,
1473 for example, Setup/AddressBook, Setup/Rules, and so on.
1474 Changing the personal exceptions configuration is very similar.
1475 To change a value in the Config screen you would use the command
1476 Setup/eXceptions/Config.
1477 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1479 There are a couple exceptions to the rule that configuration values are replaced
1480 by the value of the same option in a higher-precedence file.
1481 The Feature-List variable has values that are additive, but can be
1482 negated by prepending &quot;no-&quot; in front of an individual feature name.
1483 So for features, each individual feature's value is replaced by the value
1484 of the same feature in a higher-precedence file.
1485 Note that this is done automatically for you when you change these values via
1486 the Setup/Config command.
1487 The other exception to the <EM>replace</EM> semantics happens when you
1488 use <A HREF="h_config_inheritance">configuration inheritance</A>
1489 for option lists.
1492 <H2>File name defaults</H2>
1494 Notes:<P>
1496 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1497 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1498 <BR> # = default file name is overridable in pinerc.
1499 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1500 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1501 <BR> + between the mailcap paths implies that the two files are combined.
1502 <BR> ; between other default paths implies that the first one found is used.
1503 </P>
1504 Alpine looks for most support files in the same directory it finds its
1505 personal configuration file (pinerc).  The -p command-line flag may be
1506 used to specify a particular path name for the pinerc file.  If a
1507 pinerc file does not exist, it will be created (if directory permissions
1508 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1509 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1510 file does not exist in either one, it will create one in the first of those
1511 two directories that is writable.  In detail:
1512 <PRE>
1514 PC-Alpine:
1516  executable     &lt;DOS search path&gt;&#92;pine.exe
1517  help index     &lt;exe dir&gt;&#92;pine.ndx
1518  help text      &lt;exe dir&gt;&#92;pine.hlp
1520  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1521  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1522  global cfg     $PINECONF
1524  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1525  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1526  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1527  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1528  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1529  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1530  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1531  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1532  postponed#     $HOME&#92;mail&#92;postpond.mtx
1533  interrupted    $HOME&#92;mail&#92;intruptd
1535 Unix Alpine:
1537  executable     &lt;Unix search path&gt;/pine
1538  persnl cfg     ~/.pinerc
1539  except cfg     ~/.pinercex
1540  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1541  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1542  local help     <!--#echo var="PINE_INFO_PATH"-->
1544  interrupted    ~/.pine-interrupted-mail
1545  debug          ~/.pine-debugN
1546  crash          ~/.pine-crash
1547  newsrc#        ~/.newsrc
1548  signature#     &lt;pinerc dir&gt;/.signature
1549  addressbook#   &lt;pinerc dir&gt;/.addressbook
1550  postponed#     ~/mail/postponed-msgs
1551  sentmail#      ~/mail/sent-mail
1552  mailcap#       ~/.mailcap + /etc/mailcap
1553                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1554  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1556  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1557  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1558  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1559  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1560  password       /etc/passwd
1562 Unix Alpine and PC-Alpine:
1564  .ab*           remote addressbook support files
1565  a[1-9]*        temporary (while Alpine is running) addressbook files
1567 </PRE>
1570 <H2>Mailcap files</H2>
1572 Alpine honors the mailcap configuration system for specifying external
1573 programs for handling attachments.  The mailcap file maps MIME attachment
1574 types to the external programs loaded on your system that can display
1575 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1576 distribution.  It includes comments that explain the syntax you need to
1577 use for mailcap.  With the mailcap file, any program (mail readers,
1578 newsreaders, WWW clients) can use the same configuration for handling
1579 MIME-encoded data.
1582 <H2>MIME-Types files</H2>
1584 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1585 what Content-Type to use for labeling an attached file, based on
1586 the file extension.  That is, this file provides a mapping between
1587 filename extensions and MIME content-types.
1590 <H2>Environment variables</H2>
1592 PC-Alpine uses the following environment variables:
1593 <DL>
1594 <DT>PINERC</DT>
1595 <DD>Optional path to pinerc file.</DD>
1596 <DT>PINERCEX</DT>
1597 <DD>Optional path to personal exceptions configuration file.</DD>
1598 <DT>PINECONF</DT>
1599 <DD>Optional path to global pine config file.</DD>
1600 <DT>HOME</DT>
1601 <DT>TMPDIR, TMP, or TEMP</DT>
1602 <DT>COMSPEC</DT>
1603 <DT>MAILCAPS</DT>
1604 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1605 <DT>USER_DICTIONARY</DT>
1606 <DD>Used to specify the file to contain the user's spell check
1607 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1608 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1609 </DL>
1611 Unix Alpine uses the following environment variables:
1612 <DL>
1613 <DT>TERM</DT>
1614 <DD>Tells Alpine what kind of terminal is being used.</DD>
1615 <DT>DISPLAY</DT>
1616 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1617 <DT>SHELL</DT>
1618 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1619 <DT>TMPDIR, TMP, or TEMP</DT>
1620 <DT>MAILCAPS</DT>
1621 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1622 </DL>
1623 <!--chtml if pinemode="os_windows"-->
1625 <H2>Common PC-Alpine Configuration Problems</H2>
1627 <H3>Configuration settings aren't being saved</H3>
1629 <P>This problem can happen if you run pine from one directory and
1630 then decide to move your pine directory to another location.  PC-Alpine
1631 stores certain variables, including the configuration location, in the
1632 Windows Registry (which you shouldn't ever need to manually edit).  There
1633 are a couple of ways to go about removing or resetting the values in the
1634 registry.
1637 1) Run PC-Alpine's registry value deletion command.  This can be done by
1638 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1639 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1640 value to the above command.
1643 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1644 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1645 option, you can tell PC-Alpine the location of your pinerc.  An example of
1646 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;.
1647 Again, you can use the DOS prompt or the shortcut method explained in (1).
1650 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1651 set registry values to the current setting, and is therefore useful with
1652 the &quot;-p&nbsp;PINERC&quot; option.
1654 <!--chtml endif-->
1656 &lt;End of Configuration Notes&gt;
1657 </BODY>
1658 </HTML>
1659 ====== h_news_legal ======
1660 <html>
1661 <head>
1662 <TITLE>Alpine Legal Notices</TITLE>
1663 </head>
1664 <body>
1666 <H1>Alpine Legal Notices</H1>
1668 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1672 &lt;End of Alpine Legal Notices&gt;
1673 </BODY>
1674 </HTML>
1675 ===== h_info_on_mbox =====
1676 <HTML>
1677 <HEAD>
1678 <TITLE>Information on mbox driver</TITLE>
1679 </HEAD>
1680 <BODY>
1681 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1683 Beginning with Pine 4.00 (Pine came before Alpine)
1684 a new INBOX access method is
1685 available as part of the standard configuration.  It is called the
1686 &quot;mbox&quot; driver and it works like this:<P>
1689 <BLOCKQUOTE>
1690 If the file &quot;mbox&quot; exists in the user's home directory, and
1691 is in Unix mailbox format, then when INBOX is opened this file will be
1692 selected as INBOX instead of the mail spool file.  Messages will be
1693 automatically transferred from the mail spool file into the mbox
1694 file.
1695 </BLOCKQUOTE>
1698 The advantage of this method is that, after new mail has been copied
1699 from the system mail spool, all subsequent access is confined to the
1700 user's home directory, which is desirable on some systems.  However, a
1701 possible disadvantage is that mail tools other than those from the
1702 University of Washington will not know to look for mail in the user's
1703 mbox file.  For example, POP or IMAP servers other than those from the
1704 University of Washington, and many &quot;new mail notification&quot;
1705 programs may not work as expected with this driver enabled.<P>
1707 To disable this behavior, either remove/rename the &quot;mbox&quot;
1708 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1709 option in Setup/Config
1710 and add &quot;mbox&quot; to it:
1712 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1714 &lt;End of help on this topic&gt;
1715 </BODY>
1716 </HTML>
1717 ===== h_info_on_locking =====
1718 <HTML>
1719 <HEAD>
1720 <TITLE>FAQs on Alpine Locking</TITLE>
1721 </HEAD>
1722 <BODY>
1723 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1725 There is an extensive section on locking in the Alpine technical notes;
1726 this information is intended to provide answers to some common questions:<P>
1727 <OL>
1728 <LI> Why did locking change in Pine 4.00?<BR>
1729 The actual locking mechanisms did not change in 4.00.
1730 What changed is that when one particular locking mechanism used by Alpine 
1731 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1732 failure would occur, but no warning was issued.<P>
1734 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1735 Yes.  It means that Alpine was unable to create a lockfile in the
1736 spool directory, generally because of overly restrictive protections on the
1737 spool directory.  The correct permissions on the spool directory for
1738 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1739 with the sticky-bit set, so only owners of a file can delete them.<P>
1741 <LI> Why does Alpine require that the mail spool directory have 1777
1742    protections?<BR>
1743 Alpine was designed to run without special privileges.  This means that in
1744 order to create a lockfile in the spool directory, it is necessary to have
1745 the spool directory permissions be world-writable.<P>
1747 <LI> Can't you create the lockfile somewhere else?<BR>
1748 No.  The lockfile in question must be in the mail spool directory, because
1749 that's where the mail delivery program expects to find it, and the purpose
1750 of the file is to coordinate access between the mail client (Alpine) and the
1751 mail delivery program.<P>
1753 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1754 No.  Remember that the individual mail files in the spool directory are
1755 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1756 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1757 -- means that only the owner of the file (or root) can delete files in the 
1758 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1759 anyone could
1760 create a random file in the spool directory.  If the spool directory is
1761 under quota control along with home directories, there is little incentive
1762 for anyone to do this, and even without quotas a periodic scan for
1763 non-mail files usually takes care of the problem.  <P>
1765 <LI> Why not run Alpine as setgid mail?<BR>
1766 Alpine was never designed to run with privileges, and to do so introduces a
1767 significant security vulnerability.  For example, if a user suspends Alpine,
1768 the resulting shell will have group privileges.  This is one example of
1769 why we strongly recommend against running Alpine as a privileged program.
1770 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1771 users
1772 could not test Alpine versions or other mailers that had not been installed
1773 by the system administrators.<P>
1776 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1777 There are, but they all have different sets of tradeoffs, and not all will
1778 work on all systems.  Some examples:<UL>
1779  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1780    spool is local.   Doesn't work reliably if NFS is used.
1781    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1782    use the same calls.
1783  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1784    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1785 mail tools that always look in the spool directory for the mail.
1786 </UL><P>
1788 <LI> Are these spool directory lock files the only kinds of locks used by
1789    Alpine?<BR>
1790 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1791 mailbox format folders, these are used to coordinate access between
1792 multiple Alpine sessions.  <P>
1794 <LI> What about the 
1795 <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>
1796 This is for people who are content to live dangerously, or who have
1797 specific knowledge that the spool directory lockfiles are superfluous on
1798 their system (because both Alpine and the mail delivery program are using 
1799 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1801 <LI> Where can I find more details on how Alpine locking works?<BR>
1802 See the Alpine Technical Notes.<P>
1804 </OL>
1806 &lt;End of help on this topic&gt;
1807 </BODY>
1808 </HTML>
1809 ===== h_finding_help ====
1810 <HTML>
1811 <HEAD>
1812 <TITLE>Finding more information and requesting help</TITLE>
1813 </HEAD>
1814 <BODY>
1815 <H1>Places to Look for More Answers</H1>
1816 If you have questions about or problems with Alpine that you cannot resolve 
1817 after consulting the program's internal, context-sensitive help screens, here 
1818 are additional information resources that you may find helpful:
1820 <UL>
1821   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1823   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1825   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1826 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1827   since the last version, which may be useful for you to be aware of, 
1828 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1829 a change in the way an aspect of Alpine works.  There, you will also find notes 
1830 on Alpine configuration.<P>
1832   <LI> The main site for Alpine contains information on configuring and solving problems
1833        with Alpine, it can be found at
1835 <CENTER><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></CENTER>  
1837   <LI> The Alpine Information Center (maintained by the University of
1838            Washington) World Wide Web site contains, among other things
1839            <UL>
1840            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1841            <LI>an overview of the basics for beginning Alpine users
1842            <LI>Technical Notes for systems administrators
1843            <LI>archives (including a searchable index) of the alpine-info 
1844 mailing list, on which matters of interest to systems/email administrators,
1845 developers, trainers, user support personnel, and others involved with Alpine 
1846 messaging on a &quot;technical&quot; level are discussed.
1847 </UL>
1848         The Alpine Information Center can be accessed with a WWW browser at:<P>
1849             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1850 </UL>
1851 <P><HR WIDTH="75%">
1852 <H1>Requesting help</H1>
1853 If the internal help, the Release Notes, the Alpine Information Center, and your 
1854 local online and print resources do not help you resolve a problem, please
1855 start by contacting your local computer support staff and asking for help.
1857 This is especially true if:
1858 <ul>
1859   <li>You suddenly have trouble sending or receiving mail.
1860   <li>You receive a "disk quota exceeded" message.
1861   <li>You have forgotten your password.
1862   <li>You think your account may have been compromised.
1863   <li>You need help viewing an attachment.
1864   <li>You need to know how to configure your:
1865       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1866       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1867       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1868       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
1869   <li>You want to know what alternative editors or spellcheckers you may be able to use.
1870   <li>You want to block email from a particular person.
1871   <li>You're going on vacation and need to autorespond to incoming mail.
1872   <li>You want to automatically file or filter incoming messages.
1873 </ul>
1875 In all of these cases,
1876 you should contact <B>your</B> support staff, because <B>only they</B> 
1877 will be able to assist you effectively. Your support staff may be, depending on who 
1878 provides you with the email account you use Alpine with, for example:<UL>
1879 <LI> the computing help desk of (a department of) your university, school, 
1880 employer, ... ; or
1881 <LI> the customer service center of your Internet Service Provider; or
1882 <LI> the friendly volunteer helpers of your Freenet; or
1883 <LI> the person who setup your computer and internet connection.
1884 </UL>
1886 Due to the large number of Alpine installations worldwide, and because we
1887 receive no funding for it, the University of Washington <B>cannot provide 
1888 individual support services outside the University of Washington</B>.
1890 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
1891 newsgroup can be a valuable source of information and assistance for Alpine 
1892 user issues.
1894 For systems/email administrators, developers, trainers, user support
1895 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
1896 level, the mailing list alpine-info is available; for information on
1897 subscribing and posting to it, see
1899 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
1902 Regardless of whom you are asking for help with Alpine, remember 
1903 to provide as much detail as you can about the
1904 nature of any problem you are encountering, such as
1905 <UL>
1906 <LI>when it first occurred;
1907 <LI>what, if anything, happened that might have brought it about;
1908 <LI>whether it still persists;
1909 <LI>whether it is reproducible, and if so, how;
1910 <LI>what, if anything, you already tried to solve it.
1911 </UL> 
1912 It may also be helpful if you specify what version of Alpine you are using 
1913 <!--chtml if pinemode="running"-->
1914 -- this is <!--#echo var="ALPINE_VERSION"--> --
1915 <!--chtml endif-->
1916 and on what system, and when the copy of Alpine you are using was created
1917 <!--chtml if pinemode="running"-->
1918 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
1919 <!--chtml endif-->
1921 <!--chtml if pinemode="running"-->
1922 <P>   
1923 When the Alpine program you are currently using was installed, a support
1924 contact email address may have been set up; in that case, you can simply select
1925 this link now to send a message to it:<BR>
1926 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
1927 <!--chtml endif-->
1928 <!--chtml if [ -r PINE_INFO_PATH ]-->
1929 <HR WIDTH="75%">Local Support Contacts:<P>
1930 <!--#include file="PINE_INFO_PATH"-->
1931 <HR WIDTH="75%">
1932 <!--chtml endif-->
1933 <P> 
1934 &lt;End of help on this topic&gt;
1935 </BODY>
1936 </HTML>
1937 ===== new_user_greeting ======
1938 <HTML>
1939 <HEAD>
1940 <TITLE>NEW USER GREETING</TITLE>
1941 </HEAD>
1942 <BODY>
1943 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1944 <BR>
1945 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1946 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
1947 select Setup/Config to see many of the options available to you. Also note
1948 that all screens have context-sensitive help text available.<P>
1949 <!--chtml if pinemode="phone_home"-->
1950 SPECIAL REQUEST:
1951 This software was originally created and maintained as a public
1952 service by the University of Washington until 2009; updates are made 
1953 available as a public service of the Alpine community. It is always 
1954 helpful to have an idea of how many users are using Alpine. Are you 
1955 willing to be counted as an Alpine user? Pressing 
1956 <A HREF="X-Alpine-Phone-Home:">Return</A>
1957 will send an anonymous (meaning, your real email address will not be revealed) 
1958 message to the Alpine developers for purposes of tallying.
1960 <!--To Exit this screen and continue your Alpine session press "E".-->
1961 <!--chtml else-->
1962 To Exit this screen and continue your Alpine session press "Return".
1963 <!--chtml endif-->
1964 </BODY>
1965 </HTML>
1966 ===== new_alpine_user_greeting ======
1967 <HTML>
1968 <HEAD>
1969 <TITLE>NEW ALPINE USER GREETING</TITLE>
1970 </HEAD>
1971 <BODY>
1972 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1973 <BR>
1974 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1975 Your Alpine configuration file indicates that you may have used Pine before
1976 but not Alpine.
1977 If you are familiar with the way Pine works, you should be comfortable
1978 using Alpine.
1979 Your Pine configuration file is automatically used for Alpine.
1980 The Release Notes may be viewed by pressing 
1981 &quot;R&quot; now or while in the MAIN MENU.
1983 <!--chtml if pinemode="phone_home"-->
1984 SPECIAL REQUEST:
1985 This software was originally created and maintained as a public
1986 service by the University of Washington until 2009; updates are made 
1987 available as a public service of the Alpine community. It is always 
1988 helpful to have an idea of how many users are using Alpine. Are you 
1989 willing to be counted as an Alpine user? Pressing 
1990 <A HREF="X-Alpine-Phone-Home:">Return</A>
1991 will send an anonymous (meaning, your real email address will not be revealed) 
1992 message to the Alpine developers for purposes of tallying.
1994 <!--To Exit this screen and continue your Alpine session press "E".-->
1995 <!--chtml else-->
1996 To Exit this screen and continue your Alpine session press "Return".
1997 <!--chtml endif-->
1998 </BODY>
1999 </HTML>
2000 ===== new_version_greeting ======
2001 <HTML>
2002 <HEAD>
2003 <TITLE>NEW VERSION GREETING</TITLE>
2004 </HEAD>
2005 <BODY>
2006 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2007 <BR>
2008 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2009 Your Alpine configuration file indicates that you may not have used 
2010 this version of Alpine before.  This version's significant changes are
2011 documented in the Release Notes, which may be viewed by pressing 
2012 &quot;R&quot; now or while in the MAIN MENU.
2014 <!--chtml if pinemode="phone_home"-->
2015 SPECIAL REQUEST:
2016 This software was originally created and maintained as a public
2017 service by the University of Washington until 2009; updates are made 
2018 available as a public service of the Alpine community. It is always 
2019 helpful to have an idea of how many users are using Alpine. Are you 
2020 willing to be counted as an Alpine user? Pressing 
2021 <A HREF="X-Alpine-Phone-Home:">Return</A>
2022 will send an anonymous (meaning, your real email address will not be revealed) 
2023 message to the Alpine developers for purposes of tallying.
2025 <!--To Exit this screen and continue your Alpine session press "E".-->
2026 <!--chtml else-->
2027 To Exit this screen and continue your Alpine session press "Return".
2028 <!--chtml endif-->
2029 </BODY>
2030 </HTML>
2032 ===== main_menu_tx ======
2033 <HTML>
2034 <HEAD>
2035 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2036 </HEAD>
2037 <BODY>
2038 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2039 <DIV ALIGN=CENTER>
2040 Version <!--#echo var="ALPINE_VERSION"-->
2041 <!--chtml if pinemode="running"-->
2042 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2043 <!--chtml endif-->
2044 </DIV>
2045 <CENTER>Copyright 2013-2016 Eduardo Chappa,
2046 <BR>Copyright 2006-2008 University of Washington.
2047 </CENTER>
2050 When you are viewing a help screen, there may be links to
2051 other topics highlighted (in Reverse video) in the text.
2052 Here is an example.
2053 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2054 highlighted.
2055 If you type carriage return (or V for View Link, see the commands at the
2056 bottom of the screen) you will be taken to a new help screen to view the
2057 Introduction.
2058 The commands at the bottom of the screen should then include
2059 &quot;P Prev Help&quot;.
2060 If you type &quot;P&quot; you will end up back here.
2061 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2062 to the place you were in Alpine when you entered Help.
2063 In this case, you would go back to the MAIN MENU.
2064 There are also other links that are highlighted in bold (or the color used
2065 by your terminal to display bold).
2066 The items after the Introduction in the TABLE OF CONTENTS are all examples
2067 of such links.
2068 In order to view those links, you first have to make the link you want
2069 to view the current link.
2070 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2071 (see bottom of screen) can do that for you.
2074 <H2>TABLE OF CONTENTS</H2>
2075 <OL>
2076   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2077   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2078 <!--chtml if [ -r PINE_INFO_PATH ]-->
2079   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2080 <!--chtml endif-->
2081   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2082   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2083   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2084   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2085   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2086   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2087   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2088   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2089   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2090   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2091   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2092   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2093   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2094   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2095   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2096   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2097   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2098   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2099   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2100   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2101   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2102   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2103   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2104   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2105   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2106 </OL>
2109 &lt;End of help on this topic&gt;
2110 </BODY>
2111 </HTML>
2112 ===== h_mainhelp_intro ======
2113 <HTML>
2114 <HEAD>
2115 <TITLE>Introduction</TITLE>
2116 </HEAD>
2117 <BODY>
2118 <H1>Introduction</H1>
2120 Alpine is an &quot;Alternatively Licensed Program for Internet
2121 News and Email&quot; produced until 2009 by the University of Washington.
2122 It is intended to be an easy-to-use program for
2123 sending, receiving, and filing Internet electronic mail messages and
2124 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2125 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2126 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2127 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2128 Directory Access Protocol).<p>
2130 Although originally designed for inexperienced email users, Alpine has
2131 evolved to support many advanced features.  There are an ever-growing
2132 number of configuration and personal-preference options, though which of
2133 them are available to you is determined by your local system managers. 
2135 <H2>WHAT ALPINE DOES...</H2>
2137 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2138 allows you to
2139 compose and read messages using Internet mail standards.  (Whether you
2140 can correspond with others on the Internet depends on whether or not your
2141 computer is connected to the Internet.)  Alpine also allows reading and
2142 posting messages on the Internet &quot;net news&quot; system, provided
2143 that your site operates a suitable news server.
2145 <H2>WHAT ALPINE DOES NOT DO...</H2>
2147 A &quot;mail user agent&quot; such as Alpine is just one part of a
2148 messaging system. Here are some things that are <B>not</B> done by Alpine,
2149 but require other programs:<P>
2150 <UL>
2151  <LI> Actual relaying of email... which is done by &quot;message transfer 
2152 agents&quot;.
2153  <LI> Vacation messages... automatically responding to incoming messages
2154  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2155 email.
2156  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2157  <LI> List processing... resending one message to a list of recipients.
2158 </UL>
2161 &lt;End of help on this topic&gt;
2162 </BODY>
2163 </HTML>
2165 ===== h_mainhelp_pinehelp ======
2166 <HTML>
2167 <HEAD>
2168 <TITLE>Alpine Help</TITLE>
2169 </HEAD>
2170 <BODY>
2171 <H1>Alpine Help</H1>
2173 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2174 use will have its own help text, explaining the choices available for that
2175 screen. This general help section, on the other hand, attempts to give an 
2176 overall picture of what Alpine is capable of doing, as well as pointers to 
2177 additional help sections about specific topics.<p>
2179 Much of the help text contains links to further help topics, similar to
2180 how the World Wide Web works.
2181 You may choose a link to view using the &quot;NextLink&quot; and
2182 &quot;PrevLink&quot; commands to change the link that is highlighted.
2183 The &quot;View Link&quot; command will then show you the highlighted link.
2184 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2185 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2186 will return you to the location in Alpine before you asked for help.
2187 For example, if you are reading this text in Alpine you may return to the
2188 help table of contents with the &quot;Prev Help&quot; command or you may view the
2189 Release notes link in the next paragraph and then return here with
2190 &quot;Prev Help&quot;.
2193 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2194 on the current Alpine version are also available from the MAIN MENU: Press
2195 <!--chtml if pinemode="function_key"-->
2196 &quot;F9&quot;
2197 <!--chtml else-->
2198 &quot;R&quot;
2199 <!--chtml endif-->
2200 to browse the release notes.  These include changes since the last release,
2201 configuration information, the history of the Alpine
2202 project, credits, and legal notices.
2204 Alpine releases are available via the world wide web at
2206 <CENTER><SAMP><A 
2207 HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP
2208 ></CENTER>
2211 If you would like to print <EM>all</EM> of Alpine's internal help text
2212 (not recommended) for a little light bedtime reading, then press
2213 <!--chtml if pinemode="function_key"-->
2214 &quot;F12&quot;
2215 <!--chtml else-->
2216 &quot;Z&quot;
2217 <!--chtml endif-->
2218 now.  (This assumes that the
2219 copy of Alpine you are using has been properly configured for printing
2220 at your site.)
2222 &lt;End of help on this topic&gt;
2223 </BODY>
2224 </HTML>
2225 ===== h_mainhelp_localsupport ======
2226 <HTML>
2227 <HEAD>
2228 <TITLE>Local Support Contacts</TITLE>
2229 </HEAD>
2230 <BODY>
2231 <H1>Local Support Contacts</H1>
2233 <!--chtml if [ -r PINE_INFO_PATH ]-->
2234 <!--#include file="PINE_INFO_PATH"-->
2235 <!--chtml else-->
2236 No Local Support Contacts configured.
2237 <!--chtml endif-->
2240 &lt;End of help on this topic&gt;
2241 </BODY>
2242 </HTML>
2244 ===== h_mainhelp_cmds ======
2245 <HTML>
2246 <HEAD>
2247 <TITLE>Giving Commands in Alpine</TITLE>
2248 </HEAD>
2249 <BODY>
2250 <H1>Giving Commands in Alpine</H1>
2252 Unless configured otherwise
2253 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2254 the bottom two lines of the screen are always used to list the
2255 commands you can give.  You press the keys that are highlighted to give
2256 the command.  The commands for getting help and going back to the main
2257 menu are always present (except when viewing help as you are now).
2258 <!--chtml if pinemode="function_key"-->
2259 <!--chtml else-->
2261 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2262 you see at the bottom of any screen. In some cases there are 3 or
2263 even 4 different
2264 sets of keys that can be seen by using the O key. <EM>All commands are 
2265 active</EM>, even if they are not currently showing at the bottom of your 
2266 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2267 remind yourself of the proper key to press to perform an operation.
2269 <H2>Control Key Commands</H2>
2270 When composing mail, and in a few other places, in Alpine you
2271 have to use Control keys. This means pressing the Control key (usually labeled 
2272 &quot;Ctrl&quot;) and the
2273 letter indicated at the same time.  Usually, this is shown with a
2274 &quot;^&quot; in front of the letter.  On some systems, certain control
2275 characters are intercepted before they get to Alpine.  As a work-around,
2276 you can press the ESCAPE key twice followed by the desired key.  For
2277 example, if Ctrl-O (^O) does not work on your system, try typing
2278 &quot;ESC ESC O&quot;.
2279 <!--chtml endif-->
2280 <H2>Paging Up and Down</H2>
2281 The &quot;+&quot; and &quot;-&quot; keys are used for
2282 moving to the next or previous page.  The space bar is a synonym for
2283 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2284 up as you do in the message composer.  On screens with a WhereIs (search)
2285 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2286 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2287 of the message or list.
2289 <H2>Return Key</H2>
2290 The return key is usually a synonym for a frequently used
2291 command.  When viewing a message, there is currently not a default
2292 command, so RETURN does nothing; when in the index, it is synonymous with
2293 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2294 enclosed in square brackets [] is the same as the return key.
2296 <H2>Control Keys Not Used By Alpine</H2>
2297 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2298 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2299 at prompts for file/folder names, control keys must be used for editing and 
2300 navigation functions.
2303 Alpine has used nearly all the control keys available.  There are, however,
2304 certain control keys that are reserved by other programs or for technical
2305 reasons.  Alpine does not use any of these keys:
2306 <DL>
2307  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2308  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2309  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2310 </DL>
2312 Note: Ctrl-S and Ctrl-Q can be subject to 
2313 <A HREF="h_special_xon_xoff">special handling</A>.
2315 In addition, while the ESC key alone is not used for command input,
2316 Alpine will recognize two consecutive ESC key presses followed by a letter 
2317 key as a substitute for control key input.  For example, the control key
2318 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2319 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2320 This is useful if the communication program you are using
2321 (e.g. Telnet) has its own, conflicting, idea of what certain control
2322 characters mean.
2325 <H2>Repainting the Screen</H2>
2326 Sometimes what is displayed on the screen will be
2327 incorrect due to noise on the phone line or other causes and you will want
2328 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2329 command to do this.  It never hurts to do it when in doubt.
2332 &lt;End of help on this topic&gt;
2333 </BODY>
2334 </HTML>
2335 ===== h_mainhelp_status ======
2336 <HTML>
2337 <HEAD>
2338 <TITLE>Titlebar Line</TITLE>
2339 </HEAD>
2340 <BODY>
2341 <H1>Titlebar Line</H1>
2343 The top line of the screen is Alpine's titlebar line.  It will always display
2344 the current version of Alpine and will also convey information about the
2345 status of the program.  This is where you look to find out what
2346 collection, folder and message number is active and where you are in Alpine.
2349 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2350 (typically your INBOX) is &quot;locked&quot; by another mail session --
2351 most likely a more recent session of Alpine has taken the INBOX lock.
2354 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2355 access a
2356 folder on a remote mail server, and for some reason, communication with
2357 the mail server has either been lost, or never successfully established.
2358 This can be a result of trying to open a non-existent folder, or one
2359 stored on an invalid or non-operational server, or it can mean that Alpine
2360 has been suspended for more that 30 minutes while accessing a remote mail
2361 server.
2364 &lt;End of help on this topic&gt;
2365 </BODY>
2366 </HTML>
2367 ===== h_mainhelp_mainmenu ======
2368 <HTML>
2369 <HEAD>
2370 <TITLE>Main Menu</TITLE>
2371 </HEAD>
2372 <BODY>
2373 <H1>Main Menu</H1>
2375 The Main Menu lists Alpine's main options.
2376 The key or keys you must type to enter your
2377 choice are to the left of each option or command name.
2378 You can type either uppercase or lowercase letters,
2379 and you should not press &lt;Return&gt; after typing the
2380 letter (unless you are specifically asking for the default,
2381 highlighted command).
2384 From the Main Menu you can choose to read online help, write (compose) and 
2385 send a message, look at an index of your mail messages, open or maintain
2386 your mail folders, update your address book, configure Alpine, and quit Alpine.
2387 There are additional options listed at
2388 the bottom of the screen as well.
2391 The Help command usually returns context-sensitive help information.
2392 However, in the Main Menu you get the most general help, which includes
2393 a Table of Contents.
2394 The last entry in the Table of Contents is an Index of help topics,
2395 so this is a good place to go if you are having trouble finding how
2396 to do something.
2398 <H2>Main Menu Commands</H2>
2399 The Alpine main menu lists the most common Alpine functions. A <a
2400 href="h_main_menu_commands">full list of these
2401 commands</a> and what they do is available.
2403 &lt;End of help on this topic&gt;
2404 </BODY>
2405 </HTML>
2406 ===== h_mainhelp_abooks ======
2407 <HTML>
2408 <HEAD>
2409 <TITLE>Address Books</TITLE>
2410 </HEAD>
2411 <BODY>
2412 <H1>Address Books</H1>
2415 As you use email, you can build a list of your regular email correspondents 
2416 in your Alpine
2417 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2418 screen. Your
2419 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2420 You can use the address book to store email addresses for individuals or
2421 groups, to create easily
2422 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2423 address when you are composing a message.
2425 There are two ways to add addresses to your address book: you can add them 
2426 manually or take them from messages (by pressing T to access the Take command). 
2427 With either method, you specify nicknames for your correspondents. A single 
2428 address book entry (or nickname) can point to just one email address, or, it can
2429 point to more than one. When it points to more than one, it is called a 
2430 distribution list. Each distribution list has a nickname, a full name, and a 
2431 list of addresses. These
2432 addresses may be actual addresses, other nicknames in your address book, or 
2433 other
2434 distribution lists.
2437 Additional information is available in Alpine's online help:
2438 <ul>
2439   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2440 </ul>
2442 &lt;End of help on this topic&gt;
2443 </BODY>
2444 </HTML>
2445 ===== h_mainhelp_ldap ======
2446 <HTML>
2447 <HEAD>
2448 <TITLE>LDAP</TITLE>
2449 </HEAD>
2450 <BODY>
2451 <H1>LDAP</H1>
2453 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2454 an organization's shared
2455 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2456 large address
2457 books, rather like the White Pages provided by the phone company. As an Alpine 
2458 user, it is not
2459 necessary to know much about how this works, only how to use it and how to 
2460 configure
2463 More information on configuring LDAP is available in Alpine's online help:
2464 <ul>
2465   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2466 </ul>
2468 Additional help on using LDAP in Alpine is also available:
2469 <ul>
2470   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2471 </ul>
2473 &lt;End of help on this topic&gt;
2474 </BODY>
2475 </HTML>
2476 ===== h_mainhelp_index ======
2477 <HTML>
2478 <HEAD>
2479 <TITLE>Index of Messages</TITLE>
2480 </HEAD>
2481 <BODY>
2482 <H1>Index of Messages</H1>
2484 In Alpine's message index, the selected message is highlighted. The first 
2485 column on the left is blank, shows a &quot;+&quot; if the message was
2486 sent directly to you (i.e., it is not a
2487 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2489 The second column may be blank, or it may contain:
2490 <ul>
2491   <li>"N" if the message is new (unread), </li>
2492   <li>"A" if you have answered the message (using the Reply command), </li>
2493   <li>"D" if you have marked the message for deletion.</li>
2494 </ul>
2497 Note: If you answer a message as well as mark it deleted (in either order), 
2498 you will only see the &quot;D&quot;.
2501 The rest of the columns in the message line show you the message
2502 number, date sent, sender, size, and subject. For details, press ? (Help).  
2503 The behavior and appearance of the Index screen is highly configurable.
2504 In the Setup/Config screen search (with the WhereIs command) for options
2505 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2506 many of the configuration possibilities.
2507 In particular, the
2508 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2509 option may be used to configure the look of the standard MESSAGE INDEX lines
2510 in many different ways.
2511 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2512 read the help text there for more information.
2514 Most of the commands you need to handle your messages are visible at the
2515 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2516 commands that are available.
2517 You do not need to see these &quot;other commands&quot;
2518 on the screen to use them. That is, you never need to press O as a prefix
2519 for any other command.
2522 Additional information is available in Alpine's online help:
2523 <ul>
2524   <li><a href="h_mail_index">Message Index Commands</a></li>
2525 </ul>
2527 &lt;End of help on this topic&gt;
2528 </BODY>
2529 </HTML>
2530 ===== h_mainhelp_reading ======
2531 <HTML>
2532 <HEAD>
2533 <TITLE>Reading Messages</TITLE>
2534 </HEAD>
2535 <BODY>
2536 <H1>Reading Messages</H1>
2538 The message text screen shows you the text of the message along with
2539 its header. If a message has attachments, those will be listed (but not
2540 displayed) also.  The titlebar line displays information about the currently
2541 open message, folder and collection.  You see the name of the collection
2542 (if there is one) in angle brackets, then the name of the folder, then the
2543 message number and finally the position within the current message (in
2544 percent). If the message is marked for deletion
2545 &quot;DEL&quot; will appear in the
2546 upper right as well.
2549 As with every Alpine screen, the bottom two lines show you the commands 
2550 available.
2552 <P>Additional information is available in Alpine's online help:
2553 <ul>
2554   <li><a href="h_mail_view">Message Text Screen</a></li>
2555   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2556   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2557 </ul>
2559 &lt;End of help on this topic&gt;
2560 </BODY>
2561 </HTML>
2562 ===== h_mainhelp_composing ======
2563 <HTML>
2564 <HEAD>
2565 <TITLE>Composing Messages</TITLE>
2566 </HEAD>
2567 <BODY>
2568 <H1>Composing Messages</H1>
2570 To write a message, press C (Compose). You see the Compose Message
2571 screen, which is divided into two parts: the header area and the message
2572 text area. The header area is where information on the recipient (the To:
2573 field) and the subject line go, while the message text area contains the
2574 actual text of the email message. Different commands are available to you
2575 when your cursor is in different areas on this screen. To see additional
2576 help on commands in either the message text or header area, type
2577 <Control>G (Get help).
2580 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2581 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2583 <P>The following information from Alpine's online help may prove useful:
2584 <ul>
2585   <li><a href="h_composer_to">Message Header Commands</a></li>
2586   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2587   <li><a href="h_composer">Composer Commands</a></li>
2588   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2589   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2590   <li><a href="h_compose_send">Send Command</a></li>
2591   <li><a href="h_compose_spell">Spell Check Command</a></li>
2592 </ul>
2594 &lt;End of help on this topic&gt;
2595 </BODY>
2596 </HTML>
2597 ===== h_mainhelp_collections ======
2598 <HTML>
2599 <HEAD>
2600 <TITLE>Collection Lists</TITLE>
2601 </HEAD>
2602 <BODY>
2603 <H1>Collection Lists</H1>
2605 Collection lists are Alpine's way of organizing groups of folders. Each
2606 "collection" can reside on a different server, for example, and contain a
2607 different group of mail folders.
2610 For more information on this, see:
2611 <ul>
2612   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2613 </ul>
2615 Additional information relating to collection lists is also available in 
2616 Alpine's online
2617 help:
2618 <ul>
2619   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2620   <li><a href="h_collection_screen">Collection List Screen</a></li>
2621 </ul>
2623 &lt;End of help on this topic&gt;
2624 </BODY>
2625 </HTML>
2626 ===== h_mainhelp_folders ======
2627 <HTML>
2628 <HEAD>
2629 <TITLE>Folders</TITLE>
2630 </HEAD>
2631 <BODY>
2632 <H1>Folders</H1>
2634 Messages can quickly accumulate in your INBOX folder. If you use email
2635 often, you soon could have hundreds. You need to delete messages you do
2636 not want, and you can use folders to organize messages you wish to save. A
2637 folder is a collection of one or more messages that are stored (just like
2638 the messages in your INBOX) so you can access and manage them.
2641 You can organize your email messages into different folders by topic,
2642 correspondent, date, or any other category that is meaningful to you. You
2643 can create your own folders, and Alpine automatically provides three:
2644 <ul>
2645   <li>The INBOX folder: messages sent to you are listed in this folder.
2646       When you first start Alpine and go to the Message Index screen, you are
2647 looking at the list of messages in your INBOX folder. Every incoming
2648 message remains in your INBOX until you delete it or save it in another
2649 folder. </li>
2650   <li>The sent-mail folder: copies of messages you send are stored in this 
2651 folder. This is
2652 convenient if you cannot remember whether you actually sent a message and want 
2653 to check, or
2654 if you want to send a message again.</li>
2655   <li>The saved-messages folder: copies of messages you save are stored in this 
2656 folder
2657 unless you choose to save them to other folders you create yourself.</li>
2658 </ul>
2661 More information about folders is available in Alpine's online help:
2662 <ul>
2663   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2664   <li><a href="h_folder_maint">Help for Folder List</a></li>
2665   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2666   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2667 Explained</a></li>
2668   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2669 </ul>
2671 &lt;End of help on this topic&gt;
2672 </BODY>
2673 </HTML>
2674 ===== h_mainhelp_color ======
2675 <HTML>
2676 <HEAD>
2677 <TITLE>Color</TITLE>
2678 </HEAD>
2679 <BODY>
2680 <H1>Color</H1>
2682 If the terminal emulator you are using is capable of displaying color or if
2683 you are using PC-Alpine, then it is possible to set up Alpine so that various
2684 parts of the display will be shown in colors you configure. This is done
2685 using the Setup Color screen, available from the MAIN MENU by selecting
2686 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2687 stands for Config in this context).
2690 For example, you may color things like the titlebar, the current item,
2691 the keymenu, and the status messages.
2692 You may also color lines in the index, and headers and quoted text in the
2693 MESSAGE TEXT screen.
2694 You use the Color Setup screen for configuring most of this, but you must
2695 use the IndexColor setup for coloring whole index lines.
2696 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2699 The following entries in Alpine's online help provide additional information 
2700 about how to use color:
2701 <UL>
2702   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2703   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2704   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2705   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2706 </UL>
2708 &lt;End of help on this topic&gt;
2709 </BODY>
2710 </HTML>
2711 ===== h_mainhelp_mouse ======
2712 <HTML>
2713 <HEAD>
2714 <TITLE>Using a Mouse</TITLE>
2715 </HEAD>
2716 <BODY>
2717 <H1>Using a Mouse</H1>
2719 If you are using PC-Alpine mouse support is turned on automatically.
2720 If you are using UNIX Alpine within an X terminal window or within
2721 a terminal emulator that supports an xterm-style mouse, then you may
2722 turn on support for the mouse with the feature
2723 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2724 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2726 PC-Alpine offers considerable mouse support.  You can view what is
2727 &quot;clickable&quot; by dragging your mouse over any screen; when the
2728 arrow cursor changes into a hand, you found something. Mouse-click
2729 possibilities include navigating between screens and folders and
2730 double-clicking on hyperlinks to open your Web browser.
2731 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2732 screen.  Examples of right-click options include &quot;copy&quot; after
2733 selecting text to copy and &quot;View in New Window&quot; when you click
2734 on a particular message in the Message Index. The menu choices available
2735 to you will vary based upon what screen is open, where on the screen your
2736 cursor is located, and even what action you have already taken.
2737 Within a folder, you may set the &quot;Important&quot; flag on any
2738 message.
2740 X terminal mouse support is more limited but still quite powerful.
2741 As with PC-Alpine, clicking on any of the commands in the keymenu at
2742 the bottom of the screen will execute that command as if you typed it.
2743 Double-clicking on a link, for example the link to the
2744 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2745 will take you to that link.
2746 Double-clicking on an index line will view the message, and so on.
2748 &lt;End of help on this topic&gt;
2749 </BODY>
2750 </HTML>
2751 ===== h_mainhelp_keywords ======
2752 <HTML>
2753 <HEAD>
2754 <TITLE>Keywords</TITLE>
2755 </HEAD>
2756 <BODY>
2757 <H1>Keywords</H1>
2759 Within a folder, you may set the &quot;Important&quot; flag on any
2760 message.
2761 This doesn't have any system-defined meaning and is only called
2762 the Important flag because many users use it to signify that a message
2763 is important to them in some way.
2765 You may also define your own set of keywords.
2766 You might know these as user defined flags or as labels.
2767 These are similar to the Important flag but you choose the names for yourself.
2769 Alpine will only display keywords that
2770 have been added by you in the Flag Details screen or
2771 that have been configured by you using the Setup/Config option
2772 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2773 Keywords set by other means (for example, by another email client) will not
2774 show up in Alpine unless you configure Alpine to know about them.
2775 They will show up in the Flag Details screen, but will not show up, for example,
2776 in the index line.
2779 The following entries in Alpine's online help provide additional information 
2780 about how to use keywords:
2781 <ul>
2782   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2783   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2784 </ul>
2786 &lt;End of help on this topic&gt;
2787 </BODY>
2788 </HTML>
2789 ===== h_mainhelp_roles ======
2790 <HTML>
2791 <HEAD>
2792 <TITLE>Roles</TITLE>
2793 </HEAD>
2794 <BODY>
2795 <H1>Roles</H1>
2797 You may play different roles depending on who you are replying to. For
2798 example, if you are replying to a message addressed to help-desk you may
2799 be acting as a Help Desk Worker. That role may require that you use a
2800 different return address and/or a different signature.
2803 To configure roles, go to the MAIN MENU and use the Setup command
2804 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2805 The following entries in Alpine's online help provide additional information 
2806 about how to
2807 use roles:
2808 <ul>
2809   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2810   <li><a href="h_role_select">Roles Screen</a></li>
2811 </ul>
2813 &lt;End of help on this topic&gt;
2814 </BODY>
2815 </HTML>
2816 ===== h_mainhelp_filtering ======
2817 <HTML>
2818 <HEAD>
2819 <TITLE>Filtering</TITLE>
2820 </HEAD>
2821 <BODY>
2822 <H1>Filtering</H1>
2824 The software that actually delivers mail (the stuff that happens
2825 before Alpine is involved) for you is in a better position to do mail filtering
2826 than Alpine itself.
2827 If possible, you may want to look into using that sort of mail filtering to
2828 deliver mail to different folders, delete it, or forward it.
2829 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2832 Filtering is a way to automatically move certain messages from one folder
2833 to another or to automatically delete messages.
2834 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2835 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2836 Alpine doesn't have the ability to forward mail to another address or
2837 to deliver vacation messages.
2840 To configure filtering, go to the MAIN MENU and use the Setup command
2841 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2842 The following entries in Alpine's online help provide additional information 
2843 about how to use filtering:
2844 <UL>
2845   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2846 </UL>
2848 &lt;End of help on this topic&gt;
2849 </BODY>
2850 </HTML>
2851 ===== h_mainhelp_patterns ======
2852 <HTML>
2853 <HEAD>
2854 <TITLE>Patterns</TITLE>
2855 </HEAD>
2856 <BODY>
2857 <H1>Patterns</H1>
2859 Patterns are used with Roles, Filtering, Index Coloring,
2860 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2861 The following entries in Alpine's online help provide information 
2862 about using Patterns:
2863 <UL>
2864   <LI> <A HREF="h_rule_patterns">Patterns</A>
2865 </UL>
2867 &lt;End of help on this topic&gt;
2868 </BODY>
2869 </HTML>
2870 ===== h_mainhelp_cmdlineopts ======
2871 <HTML>
2872 <HEAD>
2873 <TITLE>Command Line Options</TITLE>
2874 </HEAD>
2875 <BODY>
2876 <H1>Command Line Options</H1>
2878 Alpine accepts a number of command line arguments, allowing you, for
2879 example, to start Alpine and immediately access a particular folder.
2880 Many of these arguments overlap with options in the Alpine configuration file.
2881 If there is a difference, then an option set on the command line takes
2882 precedence.
2883 Alpine expects command line arguments (other than addresses) to be
2884 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
2885 A <a href="h_command_line_options">full list</a> of command line
2886 possibilities is available.
2888 &lt;End of help on this topic&gt;
2889 </BODY>
2890 </HTML>
2891 ===== h_mainhelp_config ======
2892 <HTML>
2893 <HEAD>
2894 <TITLE>Alpine Configuration</TITLE>
2895 </HEAD>
2896 <BODY>
2897 <H1>Alpine Configuration</H1>
2899 Unless it has been administratively disabled, the Setup command on the
2900 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
2901 The possible subcommands are for general Configuration settings,
2902 Printer settings, Changing your Password, Signature setup,
2903 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
2904 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
2905 and Color configuration.
2906 In particular, the &quot;Config&quot; subcommand has many features you may
2907 set or unset and many other configuration variables that may be set to change
2908 the way Alpine works.
2909 Every one of the hundreds of options available in that configuration settings
2910 screen has help text associated with it.
2911 You may read that text by moving the cursor to highlight the option and then
2912 typing the Help command.
2914 These settings are stored in your personal
2915 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
2916 <A HREF="h_config_remote_config">remotely</A>),
2917 but on shared systems these settings
2918 may be over-ridden by a system-wide control file (due to local site
2919 security or support policies).  A global pine configuration file can also
2920 be used to set default values for all Alpine users on a particular system.
2921 Power users may be interested in splitting their personal configuration
2922 data into two pieces, a generic piece and
2923 <A HREF="h_config_exceptions">exceptions</A> which apply to
2924 a particular platform.
2925 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
2926 General Alpine configuration information can be found
2927 <A HREF="h_news_config">here</A>.
2929 &lt;End of help on this topic&gt;
2930 </BODY>
2931 </HTML>
2932 ===== h_mainhelp_aggops ======
2933 <HTML>
2934 <HEAD>
2935 <TITLE>Aggregate Operations</TITLE>
2936 </HEAD>
2937 <BODY>
2938 <H1>Aggregate Operations</H1>
2940 When you are in the MESSAGE INDEX, the available commands
2941 (for example, Delete, Undelete, Save, Reply, and so on)
2942 normally act on a single message.
2943 So, for example, if you press the Delete command, the currently highlighted
2944 message is marked Deleted.
2945 These commands that normally act on a single message may be applied to
2946 several messages at once instead.
2948 By default this feature is turned on, but it could be administratively turned
2949 off to reduce complexity.
2950 The feature
2951 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
2952 in the Setup/Config screen is used to turn it off or on.
2953 When this feature is turned on, the four commands &quot;Select&quot;,
2954 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
2955 are available.
2956 The two selection commands allow you to mark a set of
2957 messages as being &quot;selected&quot;.
2958 The &quot;ZoomMode&quot; command will toggle between
2959 displaying only the selected messages and displaying all the messages.
2960 The &quot;Apply&quot; command allows you to
2961 apply one of the regular MESSAGE INDEX commands to all of the selected
2962 messages instead of to only the highlighted message.
2964 An example aggregate operation would be to catch up when reading
2965 a news group.
2966 That is, get rid of all the messages in the news group so that you can
2967 start fresh.
2968 The easiest way to do this in Alpine is to use aggregate operations.
2969 You want to Delete all of the messages in the group.
2970 You could start at the top and type &quot;D&quot; once for every message.
2971 A much faster method is to first Select all of the messages in the group,
2972 and then Delete all of them.
2973 This would take four keystrokes:
2975 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
2976 <BR>
2977 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
2979 Another use of Select is to use it for searching for a particular message
2980 or set of messages in a large folder.
2981 You may know that the message was From a certain user.
2982 You could select all messages from that user to start, and use Zoom to
2983 look at only those messages.
2984 If there were still too many messages to look at you could Narrow the
2985 set of messages further by selecting from all of those messages only
2986 the ones that were after a certain date, or contained a particular phrase
2987 in the Subject, or were too a particular address, and so on.
2988 That may be the end of what you are doing, or you may want to use Apply to
2989 Save or Forward or Print all of the selected messages.
2991 Some related help topics are
2992 <UL>
2993 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
2994 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
2995 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
2996 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
2997 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
2998 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
2999 </UL>
3001 &lt;End of help on this topic&gt;
3002 </BODY>
3003 </HTML>
3004 ===== h_mainhelp_readingnews ======
3005 <HTML>
3006 <HEAD>
3007 <TITLE>Reading News</TITLE>
3008 </HEAD>
3009 <BODY>
3010 <H1>Reading News</H1>
3012 <H2>Background</H2>
3013 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3014 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3015 Usenet newsgroups allow groups of people with common interests to discuss 
3016 particular topics. You might find newsgroups related to your career, or you 
3017 might wish to check out the online discussion among the fans of your favorite 
3018 television show. 
3020 <H2>Configuring Alpine for Reading News</H2>
3021 Alpine often arrives
3022 pre-configured by your system administrator to automatically access the
3023 newsgroups offered by your organization, Internet Service Provider, or
3024 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3025 need additional details on <a href="h_configuring_news">how to
3026 configure Alpine to read news</a>.
3028 <H2>Accessing Newsgroups</H2>
3029 The first step in reading news is to access the newsgroups collections
3030 screen from Alpine. If everything is configured properly, you should be able
3031 to do this by first typing L (folder List), then selecting the folder
3032 collection listed as "News." The actual name of this collection may differ
3033 from system to system.
3035 <H2>Subscribing to Newsgroups</H2>
3037 Once you have accessed the news collection, you need to subscribe to a
3038 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3039 will keep a record of the newsgroups in which you are interested and which
3040 articles in those newsgroups have been read.
3042 <H2>Using Newsgroups</H2> 
3043 Alpine uses the similar commands to read news as to read mail. For example,
3044 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3045 and the R command Replies to a news posting. Basically, Alpine allows you to
3046 read news as if it were mail, so you don't need to change the way you
3047 interact with Alpine.
3049 There is also additional Alpine help available on 
3050 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3052 &lt;End of help on this topic&gt;
3053 </BODY>
3054 </HTML>
3055 ===== h_mainhelp_securing ======
3056 <HTML>
3057 <HEAD>
3058 <TITLE>Securing your Alpine Session</TITLE>
3059 </HEAD>
3060 <BODY>
3061 <H1>Securing your Alpine Session</H1>
3063 By default, Alpine will attempt to connect to an IMAP server on the normal
3064 IMAP service port (143).
3065 If the Alpine you are using has been built to
3066 support &quot;Transport Layer Security&quot; (TLS)
3067 and &quot;Secure Sockets Layer&quot; (SSL) 
3068 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3069 and the server offers the STARTTLS capability, then a secure (encrypted)
3070 session will be established.
3072 When you are connected to a remote folder the titlebar will contain a plus sign
3073 in the far right column if the connection is encrypted using TLS or SSL.
3074 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3075 if the connection is encrypted.
3077 <H2>More Information on Alpine with SSL and TLS</H2>
3078 <UL>
3079 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3080 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3081 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3082 <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>
3083 </UL>
3084 <H2>Here are some other security-related features and options</H2>
3086 <UL>
3087 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3088 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3089 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3090 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3091 </UL>
3093 &lt;End of help on this topic&gt;
3094 </BODY>
3095 </HTML>
3096 ===== h_mainhelp_problems ======
3097 <HTML>
3098 <HEAD>
3099 <TITLE>Reporting Problems</TITLE>
3100 </HEAD>
3101 <BODY>
3102 <H1>Reporting Problems</H1>
3104 We ask that you first read the relevant help screens and then seek
3105 assistance from your own local support staff.  Once you are sure that your
3106 difficulty is not a local configuration problem, you might look at the
3107 help section explaining where to look for
3108 <A HREF="h_finding_help">more information</A> and where to 
3109 get assistance.
3112 <ADDRESS>
3113    Eduardo Chappa &lt;chappa@gmx.com&gt;
3114 </ADDRESS>
3117 &lt;End of help on this topic&gt;
3118 </BODY>
3119 </HTML>
3120 ===== h_main_menu_commands ======
3121 <HTML>
3122 <HEAD>
3123 <TITLE>MAIN MENU COMMANDS</TITLE>
3124 </HEAD>
3125 <BODY>
3126 <H1>MAIN MENU COMMANDS</H1>
3128 <!--chtml if pinemode="function_key"-->
3129 &nbsp;Available&nbsp;Commands&nbsp;--
3130 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3131 &nbsp;------------------------------
3132 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3133 ----------<BR>
3134 &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>
3135 &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>
3136 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3137 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3138 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3139 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3140 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3141 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3142 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3143 &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;
3144 &nbsp;F7&nbsp;&nbsp;<A 
3145 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3146 &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;
3147 &nbsp;F8&nbsp;&nbsp;<A 
3148 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3149 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3150 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 
3151 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3152 &nbsp;F10&nbsp;<A 
3153 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 
3154 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3155 &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;
3156 &nbsp;F11&nbsp;<A 
3157 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3158 <!--chtml else-->
3159 &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>
3160 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3161 &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>
3162 &nbsp;C&nbsp;&nbsp;<A 
3163 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>
3164 &nbsp;I&nbsp;&nbsp;<A 
3165 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>
3166 &nbsp;L&nbsp;&nbsp;<A 
3167 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>
3168 &nbsp;A&nbsp;&nbsp;<A 
3169 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3170 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3171 &nbsp;S&nbsp;&nbsp;<A 
3172 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 
3173 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3174 &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>
3175 &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 
3176 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3177 <!--chtml endif-->
3180 NOTE:
3181 <OL>
3182  <LI>For help on a particular command, highlight the bold text associated
3183 with it above and hit Return.
3184  <LI> The availability of certain commands (e.g. some of the options under
3185 SETUP) is determined by Alpine configuration files and system capabilities.
3186 At some sites, certain commands may not be available due to security or
3187 support concerns.
3188 </OL>
3190 &lt;End of help on this topic&gt;
3191 </BODY>
3192 </HTML>
3194 ===== h_command_line_options ======
3195 <HTML>
3196 <HEAD>
3197 <TITLE>COMMAND LINE OPTIONS</TITLE>
3198 </HEAD>
3199 <BODY>
3200 <H1>COMMAND LINE OPTIONS</H1>
3201 Possible starting arguments for Alpine:
3203 <DL COMPACT>
3205 <DT> <EM>[addresses]</EM>
3207 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3208 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3209 <EM>Alpine</EM> will startup in
3210 the composer with a message started to the addresses specified.
3211 Once the message is sent, the <EM>Alpine</EM> session closes.
3212 Standard input redirection is allowed.
3213 Separate multiple addresses with a space between them.
3214 Addresses are placed in the &quot;To&quot; field only.
3217 <DT> &lt; <EM>file</EM>
3219 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3220 into the body of the message.
3221 Once the message is sent, the <EM>Alpine</EM> session closes. 
3224 <DT> -attach <EM>file</EM>
3226 <DD> Go directly into composer with given file attached.
3229 <DT> -attachlist <EM>file-list</EM>
3231 <DD> Go directly into composer with given files attached.
3232 This must be the last option on the command line.
3235 <DT> -attach_and_delete <EM>file</EM>
3237 <DD> Go directly into composer with given file attached, delete when finished.
3240 <DT> -aux <EM>local_directory</EM>
3242 <DD> <EM>PC-Alpine</EM> only.
3243 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3244 files, like debug files, address books, and signature files.  The pinerc may 
3245 be local or remote.
3248 <DT> -bail
3250 <DD> If the personal configuration file doesn't already exist, exit.
3251 This might be useful if the configuration file is accessed using some
3252 remote filesystem protocol. If the remote mount is missing this will cause
3253 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3256 <DT> -c <EM>n</EM>
3258 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3259 This is used when there are multiple folder collections (contexts) and you 
3260 want to open a folder not in the primary collection.
3263 <DT> -conf
3265 <DD> Configuration: Prints a sample system configuration file to the
3266 screen or standard output. To generate an initial system configuration 
3267 file, execute
3269 <PRE><CODE>
3270                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3271 </CODE></PRE>
3274 To generate a system configuration file using settings from an old
3275 system configuration file, execute
3277 <PRE><CODE>
3278                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3279 </CODE></PRE>
3281 A system configuration file is not required.
3284 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3286 <DD> Copy an address book file to a remote address book folder.
3287 If the remote folder doesn't exist, it will be created.
3288 If it exists but the first message in the folder isn't a remote address
3289 book header message, the copy will be aborted.
3290 This flag will not usually be used by a user.
3291 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3292 and copy entries from the local address book by using aggregate Save in
3293 the address book screen.
3296 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3298 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3299 If the remote folder doesn't exist, it will be created.
3300 If it exists but the first message in the folder isn't a remote pinerc
3301 header message, the copy will be aborted.
3302 This flag may be useful to users who already have a local pinerc file and
3303 would like to convert it to a remote pinerc folder and use that instead.
3304 This gives a way to bootstrap that conversion without having to manually
3305 reset all of the variables in the remote pinerc folder.
3308 <DT> -d <EM>debug-level</EM>
3310 <DD> Debug Level:  Sets the level of debugging information written by
3311 <EM>Alpine</EM>.
3312 <EM>debug-level</EM> can be set to any integer 0-9.
3313 A debug level of 0 turns off debugging for the session.
3314 (Actually there are some levels higher than 9, but you probably don't
3315 want to see them.)
3318 <DT> -d <EM>keywords</EM>
3320 <DD> You may use a more detailed version of the debugging flag to set
3321 the debug level in separate parts of <EM>Alpine</EM>.
3322 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3323 verbose=0..9.
3324 <EM>Flush</EM> causes debugging information to be flushed immediately to
3325 the debug file as it is written.
3326 <EM>Verbose</EM> is the general debugging verbosity level.
3327 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3328 is useful when you are trying to figure out what is responsible for delays.
3329 <EM>Numfiles</EM> sets the number of debug files saved.
3330 <EM>Imap</EM> sets the debug level for the debugging statements related
3331 to the conversation with the IMAP server, and more generally, for the
3332 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3333 <EM>Tcp</EM> turns on some TCP/IP debugging.
3336 <DT> -f <EM>folder</EM>
3338 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3339 of the standard INBOX.
3342 <DT> -F <EM>file</EM>
3344 <DD> Open named text file for viewing and forwarding.
3347 <DT> -h
3349 <DD> Help:  Prints the list of available command-line arguments to the
3350 screen.
3353 <DT> -i
3355 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3356 screen instead of the MAIN MENU.
3359 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3362 <DT> -I <EM>a,b,c,...</EM>
3364 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3365 sequence of commands upon startup.
3366 This allows users to get <EM>Alpine</EM> to start in any
3367 of its menus/screens.
3368 You cannot include any input to the composer in the initial keystrokes.
3369 The key &lt;Return&gt; is represented by a ``CR'' in
3370 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3371 Control keys are two character sequences beginning with ``^'', such as
3372 ``^I''.
3373 A tab character is ``TAB''.
3374 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3375 ``DOWN'', ``LEFT'', and ``RIGHT''.
3376 A restriction is that you can't mix function keys and character keys in this
3377 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3378 A user can always use only <EM>character</EM> keys in the startup list even
3379 if he or she is using <EM>function</EM> keys normally, or vice versa.
3380 If an element in this list is a string of characters surrounded by double
3381 quotes (&quot;) then it will be expanded into the individual characters in
3382 the string, excluding the double quotes.
3385 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3388 <DT> -install
3390 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3391 some basic information to help with getting properly set up.
3394 <DT> -k
3396 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3397 the input of commands to be function-keys.
3398 Otherwise, commands are linked to the regular character keys.
3401 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3402 <EM>Feature-List</EM>.
3405 <DT> -n <EM>n</EM>
3407 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3408 FOLDER INDEX screen with the current message being the specified
3409 message number.
3412 <DT> -nosplash
3414 <DD> <EM>PC-Alpine</EM> only.
3415 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3416 This may be helpful for certain troubleshooting or terminal server scenarios.
3419 <DT> -o <EM>folder</EM>
3421 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3424 <DT> -p <EM>pinerc</EM>
3426 <DD> Uses the named file as the personal configuration file instead of
3427 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3428 Alpinerc may be either a local file or a remote configuration folder.
3431 <DT> -P <EM>pinerc</EM>
3433 <DD> Uses the named file as the system wide configuration file instead of
3434 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3435 Alpinerc may be either a local file or a remote configuration folder.
3438 <DT> -passfile <EM>passfile</EM>
3440 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3441 This should be a fully-qualified filename.
3444 <DT> -pinerc <EM>file</EM>
3446 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3447 settings of variables that the user has made.
3448 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3451 <DT> -r
3453 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3454 <EM>Alpine</EM> in restricted mode can only send email to itself.
3455 Save and export are limited.
3458 <DT> -registry <EM>cmd</EM>
3460 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3461 <EM>Alpine</EM>'s registry entries.
3462 Possible values for <EM>cmd</EM> are set, clear, and dump.
3463 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3464 entries according to its current settings.
3465 <EM>Clear</EM> will clear the registry values.
3466 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3467 <EM>Dump</EM> will display the values of current registry settings.
3468 Note that the dump command is currently disabled.
3469 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3470 the registry only if there currently aren't any values set.
3473 <DT> -sort <EM>key</EM>
3475 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3476 FOLDER INDEX screen.
3477 <EM>Key</EM> can have the following values: 
3478 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3479 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3480 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3481 The default value is &quot;arrival&quot;.
3482 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3485 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3488 <DT> -uninstall
3490 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3491 in Windows settings.  The registry settings are removed and
3492 the password cache is cleared.
3495 <DT> -url <EM>url</EM>
3497 <DD> Open the given URL.
3500 <DT> -v
3502 <DD> Version:  Print version information to the screen.
3505 <DT> -x <EM>exceptions_config</EM>
3507 <DD> Configuration settings in the exceptions configuration override your normal
3508 default settings.
3509 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3512 <DT> -z
3514 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3515 will suspend the <EM>Alpine</EM> session.
3518 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3519 <EM>Feature-List</EM>.
3522 <DT> -<EM>option</EM>=<EM>value</EM>
3524 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3525 For example, <EM>-signature-file=sig1</EM> or
3526 <EM>-Feature-List=signature-at-bottom</EM>.
3527 Note:  Feature-List values are
3528 additive and features may be preceded with no- to turn them off.
3529 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3530 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3531 <EM>-Feature-List=signature-at-bottom</EM>.
3534 </DL>
3536 &lt;End of help on this topic&gt;
3537 </BODY>
3538 </HTML>
3539 ===== h_configuring_news ======
3540 <HTML>
3541 <HEAD>
3542 <TITLE>CONFIGURING NEWS</TITLE>
3543 </HEAD>
3544 <BODY>
3545 <H1>CONFIGURING NEWS</H1>
3546 Alpine can access news folders in any one of three different ways:
3547 <DL>
3548 <DT>REMOTE NNTP</DT>
3549 <DD>Using the Network News Transport Protocol (NNTP) to
3550 access news on a remote news server.  In this case the newsrc file is
3551 stored on the machine where Alpine is running.
3554 To specify a remote news-collection accessed via NNTP use the
3555 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3556 Server: value to the NNTP server's hostname appended with the
3557 communication method &quot;/service=NNTP&quot;, and set the Path:
3558 value to the &quot;#news.&quot; namespace (without the quotes).  See
3559 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3560 help text for a more complete explanation of access method, and the
3561 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3562 text for a more complete explanation of &quot;namespace&quot;.
3564 Instead of specifying a news-collection, you may simply set the
3565 <A HREF="h_config_nntp_server">NNTP Server</A>
3566 option, which will cause Alpine to create a default news-collection for you.
3567 Another NNTP option that may be of interest is
3568 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3570 <DT>REMOTE IMAP</DT>
3571 <DD>Using the Internet Message Access Protocol (IMAP) to
3572 access news on a remote news server.  In this case, your newsrc file is
3573 stored on the news server, in your home directory, so you must have an
3574 account on the news server, but you would be running Alpine on a different
3575 machine.  The news server must be running an IMAPd server process. 
3578 To specify a remote news-collection accessed via IMAP use the
3579 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3580 Server: value to the IMAP server's hostname, and set the Path: value
3581 to the &quot;#news.&quot; namespace (without the quotes).  See the
3582 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3583 text for a more complete explanation of &quot;namespace&quot;.
3585 </DD>
3587 <DT>LOCAL</DT>
3588 <DD>Using local file access to the news database.  In this
3589 case, your newsrc file is stored on the news server, in your home
3590 directory, so you must have an account on the news server, and you would
3591 be running Alpine on the same machine.
3594 To specify a local news-collection use the SETUP/collectionList
3595 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3596 set the Path: value to the &quot;#news.&quot; namespace (without the
3597 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3598 field's help text for a more complete explanation of &quot;namespace&quot;.
3600 </DD>
3601 </DL>
3605 NOTE: Should no news-collection be defined as above, Alpine will
3606 automatically create one using the Setup/Config screen's
3607 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3608 will be created as a &quot;Remote NNTP&quot; as described above.
3612 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3613 possible.  If you don't have an account on the news server, or if the news
3614 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3615 sure, ask your service provider, university, or company for help.)  In
3616 this case, your Unix .newsrc file can be transferred to your PC.  A good
3617 place to put it would be in the same directory as your PINERC file, under
3618 the name NEWSRC, but you can 
3619 <A HREF="h_config_newsrc_path">specify a different location</A>
3620 via Alpine's Setup/Config screen.
3623 Other configuration features related to news are
3624 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3625 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3626 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3627 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3628 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3629 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3630 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3631 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3634 &lt;End of help on this topic&gt;
3635 </BODY>
3636 </HTML>
3637 ===== h_reading_news ======
3638 <HTML>
3639 <HEAD>
3640 <TITLE>READING NEWS</TITLE>
3641 </HEAD>
3642 <BODY>
3643 <H1>READING NEWS</H1>
3645 Alpine uses almost the same commands for manipulating news folders as for
3646 mail folders.  This means, for example, that when you are done with a
3647 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3648 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3649 most newsreaders, wherein a message is implicitly dismissed after you have
3650 looked at it once. We strongly believe that Alpine should offer as much
3651 consistency as possible between mail and news, so the mail paradigm --
3652 wherein a message does not magically disappear without explicit action by
3653 the user -- is used for news as well. <P>
3655 If you answer a message in a news folder, the index view will show the
3656 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3657 keep track of what news as been read has no way of storing this flag, so
3658 it will not be preserved across sessions.  The Deleted flag is the only
3659 one that is preserved when you leave and then return to a newsgroup.  As an
3660 additional note on replies, when you Reply to a newsgroup message and say
3661 you want to reply to all recipients, Alpine will ask if you want to post the
3662 message to all the newsgroups listed in the original message. <P>
3664 If you would like Alpine to mark more-or-less recent news messages as
3665 &quot;New&quot;, then set the
3666 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3667 feature (which is set by default).  This will cause messages after the last one you have marked as
3668 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3669 &quot;N&quot; status often makes it easier to distinguish later news
3670 articles from those you've previously seen, but not yet disposed of via
3671 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3672 record of which messages you have not seen.
3675 A frequent operation in news-reading is &quot;catching up&quot; -- that
3676 is, getting rid of all the messages in the newsgroup so that you can
3677 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3678 Select command.  You would enter the following four keystrokes:
3679 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3680 dismiss) command to all of them.
3683 There are also additional details on 
3684 <A HREF="h_configuring_news">configuring news</a>.
3687 &lt;End of help on this topic&gt;
3688 </BODY>
3689 </HTML>
3690 ====== h_help_index ======
3691 <HTML>
3692 <HEAD>
3693 <TITLE>Help Index</TITLE>
3694 </HEAD>
3695 <BODY>
3696 <H1>Help Index</H1>
3697 <ul>
3698 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3699 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3700 <li><a href="h_main_addrbook">Address Book Command</a>
3701 <li><a href="h_abook_view">Address Book View Explained</a>
3702 <li><a href="h_compose_addrcomplete">Address Completion</a>
3703 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3704 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3705 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3706 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3707 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3708 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3709 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3710 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3711 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3712 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3713 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3714 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3715 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3716 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3717 <li><a href="h_news_legal">Alpine Legal Notices</a>
3718 <li><a href="h_compose_alted">Alt Editor Command</a>
3719 <li><a href="h_index_cmd_apply">Apply Command</a>
3720 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3721 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3722 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3723 <li><a href="h_composer_browse">BROWSER</a>
3724 <li><a href="h_common_bounce">Bounce Command</a>
3725 <li><a href="h_compose_cancel">Cancel Command</a>
3726 <li><a href="h_config_change_your_from">Changing your From Address</a>
3727 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3728 <li><a href="h_mainhelp_color">Color</a>
3729 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3730 <li><a href="h_composer">COMPOSER COMMANDS</a>
3731 <li><a href="h_mainhelp_composing">Composing Messages</a>
3732 <li><a href="h_mainhelp_collections">Collection Lists</a>
3733 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3734 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3735 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3736 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3737 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3738 <li><a href="h_common_compose">Compose Command</a>
3739 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3740 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3741 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3742 <li><a href="h_mainhelp_config">Configuration</a>
3743 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3744 <li><a href="h_config_dflt_color">Default Color</a>
3745 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3746 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3747 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3748 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3749 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3750 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3751 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3752 <li><a href="h_ge_export">Export File Selection</a>
3753 <li><a href="h_ge_allparts">Export Message File Selection</a>
3754 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3755 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3756 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3757 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3758 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3759 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3760 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
3761 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3762 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3763 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3764 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3765 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3766 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3767 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3768 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3769 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3770 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3771 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3772 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3773 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3774 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3775 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3776 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3777 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3778 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3779 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3780 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3781 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3782 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3783 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3784 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3785 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3786 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3787 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3788 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3789 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3790 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3791 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3792 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3793 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3794 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3795 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3796 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3797 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3798 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3799 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3800 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3801 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3802 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3803 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3804 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3805 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3806 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3807 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3808 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3809 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3810 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3811 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3812 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3813 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3814 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3815 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3816 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3817 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3818 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3819 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3820 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3821 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3822 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3823 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3824 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3825 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3826 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3827 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3828 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3829 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3830 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3831 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3832 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3833 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3834 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3835 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3836 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3837 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3838 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3839 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3840 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3841 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3842 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3843 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3844 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3845 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3846 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3847 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3848 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3849 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3850 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3851 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3852 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3853 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3854 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3855 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3856 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3857 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3858 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3859 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3860 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3861 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3862 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3863 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3864 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3865 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
3866 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3867 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3868 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
3869 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
3870 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
3871 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
3872 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
3873 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
3874 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
3875 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
3876 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
3877 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
3878 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
3879 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
3880 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
3881 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
3882 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
3883 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
3884 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
3885 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
3886 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
3887 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
3888 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
3889 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
3890 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
3891 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
3892 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
3893 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
3894 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
3895 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
3896 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
3897 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
3898 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
3899 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
3900 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
3901 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
3902 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
3903 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
3904 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
3905 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
3906 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
3907 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
3908 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
3909 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
3910 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
3911 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
3912 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
3913 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
3914 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
3915 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
3916 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
3917 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
3918 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
3919 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
3920 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
3921 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
3922 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
3923 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
3924 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
3925 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
3926 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
3927 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
3928 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
3929 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
3930 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
3931 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
3932 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
3933 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
3934 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
3935 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
3936 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
3937 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
3938 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
3939 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
3940 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
3941 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
3942 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
3943 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
3944 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
3945 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
3946 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
3947 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
3948 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
3949 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
3950 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
3951 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
3952 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
3953 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
3954 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
3955 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
3956 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
3957 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
3958 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
3959 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
3960 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
3961 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
3962 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
3963 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
3964 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
3965 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
3966 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
3967 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
3968 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
3969 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
3970 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
3971 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
3972 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
3973 <li><a href="h_mainhelp_filtering">Filtering</a>
3974 <li><a href="h_finding_help">Finding more information and requesting help</a>
3975 <li><a href="h_common_flag">Flag Command</a>
3976 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
3977 <li><a href="h_mainhelp_folders">Folders</a>
3978 <li><a href="h_what_are_collections">Folder Collections Explained</a>
3979 <li><a href="h_common_folders">Folder List Command</a>
3980 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
3981 <li><a href="h_folder_save">Folder Select for Save Explained</a>
3982 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
3983 <li><a href="h_config_change_your_from">From Address, Changing</a>
3984 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
3985 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
3986 <li><a href="h_common_goto">Goto Command</a>
3987 <li><a href="h_common_hdrmode">HdrMode Command</a>
3988 <li><a href="h_mainhelp_pinehelp">Help</a>
3989 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
3990 <li><a href="h_folder_maint">Help for Folder List</a>
3991 <li><a href="h_valid_folder_names">IMAP</a>
3992 <li><a href="h_ge_import">Import File Selection</a>
3993 <li><a href="h_mainhelp_index">Index of Messages</a>
3994 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
3995 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
3996 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
3997 <li><a href="h_info_on_mbox">Information on mbox driver</a>
3998 <li><a href="h_mainhelp_intro">Introduction</a>
3999 <li><a href="h_main_journal">Journal Command</a>
4000 <li><a href="h_common_jump">Jump Command</a>
4001 <li><a href="h_compose_justify">Justify Command</a>
4002 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4003 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4004 <li><a href="h_mainhelp_ldap">LDAP</a>
4005 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4006 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4007 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4008 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4009 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4010 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4011 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4012 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4013 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4014 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4015 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4016 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4017 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4018 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4019 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4020 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4021 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4022 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4023 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4024 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4025 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4026 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4027 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4028 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4029 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4030 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4031 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4032 <li><a href="h_common_index">Message Index Command</a>
4033 <li><a href="h_mainhelp_mouse">Mouse</a>
4034 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4035 <li><a href="new_user_greeting">NEW USER GREETING</a>
4036 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4037 <li><a href="h_mainhelp_readingnews">News Reading</a>
4038 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
4039 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4040 <li><a href="h_common_nextnew">NextNew Command</a>
4041 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4042 <li><a href="h_mainhelp_readingnews">NNTP</a>
4043 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4044 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4045 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4046 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4047 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4048 <li><a href="h_config_color_style">OPTION: Color Style</a>
4049 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4050 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4051 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4052 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4053 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4054 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4055 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4056 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4057 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4058 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4059 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4060 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4061 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4062 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4063 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4064 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4065 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4066 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4067 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4068 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4069 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4070 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4071 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4072 <li><a href="h_config_font_name">OPTION: Font Name</a>
4073 <li><a href="h_config_font_size">OPTION: Font Size</a>
4074 <li><a href="h_config_font_style">OPTION: Font Style</a>
4075 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4076 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4077 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4078 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4079 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4080 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4081 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4082 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4083 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4084 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4085 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4086 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4087 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4088 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4089 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4090 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4091 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4092 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4093 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4094 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4095 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4096 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4097 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4098 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4099 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4100 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4101 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4102 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4103 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4104 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4105 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4106 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4107 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4108 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4109 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4110 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4111 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4112 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4113 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4114 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4115 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4116 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4117 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4118 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4119 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4120 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4121 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4122 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4123 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4124 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4125 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4126 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4127 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4128 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4129 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4130 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4131 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4132 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4133 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4134 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4135 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4136 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4137 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4138 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4139 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4140 <li><a href="h_config_printer">OPTION: Printer</a>
4141 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4142 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4143 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4144 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4145 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4146 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4147 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4148 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4149 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4150 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4151 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4152 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4153 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4154 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4155 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4156 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4157 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4158 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4159 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4160 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4161 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4162 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4163 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4164 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4165 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4166 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4167 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4168 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4169 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4170 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4171 <li><a href="h_config_status_color">OPTION: Status Color</a>
4172 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4173 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4174 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4175 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4176 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4177 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4178 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4179 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4180 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4181 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4182 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4183 <li><a href="h_config_title_color">OPTION: Title Color</a>
4184 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4185 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4186 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4187 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4188 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4189 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4190 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4191 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4192 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4193 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4194 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4195 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4196 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4197 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4198 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4199 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4200 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4201 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4202 <li><a href="h_mainhelp_patterns">Patterns</a>
4203 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4204 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4205 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4206 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4207 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4208 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4209 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4210 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4211 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4212 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4213 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4214 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4215 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4216 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4217 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4218 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4219 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4220 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4221 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4222 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4223 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4224 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4225 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4226 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4227 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4228 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4229 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4230 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4231 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4232 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4233 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4234 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4235 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4236 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4237 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4238 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4239 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4240 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4241 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4242 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4243 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4244 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4245 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4246 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4247 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4248 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4249 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4250 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4251 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4252 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4253 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4254 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4255 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4256 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4257 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4258 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4259 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4260 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4261 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4262 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4263 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4264 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4265 <li><a href="h_common_pipe">Pipe Command</a>
4266 <li><a href="h_valid_folder_names">POP</a>
4267 <li><a href="h_common_postpone">Postpone Command</a>
4268 <li><a href="h_common_print">Print Command</a>
4269 <li><a href="h_mainhelp_readingnews">Reading News</a>
4270 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4271 <li><a href="h_mainhelp_roles">Roles</a>
4272 <li><a href="h_role_select">ROLES SCREEN</a>
4273 <li><a href="h_compose_readfile">Read File Command</a>
4274 <li><a href="h_mainhelp_reading">Reading Messages</a>
4275 <li><a href="h_main_release_notes">Release Notes Command</a>
4276 <li><a href="h_common_reply">Reply and Forward Commands</a>
4277 <li><a href="h_compose_richhdr">Rich Header Command</a>
4278 <li><a href="h_common_role">Role Command</a>
4279 <li><a href="h_mainhelp_smime">S/MIME</a>
4280 <li><a href="h_index_cmd_select">Searching for Messages</a>
4281 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4282 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4283 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4284 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4285 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4286 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4287 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4288 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4289 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4290 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4291 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4292 <li><a href="h_common_save">Save and Export Commands</a>
4293 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4294 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4295 <li><a href="h_compose_send">Send Command</a>
4296 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4297 <li><a href="h_main_setup">Setup Command</a>
4298 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4299 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4300 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4301 <li><a href="h_mainhelp_smime">S/MIME</a>
4302 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4303 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4304 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4305 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4306 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4307 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4308 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4309 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4310 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4311 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4312 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4313 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4314 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4315 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4316 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4317 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4318 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4319 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4320 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4321 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4322 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4323 <li><a href="h_index_cmd_sort">Sort Command</a>
4324 <li><a href="h_compose_spell">Spell Check Command</a>
4325 <li><a href="h_common_suspend">Suspend Command</a>
4326 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4327 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4328 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4329 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4330 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4331 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4332 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4333 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4334 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4335 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4336 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4337 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4338 <li><a href="h_common_take">TakeAddr Command</a>
4339 <li><a href="h_mainhelp_status">Titlebar Line</a>
4340 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4341 <li><a href="h_config_usenone_color">Use None Color</a>
4342 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4343 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4344 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4345 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4346 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4347 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4348 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4349 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4350 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4351 </UL>
4354 &lt;End of Help Index&gt;
4355 </BODY>
4356 </HTML>
4359 ============== h_config_remote_config =============
4360 <HTML>
4361 <HEAD>
4362 <TITLE>Remote Configuration</TITLE>
4363 </HEAD>
4364 <BODY>
4365 <H1>Remote Configuration</H1>
4367 You may use the command line argument &quot;-p pinerc&quot; to tell
4368 Alpine to use a non-default configuration file.
4369 There are two types of storage for configuration information.
4370 <EM>Local</EM> configuration files are used by default.
4371 These are just regular files on the UNIX system or on the PC.
4372 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4373 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4374 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4375 The advantage of using a remote configuration is that the same information
4376 may be accessed from multiple platforms.
4377 For example, if you use one computer at work and another at home, the same
4378 configuration could be used from both places.
4379 A configuration change from one place would be seen in both places.
4380 To use a remote configuration you simply give a
4381 <A HREF="h_valid_folder_names">remote folder name</A>
4382 as the argument to the &quot;-p&quot; command line option.
4383 The command line might look something like:
4385 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4387 If there are special characters in the command shell you use, you may need to
4388 quote the last argument (to protect the curly braces from the shell).
4389 The command might look like:
4391 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4393 You should choose a folder name for a folder that does not yet exist.
4394 It will be created containing an empty configuration.
4395 Do not use a folder that you wish to store regular mail messages in.
4397 The Setup/RemoteConfigSetup command will help you convert from a local
4398 configuration to a remote configuration.
4399 It will create a remote configuration for you and copy your current local
4400 configuration to it.
4401 It will also help you convert local address books into remote address books
4402 and local signature files into literal signatures contained in the
4403 remote configuration file.
4405 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4406 may copy a local pinerc file to a remote configuration folder by hand
4407 by using the command line option &quot;-copy_pinerc&quot;.
4409 Another command line option, which is somewhat related to remote
4410 configuration, is the option &quot;-x exceptions_config&quot;.
4411 The configuration settings in the exceptions configuration override
4412 your default settings.
4413 It may be useful to store the default configuration (the -p argument) remotely
4414 and to have the exceptions configuration stored in a local file.
4415 You might put generic configuration information in the remote configuration
4416 and platform-specific configuration on each platform in the exceptions
4417 configuration.
4418 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4419 can be either remote folders or local files.
4421 There is another command line argument that works only with PC-Alpine and
4422 which may prove useful when using a remote configuration.
4423 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4424 to store your local auxiliary files.
4425 This only has an effect if your configuration file is remote.
4426 Some examples of auxiliary files are debug files, address book files, and
4427 signature files.
4429 &lt;End of help on this topic&gt;
4430 </BODY>
4431 </HTML>
4432 ============== h_config_exceptions =============
4433 <HTML>
4434 <HEAD>
4435 <TITLE>Generic and Exceptional Configuration</TITLE>
4436 </HEAD>
4437 <BODY>
4438 <H1>Generic and Exceptional Configuration</H1>
4440 If you use Alpine from more than one platform it may be convenient
4441 to split your configuration information into two pieces, a generic piece
4442 and exceptions that apply to a particular platform.
4443 For example, suppose you use Alpine from home and from work.
4444 Most of your configuration settings are probably the
4445 same in both locations, so those settings belong in the generic settings
4446 configuration.
4447 However, you may use a different SMTP server and INBOX
4448 from home than you do from work.
4450 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4452 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4453 options could be
4454 part of your exceptional configuration so that they could be different in the
4455 two places.
4457 The command line option &quot;-x exceptions_config&quot;
4458 may be used to split your configuration into generic and exceptional pieces.
4459 &quot;Exceptions_config&quot; may be either local or remote.
4460 The regular Alpine configuration file will contain the generic data, and
4461 &quot;exceptions_config&quot; will contain the exceptional data.
4463 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4464 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4465 in the same local directory that the regular config file is located in (usually
4466 the Unix home directory).
4467 If the regular config file is remote (because the command line option
4468 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4469 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4470 If the file does not already exist then no exceptions will be used.
4471 You can force exceptions to be used by using the &quot;-x&quot; option or
4472 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4474 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4475 PC-Alpine will use the value of the
4476 environment variable <CODE>$PINERCEX</CODE>.
4477 If that is not set, PC-Alpine will look for
4478 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4479 in the same local directory that the regular config file is located in.
4480 If the regular config file is remote (because the command line option
4481 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4482 local directory specified by the &quot;-aux local_directory&quot; command
4483 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4484 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4486 When you have an exception configuration there is a new command
4487 in the Alpine Setup screen, Setup/eXceptions.
4488 It toggles between exceptions and the regular configuration.
4489 This is the usual way to make changes in your exceptional configuration data.
4490 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4491 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4492 for Config or &quot;K&quot; for Kolor.
4494 For most people, splitting the configuration information into two pieces is
4495 going to be most useful if the generic information is accessed
4496 <A HREF="h_config_remote_config">remotely</A>).
4497 That data will be the same no matter where you access it from and if you
4498 change it that change will show up everywhere.
4499 The exceptional data will most commonly be in a local file, so that the
4500 contents may easily be different on each computing platform used.
4502 If you already have a local configuration file with settings you like
4503 you may find that the command Setup/RemoteConfigSetup is useful
4504 in helping you convert to a remote configuration.
4505 The command line flag &quot;-copy_pinerc&quot;
4506 may also be useful.
4508 &lt;End of help on this topic&gt;
4509 </BODY>
4510 </HTML>
4511 ============== h_config_inheritance =============
4512 <HTML>
4513 <HEAD>
4514 <TITLE>Configuration Inheritance</TITLE>
4515 </HEAD>
4516 <BODY>
4517 <H1>Configuration Inheritance</H1>
4519 Configuration inheritance is a power user feature.
4520 It is confusing and not completely supported by the configuration
4521 user interface.
4522 We start with an explanation of how configuration works in hopes of making
4523 it easier to describe how inheritance works.
4525 Alpine uses a hierarchy of configuration values from different locations.
4526 There are five ways in which each configuration option (configuration
4527 variable) can be set.
4528 In increasing order of precedence they are:
4530 <OL>
4531 <LI> the system-wide configuration file.
4533 <LI> the personal configuration file
4535 <LI> the personal exceptions file
4537 <LI> a command line argument
4539 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4540 </OL>
4542 The fixed configuration file is normally
4543 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4545 The system-wide configuration file is normally
4546 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4547 set for PC-Alpine.
4548 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4549 is used for the system-wide configuration.
4550 This location can be set or changed on the command line with the -P flag.
4551 The system-wide configuration file can be either a local file or a
4552 remote configuration folder.
4554 For Unix Alpine, the personal configuration file is normally the file
4555 <CODE>.pinerc</CODE> in the user's home directory.
4556 This can be changed with the -p command line flag.
4557 For PC-Alpine, the personal configuration file is in
4558 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4559 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4560 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4561 This can be changed with the -p command line flag.
4562 If -p is used, the configuration data may be in a local file or a remote config
4563 folder.
4565 For Unix Alpine, the personal exceptions configuration file is named
4566 <CODE>.pinercex</CODE> and is in the same directory as the personal
4567 configuration file, if that configuration file is not remote, and is in
4568 the home directory if the personal configuration file is remote.
4569 If the file exists, then exceptions are turned on.
4570 If it doesn't, then you are not using exceptions.
4571 Alternatively, you may change the location of the exceptions configuration
4572 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4573 Like the personal configuration data, exceptions_config may be
4574 either local or remote.
4576 For PC-Alpine, the personal exceptions configuration file is named
4577 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4578 configuration file unless the personal configuration file is remote.
4579 In that case, it is in the local directory specfied by the
4580 &quot;-aux local_directory&quot; command line argument.
4581 (In the case that the personal configuration is remote and there is no
4582 &quot;-aux&quot; command line argument, Alpine searches for
4583 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4584 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4585 If the file exists, then exceptions are turned on.
4586 If it doesn't, then you are not using exceptions.
4587 You may change the location of the exceptions configuration
4588 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4589 or with the
4590 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4591 option).
4593 To reiterate, the value of a configuration option is taken from the
4594 last location in the list above in which it is set.
4595 Or, thinking about it slightly differently, a default value for an option
4596 is established in the system-wide configuration file (or internally by Alpine
4597 if there is no value in the system-wide file).
4598 That default remains in effect until and unless it is overridden by a value in a
4599 location further down the list, in which case a new &quot;default&quot;
4600 value is established.
4601 As we continue down the list of locations we either retain the
4602 value at each step or establish a new value.
4603 The value that is still set after going through the whole list of
4604 configuration locations is the one that is used.
4606 So, for example, if an option is set in the system-wide configuration
4607 file and in the personal configuration file, but is not set in the
4608 exceptions, on the command line, or in the fixed file; then the value
4609 from the personal configuration file is the one that is used.
4610 Or, if it is set in the system-wide config, in the personal config, not
4611 in the exceptions, but is set on the command line; then the value
4612 on the command line is used.
4614 Finally we get to inheritance.
4615 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4616 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4617 the inheritance mechanism makes it possible to <EM>combine</EM>
4618 the values from different locations instead of <EM>replacing</EM> the value.
4619 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4620 for which you may already set whatever you want at
4621 any configuration location (by using the &quot;no-&quot; prefix if
4622 necessary).
4624 To use inheritance, set the first item in a configuration list to the
4625 token &quot;INHERIT&quot;, without the quotes.
4626 If the first item is &quot;INHERIT&quot;,
4627 then instead of replacing the default value established so far, the rest of
4628 the list is appended to the default value established so far and that is
4629 the new value.
4631 Here is an example which may make it clearer. Suppose we have:
4633 <PRE>
4634  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4635  Personal config    :   smtp-server = INHERIT, mysmtp.home
4636  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4637  Command line       :   smtp-server = &lt;No Value Set&gt;
4638  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4639 </PRE>
4642 This would result in an effective smtp-server option of
4644 <PRE>
4645  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4646 </PRE>
4648 The &quot;INHERIT&quot; token can be used in any of the configuration files
4649 and the effect cascades.
4650 For example, if we change the above example to:
4652 <PRE>
4653  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4654  Personal config    :   smtp-server = INHERIT, mysmtp.home
4655  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4656  Command line       :   smtp-server = &lt;No Value Set&gt;
4657  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4658 </PRE>
4661 This would result in:
4663 <PRE>
4664  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4665 </PRE>
4667 Unset variables are skipped over (the default value is carried forward) so
4668 that, for example:
4670 <PRE>
4671  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4672  Personal config    :   smtp-server = &lt;No Value Set&gt;
4673  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4674  Command line       :   smtp-server = &lt;No Value Set&gt;
4675  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4676 </PRE>
4679 produces:
4681 <PRE>
4682  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4683 </PRE>
4686 If any later configuration location has a value set (for a particular list
4687 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4688 then that value replaces whatever value has been defined up to that point.
4689 In other words, that cancels out any previous inheritance.
4691 <PRE>
4692  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4693  Personal config    :   smtp-server = INHERIT, mysmtp.org
4694  Exceptions config  :   smtp-server = yoursmtp.org
4695  Command line       :   smtp-server = &lt;No Value Set&gt;
4696  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4697 </PRE>
4700 results in:
4702 <PRE>
4703  smtp-server = yoursmtp.org
4704 </PRE>
4707 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4708 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4709 difficult to insert the value &quot;INHERIT&quot; into the list of values
4710 for the option using the normal Setup tools.
4711 In other words, the color setting screen (for example) does not
4712 provide a way to input the text &quot;INHERIT&quot; as the first
4713 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4714 The way to do this is to either edit the pinerc file directly and manually
4715 insert it, or turn
4716 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4717 feature and insert it using the Setup/Config screen.
4719 &lt;End of help on this topic&gt;
4720 </BODY>
4721 </HTML>
4722 ============== h_special_xon_xoff =============
4723 <HTML>
4724 <HEAD>
4725 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4726 </HEAD>
4727 <BODY>
4728 <H1>XOFF/XON Handling within Alpine</H1>
4730 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4731 and XON) as normal characters, even though Alpine does not use them.
4732 However, the printer, modem, or communication software you are using may
4733 be configured for &quot;software flow control,&quot; which means that
4734 XON/XOFF must be treated as special characters by the operating system.
4735 If you see messages such as &quot;^S not defined for this screen&quot;,
4736 then your system is probably using software flow control. In this case
4737 you will need to set the
4738 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4739 feature.
4741 If you <EM>do</EM> set this
4742 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4743 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4744 and see if that puts things right.  Printing via the
4745 &quot;attached-to-ansi&quot; or 
4746 &quot;attached-to-wyse&quot;
4747 option will automatically enable software
4748 flow-control handling for the duration of the printing.
4750 &lt;End of help on this topic&gt;
4751 </BODY>
4752 </HTML>
4753 ============= h_special_help_nav =============
4754 <HTML>
4755 <HEAD>
4756 <TITLE>Help Text Navigation Explained</TITLE>
4757 </HEAD>
4758 <BODY>
4759 <H1>Help Text Navigation Explained</H1>
4761 Alpine contains extensive context-sensitive help text.   At any point, 
4762 pressing the &quot;?&quot; key will bring up a page of help text
4763 explaining the options available to you.  You can leave the help
4764 text screen and return to normal Alpine operation by pressing
4766 <!--chtml if pinemode="function_key"-->
4767 F3 function
4768 <!--chtml else-->
4769 &quot;E&quot;
4770 <!--chtml endif-->
4771 key to Exit Help at any time.
4774 Within the help screen you might find a word or phrase displayed in 
4775 inverse text and others displayed in bold typeface.  Such words and
4776 phrases are used to tell you Alpine has more information available on
4777 the topic they describe.
4778 The inverted text is the &quot;selected&quot; topic.  
4779 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4780 displayed in bold type
4781 is &quot;selected&quot;.
4782 Hit the Return key to display the information Alpine has available on that
4783 topic.  While viewing such additional information, the 
4784 <!--chtml if pinemode="function_key"-->
4785 F3 function
4786 <!--chtml else-->
4787 &quot;P&quot;
4788 <!--chtml endif-->
4789 key will return you to the previous help screen, and the
4790 <!--chtml if pinemode="function_key"-->
4791 F2 function
4792 <!--chtml else-->
4793 &quot;E&quot;
4794 <!--chtml endif-->
4795 key will Exit the Help system altogether.
4798 The "N" command will tell you the internal name of the help text you are 
4799 reading each time, so that you can send this name in the text of a message 
4800 and create a direct link to that internal help using the x-pine-help URL 
4801 scheme. For example, the direct link to this item is 
4802 x-pine-help:h_special_help_nav. If you add this text to a message, then
4803 a person using Pine to read such message would have a direct link to this
4804 help text.
4807 When you are finished reading this help text, you can press the
4808 <!--chtml if pinemode="function_key"-->
4809 F3 function
4810 <!--chtml else-->
4811 &quot;P&quot;
4812 <!--chtml endif-->
4813 key to return to the previously displayed help text.
4816 &lt;End of help on this topic&gt;
4817 </BODY>
4818 </HTML>
4819 ============= h_special_list_commands =============
4820 <HTML>
4821 <HEAD>
4822 <TITLE>Email List Commands Explained</TITLE>
4823 </HEAD>
4824 <BODY>
4825 <H1>Email List Commands Explained</H1>
4827 Electonic mail lists provide a way for like-minded users to join in
4828 discussions on topics of interest.  The email list itself is 
4829 represented by a
4830 single address that participants send messages to when they have
4831 something of interest to share with other members of the list.  The
4832 receiving computer then, either automatically or after review by the
4833 list's owner (or moderator), sends a copy of that message to each
4834 member of the list.
4837 Usually, subscribing and unsubscribing is done by sending requests in
4838 an email message to a special address setup to handle managing list
4839 membership.  Often this is the name of the list followed by
4840 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4841 the address used to send messages to the list.
4844 Unfortunately, email list participation commands are more a matter
4845 of convention than standard, and thus may vary from list to list.
4846 Increasingly, list management software is adding information to
4847 the copy of the postings as they're copied to the list members that
4848 explains how to do the various list management functions.
4851 Alpine will recognize this information and offer the management commands
4852 they represent in a simple display. One or more of the following
4853 operations will be made available:
4855 <DL>
4856 <DT>Help</DT>
4857 <DD>
4858 A method to get help on subscribing, unsubscribing, 
4859 an explanation of what the list is about, or special instructions
4860 for participation.  This may be in the form of a reply in response
4861 to an email message, or instructions on how to connect to a Web site.
4862 </DD>
4864 <DT>Unsubscribe</DT>
4865 <DD>
4866 A method to get your email addressed removed from the list of
4867 recipients of the email list.
4868 </DD>
4870 <DT>Subscribe</DT>
4871 <DD>
4872 A method to get your email address added to the list of recipients
4873 of the email list.  It may be in the form of a message sent to 
4874 a special address or you may be connected to a web site.
4875 <DD>
4876 </DD>
4878 <DT>Post</DT>
4879 <DD>
4880 A method used to post to the email list.  However, it might also 
4881 indicate that no posting is allowed directly to the list.
4882 </DD>
4884 <DT>Owner</DT>
4885 <DD>
4886 A method to contact the list owner for special questions you might
4887 have regarding the list.
4888 </DD>
4890 <DT>Archive</DT>
4891 <DD>
4892 A method to view an archive of previous messages posted to the list.
4893 This may be in the form of a mail folder on a remote computer, an
4894 IMAP mailbox or even a Web site.
4895 </DD>
4896 </DL>
4899 &lt;End of help on this topic&gt;
4900 </BODY>
4901 </HTML>
4902 ============= h_quota_command =============
4903 <HTML>
4904 <HEAD>
4905 <TITLE>Quota Screen Explained</TITLE>
4906 </HEAD>
4907 <BODY>
4908 <H1>Quota Screen Explained</H1>
4910 <P> This screen summarizes the quota report for this mailbox in the
4911 IMAP server. For each resource that you have a quota, this reports summarizes
4912 its use and limit.
4914 <P> Your IMAP server administrator may have set a quota based either on 
4915 the total size of your mailbox (STORAGE), or the number of messages in 
4916 your mailbox (MESSAGES), or some other criteria. This will be reported
4917 to you indicating the type of quota, its total use and its limit.
4919 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
4920 1024 bytes. Each of the characters that you see in this help text is one 
4921 byte, and this help text is about 1 kibibyte in size. Small messages sent 
4922 by Alpine are normally less than 4 kibibytes in size (which includes 
4923 headers and text). Other email programs may send messages with bigger 
4924 sizes when they send messages, since they send plain text and an 
4925 alternative part in HTML.
4927 <P> A convenient way to save space for the STORAGE type of quota is by 
4928 deleting attachments. This is done on each individual message by pressing 
4929 the &quot;V&quot; command while reading the message text, then moving the cursor 
4930 to the position of the attachment that is to be deleted, then pressing
4931 &quot;D&quot; to delete such attachment, going back to reading the 
4932 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
4933 save the message in the same folder you are reading from. The saved 
4934 message will not have the attachment that was marked deleted. Now you
4935 can delete and expunge the message with the unwanted attachment.
4938 &lt;End of help on this topic&gt;
4939 </BODY>
4940 </HTML>
4941 ============= h_mail_thread_index =============
4942 <HTML>
4943 <HEAD>
4944 <TITLE>THREAD INDEX COMMANDS</TITLE>
4945 </HEAD>
4946 <BODY>                 
4947 <H1>THREAD INDEX COMMANDS</H1>
4948 <!--chtml if pinemode="function_key"-->
4949 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>
4950 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4951 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>
4952 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>
4953 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>
4954 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>
4955 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>
4956 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>
4957 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>
4958 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>
4959 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>
4960 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>
4961 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>
4962 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>
4963 <BR>
4964 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4965 -----------------------------<BR>
4966 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>
4967 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>
4968 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>
4969 <BR>
4970 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4971 -----------------------------<BR>
4972 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
4973 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
4974 <BR>
4975 <!--chtml else-->
4976 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>
4977 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4978 &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>
4979 &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>
4980 &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>
4981 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>
4982 &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>
4983 &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>
4984 &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>
4985 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>
4986 &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>
4987 <BR>
4988 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
4989 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
4990 &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>
4991 &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>
4992 &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>
4993 &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>
4994 &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>
4995 &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>
4996 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
4997 <!--chtml endif-->
5000 NOTE:
5001 <OL>
5002  <LI>For help on a particular command, highlight the bold text associated
5003 with it above and hit Return.
5004  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5005 </OL>
5007 <H2>Description of the THREAD INDEX Screen</H2>
5009 The THREAD INDEX displays summary information from each
5010 thread (conversation) in the current folder.
5011 This is useful if you want to quickly
5012 scan new threads, or find a particular thread without having to go
5013 through the text of each message, or to quickly get rid of junk
5014 threads, etc.
5015 The current thread is always highlighted.
5016 Each line of the THREAD INDEX contains the following columns: <P>
5017 <DL>
5018  <DT>STATUS:</DT>
5019  <DD> The markings on the left side of the thread tell you about its
5020 status.  You may see one or more of the following codes on any given
5021 thread:
5022 <UL>
5023   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5024   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5025   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5026   <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.
5027   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5028         message in the thread was sent to you as a cc:. This symbol will only show up if
5029         the feature
5030         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5031   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5032         &quot;select&quot; command.  (Some systems may optionally allow selected
5033         messages to be denoted by the index line being displayed in bold
5034         type instead.)
5035   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5036       to mark at least one message in this thread as &quot;important&quot;.
5037 </UL></DD><P>
5039  <DT>THREAD NUMBER:</DT>
5040  <DD>Threads in a folder are numbered, from one through the number
5041 of threads in the folder, to help you know where you are in the folder.
5042 </DD><P>
5044  <DT>DATE STARTED:</DT>
5045  <DD>The date the thread was started. This is actually from the Date header
5046 of the first message in the thread. It doesn't take different time zones
5047 into account.</DD><P>
5049  <DT>WHO STARTED THE THREAD:</DT>
5050  <DD>This is usually the name of the sender of the first message in the thread, taken from
5051 the From header of the message.
5052 If there is no personal name given in that
5053 address, then the email address is used instead.
5054 If the message is from you (or from one of your
5055 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5056 then the recipient's name is shown here instead, with the characters
5057 &quot;To: &quot; inserted before the name.
5058 (The idea of this is that if you started the thread you would rather see who
5059 the mail was sent to instead of that the mail was from you.)
5060 In Newsgroups, if you are
5061 the sender and there are no email recipients, the newsgroup name will be
5062 listed after the &quot;To: &quot;.
5063 </DD><P>
5065  <DT>SIZE:</DT>
5066  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5068  <DT>SUBJECT:</DT>
5069  <DD>As much of the thread's subject line as will fit on the screen.
5070 This is the subject of the first message in the thread.</DD>
5071 </DL>
5073 <P><UL>
5074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5075 </UL>
5077 &lt;End of help on this topic&gt;
5078 </BODY>
5079 </HTML>
5080 ============= h_mail_index =============
5081 <HTML>
5082 <HEAD>
5083 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5084 </HEAD>
5085 <BODY>                 
5086 <H1>MESSAGE INDEX COMMANDS</H1>
5087 <!--chtml if pinemode="function_key"-->
5088 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>
5089 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5090 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>
5091 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>
5092 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>
5093 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>
5094 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>
5095 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>
5096 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>
5097 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>
5098 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>
5099 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>
5100 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>
5101 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>
5102 <BR>
5103 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5104 -----------------------------<BR>
5105 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>
5106 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>
5107 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>
5108 <BR>
5109 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5110 -----------------------------<BR>
5111 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
5112 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>
5113 <BR>
5114 <!--chtml else-->
5115 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>
5116 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5117 &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>
5118 &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>
5119 &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>
5120 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>
5121 &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>
5122 &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>
5123 &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>
5124 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>
5125 &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>
5126 Miscellaneous&nbsp;Operations<BR>
5127 ------------------------<BR>
5128 &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>
5129 &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>
5130 &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>
5131 &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>
5132 &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>
5133 &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>
5134 &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>
5135 &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>
5136 <!--chtml endif-->
5139 NOTE:
5140 <OL>
5141  <LI>For help on a particular command, highlight the bold text associated
5142 with it above and hit Return.
5143  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5144 </OL>
5146 <H2>Description of the MESSAGE INDEX Screen</H2>
5148 The MESSAGE INDEX displays summary information from each
5149 message in the current folder.
5150 This is useful if you want to quickly
5151 scan new messages, or find a particular message without having to go
5152 through the text of each message, or to quickly get rid of junk
5153 messages, etc.
5155 The current message is always highlighted
5156 and many commands operate on the current message.
5157 For example, the Delete command will delete the current message.
5158 If the folder is sorted by either Threads or OrderedSubject, then, depending
5159 on some of your configuration settings, a single line in the index may
5160 refer to an entire thread or to a subthread.
5161 If that is the case, then the commands that normally operate on the current
5162 message will operate on the thread or subthread instead.
5163 For example, the Delete command will delete the whole collapsed thread
5164 instead of just a single message.
5166 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5167 you can change this with the 
5168 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5169 in the SETUP CONFIGURATION screen): <P>
5170 <DL>
5171  <DT>STATUS:</DT>
5172  <DD> The markings on the left side of the message tell you about its
5173 status.  You may see one or more of the following codes on any given
5174 message:
5175 <UL>
5176   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5177          yet eXpunged the folder.
5178   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5179   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5180          to be answered.
5181   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5182          forward a message.
5183   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5184         directly to your account, your copy is not part of a cc: or a
5185         mailing list.
5186   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5187         message was sent to you as a cc:. This symbol will only show up if
5188         the feature
5189         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5190   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5191         &quot;select&quot; command.  (Some systems may optionally allow selected
5192         messages to be denoted by the index line being displayed in bold
5193         type.)
5194   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5195       to mark this message as &quot;important&quot;.
5196 </UL></DD><P>
5198  <DT>MESSAGE NUMBER:</DT>
5199  <DD>Messages in a folder are numbered, from one through the number
5200 of messages in the folder, to help you know where you are in the folder.
5201 These numbers are always in increasing order, even if you sort the folder
5202 in a different way.</DD><P>
5204  <DT>DATE SENT:</DT>
5205  <DD>The date the message was sent.  By default, messages are
5206 ordered by arrival time, not by date sent.  Most of the time, arrival time
5207 and date sent (effectively departure time) are similar.  Sometimes,
5208 however, the index will appear to be out of order because a message took a
5209 long time in delivery or because the sender is in a different time
5210 zone than you are. This date is just the date from the Date header
5211 field in the message.</DD><P>
5213  <DT>WHO SENT THE MESSAGE:</DT>
5214  <DD>This is usually the name of the sender of the message, taken from
5215 the From header of the message.
5216 If there is no personal name given in that
5217 address, then the email address is used instead.
5218 If the message is from you (or from one of your
5219 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5220 then the recipient's name is shown here instead, with the characters
5221 &quot;To: &quot; inserted before the name.
5222 (The idea of this is that if you sent the mail you would rather see who
5223 the mail was sent to instead of that the mail was from you.
5224 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5225 above.
5226 In particular, use the FROM token or the FROMORTONOTNEWS token
5227 in place of the FROMORTO token.)
5228 In Newsgroups, if you are
5229 the sender and there are no email recipients, the newsgroup name will be
5230 listed after the &quot;To: &quot;. </DD><P>
5232  <DT>SIZE:</DT>
5233  <DD>The number in parentheses is the number of characters in the message.
5234 It may have a suffix of K, M, or G which means the number should be
5235 multiplied by one thousand, one million, or one billion to get the
5236 size of the message.</DD><P>
5238  <DT>SUBJECT:</DT>
5239  <DD>As much of the message's subject line as will fit on the screen.</DD>
5240 </DL>
5242 <P><UL>
5243 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5244 </UL>
5246 &lt;End of help on this topic&gt;
5247 </BODY>
5248 </HTML>
5249 ============= h_mail_view ========================
5250 <HTML>
5251 <HEAD>
5252 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5253 </HEAD>
5254 <BODY>
5255 <H1>MESSAGE TEXT SCREEN</H1>
5256 <!--chtml if pinemode="function_key"-->
5257 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>
5258 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5259 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>
5260 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>
5261 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>
5262 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>
5263 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>
5264 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>
5265 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>
5266 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>
5267 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>
5268 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>
5269 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>
5270 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>
5271 <BR>
5272 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5273 ------------------------------<BR>
5274 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5275 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5276 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5277 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5278 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5279 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5280 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5281 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5282 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5283 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5284 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5285 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5286 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5287 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5288 <!--chtml else-->
5289 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5290 ---------------------------------<BR>
5291 <BR>
5292 &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>
5293 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>
5294 &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>
5295 &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>
5296 &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>
5297 &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>
5298 &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>
5299 &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>
5300 &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>
5301 <BR>
5302 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5303 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5304 &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>
5305 &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>
5306 &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>
5307 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>
5308 <BR>
5309 General&nbsp;Alpine&nbsp;Commands<BR>
5310 ---------------------<BR>
5311 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5312 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5313 &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>
5314 &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>
5315 &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>
5316 <!--chtml endif-->
5319 NOTE:
5320 <OL>
5321  <LI>For help on a particular command, highlight the bold text associated
5322 with it above and hit Return.
5323  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5324 </OL>
5326 <H2>Description of the MESSAGE TEXT Screen</H2>
5328 The top line of the view message screen displays status
5329 information about the currently open collection and folder and about the
5330 current message.  It shows the name of the collection in angle brackets
5331 and then the name of the folder.  The line also displays the number
5332 of messages in the folder, the number of the current message and the
5333 percentage of the current message that has been displayed on the screen.
5334 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5335 right corner.
5336 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5337 in the corner.
5340 NOTE: to rapidly move to the end of a message, hit the
5341 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5342 (or Ctrl-W) key followed
5343 by Ctrl-V.  Similarly,
5344 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5345 followed by Ctrl-Y will take you to the beginning of
5346 a message.
5348 <H2>Explanation of Alternate Character Sets</H2>
5350 Alpine attempts to stay out of the way so that it won't prevent you from
5351 viewing mail in any character set.  It will simply send the message to
5352 your display device.  If the device is capable of displaying the
5353 message as it was written it will do so.  If not, the display may be
5354 partially or totally incorrect.
5355 If the message contains characters that are not representable in your 
5356 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5357 variable in your configuration, then a warning message will be printed
5358 to your screen at the beginning of the message display.
5359 It is probably best to use UNIX Alpine in a terminal emulator
5360 capable of displaying UTF-8 characters.
5361 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5362 more information about character set settings.
5364 <P><UL>
5365 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5366 </UL>
5368 &lt;End of help on this topic&gt;
5369 </BODY>
5370 </HTML>
5371 ======= h_index_cmd_select =======
5372 <HTML>
5373 <HEAD>
5374 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5375 </HEAD>
5376 <BODY>
5377 <H1>Selecting: Select and WhereIs/Select</H1>
5379 Aggregate operations give you the ability to process a group of messages
5380 at once.  Acting on multiple messages requires two steps: (1) selecting a
5381 set of messages and then; (2) applying a command to that set. The first
5382 part is handled by the select command.  Select allows you to
5383 select messages based on their status (read, answered, etc.), contents,
5384 date, size, or keywords.
5385 You may also select based on one of your Rules or based on threads,
5386 and there are quick options to select a specific message or range of messages,
5387 to select the current message, or to select all messages.
5390 We describe the various selection criteria briefly:
5393 <DL>
5394 <DT>select All</DT>
5395 <DD> Marks all the messages in the folder as selected.
5396 </DD>
5398 <DT>select Cur</DT>
5399 <DD> Selects the currently highlighted message or currently highlighted
5400 set of messages if in a threaded view.
5401 </DD>
5403 <DT>select by Number</DT>
5404 <DD> Select by message number. This may be a comma-separated list instead or
5405 a single entry.
5406 Each element in the list may be either a single message number or a range
5407 of numbers with a dash between the lowest and highest member of the range.
5408 Some examples are 7 to select only message number 7; 2-5 to select messages
5409 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5410 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5411 substitute for the highest numbered message in the folder, while the
5412 character &quot;.&quot; represents the message number holding the position
5413 of the cursor in the folder.
5414 If in a separate thread index where the numbers refer to threads instead of
5415 to messages, then you will be selecting all of the messages in the
5416 referenced threads instead of selecting by message number.
5417 </DD>
5419 <DT>select by Date</DT>
5420 <DD> Select by either the date stored in the Date headers of each message,
5421 or by the date when the messages arrived.
5422 This does not adjust for different time zones, but just checks to see what
5423 day the message was sent on.
5424 You may type in a date. If you do, the date should be in the form
5425 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5426 For example,
5427 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5429 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5430 If the date you want is close to the current date, it is probably
5431 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5432 is displayed, instead of typing in the date yourself.
5433 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5434 the date of the currently highlighted message. 
5436 There are six possible settings that are selected using the
5437 &quot;^W&nbsp;Toggle When&quot; command.
5438 Three of them select messages based on the Date headers.
5439 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5440 and &quot;SENT ON&quot;.
5441 SINCE is all messages with the selected date or later.
5442 BEFORE is all messages earlier than the selected date (not including the day
5443 itself).
5444 ON is all messages sent on the selected date.
5445 The other three select messages in the same way but they use the arrival
5446 times of the messages instead of the Date headers included in the messages.
5447 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5448 and &quot;ARRIVED ON&quot;.
5449 When you save a message from one folder to another the arrival time is
5450 preserved.
5451 </DD>
5453 <DT>select by Text</DT>
5454 <DD> Selects messages based on the message contents.
5455 This allows you to select a set of messages based on whether or not the
5456 message headers or message body contain specified text.
5457 You may look for text in the Subject, the From header,
5458 the To header, or the Cc header.
5459 You may also choose Recipient, which searches for the text in
5460 either the To or the Cc header;
5461 or Participant, which means To or Cc or From.
5462 Besides those specific header searches, you may also search the entire
5463 header and text of the message with &quot;All Text&quot;, or just the
5464 body of the message.
5466 To search for the absence of text, first type the &quot;! Not&quot; command
5467 before typing the specific type of text search.
5468 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5469 search for all messages that do not contain a particular word in their
5470 Subjects.
5472 If you choose a Subject search, you may use the subject from the current
5473 message by typing the &quot;^X Cur Subject&quot; command.
5474 You may then edit it further if you wish.
5475 For example, you might select the subject of a reply and edit the
5476 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5477 the original message being replied to.
5478 All of the other header searches allow you to use addresses from the
5479 headers of the current message if you want to.
5480 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5481 &quot;^W Cur Cc&quot;.
5482 In each case, if there is more than one address, only the first is offered.
5483 </DD>
5485 <DT>select by Status</DT>
5486 <DD> Selects messages based on their status.
5487 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5488 messages.
5489 Or, if you first type the &quot;! Not&quot; command, you get not New,
5490 or not Important, and so on.
5491 If you select Deleted messages, you will get all messages with their
5492 Deleted flag set.
5493 Likewise for Important messages, all messages that you have flagged as
5494 being Important with the
5495 <A HREF="h_common_flag">Flag</A> command.
5496 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5497 because they try to match what you see on the screen by default.
5498 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5499 and Unanswered.
5500 If you have looked at the message, or deleted it, or answered it; then it
5501 is not considered &quot;New &quot;.
5502 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5504 &quot;Answered&quot; is another one that is a little different.
5505 It means that the message has been Answered <EM>and</EM> is not deleted.
5506 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5507 the opposite of &quot;Answered&quot;!
5508 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5509 both Unanswered <EM>and</EM> not deleted.
5511 The other two types were added later because the special nature of the
5512 New flag was not what was wanted by all users.
5513 New does match what you see in the index by default, but if you use
5514 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5515 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5516 be exactly what you want.
5517 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5518 they are deleted or answered, and
5519 &quot;Recent&quot; selects all of the messages that have been added to
5520 the folder since you started this Alpine session.
5521 (That's not technically quite true. If there are multiple mail clients
5522 reading an IMAP mailbox, each message will be marked as Recent in only
5523 one of the client's sessions.)
5524 </DD>
5526 <DT>select by siZe</DT>
5527 <DD> Selects messages based on their size being smaller than or larger
5528 than the size you specify.
5529 The size is the number of bytes.
5530 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5531 the number.
5532 For example, 7K is the same as 7000.
5533 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5534 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5535 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5536 and Larger.
5537 </DD>
5539 <DT>select by Keyword</DT>
5540 <DD> Selects messages that either have or do not have
5541 (using the &quot;!&nbsp;Not&quot; command)
5542 a particular <A HREF="h_config_keywords">Keyword</A> set.
5543 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5544 command to select one from your list of keywords.
5546 <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.
5547 </DD>
5549 <DT>select by Rule</DT>
5550 <DD> Selects messages that either match or don't match
5551 (using the &quot;!&nbsp;Not&quot; command)
5552 one of the Rules you have defined.
5553 The most likely method of filling in the Rule is to use the
5554 &quot;^T&nbsp;To&nbsp;List&quot;
5555 command to select one of your Rules.
5556 All of the Rules you have defined will be in the list, including
5557 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5558 They may not all make sense for this purpose, but they are all there for
5559 flexibility.
5560 You might find it useful to define some rules solely for the purpose
5561 of being used by the Select command.
5562 There is a special category for such Rules. They are called Search Rules.
5564 Unfortunately, Alpine does not allow all possible Rules to be defined.
5565 For example, there is no logical OR operation.
5566 OR is accomplished in the Filter Rules or the other types of Rules by
5567 simply defining two rules, one that matches the first part of the OR
5568 and another that matches the second part.
5569 But you can't do that here, since you only have a single Rule to work with.
5570 Likewise, the order of Rules is usually important.
5571 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5572 a message, then that stops the search for a further match.
5573 This means that you may be confused if you try to use Select by Rule to
5574 check your Filter rules because the order is important when filtering but
5575 is not considered here.
5576 </DD>
5578 <DT>select by tHread</DT>
5579 <DD> Selects all of the messages in the current thread.
5580 </DD>
5581 </DL>
5583 After you have an initial selection, the next and subsequent selection
5584 commands modify the selection.
5585 The select command changes. It first gives
5586 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5587 &quot;unselect Current&quot;,
5588 &quot;Broaden selection&quot; (implements a logical OR), and
5589 &quot;Narrow selection&quot; (implements a logical AND).
5590 After you choose either Broaden or Narrow, you then choose one of the
5591 selection criteria listed above (by Text or Number or ...).
5592 You may use select as many times as you wish to get the selected set right.
5595 The WhereIs command has a feature (Ctrl-X) to
5596 select all the messages that match the WhereIs search. WhereIs searches
5597 through just the text that appears on the MESSAGE INDEX screen.
5598 This method is often slower than using the select command itself, unless the
5599 line you are looking for is not too far away in the index.
5602 The availability of the aggregate operations commands is determined by the
5603 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5604 Feature-List option in your Alpine
5605 configuration, which defaults to set.
5606 The features
5607 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5609 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5610 affect the behavior of the Select command.
5613 &lt;End of help on this topic&gt;
5614 </BODY>
5615 </HTML>
5616 ======= h_select_rule =======
5617 <HTML>
5618 <HEAD>
5619 <TITLE>Select: Rule</TITLE>
5620 </HEAD>
5621 <BODY>
5622 <H1>Select: Rule</H1>
5624 You are selecting messages that either match or don't match
5625 one of the Rules you have defined.
5626 You may either type the nickname of the Rule at the prompt, or use the
5627 &quot;^T&nbsp;To&nbsp;List&quot;
5628 command to select one of your Rules.
5629 All of the Rules you have defined will be in the list, including
5630 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5631 They may not all make sense for this purpose, but they are all there for
5632 flexibility.
5633 Rules may be added by using the Setup/Rules screen off of the main Alpine
5634 menu.
5636 Unfortunately, Alpine does not allow all possible Rules to be defined.
5637 For example, there is no logical OR operation.
5638 OR is accomplished in the Filter Rules or the other types of Rules by
5639 simply defining two rules, one that matches the first part of the OR
5640 and another that matches the second part.
5641 But you can't do that here, since you only have a single Rule to work with.
5642 Likewise, the order of Rules is usually important.
5643 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5644 a message, then that stops the search for a further match.
5645 This means that you may be confused if you try to use Select by Rule to
5646 check your Filter rules because the order is important when filtering but
5647 is not considered here.
5650 &lt;End of help on this topic&gt;
5651 </BODY>
5652 </HTML>
5653 ======= h_select_text =======
5654 <HTML>
5655 <HEAD>
5656 <TITLE>Select: Text</TITLE>
5657 </HEAD>
5658 <BODY>
5659 <H1>Select: Text</H1>
5661 You are selecting messages based on the contents of the message.
5662 This allows you to select a set of messages based on whether or not the
5663 message headers or message body contain specified text.
5664 You may look for text in the Subject, the From header,
5665 the To header, or the Cc header.
5666 You may also choose Recipient, which searches for the text in
5667 either the To or the Cc header;
5668 or Participant, which means either the To header, or the Cc header,
5669 or the From header.
5670 Besides those specific header searches, you may also search the entire
5671 header and text of the message with &quot;All Text&quot;, or just the
5672 body of the message with &quot;Body&quot;.
5674 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5675 before typing the specific type of text search.
5676 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5677 search for all messages that do not contain a particular word in their
5678 Subjects.
5680 If you choose a Subject search, you may use the subject from the current
5681 message by typing the &quot;^X Cur Subject&quot; command.
5682 You may then edit it further if you wish.
5683 For example, you might select the subject of a reply and edit the
5684 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5685 the original message being replied to.
5686 All of the other header searches allow you to use addresses from the
5687 headers of the current message if you want to.
5688 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5689 &quot;^W Cur Cc&quot;.
5690 In each case, if there is more than one address, only the first is offered.
5693 &lt;End of help on this topic&gt;
5694 </BODY>
5695 </HTML>
5696 ======= h_select_status =======
5697 <HTML>
5698 <HEAD>
5699 <TITLE>Select: Status</TITLE>
5700 </HEAD>
5701 <BODY>
5702 <H1>Select: Status</H1>
5704 You are selecting messages based on the status of the message.
5705 For example, whether or not the message has been marked Deleted or Important,
5706 or whether or not it has been Answered or is New.
5707 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5708 opposite: not Deleted, not Important, and so on.
5710 If you select Deleted messages, you will get all messages with their
5711 Deleted flag set.
5712 Likewise for Important messages, all messages that you have flagged as
5713 being Important with the
5714 <A HREF="h_common_flag">Flag</A> command.
5715 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5716 because they try to match what you see on the screen by default.
5717 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5718 and Unanswered.
5719 If you have looked at the message, or deleted it, or answered it; then it
5720 is not considered &quot;New &quot;.
5721 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5723 &quot;Answered&quot; is another one that is a little different.
5724 It means that the message has been Answered <EM>and</EM> is not deleted.
5725 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5726 the opposite of &quot;Answered&quot;!
5727 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5728 both Unanswered <EM>and</EM> not deleted.
5730 (The New and Answered options may seem counter-intuitive.
5731 The reason it is done this way is
5732 because, by default, a Deleted message will show up with the &quot;D&quot;
5733 symbol in the MAIL INDEX screen even if it is New or Answered.
5734 The Delete symbol overrides the New and Answered symbols, because you
5735 usually don't care about the message anymore once you've deleted it.
5736 Similarly, you usually only care about whether a message is Answered or
5737 not if it is not Deleted.
5738 Once it is Deleted you've put it out of your mind.)
5740 The other two options were added later because the special nature of the
5741 New flag was not what was wanted by all users.
5742 New does match what you see in the index by default, but if you use
5743 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5744 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5745 be exactly what you expect.
5746 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5747 they are deleted or answered, and
5748 &quot;Recent&quot; selects all of the messages that have been added to
5749 the folder since you started this Alpine session.
5750 (That's not technically quite true. If there are multiple mail clients
5751 reading an IMAP mailbox, each message will be marked as Recent in only
5752 one of the client's sessions.
5753 That behavior can be convenienent for some purposes, like filtering, but
5754 it isn't usually what you expect when selecting.)
5757 &lt;End of help on this topic&gt;
5758 </BODY>
5759 </HTML>
5760 ======= h_index_cmd_apply =======
5761 <HTML>
5762 <HEAD>
5763 <TITLE>Apply Command</TITLE>
5764 </HEAD>
5765 <BODY>
5766 <H1>Apply Command</H1>
5768 Apply
5769 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5770 is the second step of most aggregate operations.  Apply
5771 becomes active any time there is a defined set of selected messages.  The
5772 following commands can be applied to a selected message set: delete,
5773 undelete, reply, forward,
5774 <!--chtml if pinemode="os_windows"-->
5775 <!--chtml else--> 
5776 pipe,
5777 <!--chtml endif-->
5778 print, take address, save, export, bounce, and flag.
5781 The behavior of some of these commands in an aggregate sense is not easy to
5782 explain.  Try them out to see what they do.
5783 The feature
5784 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5785 affects the behavior of the Apply command, as does the feature
5786 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5789 &lt;End of help on this topic&gt;
5790 </BODY>
5791 </HTML>
5792 ======= h_index_cmd_zoom =======
5793 <HTML>
5794 <HEAD>
5795 <TITLE>ZoomMode Command</TITLE>
5796 </HEAD>
5797 <BODY>
5798 <H1>ZoomMode Command</H1>
5800 Another action you might want to take on a set of selected messages is to
5801 zoom in on them.  Like apply, zoom only becomes active when messages have
5802 been selected.
5803 ZoomMode
5804 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5805 is a toggle command that allows you to
5806 zoom-in (and only see the selected messages) and zoom-out (to see all
5807 messages in the folder).  Neither apply nor zoom removes the markings that
5808 define the selected set; you need to use a select command in order
5809 to do that.
5812 &lt;End of help on this topic&gt;
5813 </BODY>
5814 </HTML>
5815 ======= h_index_collapse_expand =======
5816 <HTML>
5817 <HEAD>
5818 <TITLE>Collapse/Expand Command</TITLE>
5819 </HEAD>
5820 <BODY>
5821 <H1>Collapse/Expand Command</H1>
5823 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5824 the folder is sorted by either Threads or OrderedSubject, and the
5825 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5826 is set to something other than &quot;none&quot;.
5827 By default, this command collapses or expands the subthread that starts at
5828 the currently highlighted message, if any.
5829 If the subthread is already collapsed, then this command expands it.
5830 If the subthread is expanded, then this command collapses it.
5831 If there are no more messages below the current message in the
5832 thread tree (that is, there are no replies to the current message) then
5833 this command does nothing.
5836 The behavior of this command is affected by the option
5837 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5838 Normally, this command Collapses or Expands the subthread that
5839 starts at the currently highlighted message.
5840 If the above option is set, then this command Collapses or Expands the
5841 entire current thread instead of just the subthread.
5842 The current thread is simply the top-level thread that contains the
5843 current message.
5846 &lt;End of help on this topic&gt;
5847 </BODY>
5848 </HTML>
5849 ======= h_index_cmd_sort =======
5850 <HTML>
5851 <HEAD>
5852 <TITLE>Sort Command</TITLE>
5853 </HEAD>
5854 <BODY>
5855 <H1>Sort Command</H1>
5857 In Alpine's generic configuration, messages are presented in the order in
5858 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5859 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5860 You can also re-sort the folder on demand with the sort
5861 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5862 command.
5863 Your sorting options are:
5865 <UL>
5866  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5867  <LI> <A HREF="h_index_sort_date">D</A>ate
5868  <LI> <A HREF="h_index_sort_subj">S</A>ubject
5869  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
5870  <LI> t<A HREF="h_index_sort_thread">H</A>read
5871  <LI> <A HREF="h_index_sort_from">F</A>rom
5872  <LI> si<A HREF="h_index_sort_size">Z</A>e
5873  <LI> scor<A HREF="h_index_sort_score">E</A>,
5874  <LI> <A HREF="h_index_sort_to">T</A>o
5875  <LI> <A HREF="h_index_sort_cc">C</A>c
5876 </UL>
5879 The Reverse option will toggle the order the index is currently
5880 sorted by, but will not change the relative sort order.
5883 Sorting a folder does not actually rearrange the way the folder is saved,
5884 it just re-arranges how the messages are presented to you.  This means
5885 that Alpine has to do the work of sorting every time you change sort order.
5886 Sometimes, especially with PC-Alpine or with large folders, this could take
5887 a while.
5890 &lt;End of help on this topic&gt;
5891 </BODY>
5892 </HTML>
5893 ======= h_index_sort_default =======
5894 <HTML>
5895 <HEAD>
5896 <TITLE>SORT OPTION: Default</TITLE>
5897 </HEAD>
5898 <BODY>
5899 <H1>SORT OPTION: Default</H1>
5901 The <EM>Default</EM> sort option just means to use the default sort order
5902 set in the
5903 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
5904 option in Setup/Config.
5907 &lt;End of help on this topic&gt;
5908 </BODY>
5909 </HTML>
5910 ======= h_index_sort_arrival =======
5911 <HTML>
5912 <HEAD>
5913 <TITLE>SORT OPTION: Arrival</TITLE>
5914 </HEAD>
5915 <BODY>
5916 <H1>SORT OPTION: Arrival</H1>
5918 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5919 in the order that they exist in the folder.  This is usually the same as the
5920 order in which they arrived.  This option is comparable to not sorting
5921 the messages at all.
5924 &lt;End of help on this topic&gt;
5925 </BODY>
5926 </HTML>
5927 ======= h_index_sort_date =======
5928 <HTML>
5929 <HEAD>
5930 <TITLE>SORT OPTION: Date</TITLE>
5931 </HEAD>
5932 <BODY>
5933 <H1>SORT OPTION: Date</H1>
5935 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5936 according to the date and time they were
5937 sent.
5940 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
5941 identical to sorting by &quot;Arrival&quot;.
5944 &lt;End of help on this topic&gt;
5945 </BODY>
5946 </HTML>
5947 ======= h_index_sort_subj =======
5948 <HTML>
5949 <HEAD>
5950 <TITLE>SORT OPTION: Subject</TITLE>
5951 </HEAD>
5952 <BODY>
5953 <H1>SORT OPTION: Subject</H1>
5955 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5956 by subject. 
5959 Messages with the same subject are
5960 first grouped together, and then the groups of like-subject messages
5961 are arranged alphabetically.
5964 Alpine ignores leading &quot;Re:&quot; and
5965 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
5966 likeness and alphabetical order of subject lines.
5969 &lt;End of help on this topic&gt;
5970 </BODY>
5971 </HTML>
5972 ======= h_index_sort_ordsubj =======
5973 <HTML>
5974 <HEAD>
5975 <TITLE>SORT OPTION: OrderedSubject</TITLE>
5976 </HEAD>
5977 <BODY>
5978 <H1>SORT OPTION: OrderedSubject</H1>
5980 The <EM>OrderedSubject</EM> sort option arranges messages in the
5981 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
5982 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
5985 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
5986 messages by the date of the oldest message in the group.
5989 This sort method provides for pseudo threading of conversations within
5990 a folder.
5991 You may want to try sorting by Thread instead.
5994 &lt;End of help on this topic&gt;
5995 </BODY>
5996 </HTML>
5997 ======= h_index_sort_thread =======
5998 <HTML>
5999 <HEAD>
6000 <TITLE>SORT OPTION: Thread</TITLE>
6001 </HEAD>
6002 <BODY>
6003 <H1>SORT OPTION: Thread</H1>
6005 The <EM>Thread</EM> sort option arranges messages in the
6006 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6007 they are part of a conversation (discussion thread) taking
6008 place within a mailbox or newsgroup.  This indication is
6009 based on information in the message's header -- specifically
6010 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6013 &lt;End of help on this topic&gt;
6014 </BODY>
6015 </HTML>
6016 ======= h_index_sort_from =======
6017 <HTML>
6018 <HEAD>
6019 <TITLE>SORT OPTION: From</TITLE>
6020 </HEAD>
6021 <BODY>
6022 <H1>SORT OPTION: From</H1>
6024 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6025 by the name of the author of the message.
6028 Messages with the same author are grouped together. Groups of
6029 messages are then put into alphabetical order according to message
6030 author.
6033 &lt;End of help on this topic&gt;
6034 </BODY>
6035 </HTML>
6036 ======= h_index_sort_size =======
6037 <HTML>
6038 <HEAD>
6039 <TITLE>SORT OPTION: Size</TITLE>
6040 </HEAD>
6041 <BODY>
6042 <H1>SORT OPTION: Size</H1>
6044 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6045 by their relative sizes.
6048 &lt;End of help on this topic&gt;
6049 </BODY>
6050 </HTML>
6051 ======= h_index_sort_score =======
6052 <HTML>
6053 <HEAD>
6054 <TITLE>SORT OPTION: Score</TITLE>
6055 </HEAD>
6056 <BODY>
6057 <H1>SORT OPTION: Score</H1>
6059 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6060 by their scores.
6063 Messages with the same score are sorted in arrival order.
6064 Scores are something you create using the
6065 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6068 &lt;End of help on this topic&gt;
6069 </BODY>
6070 </HTML>
6071 ======= h_index_sort_to =======
6072 <HTML>
6073 <HEAD>
6074 <TITLE>SORT OPTION: To</TITLE>
6075 </HEAD>
6076 <BODY>
6077 <H1>SORT OPTION: To</H1>
6079 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6080 by the names of the recipients of the message.
6083 Messages with the same recipients are grouped together. Groups of
6084 messages are then put into alphabetical order according to message
6085 recipients.
6088 &lt;End of help on this topic&gt;
6089 </BODY>
6090 </HTML>
6091 ======= h_index_sort_cc =======
6092 <HTML>
6093 <HEAD>
6094 <TITLE>SORT OPTION: Cc</TITLE>
6095 </HEAD>
6096 <BODY>
6097 <H1>SORT OPTION: Cc</H1>
6099 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6100 the names of the carbon copy addresses of the message.
6103 &lt;End of help on this topic&gt;
6104 </BODY>
6105 </HTML>
6106 ======= h_index_cmd_whereis =======
6107 <HTML>
6108 <HEAD>
6109 <TITLE>WhereIs Command</TITLE>
6110 </HEAD>
6111 <BODY>
6112 <H1>WhereIs Command</H1>
6114 The WhereIs
6115 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6116 command lets you search the MESSAGE INDEX for a word.
6117 It scans through whatever you see, usually the name of the author
6118 and the Subject line.
6119 WhereIs has special subcommands to let you find the beginning of the
6120 index (Ctrl-Y -- first message)
6121 or the end of the index (Ctrl-V -- last message).
6123 Note that WhereIs only searches through the visible text on the screen.
6124 For example, if only part of the Subject of a message is shown because it
6125 is long, then only the visible portion of the Subject is searched.
6126 Also note that WhereIs does not &quot;see&quot; the 
6127 &quot;X&quot; in column one of Index entries for selected messages
6128 so it can't be used to search for
6129 selected messages (use &quot;Zoom&quot; instead).
6131 If the feature
6132 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6133 is turned on,
6134 WhereIs can also be used as a quick way to select messages that match the
6135 string being searched for.
6136 Instead of typing carriage return to search for the next match, type
6137 Ctrl-X to select all matches.
6138 Once again, this only selects matches that are (or would be if the right
6139 index line was on the screen) visible.
6140 Truncated From lines or Subjects will cause matches to be missed.
6141 Although WhereIs is sometimes convenient for quick matching, the Select
6142 command is usually more powerful and usually faster.
6145 &lt;End of help on this topic&gt;
6146 </BODY>
6147 </HTML>
6148 ======= h_view_cmd_whereis =======
6149 <HTML>
6150 <HEAD>
6151 <TITLE>WhereIs Command</TITLE>
6152 </HEAD>
6153 <BODY>
6154 <H1>WhereIs Command</H1>
6156 The WhereIs
6157 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6158 command does a &quot;find in current message&quot; operation.  You
6159 type in text and Alpine will try to find it in the message you are
6160 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6161 or end (Ctrl-V) of the message.
6162 That is, to rapidly move to the end of a message, hit the 
6163 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6164 (or Ctrl-W) key followed
6165 by Ctrl-V.  Similarly,
6166 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6167 followed by Ctrl-Y will take you to the beginning of a message.
6170 &lt;End of help on this topic&gt;
6171 </BODY>
6172 </HTML>
6173 ======= h_view_cmd_hilite =======
6174 <HTML>
6175 <HEAD>
6176 <TITLE>View Hilite and Next item/Previous item</TITLE>
6177 </HEAD>
6178 <BODY>
6179 <H1>View Hilite and Next item/Previous item</H1>
6181 Sometimes messages may be in the form of formatted HTML text
6182 or they may contain URLs or Web server hostnames.
6183 When any of the features
6184 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6185 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6186 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6188 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6189 are enabled, Alpine will represent such selectable items in the text
6190 in bold typeface.  One of the selectable items will be displayed in
6191 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6192 Press the Return key to view the currently selected item.
6195 The Up and Down Arrows keys can be used to change the selected item
6196 (also see the feature
6197 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6198 If there are no selectable items in the direction of the arrow you
6199 pressed, Alpine will scroll the display in that direction until one
6200 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6201 items in the message text, use the Previous and Next item commands,
6202 <!--chtml if pinemode="function_key"-->F5 and F6
6203 <!--chtml else-->^B and ^F<!--chtml endif-->.
6206 &lt;End of help on this topic&gt;
6207 </BODY>
6208 </HTML>
6209 ======= h_view_cmd_viewattch =======
6210 <HTML>
6211 <HEAD>
6212 <TITLE>ViewAttch Command</TITLE>
6213 </HEAD>
6214 <BODY>
6215 <H1>ViewAttch Command</H1>
6218 The View/Save Attachment
6219 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6220 command allows you to handle MIME attachments to a message you have
6221 received.  Alpine shows you a list of the message attachments -- you just
6222 choose the attachment you want.  You may either view or save the
6223 selected attachment.
6226 Because many attachments require external programs for display, there
6227 is some system configuration that has to happen before you can
6228 actually display attachments.  Hopefully much of that will have been
6229 done already by your system administrator.  MIME configuration is
6230 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6231 on configuration in the
6232 <A HREF="h_news">release notes</A> for more information.)
6235 &lt;End of help on this topic&gt;
6236 </BODY>
6237 </HTML>
6238 ======= h_index_cmd_expunge =======
6239 <HTML>
6240 <HEAD>
6241 <TITLE>Expunge/Exclude Command</TITLE>
6242 </HEAD>
6243 <BODY>
6244 <H1>Expunge/Exclude Command</H1>
6246 Expunge/Exclude
6247 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6248 is the command Alpine uses to actually remove all messages
6249 marked for deletion.  With regular email files, expunge literally deletes
6250 the text from the current folder.  With newsgroups or shared mailboxes,
6251 you don't have permission to actually remove the message, so it is an
6252 exclude -- Alpine removes the message from your view of the folder even
6253 though it is not technically gone.
6255 <P> A selective expunge command is available in IMAP folders that support 
6256 the UID EXPUNGE extension in <A 
6257 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6258 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6259 as a subcommand of the apply command. If some selected messages are marked 
6260 deleted, then the apply command will offer the eXpunge command, which when 
6261 executed will only expunge those messages that are selected and deleted.
6263 <P> 
6264 Observe that the expunge command (when not used from the apply command) 
6265 will expunge/exclude all deleted messages from the folder, and so all 
6266 messages marked deleted will be expunged, regardless of if they are 
6267 selected or not. In other words, there is no protection against 
6268 potentially expunging more messages than only those that have been 
6269 selected and deleted.
6272 The configuration features
6273 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6275 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6276 affect the behavior of the Expunge command.
6279 &lt;End of help on this topic&gt;
6280 </BODY>
6281 </HTML>
6282 ======= h_common_compose =======
6283 <HTML>
6284 <HEAD>
6285 <TITLE>Compose Command</TITLE>
6286 </HEAD>
6287 <BODY>
6288 <H1>Compose Command</H1>
6290 The Compose command takes you into the Alpine message composer where you
6291 can start a new message for sending.  This is where you type in the
6292 message's text and specify its recipient list (the &quot;To:&quot;
6293 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6294 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6295 be attached to the message.
6298 When you type this command, Alpine will also automatically check for any
6299 interrupted (i.e., a message that was being composed when your modem
6300 or network connection was broken) or previously postponed messages and
6301 offer you a chance to continue working on those.
6304 <UL>   
6305 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6306 </UL><P>
6307 &lt;End of help on this topic&gt;
6308 </BODY>
6309 </HTML>
6310 ======= h_common_index =======
6311 <HTML>
6312 <HEAD>
6313 <TITLE>Message Index Command</TITLE>
6314 </HEAD>
6315 <BODY>
6316 <H1>Message Index Command</H1>
6318 The Index command takes you to the MESSAGE INDEX screen that displays a
6319 summary caption for each message in the currently-open folder. One
6320 message will be highlighted; this is the &quot;Current&quot; message.
6321 The message commands available from this screen (e.g. View, Reply,
6322 Forward, Delete, Print, Save, etc) apply to the current message.
6325 &lt;End of help on this topic&gt;
6326 </BODY>
6327 </HTML>
6328 ======= h_common_folders =======
6329 <HTML>
6330 <HEAD>
6331 <TITLE>Folder List Command</TITLE>
6332 </HEAD>
6333 <BODY>
6334 <H1>Folder List Command</H1>
6336 This Folder List command takes you to the FOLDER LIST screen that displays
6337 the names of all your message folders and allows you to view, rename,
6338 delete, and add folders.  You can open (view) a different folder than the
6339 one currently open by highlighting the desired one (using the arrow keys
6340 or their control-key equivalents) and pressing RETURN.
6343 If you have multiple folder collections defined (see the Help text for
6344 the FOLDER LIST screen to learn more about Collections), you may need
6345 to press Return to expand the collection and display all of the
6346 folders in it.
6349 &lt;End of help on this topic&gt;
6350 </BODY>
6351 </HTML>
6352 ======= h_main_addrbook =======
6353 <HTML>
6354 <HEAD>
6355 <TITLE>Address Book Command</TITLE>
6356 </HEAD>
6357 <BODY>
6358 <H1>Address Book Command</H1>
6360 This command, available only from the MAIN MENU, takes you
6361 to the ADDRESS BOOK management screen.  From here, your personal address
6362 book(s) may be updated.
6365 &lt;End of help on this topic&gt;
6366 </BODY>
6367 </HTML>
6368 ======= h_main_setup =======
6369 <HTML>
6370 <HEAD>
6371 <TITLE>Setup Command</TITLE>
6372 </HEAD>
6373 <BODY>
6374 <H1>Setup Command</H1>
6376 The Setup command, available only from the MAIN MENU, prompts you for
6377 one of several configuration screens, including the SETUP CONFIGURATION 
6378 screen, by which you may activate optional Alpine features.
6381 &lt;End of help on this topic&gt;
6382 </BODY>
6383 </HTML>
6384 ======= h_main_release_notes =======
6385 <HTML>
6386 <HEAD>
6387 <TITLE>Release Notes Command</TITLE>
6388 </HEAD>
6389 <BODY>
6390 <H1>Release Notes Command</H1>
6392 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6393 as well as pointers to further information such as history and legal notes.
6396 &lt;End of help on this topic&gt;
6397 </BODY>
6398 </HTML>
6399 ======= h_main_kblock =======
6400 <HTML>
6401 <HEAD>
6402 <TITLE>Keyboard Lock Command</TITLE>
6403 </HEAD>
6404 <BODY>
6405 <H1>Keyboard Lock Command</H1>
6407 This command allows your Alpine session to be protected
6408 during a temporary absence from your terminal.
6411 &lt;End of help on this topic&gt;
6412 </BODY>
6413 </HTML>
6414 ======= h_main_journal =======
6415 <HTML>
6416 <HEAD>
6417 <TITLE>Journal Command</TITLE>
6418 </HEAD>
6419 <BODY>
6420 <H1>Journal Command</H1>
6422 This command displays a list of all the status messages Alpine has
6423 displayed (on the third line from the bottom of the screen). This may
6424 be useful if a message disappeared before you had a chance to read it.
6427 &lt;End of help on this topic&gt;
6428 </BODY>
6429 </HTML>
6430 ======= h_common_role =======
6431 <HTML>
6432 <HEAD>
6433 <TITLE>Role Command</TITLE>
6434 </HEAD>
6435 <BODY>
6436 <H1>Role Command</H1>
6438 The Role command is similar to the Compose command except that it starts
6439 off by letting you select a <A HREF="h_rules_roles">role</A>
6440 to be used for the composition.
6441 You may set up alternate roles by using Setup/Rules/Roles.
6444 &lt;End of help on this topic&gt;
6445 </BODY>
6446 </HTML>
6447 ======= h_common_conditional_cmds =======
6448 <HTML>
6449 <HEAD>
6450 <TITLE>Conditional Commands</TITLE>
6451 </HEAD>
6452 <BODY>
6453 <H1>Conditional Commands</H1>
6455 The presence or absence of certain commands, particularly in the
6456 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6457 whether or not specific features are set in your Alpine configuration.  
6458 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6459 Alpine's MAIN MENU.)  To see if a desired command's availability is
6460 conditioned on a feature setting, see the command's help text (highlight
6461 the phrase associated with the command and hit Return).
6464 Also note that some
6465 commands may be administratively disabled by your system manager;
6466 if they don't work, please check with your local help desk.
6469 <UL>   
6470 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6471 </UL><P>
6472 &lt;End of help on this topic&gt;
6473 </BODY>
6474 </HTML>
6475 ======= h_common_pipe =======
6476 <HTML>
6477 <HEAD>
6478 <TITLE>Pipe Command</TITLE>
6479 </HEAD>
6480 <BODY>
6481 <H1>Pipe Command</H1>
6483 Pipe
6484 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6485 allows you to send a message to a specified Unix command for external
6486 processing.
6487 This command's availability is controlled by the
6488 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6489 feature.
6490 By default, the processed text of the message is sent to the command
6491 you specify and the output is captured by Alpine and shown to you.
6492 When you run the pipe command, there are some sub-commands which may be
6493 used to alter this behavior.
6494 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6497 &lt;End of help on this topic&gt;
6498 </BODY>
6499 </HTML>
6500 ======= h_common_goto =======
6501 <HTML>
6502 <HEAD>
6503 <TITLE>Goto Command</TITLE>
6504 </HEAD>
6505 <BODY>
6506 <H1>Goto Command</H1>
6508 Goto
6509 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6510 is the command that lets you bypass Alpine's folder selection screens
6511 and jump directly to a new folder.  You can select any folder in the
6512 world: one in your current collection, one in a different collection or
6513 one in a collection you've never even used before.
6516 Alpine will help you as much as possible to narrow in on the folder you want.
6517 However, if the folder is outside of your defined collections, you are
6518 going to have to enter the exact folder location using the correct
6519 <A HREF="h_valid_folder_names">syntax</A>
6520 for a remote folder and/or fully-qualified path name.
6523 &lt;End of help on this topic&gt;
6524 </BODY>
6525 </HTML>
6526 ======= h_common_nextnew =======
6527 <HTML>
6528 <HEAD>
6529 <TITLE>NextNew Command</TITLE>
6530 </HEAD>
6531 <BODY>
6532 <H1>NextNew Command</H1>
6534 When you press the TAB key, Alpine advances to the next
6535 &quot;interesting&quot; message.
6536 This will be the next message you have not seen before, or the next message
6537 you have flagged Important, whichever comes first.
6538 Unread messages that have been deleted are not considered interesting.
6539 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6540 articles after you have read them if you want to remove them from future
6541 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6542 more information.)
6545 The NextNew command is affected by the feature
6546 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6547 which causes Alpine to only consider Unread messages interesting, not messages
6548 flagged Important.
6551 This command behaves a little differently when it finds there are no more
6552 interesting messages left in the current folder.
6553 If the current folder is one of your Incoming Message Folders
6554 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6555 or it is a newsgroup, then Alpine will try to find the next folder or
6556 newsgroup that contains <EM>Recent</EM> messages and will ask you
6557 if you want to open that folder.
6558 This behavior may be modified by using the
6559 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6560 feature that causes Alpine to look for Unseen messages instead of Recent
6561 messages.
6562 The NextNew command's behavior is also affected by the configuration features
6563 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6565 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6568 &lt;End of help on this topic&gt;
6569 </BODY>
6570 </HTML>
6571 ======= h_common_jump =======
6572 <HTML>
6573 <HEAD>
6574 <TITLE>Jump Command</TITLE>
6575 </HEAD>
6576 <BODY>
6577 <H1>Jump Command</H1>
6579 This is Alpine's way of allowing you to go straight to a specific message.
6580 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6581 configured such that typing in any number automatically jumps you to that
6582 message 
6583 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6584 in the SETUP CONFIGURATION).
6587 &lt;End of help on this topic&gt;
6588 </BODY>
6589 </HTML>
6590 ======= h_common_flag =======
6591 <HTML>
6592 <HEAD>
6593 <TITLE>Flag Command</TITLE>
6594 </HEAD>
6595 <BODY>
6596 <H1>Flag Command</H1>
6598 Flag
6599 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6600 is the command that allows users to manipulate the status flags that
6601 appear on the left side of the MESSAGE INDEX screen.  The most common
6602 use of this is to mark a message as important. This is something of a
6603 note to yourself to get back to that message.  You may also use the
6604 flag command to set (or unset) the flags that indicate that a message
6605 is new, answered, deleted, or forwarded.<P>
6607 Provided the mail server supports it,
6608 you may also manipulate user-defined keywords
6609 for a message using the flag command.
6610 These keywords will be available if you use the Flag Details screen that you
6611 can get to after typing the
6612 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6613 command.
6614 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6615 which are always present.
6616 You may add new keywords by using the Add KW command from the Flag Details screen
6617 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6619 The availability of the flag command is determined by the
6620 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6621 feature in your Alpine configuration. Also, it is possible that Flag could be
6622 administratively disabled by your system manager; if it doesn't work,
6623 please check with your local help desk before reporting a bug.
6624 The behavior of the flag command may be modified by the
6625 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6626 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6629 &lt;End of help on this topic&gt;
6630 </BODY>
6631 </HTML>
6632 ======= h_common_hdrmode =======
6633 <HTML>
6634 <HEAD>
6635 <TITLE>HdrMode Command</TITLE>
6636 </HEAD>
6637 <BODY>
6638 <H1>HdrMode Command</H1>
6640 Every email message comes with some header lines that you normally
6641 don't see (and don't want to see).
6642 These include anywhere from 3-20 lines (or more) added by the
6643 Internet mail transport system to record the route your message took,
6644 for diagnostic purposes.
6645 These are normally of no import and simply
6646 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6647 This also includes other non-standard headers the message may contain.
6648 If you want to see these headers, there is a way to reveal them.
6651 The Header Mode
6652 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6653 command is a toggle that controls Alpine's handling of these header
6654 lines.  Normally, full headers is &quot;off&quot; and you only see a
6655 few lines about who a message is to and who it is from.  When you
6656 press
6657 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6658 to turn full headers on, Alpine will show you
6659 the normal header lines as well as delivery headers, comment headers,
6660 MIME headers, and any other headers present.
6663 Several different Alpine commands honor the header mode -- it affects how
6664 messages are displayed, how they appear in forward and reply email, how
6665 they are printed, how they are saved, and how they are exported.
6666 <!--chtml if pinemode="os_windows"-->
6667 <!--chtml else--> 
6668 The pipe command is also affected.
6669 <!--chtml endif-->
6672 The presence or absence of the Header Mode command is determined by the
6673 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6674 Feature-List option in your Alpine configuration.
6677 If you have also turned on the
6678 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6679 option then the HdrMode command actually rotates through three states
6680 instead of just two.
6681 The first is the normal view with long quotes suppressed.
6682 The second is the normal view but with the long quotes included.
6683 The last enables the display of all headers in the message.
6684 When using Export, Pipe, Print, Forward, or Reply the quotes are
6685 never suppressed, so the first two states are identical.
6688 The behavior of the Header Mode command may be altered slightly by
6689 turning on the
6690 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6691 Feature-List option in your Alpine configuration.
6692 In particular, it will cause the Header Mode to be persistent when moving
6693 from message to message instead of resetting to the default for each message.
6696 <UL>   
6697 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6698 </UL><P>
6699 &lt;End of help on this topic&gt;
6700 </BODY>
6701 </HTML>
6702 ======= h_common_print =======
6703 <HTML>
6704 <HEAD>
6705 <TITLE>Print Command</TITLE>
6706 </HEAD>
6707 <BODY>
6708 <H1>Print Command</H1>
6710 The Print
6711 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6712 command allows you to print a copy of a message.
6713 There are many SETUP CONFIGURATION features that affect the
6714 Print command, including
6715 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6716 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6717 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6718 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6719 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6720 You set up for printing by using the Printer option of the Setup command
6721 on the MAIN MENU.
6725 &lt;End of help on this topic&gt;
6726 </BODY>
6727 </HTML>
6728 ======= h_common_take =======
6729 <HTML>
6730 <HEAD>
6731 <TITLE>TakeAddr Command</TITLE>
6732 </HEAD>
6733 <BODY>
6734 <H1>TakeAddr Command</H1>
6737 With the Take Address
6738 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6739 command, you can extract email addresses from an
6740 incoming message and save them in an address book.  This is an easy way
6741 to add to your address book and avoid having to remember the email
6742 addresses of the people who write to you.
6745 If the message is just to you individually, then you will only need to
6746 provide a nickname.  If the message contains more than one email address,
6747 then you will see an address
6748 selection screen that lets you choose the address you want to save into
6749 your address book, or lets you choose several of them add to a
6750 personal distribution list.
6753 Once you've added an entry to your address book, you can use it from the
6754 message composer by typing the nickname of the entry into one of the
6755 header fields (for example, into the To: field), or you can use ^T from
6756 the header field to select the entry from your address book.
6759 If the configuration feature
6760 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6761 is set, the behavior of the Take command is altered slightly.
6764 &lt;End of help on this topic&gt;
6765 </BODY>
6766 </HTML>
6767 ======= h_ge_import =======
6768 <HTML>
6769 <HEAD>
6770 <TITLE>Import File Selection</TITLE>
6771 </HEAD>
6772 <BODY>
6773 <H1>Import File Selection</H1>
6775 You are importing a file that you previously
6776 exported from Alpine.
6777 You are now being asked for the name of that file.
6778 The easiest way to select a file is probably with the &quot;^T&quot;
6779 &quot;To Files&quot; command.
6780 Alternatively, you may type in a file name.
6781 It may be an absolute pathname.
6782 Otherwise, it is a file located in your home directory
6783 or current working directory
6784 <!--chtml if pinemode="running"-->
6785 (which, at least for your current Alpine &quot;session,&quot; 
6786 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6787 <!--chtml endif-->, depending on the
6788 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6789 In any case, you finish by typing a carriage return to accept the
6790 file name that is displayed.
6791 When the feature
6792 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6793 is turned on you may use TAB to complete partially typed in names.
6795 You may cancel the import operation by typing &quot;^C&quot; after exiting
6796 this help.
6798 &lt;End of help on this topic&gt;
6799 </BODY>
6800 </HTML>
6801 ======= h_ge_allparts =======
6802 <HTML>
6803 <HEAD>
6804 <TITLE>Export Message File Selection</TITLE>
6805 </HEAD>
6806 <BODY>
6807 <H1>Export Message File Selection</H1>
6809 You are Exporting a message from an Alpine mail folder
6810 to a plain text file.
6811 You also have the option of exporting all of the attachments associated
6812 with the message.
6813 You are now being asked for the name of the file to export <EM>to</EM>.
6814 The easiest way to select a file is probably with the &quot;^T&quot;
6815 &quot;To Files&quot; subcommand.
6816 After returning from that subcommand you will still be allowed to
6817 edit the name you have selected.
6818 Alternatively, you may type in a file name.
6819 It may be an absolute pathname.
6820 Otherwise, it is a file located in your home directory
6821 or current working directory
6822 <!--chtml if pinemode="running"-->
6823 (which, at least for your current Alpine &quot;session,&quot; 
6824 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6825 <!--chtml endif-->, depending on the
6826 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6827 In any case, you finish by typing a carriage return to accept the
6828 file name that is displayed.
6829 When the feature
6830 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6831 is turned on you may use TAB to complete partially typed in names.
6833 The message you are exporting appears to have some attachments.
6834 If you wish to save <EM>all</EM> of the attachments at once,
6835 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6836 saving of the attachments.
6837 You may turn it back off by typing &quot;^P&quot; again, which will now
6838 be labeled &quot;NoAllParts&quot; instead.
6839 If you want to save the parts the command displayed should be
6840 &quot;NoAllParts&quot;!
6841 When you choose to save attachments like this, the attachments will be saved
6842 in a newly created directory.
6843 That directory will have the same name as the file name you choose here,
6844 with the letters &quot;.d&quot; appended.
6845 If that directory already exists, then the letters &quot;.d_1&quot; will
6846 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6847 is found.
6848 For example, if you select the file name
6850 <CENTER><SAMP>filename</SAMP></CENTER>
6852 to export the message to, then the directory used for the attachments will be
6854 <CENTER><SAMP>filename.d</SAMP></CENTER>
6856 or perhaps
6858 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6860 The attachments will then be put into files inside that directory.
6861 The names for the attachment files will be derived from the attachments
6862 if possible.
6863 This is done in the same way as the default values are derived if you
6864 save them one at a time.
6865 (The &quot;filename&quot; parameter from the Content-Disposition header
6866 is the first choice. If that doesn't exist, the &quot;name&quot;
6867 parameter from the Content-Type header is used.)
6868 If a name for a particular attachment is not available, then the
6869 part number of the attachment is used, with the characters &quot;part_&quot;
6870 prepended.
6871 An example of that would be
6873 <CENTER><SAMP>part_2.1</SAMP></CENTER>
6875 If you want to save only some of the attachments or if you want more control
6876 over the directory and filename where an attachment is saved you may
6877 cancel out of this command and View the attachment list.
6878 From there you can save each attachment individually.
6880 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6881 this help.
6883 &lt;End of help on this topic&gt;
6884 </BODY>
6885 </HTML>
6886 ======= h_ge_export =======
6887 <HTML>
6888 <HEAD>
6889 <TITLE>Export File Selection</TITLE>
6890 </HEAD>
6891 <BODY>
6892 <H1>Export File Selection</H1>
6894 You are Exporting or Saving something from within the Alpine world
6895 (a message, an attachment, etc.)
6896 to a plain text file.
6897 You are now being asked for the name of the file to export <EM>to</EM>.
6898 The easiest way to select a file is probably with the &quot;^T&quot;
6899 &quot;To Files&quot; subcommand.
6900 After returning from that subcommand you will still be allowed to
6901 edit the name you have selected.
6902 Alternatively, you may type in a file name.
6903 It may be an absolute pathname.
6904 Otherwise, it is a file located in your home directory
6905 or current working directory
6906 <!--chtml if pinemode="running"-->
6907 (which, at least for your current Alpine &quot;session,&quot; 
6908 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6909 <!--chtml endif-->, depending on the
6910 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6911 In any case, you finish by typing a carriage return to accept the
6912 file name that is displayed.
6913 When the feature
6914 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6915 is turned on you may use TAB to complete partially typed in names.
6917 If the object you are exporting is a message with some attachments,
6918 you may wish to save all of the attachments by typing the &quot;^P&quot;
6919 &quot;AllParts&quot; command to turn on saving of the attachments.
6920 This subcommand will only be visible if the message actually has attachments.
6921 You may also View the attachment list and save individual attachments from
6922 there.
6924 If you are SAVING a text part (text/plain, text/html, etc.) you can use
6925 the Control-R subcommand to toggle if saving will be done in binary mode,
6926 meaning that the attachment will be decoded, but will not be transformed
6927 to UTF-8 for further processing (either in internal filters, or user
6928 supplied filters.) This is useful in case you either want to preserve
6929 the text as it was encoded originally to you, or the attachment was
6930 incorrectly attached (the attachment is not of text type) and you need
6931 the original text to process the attachment.
6933 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6934 this help.
6936 &lt;End of help on this topic&gt;
6937 </BODY>
6938 </HTML>
6939 ======= h_common_save =======
6940 <HTML>
6941 <HEAD>
6942 <TITLE>Save and Export Commands</TITLE>
6943 </HEAD>
6944 <BODY>
6945 <H1>Save and Export Commands</H1>
6947 Save
6948 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
6949 and Export
6950 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
6951 are the two alternatives Alpine gives you to keep a copy of the message
6952 you are reading. If you want to keep the message within Alpine's email
6953 world, use &quot;Save&quot;; if you want to use the message in another
6954 program, use &quot;Export&quot;.
6957 When you Save a message, it is put into an existing folder or into a new
6958 folder in one of your existing folder collections.  The message stays in
6959 email format and can be read by Alpine again.  Alpine may use a special format
6960 for its mail folders -- never edit an Alpine folder by hand or with any
6961 program other than Alpine.  The exact behavior of the Save command can be
6962 configured with the
6963 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
6964 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
6965 and 
6966 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
6967 feature list settings.
6968 The name of the folder offered as a default is controlled by the option
6969 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
6972 When you use Export, the message is placed in a plain text file in your
6973 home directory 
6974 <!--chtml if pinemode="running"-->
6975 (which, in the present configuration of your system, is
6976  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6977 <!--chtml endif-->
6978 or current working directory
6979 <!--chtml if pinemode="running"-->
6980 (which, at least for your current Alpine &quot;session,&quot; 
6981 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6982 <!--chtml endif-->, depending on the
6983 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6984 configuration setting.  In the normal case, only minimal
6985 headers are exported with the message; however, if the full header mode 
6986 (whose availability may be disabled  by setting the feature 
6987 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6988 in SETUP CONFIGURATION) is
6989 toggled on, then complete headers are exported along with the message
6990 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
6991 defined, they may affect the contents of the exported file.)
6994 &lt;End of help on this topic&gt;
6995 </BODY>
6996 </HTML>
6997 ======= h_common_bounce =======
6998 <HTML>
6999 <HEAD>
7000 <TITLE>Bounce Command</TITLE>
7001 </HEAD>
7002 <BODY>
7003 <H1>Bounce Command</H1>
7005 The Bounce 
7006 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7007 command allows you to re-send, or &quot;remail&quot;, a
7008 message, as if you were never in the loop.  It is analogous to crossing
7009 out your address on a postal letter, writing a different address on the
7010 envelope, and putting it into the mailbox. Bounce is used primarily to
7011 redirect email that was sent to you in error.
7012 Also, some owners of email
7013 lists need the bounce command to handle list traffic.
7014 Bounce is not anonymous.
7015 A ReSent-From header is added to the message so that the recipient may
7016 tell that you Bounced it to them.
7019 The presence or absence of the Bounce command is determined by the
7020 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7021 feature in your Alpine configuration.
7022 The feature
7023 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7024 affects the behavior of the Bounce command.
7025 Also, it is possible that Bounce could be
7026 administratively disabled by your system manager; if it doesn't work,
7027 please check with your local help desk before reporting a bug.
7030 &lt;End of help on this topic&gt;
7031 </BODY>
7032 </HTML>
7033 ======= h_common_reply =======
7034 <HTML>
7035 <HEAD>
7036 <TITLE>Reply and Forward Commands</TITLE>
7037 </HEAD>
7038 <BODY>
7040 <H1>Reply and Forward Commands</H1>
7042 Replying 
7043 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7044 and Forwarding 
7045 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7046 are your two alternatives for following up on the
7047 message you are reading.  You would use reply if you want to get email
7048 back to the author of the message and/or the other people who have
7049 already seen it.  You use forward if you want somebody new to see the
7050 message.
7053 In the normal case, the only thing that you must supply when forwarding a
7054 message is the name/email address of the new recipient.
7055 Alpine will include the text of the forwarded message.
7056 Alpine will also include any attachments to the message.
7057 There is space above the forwarded text for you to include additional comments.
7060 When replying, you usually have to answer some questions.
7061 If the message is to multiple people and/or specified with a Reply-To: header,
7062 then you will have to decide who should get the reply.
7063 You also need to decide whether or not to include the previous
7064 message in your reply.
7065 Some of this is configurable.
7066 Specifically, see the
7067 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7068 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7069 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7071 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7072 configuration features.
7075 Both the Reply and Forward commands react to the full header mode toggle.
7076 If the full header mode is on, then all the header and delivery lines are
7077 included with the text of the message in your reply/forward.
7080 Other configuration features that affect the Reply command are
7081 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7082 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7083 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7086 &lt;End of help on this topic&gt;
7087 </BODY>
7088 </HTML>
7089 ======= h_common_delete =======
7090 <HTML>
7091 <HEAD>
7092 <TITLE>Delete and Undelete Commands</TITLE>
7093 </HEAD>
7094 <BODY>
7095 <H1>Delete and Undelete Commands</H1>
7097 Delete 
7098 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7099 and Undelete 
7100 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7101 allow you to change the Deleted flag for the current message.
7102 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7103 removes the mark.
7104 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7105 at the left hand edge of the index line.
7106 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7107 in the upper right hand corner of the screen.
7108 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7109 get rid of the message.
7110 The eXpunge command (available from the MESSAGE INDEX screen) actually
7111 removes all of the deleted messages in a folder.
7112 Once a message is eXpunged, it can't be retrieved.
7115 The Delete command is affected by the setting of the configuration feature
7116 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7119 &lt;End of help on this topic&gt;
7120 </BODY>
7121 </HTML>
7122 ======= h_common_postpone =======
7123 <HTML>
7124 <HEAD>
7125 <TITLE>Postpone Command</TITLE>
7126 </HEAD>
7127 <BODY>
7128 <H1>Postpone Command</H1>
7130 The postpone
7131 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7132 command allows you to temporarily stop working on the current
7133 message so you may read
7134 other messages or compose another message.  When you want to resume a
7135 message later, start to compose and answer &quot;yes&quot; to the
7136 &quot;Continue postponed composition?&quot; question.  You may
7137 postpone as many messages as you like.
7140 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7141 in the Setup/Config screen, then the Postpone command will prompt you for
7142 the folder in which to store your outgoing message.
7145 &lt;End of help on this topic&gt;
7146 </BODY>
7147 </HTML>
7148 ======= h_compose_cancel =======
7149 <HTML>
7150 <HEAD>
7151 <TITLE>Cancel Command</TITLE>
7152 </HEAD>
7153 <BODY>
7154 <H1>Cancel Command</H1>
7156 Cancel
7157 <!--chtml if pinemode="function_key"-->
7158 (F2)
7159 <!--chtml else-->
7160 (^C) 
7161 <!--chtml endif-->
7163 The Cancel command returns you to Alpine's normal mail processing and
7164 causes the message currently under composition to be thrown out.
7165 The message text <EM>will be lost</EM>.
7168 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
7169 will be preserved in the file named
7170 <!--chtml if pinemode="os_windows"-->
7171 &quot;DEADLETR&quot;.
7172 <!--chtml else-->
7173 &quot;dead.letter&quot; in your home directory.
7174 <!--chtml endif-->
7175 If you unintentionally cancel a message, look there for its text.
7178 &lt;End of help on this topic&gt;
7179 </BODY>
7180 </HTML>
7181 ======= h_compose_addrcomplete =======
7182 <HTML>
7183 <HEAD>
7184 <TITLE>Address Completion</TITLE>
7185 </HEAD>
7186 <BODY>
7187 <H1>Address Completion</H1>
7189 When entering addresses in the address fields of the composer (To, Cc, etc.)
7190 the TAB key may be used to help complete the address.
7191 Type a partial nickname and tap the TAB key to complete the typing.
7192 The unambiguous part of the name will be filled in automatically.
7193 Typing TAB twice in succession will bring up a selection list of possibilities,
7194 making it easy to find and choose the correct address.
7197 The matching algorithm is rather ad hoc.
7198 The search starts with a search of your address book.
7199 It counts as a match if the nickname, address, or fullname field of an
7200 entry begins with the text typed in so far. It is also a match if
7201 a later word in the fullname (for example, the middle name or last name)
7202 begins with the entered text.
7204 Next comes an LDAP search.
7205 The search will happen for any servers that have the
7206 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7207 feature set. You can set or unset the feature for each server independently
7208 in the Setup/Directory screen.
7210 Finally, if you are replying to or forwarding a message, that message is
7211 searched for likely candidate addresses that match the typed-in text.
7214 &lt;End of help on this topic&gt;
7215 </BODY>
7216 </HTML>
7217 ======= h_compose_richhdr =======
7218 <HTML>
7219 <HEAD>
7220 <TITLE>Rich Header Command</TITLE>
7221 </HEAD>
7222 <BODY>
7223 <H1>Rich Header Command</H1>
7225 The Rich Header command allows you to toggle between the list of 
7226 all message headers available for editing and those that are most
7227 common.
7230 Use this toggle to expose headers that are not normally visible by
7231 default.
7232 This set usually includes the
7233 &quot;Bcc:&quot;,
7234 &quot;Fcc:&quot;,
7235 &quot;Lcc:&quot;,
7236 and &quot;Newsgroups&quot;
7237 headers.
7238 If you are posting to a newsgroup the set of defaults is a little different.
7239 Obviously, in that case, the Newsgroups header is of interest so is not
7240 hidden.
7241 For news posting the hidden set includes the
7242 &quot;To:&quot;,
7243 &quot;Cc:&quot;,
7244 &quot;Bcc:&quot;,
7245 &quot;Fcc:&quot;,
7246 and &quot;Lcc:&quot;
7247 headers.
7248 You won't normally want to edit these, which is why they are hidden,
7249 but it is sometimes useful to be able to set them manually.
7252 The default sets of headers listed above can be altered.
7253 Any header that you have added to the
7254 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7255 option, but not to the
7256 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7257 option will appear when you use the Rich Headers command to
7258 make the Rich Headers visible.
7259 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7260 even without toggling the Rich Headers command.)
7263 &lt;End of help on this topic&gt;
7264 </BODY>
7265 </HTML>
7266 ======= h_compose_send =======
7267 <HTML>
7268 <HEAD>
7269 <TITLE>Send Command</TITLE>
7270 </HEAD>
7271 <BODY>
7272 <H1>Send Command</H1>
7274 The Send command
7275 <!--chtml if pinemode="function_key"-->
7276 (F3)
7277 <!--chtml else-->
7278 (^X) 
7279 <!--chtml endif-->
7280 tells Alpine you are finished composing.
7281 Before actually sending it, though, Alpine will ask you to confirm 
7282 your intention, and, at the same time, redisplayed the message text
7283 with the recipients at the top of the screen to give you the opportunity
7284 to review and verify that the message is addressed to the people
7285 you intended.
7287 If the feature
7288 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7289 then this confirmation prompt and any options it allows are skipped.
7292 This confirmation prompt may also offer, depending
7293 on your particular Setup/Config, options allowing you to set
7294 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7295 include attachments in the &quot;Fcc&quot; (if you had previously
7296 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7297 observe details of the
7298 <A HREF="h_config_verbose_post">message submission process</A>,
7299 choose the filter through which the
7300 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7301 or turn of flowed text generation.
7304 &lt;End of help on this topic&gt;
7305 </BODY>
7306 </HTML>
7307 ======= h_compose_markcutpaste =======
7308 <HTML>
7309 <HEAD>
7310 <TITLE>Mark, Cut and Paste Commands</TITLE>
7311 </HEAD>
7312 <BODY>
7313 <H1>Mark, Cut and Paste Commands</H1>
7315 You can define a &quot;block&quot; of text, which can subsequently
7316  be deleted or
7317 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7318 then moving the cursor to the end of the desired text block.  You can then
7319 &quot;cut&quot; the block out 
7320 <!--chtml if pinemode="function_key"-->
7321 &quot;F9&quot;,
7322 <!--chtml else-->
7323 &quot;Ctrl-K&quot;,
7324 <!--chtml endif-->
7325 move the cursor, and &quot;paste&quot; it
7326 <!--chtml if pinemode="function_key"-->
7327 &quot;F10&quot;,
7328 <!--chtml else-->
7329 &quot;Ctrl-U&quot;,
7330 <!--chtml endif-->
7331 in the new location.  Also, you can paste more than once, allowing you
7332 to use this feature to copy a block of text.<P>
7334 If you press 
7335 <!--chtml if pinemode="function_key"-->
7336 &quot;F9&quot;
7337 <!--chtml else-->
7338 &quot;^K&quot;
7339 <!--chtml endif-->
7340 without having marked anything, Alpine will delete
7341 a single line.  If you delete a group of lines together, Alpine keeps them
7342 in the same buffer, so 
7343 <!--chtml if pinemode="function_key"-->
7345 <!--chtml else-->
7347 <!--chtml endif-->
7348 will restore them as a block.  About
7349 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7350 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7351 &quot;type the character ^&quot;.
7354 &lt;End of help on this topic&gt;
7355 </BODY>
7356 </HTML>
7357 ======= h_compose_justify =======
7358 <HTML>
7359 <HEAD>
7360 <TITLE>Justify Command</TITLE>
7361 </HEAD>
7362 <BODY>
7363 <H1>Justify Command</H1>
7365 The Justify
7366 <!--chtml if pinemode="function_key"-->
7367 (F4)
7368 <!--chtml else-->
7369 (^J) 
7370 <!--chtml endif-->
7371 command reformats the text in the paragraph the cursor is in.
7372 Paragraphs are separated by one blank line or a line beginning with a space.
7373 This is useful when you have been editing a paragraph and the lines become
7374 uneven.  The text is left aligned or justified and the right is ragged.  If
7375 the text is already justified as typed with auto-wrap, no justification will
7376 be done.
7379 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7380 block of text, the Justify command is modified.
7381 Instead of automatically justifying the current paragraph you will be
7382 asked if you want to justify the paragraph, justify the selected region,
7383 or adjust the quote level of the selected region.
7384 Adjusting the quote level only works if you are using standard
7385 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7386 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7389 When composing a reply containing included text, the justify command
7390 will reformat text to the right of the 
7391 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7392 adding or removing indented lines as needed.  Paragraphs are separated
7393 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7394 line containing the indent string and one or more blank spaces.
7395 Included text that was previously indented (or &quot;quoted&quot;) is
7396 not preserved.
7399 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7400 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7401 use the standard
7402 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7405 &lt;End of help on this topic&gt;
7406 </BODY>
7407 </HTML>
7408 ======= h_compose_spell =======
7409 <HTML>
7410 <HEAD>
7411 <TITLE>Spell Check Command</TITLE>
7412 </HEAD>
7413 <BODY>
7414 <H1>Spell Check Command</H1>
7416 The &quot;To Spell&quot;
7417 <!--chtml if pinemode="function_key"-->
7418 (F12)
7419 <!--chtml else-->
7420 (^T) 
7421 <!--chtml endif-->
7422 command calls an external spell checking program to look over the
7423 message you are composing.  By default, Alpine uses
7425 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7427 if it knows where to find &quot;aspell&quot;.
7428 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7429 then the command used is
7431 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7433 Otherwise, the ancient &quot;spell&quot; command is used.
7435 For PC-Alpine, you must install the aspell library code that you
7436 may get from
7437 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7440 &lt;End of help on this topic&gt;
7441 </BODY>
7442 </HTML>
7443 ======= h_compose_alted =======
7444 <HTML>
7445 <HEAD>
7446 <TITLE>Alt Editor Command</TITLE>
7447 </HEAD>
7448 <BODY>
7449 <H1>Alt Editor Command</H1>
7451 The &quot;Alt Editor&quot; command's availability depends on the
7452 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7455 When the variable specifies a valid editor on your system, this
7456 command will launch it with the current text of your message
7457 already filled in.
7460 &lt;End of help on this topic&gt;
7461 </BODY>
7462 </HTML>
7463 ======= h_compose_readfile =======
7464 <HTML>
7465 <HEAD>
7466 <TITLE>Read File Command</TITLE>
7467 </HEAD>
7468 <BODY>
7469 <H1>Read File Command</H1>
7471 The &quot;Read File&quot;
7472 <!--chtml if pinemode="function_key"-->
7473 (F5)
7474 <!--chtml else-->
7475 (^R) 
7476 <!--chtml endif-->
7477 command allows you to copy in text from an existing file. You will be
7478 prompted for the name of a file to be inserted into the message.  The file
7479 name is relative to your home directory 
7480 <!--chtml if pinemode="running"-->
7481 (which, in the present configuration of your system, is
7482  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7483 <!--chtml endif-->
7484 or current working directory
7485 <!--chtml if pinemode="running"-->
7486 (which, at least for your current Alpine &quot;session,&quot; 
7487 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7488 <!--chtml endif-->, depending on the
7489 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7490 configuration setting; or, the file name must be specified as a full path name 
7491 <!--chtml if pinemode="os_windows"-->
7492 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7493 <!--chtml else-->
7494 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7495 <!--chtml endif-->
7496 (without the quotation marks).
7499 The file will be inserted where the cursor is located.  <B>The
7500 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7501 Unix machine but have files on a PC or Mac, the files must be transferred
7502 to the system Alpine is running on before they can be read.  Please ask your
7503 local computer support people about the correct way to transfer a file to 
7504 your Alpine system.
7507 &lt;End of help on this topic&gt;
7508 </BODY>
7509 </HTML>
7510 ======= h_config_tray_icon =======
7511 <HTML>
7512 <HEAD>
7513 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7514 </HEAD>
7515 <BODY>
7516 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7518 PC-Alpine only.
7520 This option restores a behavior of previous versions of PC-Alpine.
7521 These
7522 versions, when started, installed a PC-Alpine icon in the notification 
7523 tray of Window's Taskbar.  The primary use of this icon was to indicate
7524 new mail arrival by turning red (while the Taskbar icon remained green).
7525 Additionally, the icon now changes to yellow to signify that a mail folder
7526 has been closed unexpectedly.
7529 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7530 color its Taskbar entry's icon red (as well as the icon in the Window
7531 Title).  This feature is only provided for backwards compatibility.
7534 &lt;End of help on this topic&gt;
7535 </BODY>
7536 </HTML>
7537 ======= h_common_suspend =======
7538 <HTML>
7539 <HEAD>
7540 <TITLE>Suspend Command</TITLE>
7541 </HEAD>
7542 <BODY>
7543 <H1>Suspend Command</H1>
7545 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7546 enabled, you can, at almost any time, temporarily halt your Alpine session,
7547 <!--chtml if pinemode="os_windows"-->
7548 minimizing it into an icon.
7549 <!--chtml else-->
7550 and return to your system prompt.
7551 <!--chtml endif-->
7554 &lt;End of help on this topic&gt;
7555 </BODY>
7556 </HTML>
7557 ======= h_pipe_command =======
7558 <HTML>
7559 <HEAD>
7560 <TITLE>Pipe Command SubOptions</TITLE>
7561 </HEAD>
7562 <BODY>
7563 <H1>Pipe Command SubOptions</H1>
7565 By default, when you use the Pipe command, the processed text of the
7566 message is sent to the Unix command
7567 you specify and the output is captured by Alpine and shown to you.
7568 (This command is available in PC-Alpine, as well, but there aren't many
7569 Windows commands that work well with piping.)
7570 There are some sub-commands that may be used to alter this behavior.
7571 These are toggles that switch the behavior between two possibilities.
7572 They can be combined in any way you wish.
7574 By default, the prompt at the bottom of the screen looks like
7576 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7580 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7582 if you are piping more than one message.
7584 The sub-command options are:
7585 <DL>
7586    <DT>Shown Text or Raw Text</DT>
7587    <DD>This option toggles between sending the shown (processed) text
7588 of the message to the Unix command, and sending the
7589 raw (unprocessed) text of the message to the Unix command.
7590 The default is to send the shown text.
7591 The raw version of the message will contain all of the headers and any
7592 MIME encoding that the message contains.
7593 If you've selected the Raw Text then the prompt will have the additional word
7594 &quot;RAW&quot; in it, like
7596 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7598 You can experiment with this option by piping to something simple like the
7599 Unix &quot;cat&quot; command.
7600    </DD>
7601    <DT>Captured Output or Free Output</DT>
7602    <DD>This option toggles between having Alpine capture the output of
7603 the Unix pipe command for display, and not capturing it.
7604 If the command you are piping to is a filter that will produce output
7605 you want to view, then you want to capture that output
7606 for display (the default).
7607 If the Unix command doesn't produce output or handles the display itself,
7608 then you want free output.
7609 When you've selected the Free Output option the prompt will change to
7611 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7613    </DD>
7614    <DT>No Delimiter or With Delimiter</DT>
7615    <DD>This option controls whether or not a Unix mailbox style delimiter
7616 will come before the text of the message.
7617 This is the delimiter used in the common Unix mailbox format.
7618 It's the single line that begins with the five characters
7619 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7620 You'll usually only want to include this if the Unix command requires
7621 input in the format of a traditional Unix mailbox file.
7622 When you've selected the With Delimiter option the prompt will change to
7624 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7626    </DD>
7627    <DT>To Same Pipe or To Individual Pipes</DT>
7628    <DD>This option only shows up if you are running an aggregate
7629 pipe command.
7630 That is, the command was Apply Pipe, not just Pipe.
7631 You have the option of piping all of the selected messages through a
7632 single pipe to a single instance of the Unix command,
7633 or piping each individual message through a separate pipe to separate
7634 instances of the Unix command.
7635 The default is that all of the output will go through a single pipe
7636 to a single instance of the command.
7637 You can try this option with a command like &quot;less&quot;, with Free
7638 Output enabled.
7639 When you've selected the Individual Pipes option the prompt will change to
7641 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7643    </DD>
7644 </DL>
7647 As mentioned earlier, the options can be combined in any way you wish.
7648 You may leave them all off, turn them all on, or turn some of them on
7649 and some of them off.
7650 If you use the pipe command a second time in the same session the default
7651 options will be what you used the last time.
7654 &lt;End of help on this topic&gt;
7655 </BODY>
7656 </HTML>
7657 ========== h_emptydir_subfolder_name =========
7658 <HTML>
7659 <HEAD>
7660 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7661 </HEAD>
7662 <BODY>
7663 <H1>Enter Subfolder Name</H1>
7665 <P> 
7666 This is the name of a new subfolder in the directory you are creating.
7667 Because empty directories are hidden and therefore not useful, you must also
7668 create a subfolder in the directory you are creating in order that the
7669 directory remains visible.
7671 Alternatively, you may turn off the configuration feature
7672 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7673 so that empty directories remain visible.
7674 If you do that, you will not be required to create the subfolder when you
7675 create a directory.
7678 &lt;End of help on this topic&gt;
7679 </BODY>
7680 </HTML>
7681 ========== h_incoming_add_folder_name =========
7682 <HTML>
7683 <HEAD>
7684 <TITLE>ENTER FOLDER NAME</TITLE>
7685 </HEAD>
7686 <BODY>
7687 <H1>Enter Folder Name</H1>
7689 <P> 
7690 This is the name of the folder on the previously specified server.
7691 By default the folder name is interpreted as defining a section of your personal
7692 folder area.  This area and how you specify it are defined by the
7693 server, if one is specified.
7696 To define a folder outside the default area, prefix
7697 the path with the namespace to use when interpreting the
7698 given path.  If a namespace is specified, the folder name begins with the
7699 sharp (#) character followed by the name of the namespace
7700 and then the namespace's path-element-delimiter.  Aside from the
7701 name's format, namespaces can also imply access rights, content
7702 policy, audience, location, and, occasionally, access methods.
7705 Each server exports its own set (possibly of size one) of 
7706 namespaces.
7707 For a more detailed explanation read about
7708 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7711 To specify the default for INBOX on the server you can usually just enter
7712 &quot;INBOX&quot;, and the server will understand the special meaning of
7713 that word.
7716 &lt;End of help on this topic&gt;
7717 </BODY>
7718 </HTML>
7719 ========== h_incoming_add_folder_host =========
7720 <HTML>
7721 <HEAD>
7722 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7723 </HEAD>
7724 <BODY>
7725 <H1>Enter Incoming Folder Server</H1>
7727 You are being asked for the name of the server for use with this incoming
7728 folder.
7729 If the folder is on the machine where Alpine is running, then just enter
7730 RETURN without typing a server name.
7733 If the folder is on an IMAP server then type the server's name followed
7734 by RETURN.
7735 You may use the ^X command if the server is the same as the server that
7736 the INBOX is on.
7739 You may have to add optional extra information to the server name.
7740 For example, if the IMAP server is using a non-standard port number you
7741 would specify that by appending a colon (:) followed by the port number
7742 to the server name
7745 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7748 or you may need to specify a different protocol if the server is not an
7749 IMAP server. For example:
7752 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7755 for a POP server or
7758 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7761 for an NNTP news server.
7762 For an explanation of all of the possibilities, see
7763 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7764 for folders.
7767 There is a special command (^W) if you want to set up a folder that gets its
7768 mail from a
7769 <A HREF="h_maildrop">Mail Drop</A>.
7770 If you type that command, you will be prompted for the information for
7771 both the Mail Drop folder and the destination folder.
7774 &lt;End of help on this topic&gt;
7775 </BODY>
7776 </HTML>
7777 ========== h_incoming_add_inbox =========
7778 <HTML>
7779 <HEAD>
7780 <TITLE>ENTER INBOX SERVER</TITLE>
7781 </HEAD>
7782 <BODY>
7783 <H1>Enter INBOX Server</H1>
7785 You are being asked for the name of the server for use with
7786 the INBOX folder.
7787 Type the server's name followed by RETURN.
7790 You may have to add optional extra information to the server name.
7791 For example, if the server is using a non-standard port number you
7792 would specify that by appending a colon (:) followed by the port number
7793 to the server name
7796 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7799 or you may need to specify a different protocol if the server is not an
7800 IMAP server. For example:
7803 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7806 for a POP server.
7809 For an explanation of all of the possibilities, see
7810 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7811 for folders.
7814 If the INBOX folder is on the machine where Alpine is running, then just enter
7815 RETURN without typing a server name.
7818 There is a special command (^W) if you want to set up a folder that gets its
7819 mail from a
7820 <A HREF="h_maildrop">Mail Drop</A>.
7821 If you type that command, you will be prompted for the information for
7822 both the Mail Drop folder and the destination folder, which will be used
7823 as your INBOX folder.
7826 &lt;End of help on this topic&gt;
7827 </BODY>
7828 </HTML>
7829 ========== h_incoming_add_maildrop_destn =========
7830 <HTML>
7831 <HEAD>
7832 <TITLE>ENTER DESTINATION SERVER</TITLE>
7833 </HEAD>
7834 <BODY>
7835 <H1>Enter Destination Server</H1>
7837 You are being asked for the name of the server where the destination
7838 folder is for use with this Mail Drop incoming folder.
7839 That is, you are using a Mail Drop for this incoming folder and
7840 you've already entered
7841 the server and folder name for the Mail Drop.
7842 Now you need to enter the server for the destination folder
7843 where the mail should be copied to.
7844 Mail will come from the Mail Drop and be copied to the destination folder.
7847 Type the server's name followed by RETURN.
7848 If the folder is local to this computer, just type RETURN without entering
7849 a server name.
7852 You may have to add optional extra information to the server name.
7853 For example, if the server is using a non-standard port number you
7854 would specify that by appending a colon (:) followed by the port number
7855 to the server name
7858 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7861 For an explanation of all of the possibilities, see
7862 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7863 for folders.
7866 &lt;End of help on this topic&gt;
7867 </BODY>
7868 </HTML>
7869 ========== h_inbox_add_maildrop_destn =========
7870 <HTML>
7871 <HEAD>
7872 <TITLE>ENTER DESTINATION SERVER</TITLE>
7873 </HEAD>
7874 <BODY>
7875 <H1>Enter Destination Server</H1>
7877 You are being asked for the name of the server where the destination
7878 folder is for use with your Mail Drop INBOX.
7879 That is, you are using a Mail Drop for your INBOX and you've already entered
7880 the server and folder name for the Mail Drop.
7881 Now you need to enter the server for the destination folder
7882 where the mail should be copied to.
7883 Mail will come from the Mail Drop and be copied to the destination folder.
7886 Type the server's name followed by RETURN.
7887 If the folder is local to this computer, just type RETURN without entering
7888 a server name.
7891 You may have to add optional extra information to the server name.
7892 For example, if the server is using a non-standard port number you
7893 would specify that by appending a colon (:) followed by the port number
7894 to the server name
7897 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7900 For an explanation of all of the possibilities, see
7901 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7902 for folders.
7905 &lt;End of help on this topic&gt;
7906 </BODY>
7907 </HTML>
7908 ========== h_inbox_add_maildrop =========
7909 <HTML>
7910 <HEAD>
7911 <TITLE>ENTER MAILDROP SERVER</TITLE>
7912 </HEAD>
7913 <BODY>
7914 <H1>Enter Mail Drop Server</H1>
7916 You are being asked for the name of the Mail Drop server for use with
7917 your INBOX.
7920 Type the server's name followed by RETURN.
7923 You may have to add optional extra information to the server name.
7924 For example, if the server is using a non-standard port number you
7925 would specify that by appending a colon (:) followed by the port number
7926 to the server name
7929 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7932 or you may need to specify a different protocol if the server is not an
7933 IMAP server. For example:
7936 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7939 for a POP server or
7942 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7945 for an NNTP news server.
7946 For an explanation of all of the possibilities, see
7947 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7948 for folders.
7951 &lt;End of help on this topic&gt;
7952 </BODY>
7953 </HTML>
7954 ========== h_incoming_add_maildrop =========
7955 <HTML>
7956 <HEAD>
7957 <TITLE>ENTER MAILDROP SERVER</TITLE>
7958 </HEAD>
7959 <BODY>
7960 <H1>Enter Mail Drop Server</H1>
7962 You are being asked for the name of the Mail Drop server for use with
7963 this incoming folder.
7966 Type the server's name followed by RETURN.
7967 You may use the ^X command if the server is the same as the server that
7968 the INBOX is on.
7971 You may have to add optional extra information to the server name.
7972 For example, if the server is using a non-standard port number you
7973 would specify that by appending a colon (:) followed by the port number
7974 to the server name
7977 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7980 or you may need to specify a different protocol if the server is not an
7981 IMAP server. For example:
7984 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7987 for a POP server or
7990 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7993 for an NNTP news server.
7994 For an explanation of all of the possibilities, see
7995 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7996 for folders.
7999 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8000 RETURN without typing a server name.
8003 &lt;End of help on this topic&gt;
8004 </BODY>
8005 </HTML>
8006 ========== h_maildrop =========
8007 <HTML>
8008 <HEAD>
8009 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8010 </HEAD>
8011 <BODY>
8012 <H1>What is a Mail Drop?</H1>
8014 In some situaions it may make sense to have your mail delivered to one
8015 folder (the Mail Drop) and then when you want to read mail that has been
8016 delivered to the Mail Drop folder Alpine will move it to another
8017 destination folder.
8018 Often the Mail Drop will be a remote folder and messages will be moved from
8019 there to a local destination folder.
8022 One example where this might make sense is if the Mail Drop folder is accessible
8023 only with the POP protocol.
8024 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8025 mail from there to a local (on the same machine Alpine is running on)
8026 destination folder, where you'll read it.
8029 A Mail Drop may only be used as your Inbox or as an
8030 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8033 There is no attempt to synchronize the contents of the destination folder
8034 with the contents of the Mail Drop folder.
8035 All that happens is that all of the messages in the Mail Drop folder are
8036 copied to the destination folder and then they are deleted and expunged (if possible)
8037 from the Mail Drop folder.
8038 The next time a check for new mail is made, any messages in the Mail 
8039 Drop folder are once again copied to the destination folder and deleted
8040 and expunged from the Mail Drop folder.
8041 (If the Mail Drop folder is a news group, then the messages can't be
8042 expunged from the newsgroup. Instead, only Recent messages are copied from
8043 the newsgroup to the destination folder.)
8046 Configuration of a Mail Drop is a little different from configuration of
8047 a folder that does not use a Mail Drop because you have to specify two
8048 folder names instead of one.
8049 The two folders may be any types of folders that Alpine can normally use.
8050 They don't have to be a remote folder and a local folder, that is
8051 simply the most common usage.
8052 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8053 Drop to check for new mail.
8054 The new-mail checks will happen at the frequency set with the
8055 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8056 but with a minimum time
8057 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8058 between checks.
8059 Because of this minimum you may notice that new mail does not
8060 appear promptly when you expect it.
8061 The reason for this is to protect the server from over-zealous opening and
8062 closing of the Mail Drop folder.
8063 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8064 the end of the folder index, then the check will happen, regardless of how
8065 long it has been since the previous check.
8067 If there is new mail, that mail will be copied to the destination folder
8068 and then will be deleted from the Mail Drop.
8069 Note that using a Mail Drop with a local destination folder does not make
8070 sense if you read mail from more than one machine, because the mail is
8071 downloaded to the destination folder (which is accessible from only one
8072 machine) and deleted from the Mail Drop.
8074 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8077 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8080 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8082 The brackets are not literal.
8084 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8086 is a single character that does not appear in the MailDropFolder name.
8087 If the name doesn't contain spaces then it can be a space character.
8088 The two folder names are full technical
8089 <A HREF="h_valid_folder_names">folder names</A>
8090 as used by Alpine.
8091 Here are a couple examples to give you an idea what is being talked about:
8094 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8096 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8099 A #move folder may only be used as an
8100 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8101 an Inbox.
8102 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8103 on the
8104 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8105 option)
8106 the Add command has a subcommand &quot;Use Mail Drop&quot;
8107 which may be helpful for defining the folder in your Alpine configuration.
8108 The same is true when you edit the
8109 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8110 option in Setup/Config.
8111 Each of these configuration methods will also create the DestinationFolder
8112 if it doesn't already exist.
8113 If you are having problems, make sure the DestinationFolder exists.
8116 &lt;End of help on this topic&gt;
8117 </BODY>
8118 </HTML>
8119 ========== h_save =========
8120 <HTML>
8121 <HEAD>
8122 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8123 </HEAD>
8124 <BODY>
8125 <H1>Choose a Folder to Save Into</H1>
8127 After Exiting from this help text,
8128 type the name of the folder you want to save into and press RETURN.
8130 Press ^T to get a list of your folders to choose from.
8131 Press ^C to cancel the Save.
8133 If you have Folder Collections defined you may use
8134 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8135 the collection being saved to.
8137 If Tab Completion is enabled (it is enabled by default)
8138 you may type a Tab character to have Alpine complete the folder name for you.
8140 If Partial Match Lists is enabled (it is enabled by default) you may type
8141 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8143 If the Ctrl-R subcommand is present that means you can decide to Delete or
8144 not Delete the message you are saving after you save it.
8145 The label on that key gives the action to switch to.
8146 If it says Delete and you type Ctrl-R the label displayed will change to
8147 No Delete and the source message will be deleted after the save. If it
8148 says No Delete and you type Ctrl-R the label displayed will change to
8149 Delete and the message will not be deleted.
8150 You can control the default for the Delete parameter with the
8151 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8153 Similarly, if the Ctrl-W subcommand is present that means you can decide
8154 to Preserve the order of the messages being saved or not.
8155 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8156 will be in the same order as you see them in the source folder now.
8157 The opposite action (which is usually the default) is that you don't care
8158 about the order.
8159 The Saved messages may or may not be in the same order in the destination folder.
8160 There may be a performance penalty for choosing to save the messages in order.
8161 You can control the default for the Preserve Order parameter with the
8162 configuration feature
8163 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8166 If you haven't disabled the Save Input History and you've already done a
8167 Save earlier in this session then you may use the Up and Down arrows to retrieve
8168 a folder name used in a previous Save.
8171 &lt;End of help on this topic&gt;
8172 </BODY>
8173 </HTML>
8174 ============= h_simple_index ========================
8175 <HTML>
8176 <HEAD>
8177 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8178 </HEAD>
8179 <BODY>
8180 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8181 <!--chtml if pinemode="function_key"-->
8182 <PRE>
8183 Navigating the List of Messages               General Alpine Commands
8184 -------------------------------               -----------------------
8185  F5   Move to previous message                 F1   Show this help text
8186  F6   Move to next message
8187  F7   Show previous screen of messages
8188  F8   Show next screen of messages
8190 Message Selection Commands
8191 --------------------------
8192  F3   Exit the Message Select menu (canceling Send command)
8193  F4   Select the currently highlighted message
8194  F9   Mark the currently highlighted message as deleted
8195  F10  Undelete (remove deletion mark from) the highlighted message
8196 </PRE>
8197 <!--chtml else-->
8198 <PRE>
8199 Navigating the List of Messages               General Alpine Commands
8200 -------------------------------               -----------------------
8201   P  Move to previous message                  ?  Show this help text
8202   N  Move to next message
8203   -  Show previous screen of messages
8204  Spc (space bar) Show next screen of messages
8206 Message Selection Commands
8207 --------------------------
8208   E  Exit the Message Select menu (canceling Send command)
8209   S  Select the currently highlighted message
8210   D  Mark the currently highlighted message as deleted
8211   U  Undelete (remove deletion mark from) the highlighted message
8212 </PRE>
8213 <!--chtml endif-->
8215 <H2>Description of the Select Postponed Message Screen</H2>
8217 This screen allows you to select one of several previously postponed
8218 messages in order to continue composition.  Your options are very limited
8219 -- the screen is not meant to let you manipulate these messages.  However,
8220 you may now delete messages from this list.  Once you choose a message,
8221 Alpine reads it in and puts you into the regular message composer.
8224 Messages do not stay in this postponed state automatically.  If you select
8225 a message and then want to postpone it again, use the normal postpone
8226 (Ctrl-O) command in the composer.
8229 If you exit this screen without selecting a message, the Compose command
8230 that got you here is canceled.  Other than messages explicitly marked
8231 &quot;Deleted&quot;, no messages will be removed.
8234 &lt;End of help on this topic&gt;
8235 </BODY>
8236 </HTML>
8237 ============= h_collection_screen ========================
8238 <HTML>
8239 <HEAD>
8240 <TITLE>COLLECTION LIST screen</TITLE>
8241 </HEAD>
8242 <BODY>
8243 <H1>COLLECTION LIST screen</H1>
8245 The COLLECTION LIST screen is used to select one of your  
8246 collection definitions to display the folders they contain.  See
8247 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8248 detailed explanation of collections.<P>
8250 To manage your collection definitions (Add, Change, Delete, etc.), use
8251 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8252 MAIN MENU.
8255 &lt;End of help on this topic&gt;
8256 </BODY>
8257 </HTML>
8258 ============= h_collection_maint ========================
8259 <HTML>
8260 <HEAD>
8261 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8262 </HEAD>
8263 <BODY>
8264 <H1>SETUP COLLECTION LIST screen</H1>
8266 The SETUP COLLECTION LIST screen lets you manage your collection
8267 definitions.  See 
8268 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8269 for detailed explanation of collections.<P>
8271 Maintenance commands include:
8272 <DL>
8273 <DT>Change
8274 <!--chtml if pinemode="function_key"-->
8275 (F4)
8276 <!--chtml else-->
8278 <!--chtml endif-->
8279 </DT>
8281 <DD>Modify attributes of the selected collection definition.
8283 <DT>Add Cltn
8284 <!--chtml if pinemode="function_key"-->
8285 (F9)
8286 <!--chtml else-->
8288 <!--chtml endif-->
8289 </DT>
8291 <DD>Create a new collection definition.
8292 </DD>
8294 <DT>Del Cltn
8295 <!--chtml if pinemode="function_key"-->
8296 (F10)
8297 <!--chtml else-->
8299 <!--chtml endif-->
8300 </DT>
8302 <DD>Delete the selected collection definition.<BR>
8303 NOTE: The folders and directories referred to by the
8304 collection definition are <EM>NOT</EM> deleted.  Folders must
8305 be deleted, if that's what you wish to do, from the 
8306 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8307 individual folders in a collection.
8308 </DD>
8310 <DT>Shuffle
8311 <!--chtml if pinemode="function_key"-->
8312 (F11)
8313 <!--chtml else-->
8315 <!--chtml endif-->
8316 </DT>
8318 <DD>Change the order of the displayed collections.  Alpine will offer
8319 to move the currently selected collection one position UP
8320 or DOWN.
8321 </DD>
8322 </DL>
8325 &lt;End of help on this topic&gt;
8326 </BODY>
8327 </HTML>
8328 ============ h_what_are_collections ==========
8329 <HTML>
8330 <HEAD>
8331 <TITLE>Folder Collections Explained</TITLE>
8332 </HEAD>
8333 <BODY>
8334 <H1>Folder Collections Explained</H1>
8337 Those of you with simple mail configurations will just see a list of all the
8338 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8339 The special folders for INBOX, sent mail and saved messages
8340 will appear at the top of the list.  All others are in alphabetical order.
8342 If you
8343 or your system administrator have defined more than one collection or if
8344 you have a collection (for newsgroups or email folders) defined on your 
8345 system, then you will see the COLLECTION LIST screen first when choosing 
8346 FOLDER LIST from Alpine's MAIN MENU.
8348 <H2>Why have multiple folder collections?</H2>
8350 For Alpine users who only maintain email folders (and not too many) on one host, 
8351 a single folder collection is probably sufficient.<P>
8353 However, people who have more than one email account - for example, one 
8354 at their university, and one with their personal Internet Service Provider - 
8355 will have different sets of folders on different hosts, and they may want to
8356 access them all from the same installation of Alpine, rather than use different 
8357 software and/or log into other hosts to manipulate messages in different 
8358 accounts.  (If in doubt whether one of your email accounts can be accessed 
8359 with Alpine, contact the technical support people for that account.)  Even people
8360 who have only one email account on one host, but have dozens or
8361 hundreds of email folders, may want to arrange these folders together in a 
8362 meaningful way.<BR>
8363 That is where multiple collections come in.
8365 <H2>Types of Collections</H2>
8366 <DL>
8367 <DT>INCOMING FOLDERS</DT>
8368 <DD>&quot;Incoming Message Folders&quot; 
8369 is a special collection typically used to supplement your single INBOX.  
8370 All the folders here are meant to be ones that receive incoming messages, 
8371 which you intend to check more or less frequently.  
8372 You may have multiple folders like this because you or your systems 
8373 administrator have set up an external program or you may have set up
8374 Alpine to filter incoming 
8375 messages into different folders, based on certain criteria such as 
8376 sender, recipient, or subject; or because you have multiple accounts and 
8377 wish to check their INBOXes easily.  This collection is established by 
8378 setting the 
8379 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8380 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8381 MAIN MENU.
8382 </DD>
8384 <DT>NEWS</DT>
8385 <DD>You can also define a collection specifically for
8386 newsgroups.  Alpine does this for you implicitly when you 
8387 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8388 in your Alpine configuration.  The news collection appears last in the 
8389 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8390 and Alpine knows not to save messages there.
8391 </DD>
8393 <DT>DEFAULT COLLECTION</DT>
8394 <DD>This is the default collection for your saved and sent messages folders.
8395 </DD>
8396 </DL>
8400 <H2>Defining Collections</H2>
8402 In the absence of any folder-collection definitions, Alpine will assume a
8403 single default folder collection.
8404 <!--chtml if pinemode="os_windows"-->
8405 <!--chtml else-->
8406 If necessary, Alpine will create the directory
8407 &quot;mail&quot; in your Unix home directory 
8408 to hold your folders.
8409 <!--chtml endif-->
8411 You can use the 
8412 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8413 the MAIN MENU, to manage your collection list.  
8415 &lt;End of help on this topic&gt;
8416 </BODY>
8417 </HTML>
8418 ===== h_select_address_screen =====
8419 <HTML>
8420 <HEAD>
8421 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8422 </HEAD>
8423 <BODY>
8424 <H1>SELECT AN ADDRESS SCREEN</H1>
8425 <H2>COMMANDS</H2>
8426 <!--chtml if pinemode="function_key"-->
8427 <PRE>
8428 Available  Commands                        
8429 -------------------------------            
8430 F1  Show Help Text
8431 F3  Exit without selecting anything
8432 F4  Select the highlighted address
8433 F5  Move highlight to previous address
8434 F6  Move highlight to next address
8435 F7  Previous page of addresses
8436 F8  Next page of addresses
8437 F11 Print
8438 F12 WhereIs
8439 </PRE>
8440 <!--chtml else-->
8441 <PRE>
8442 Navigation                     General Alpine Commands
8443 -------------------------      -----------------------
8444  P  Prev Address                ?  Display this help text
8445  N  Next Address                E  Exit without selecting anything
8446  -  Previous page               %  Print
8447 Spc (space bar) Next page
8448  W  WhereIs
8450 Select Command
8451 ------------------------------------------------
8452  S  Select the highlighted address
8453 </PRE>
8454 <!--chtml endif-->
8456 <H2>Description of the Select Address Screen</H2>
8458 This screen gives you an easy way to select an address from all of
8459 the address book entries that match the prefix typed so far.
8461 <P><UL>
8462 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8463 </UL>
8465 &lt;End of help on this topic&gt;
8466 </BODY>
8467 </HTML>
8468 ===== h_select_rule_screen =====
8469 <HTML>
8470 <HEAD>
8471 <TITLE>SELECT A RULE SCREEN</TITLE>
8472 </HEAD>
8473 <BODY>
8474 <H1>SELECT A RULE SCREEN</H1>
8475 <H2>COMMANDS</H2>
8476 <!--chtml if pinemode="function_key"-->
8477 <PRE>
8478 Available  Commands                        
8479 -------------------------------            
8480 F1  Show Help Text
8481 F3  Exit without selecting anything
8482 F4  Select the highlighted rule
8483 F5  Move highlight to previous rule
8484 F6  Move highlight to next rule
8485 F7  Previous page of rules
8486 F8  Next page of rules
8487 F11 Print
8488 F12 WhereIs
8489 </PRE>
8490 <!--chtml else-->
8491 <PRE>
8492 Navigation                     General Alpine Commands
8493 -------------------------      -----------------------
8494  P  Prev Rule                   ?  Display this help text
8495  N  Next Rule                   E  Exit without selecting anything
8496  -  Previous page               %  Print
8497 Spc (space bar) Next page
8498  W  WhereIs
8500 Select Command
8501 ------------------------------------------------
8502  S  Select the highlighted rule
8503 </PRE>
8504 <!--chtml endif-->
8506 <H2>Description of the Select Rule Screen</H2>
8508 This screen just gives you an easy way to select a rule from all of your
8509 defined rules.
8510 The list of rules presented is the list of nicknames of all of the rules
8511 defined using Setup/Rules.
8512 For selecting messages, it is likely that the Indexcolor rules and possibly
8513 the Roles rules will be most useful.
8514 The others are there also, in case you find a use for them.
8516 In order for this to be useful for selecting messages, the nicknames of
8517 the rules have to be different.
8518 Alpine actually just gets the nickname of the rule that you select and then
8519 looks up that rule using the nickname.
8520 So if there are duplicate nicknames, the first rule that has that
8521 nickname will be used.
8523 <P><UL>
8524 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8525 </UL>
8527 &lt;End of help on this topic&gt;
8528 </BODY>
8529 </HTML>
8530 ===== h_select_priority_screen =====
8531 <HTML>
8532 <HEAD>
8533 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8534 </HEAD>
8535 <BODY>
8536 <H1>SELECT A PRIORITY SCREEN</H1>
8537 <H2>COMMANDS</H2>
8538 <!--chtml if pinemode="function_key"-->
8539 <PRE>
8540 Available  Commands                        
8541 -------------------------------            
8542 F1  Show Help Text
8543 F3  Exit without selecting anything
8544 F4  Select the highlighted priority
8545 F5  Move highlight to previous priority
8546 F6  Move highlight to next priority
8547 F7  Previous page of priorities
8548 F8  Next page of priorities
8549 F11 Print
8550 F12 WhereIs
8551 </PRE>
8552 <!--chtml else-->
8553 <PRE>
8554 Navigation                     General Alpine Commands
8555 -------------------------      -----------------------
8556  P  Prev Priority               ?  Display this help text
8557  N  Next Priority               E  Exit without selecting anything
8558  -  Previous page               %  Print
8559 Spc (space bar) Next page
8560  W  WhereIs
8562 Select Command
8563 ------------------------------------------------
8564  S  Select the highlighted priority
8565 </PRE>
8566 <!--chtml endif-->
8568 <H2>Description of the Select Priority Screen</H2>
8570 This screen gives you a way to select a priority for the message you are sending.
8571 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8572 Some mail programs will display an indication of the priority level to
8573 the recipient of the message, some will ignore it.
8574 Even in cases where the mail programs of both the sender and the recipient
8575 agree on the meaning of this header, keep in mind that it is
8576 something that the sender sets so it is only an indication
8577 of the priority that the sender attaches to the mail.
8578 Alpine can be made to display an indication of this priority in incoming
8579 messages by use of one of the tokens
8580 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8581 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8582 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8584 <P><UL>
8585 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8586 </UL>
8588 &lt;End of help on this topic&gt;
8589 </BODY>
8590 </HTML>
8591 ===== h_select_keyword_screen =====
8592 <HTML>
8593 <HEAD>
8594 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8595 </HEAD>
8596 <BODY>
8597 <H1>SELECT A KEYWORD SCREEN</H1>
8598 <H2>COMMANDS</H2>
8599 <!--chtml if pinemode="function_key"-->
8600 <PRE>
8601 Available  Commands                        
8602 -------------------------------            
8603 F1  Show Help Text
8604 F3  Exit without selecting anything
8605 F4  Select the highlighted keyword
8606 F5  Move highlight to previous keyword
8607 F6  Move highlight to next keyword
8608 F7  Previous page of keywords
8609 F8  Next page of keywords
8610 F11 Print
8611 F12 WhereIs
8612 </PRE>
8613 <!--chtml else-->
8614 <PRE>
8615 Navigation                     General Alpine Commands
8616 -------------------------      -----------------------
8617  P  Prev Keyword                ?  Display this help text
8618  N  Next Keyword                E  Exit without selecting anything
8619  -  Previous page               %  Print
8620 Spc (space bar) Next page
8621  W  WhereIs
8623 Select Command
8624 ------------------------------------------------
8625  S  Select the highlighted keyword
8626 </PRE>
8627 <!--chtml endif-->
8629 <H2>Description of the Select Keyword Screen</H2>
8631 This screen just gives you an easy way to select a keyword.
8632 The list of keywords presented is the list of all keywords defined in your 
8633 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8634 If you have given a keyword a nickname, that nickname is displayed
8635 instead of the actual keyword.
8637 <P><UL>
8638 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8639 </UL>
8641 &lt;End of help on this topic&gt;
8642 </BODY>
8643 </HTML>
8644 ===== h_select_charset_screen =====
8645 <HTML>
8646 <HEAD>
8647 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8648 </HEAD>
8649 <BODY>
8650 <H1>SELECT A CHARACTER SET SCREEN</H1>
8651 <H2>COMMANDS</H2>
8652 <!--chtml if pinemode="function_key"-->
8653 <PRE>
8654 Available  Commands                        
8655 -------------------------------            
8656 F1  Show Help Text
8657 F3  Exit without selecting anything
8658 F4  Select the highlighted character set
8659 F5  Move highlight to previous character set
8660 F6  Move highlight to next character set
8661 F7  Previous page of character sets
8662 F8  Next page of character sets
8663 F11 Print
8664 F12 WhereIs
8665 </PRE>
8666 <!--chtml else-->
8667 <PRE>
8668 Navigation                     General Alpine Commands
8669 -------------------------      -----------------------
8670  P  Prev Character Set          ?  Display this help text
8671  N  Next Character Set          E  Exit without selecting anything
8672  -  Previous page               %  Print
8673 Spc (space bar) Next page
8674  W  WhereIs
8676 Select Command
8677 ------------------------------------------------
8678  S  Select the highlighted character set
8679 </PRE>
8680 <!--chtml endif-->
8682 <H2>Description of the Select A Character Set Screen</H2>
8684 This screen just gives you an easy way to select a character set from the
8685 set of character sets Alpine knows about.
8686 The list presented will vary slightly depending on what option you are
8687 selecting the character set for.
8689 <P><UL>
8690 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8691 </UL>
8693 &lt;End of help on this topic&gt;
8694 </BODY>
8695 </HTML>
8696 ===== h_select_multcharsets_screen =====
8697 <HTML>
8698 <HEAD>
8699 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8700 </HEAD>
8701 <BODY>
8702 <H1>SELECT CHARACTER SETS SCREEN</H1>
8703 <H2>COMMANDS</H2>
8704 <!--chtml if pinemode="function_key"-->
8705 <PRE>
8706 Available  Commands
8707 -------------------------------            
8708 F1  Show Help Text
8709 F3  Exit without selecting anything
8710 F4  Select the highlighted charset (or chosen charsets in ListMode)
8711 F5  Move highlight to previous charset
8712 F6  Move highlight to next charset
8713 F7  Previous page of charsets
8714 F8  Next page of charsets
8715 F9  Toggle choices when using ListMode
8716 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8717 F11 Print
8718 F12 WhereIs
8719 </PRE>
8720 <!--chtml else-->
8721 <PRE>
8722 Navigation                     General Alpine Commands
8723 -------------------------      -----------------------
8724  P  Prev Charset                ?  Display this help text
8725  N  Next Charset                E  Exit without selecting anything
8726  -  Previous page               %  Print
8727 Spc (space bar) Next page
8728  W  WhereIs
8730 Select Command
8731 ------------------------------------------------
8732  S  Select the highlighted charset (or chosen charsets in ListMode)
8733  L  Turn on ListMode (makes it easy to choose multiple charsets)
8734  1  Turn off ListMode
8735  X  Toggle choices when using ListMode
8736 </PRE>
8737 <!--chtml endif-->
8739 <H2>Description of the Select Character Set Screen</H2>
8741 This screen just gives you an easy way to select a character set or a list of
8742 character sets.
8743 The list of character sets presented is the list of all character sets known to
8744 Alpine.
8745 You may select other character sets by typing them in directly.
8747 <P><UL>
8748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8749 </UL>
8751 &lt;End of help on this topic&gt;
8752 </BODY>
8753 </HTML>
8754 ===== h_select_multkeyword_screen =====
8755 <HTML>
8756 <HEAD>
8757 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8758 </HEAD>
8759 <BODY>
8760 <H1>SELECT KEYWORDS SCREEN</H1>
8761 <H2>COMMANDS</H2>
8762 <!--chtml if pinemode="function_key"-->
8763 <PRE>
8764 Available  Commands
8765 -------------------------------            
8766 F1  Show Help Text
8767 F3  Exit without selecting anything
8768 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8769 F5  Move highlight to previous keyword
8770 F6  Move highlight to next keyword
8771 F7  Previous page of keywords
8772 F8  Next page of keywords
8773 F9  Toggle choices when using ListMode
8774 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8775 F11 Print
8776 F12 WhereIs
8777 </PRE>
8778 <!--chtml else-->
8779 <PRE>
8780 Navigation                     General Alpine Commands
8781 -------------------------      -----------------------
8782  P  Prev Keyword                ?  Display this help text
8783  N  Next Keyword                E  Exit without selecting anything
8784  -  Previous page               %  Print
8785 Spc (space bar) Next page
8786  W  WhereIs
8788 Select Command
8789 ------------------------------------------------
8790  S  Select the highlighted keyword (or chosen keywords in ListMode)
8791  L  Turn on ListMode (makes it easy to choose multiple keywords)
8792  1  Turn off ListMode
8793  X  Toggle choices when using ListMode
8794 </PRE>
8795 <!--chtml endif-->
8797 <H2>Description of the Select Keyword Screen</H2>
8799 This screen just gives you an easy way to select a keyword or a list of
8800 keywords.
8801 The list of keywords presented is the list of all keywords defined in your 
8802 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8803 If you have given a keyword a nickname, that nickname is displayed
8804 instead of the actual keyword.
8806 <P><UL>
8807 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8808 </UL>
8810 &lt;End of help on this topic&gt;
8811 </BODY>
8812 </HTML>
8813 ===== h_select_incoming_to_monitor =====
8814 <HTML>
8815 <HEAD>
8816 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8817 </HEAD>
8818 <BODY>
8819 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8820 <H2>COMMANDS</H2>
8821 <!--chtml if pinemode="function_key"-->
8822 <PRE>
8823 Available  Commands
8824 -------------------------------            
8825 F1  Show Help Text
8826 F3  Exit without selecting anything
8827 F4  Select the marked folders
8828 F5  Move highlight to previous folder
8829 F6  Move highlight to next folder
8830 F7  Previous page of folders
8831 F8  Next page of folders
8832 F9  Toggle choices on or off
8833 F11 Print
8834 F12 WhereIs
8835 </PRE>
8836 <!--chtml else-->
8837 <PRE>
8838 Navigation                     General Alpine Commands
8839 -------------------------      -----------------------
8840  P  Prev Folder                 ?  Display this help text
8841  N  Next Folder                ^C  exit without changing anything
8842  -  Previous page               %  Print
8843 Spc (space bar) Next page
8844  W  WhereIs
8846 Select Command
8847 ------------------------------------------------
8848  S  Select the marked folders
8849  X  Toggle choices on or off
8850 </PRE>
8851 <!--chtml endif-->
8853 <H2>Description of the Select Folders to Check Screen</H2>
8855 This screen is only useful if the feature
8856 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8857 is set.
8858 By default, when you set that feature all of your incoming folders
8859 will be checked periodically for Unseen messages.
8860 By using this screen, you may restrict the set of monitored folders to
8861 a subset of all of the incoming folders.
8863 Mark the folders you want to monitor for Unseen messages with
8864 an &quot;X&quot;.
8865 When you've finished marking all your selections use the Select
8866 command to register your choices.
8867 To return to the default of checking all incoming folders
8868 delete all folders or unmark all folders.
8870 <P><UL>
8871 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8872 </UL>
8874 &lt;End of help on this topic&gt;
8875 </BODY>
8876 </HTML>
8877 ===== h_role_select =====
8878 <HTML>
8879 <HEAD>
8880 <TITLE>ROLES SCREEN</TITLE>
8881 </HEAD>
8882 <BODY>
8883 <H1>ROLES SCREEN</H1>
8884 <H2>ROLES COMMANDS</H2>
8885 <!--chtml if pinemode="function_key"-->
8886 <PRE>
8887 Available  Commands                        
8888 -------------------------------            
8889 F1  Show Help Text
8890 F3  Exit without a selection
8891 F4  Select a role to use in composition
8892 F5  Move to previous role
8893 F6  Move to next role
8894 F7  Previous page of roles
8895 F8  Next page of roles
8896 F11 Change Default Role
8897 F12 Whereis (search role nicknames)
8898 </PRE>
8899 <!--chtml else-->
8900 <PRE>
8901 Navigation                     General Alpine Commands
8902 -------------------------      -----------------------
8903  P  Prev Role                     ?  Display this help text
8904  N  Next Role                     E  Exit without a selection
8905  -  Previous page
8906 Spc (space bar) Next page
8907  W  WhereIs (search for word in role nicknames)
8909 Select Role Commands
8910 ------------------------------------------------
8911  [Return]  Select highlighted role
8912  D         Change Default Role
8913 </PRE>
8914 <!--chtml endif-->
8916 <H2>Description of the Roles Screen</H2>
8918 With this screen you select a role to be used in the composition of a
8919 message.
8920 Use the Previous and Next commands to highlight the role you wish to
8921 use.
8922 When you type carriage return you will be placed in the composer using the highlighted role.
8924 You don't have any non-default <A HREF="h_rules_roles">roles</A>
8925 available unless you set them up.
8926 You may do so by using the Setup/Rules command on the MAIN MENU.
8928 By using the D command, you may set a default role that will persist until
8929 you change it or until you exit Alpine.
8930 The D command toggles through three states: set the default role, unset the
8931 default role, and leave the default role as it is.
8932 <P><UL>
8933 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8934 </UL>
8936 &lt;End of help on this topic&gt;
8937 </BODY>
8938 </HTML>
8939 ===== h_role_abook_select =====
8940 <HTML>
8941 <HEAD>
8942 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
8943 </HEAD>
8944 <BODY>
8945 <H1>SELECT ADDRESS BOOK SCREEN</H1>
8946 <H2>COMMANDS</H2>
8947 <!--chtml if pinemode="function_key"-->
8948 <PRE>
8949 Available  Commands                        
8950 -------------------------------            
8951 F1  Show Help Text
8952 F3  Exit screen without selecting anything
8953 F4  Select highlighted address book
8954 F5  Move to previous address book
8955 F6  Move to next address book
8956 F7  Previous page of address books
8957 F8  Next page of address books
8958 F12 Whereis
8959 </PRE>
8960 <!--chtml else-->
8961 <PRE>
8962 Navigation                     General Alpine Commands
8963 -------------------------      -----------------------
8964  P  Previous addrbook          ?  Display this help text
8965  N  Next addrbook
8966  -  Previous page
8967 Spc (space bar) Next page
8968  W  WhereIs
8970 Select Role Commands
8971 ------------------------------------------------
8972  S  Select highlighted address book
8973  E  Exit screen without selecting anything
8974 </PRE>
8975 <!--chtml endif-->
8977 <H2>Description of the Select Address Book Screen</H2>
8979 This screen helps you select one of your address books.
8980 Use the Previous and Next commands to highlight the address book you wish to
8981 select.
8982 <P><UL>
8983 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8984 </UL>
8986 &lt;End of help on this topic&gt;
8987 </BODY>
8988 </HTML>
8989 ======== h_rule_patterns =============
8990 <HTML>
8991 <HEAD>
8992 <TITLE>PATTERNS</TITLE>
8993 </HEAD>
8994 <BODY>
8995 <H1>PATTERNS</H1>
8996 Patterns are used with Roles, Filtering, Index Coloring,
8997 Scoring, Other Rules, and Search Rules.
8998 Patterns are compared with a message to see if there is a match.
8999 For Filtering, the messages being checked are all the messages in the
9000 folder, one at a time.
9001 For Index Line Coloring, each message that is visible on the screen is
9002 checked for matches with the Index Coloring Patterns.
9003 Roles are used with the Reply, Forward, and Compose commands.
9004 For Reply, the message used to compare the Pattern with is the message
9005 being replied to;
9006 for Forward, the message used to compare the Pattern with is the message
9007 being forwarded;
9008 and for Compose, there is no message, so the parts of the Pattern that depend
9009 on a message (everything other than Current Folder Type and the
9010 Beginning of Month and Year)
9011 are not used.
9012 Only the Current Folder Type matters for Compose (plus the Beginning of
9013 Month or Year, which you wouldn't usually use for a Role).
9014 For Scoring, the message being scored is compared with all of the Score
9015 Patterns, and the Score Values from the ones that match are added together to 
9016 get the message's score.
9017 For Other Rules, there is no message. Only the Current Folder Type is checked
9018 for Other Rules.
9020 Each Pattern has several possible parts, all of which are optional.
9021 In order for there to be a match, <EM>ALL</EM> of the
9022 <EM>defined</EM> parts of the Pattern must match the message.
9023 If a part is not defined it is considered a match, but note that a filtering
9024 Pattern must have at least one defined part or it will be ignored.
9025 For example, if the To pattern is not defined it will be
9026 displayed as
9028 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9030 That is considered a match because it is not defined.
9031 This means that the Pattern with nothing defined is a match if the
9032 Current Folder Type matches, but there is an exception that was mentioned
9033 in the previous paragraph.
9034 Because filtering is a potentially destructive action, filtering Patterns
9035 with nothing other than Current Folder Type defined are ignored.
9036 If you really want a filtering Pattern to match all messages (subject to
9037 Current Folder Type) the best way to do it is to define a Score interval
9038 that includes all possible scores.
9039 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9040 This can be used even if you haven't defined any rules to Set Scores.
9042 There are six predefined header patterns called the To, From, Sender, Cc, News,
9043 and Subject patterns.
9044 Besides those six predefined header patterns, you may add
9045 additional header patterns with header fieldnames of your choosing.
9046 You add an extra header pattern by placing the cursor on one of the
9047 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9048 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9049 and the Partic pattern is a header pattern that stands for
9050 Participant (From OR To OR Cc).
9051 (Defining the Recip pattern does not have the same effect as defining both
9052 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9053 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9054 Instead of comparing this pattern's text against only the contents of
9055 a particular header field, the text for the AllText pattern is compared
9056 with text anywhere in the message's header or body, and the text for the
9057 BodyText pattern is compared with text anywhere in the message's body.
9059 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9060 &quot;!&quot; &quot;toggle NOT&quot; command.
9061 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9062 &quot;!&quot; at the beginning of the pattern line.
9063 When the &quot;!&quot; is present, it reverses the meaning of the match.
9064 That is, if the pattern matches then it is considered to NOT be a match, and
9065 if it does not match it is considered to be a match.
9067 Don't make the mistake of putting the &quot;!&quot; in the data field for
9068 a pattern.
9069 For example, if you type the characters &quot;!urgent&quot; into the Subject
9070 pattern, the pattern will look like:
9072 <PRE>
9073  Subject pattern = !urgent
9074 </PRE>
9076 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9077 In order to match messages that do not have &quot;urgent&quot; in
9078 their Subject field, first type the characters &quot;urgent&quot; followed
9079 by carriage return for the value of the Subject pattern, then negate it
9080 by typing the &quot;!&quot; command.
9081 It should look like
9083 <PRE>
9084  ! Subject pattern = urgent
9085 </PRE>
9087 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9088 be a complete email address, part of an address, or a random set of
9089 characters to match against.
9090 It may also be a list of such patterns, which means you
9091 are looking for a match against the first pattern in the list <EM>OR</EM>
9092 the second pattern <EM>OR</EM> the third and so on.
9093 For example, a Subject pattern equal to
9095 <PRE>
9096  Subject pattern = urgent
9097                    emergency
9098                    alert
9099 </PRE>
9101 would match all messages with a subject that contained at least one
9102 of those words.
9103 It would also match subjects containing the words &quot;alerts&quot; or
9104 &quot;Urgently&quot;.
9106 The same example with &quot;NOT&quot; turned on would be
9108 <PRE>
9109  ! Subject pattern = urgent
9110                      emergency
9111                      alert
9112 </PRE>
9114 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9115 those words.
9116 You can use the &quot;Add Value&quot; command to add new words to the list,
9117 or you can enter them as a comma-separated list.
9119 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9120 present for a match.
9121 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9122 pattern2 must be present,
9123 and that is exactly what using a list does.)
9125 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9126 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9127 when checking for matches for Scoring.
9128 There are five similar settings that relate to the status of the message.
9129 These settings rely on the message being New or not, Deleted or not,
9130 Answered or not, Important or not, and Recent or not.
9131 There are also some other miscellaneous settings.
9132 The first is the Age of the message in days.
9133 Another is the Size of the message, in bytes.
9134 The third is a setting that detects whether or not the Subject of a
9135 message contains raw 8-bit characters (unencoded characters with the most
9136 significant bit set).
9137 There is a setting that detects whether or not this is the first time
9138 Alpine has been run this month (doesn't depend on individual messages),
9139 and another that detects whether or not this is the first time Alpine has
9140 been run this year.
9141 Other parts of the Pattern detect whether or not the From address of a
9142 message appears in your address book, whether or not certain keywords
9143 are set for a message, and whether or not certain character sets are
9144 used in a message.
9146 <H2>Parts of a Pattern</H2>
9148 <H3>Header patterns</H3>
9150 A header pattern is simply text that is searched for in the corresponding
9151 header field.
9152 For example, if a Pattern has a From header pattern with the value
9153 &quot;@company.com&quot;, then only messages that have a From header
9154 that contains the text &quot;@company.com&quot; will be possible
9155 matches.
9156 Matches don't have to be exact.
9157 For example, if the relevant field of a message contains the text
9158 &quot;mailbox@domain&quot; somewhere
9159 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9160 &quot;mailbox@domain&quot; are all matches.
9162 All parts of the Pattern must match so, for example,
9163 if a message matches a defined
9164 From pattern, it still must be checked against the other parts of the
9165 Pattern that have been defined.
9166 The To header pattern is a slightly special case.
9167 If the message being checked has a Resent-To header
9168 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9169 there are used in place of the addresses in the To header.
9170 This is only true for the To header.
9171 Resent-cc and Resent-From headers are never used unless you add them
9172 with the eXtraHdrs command.
9174 The meaning of a header pattern may be negated with the
9175 &quot;!&quot; &quot;toggle NOT&quot; command.
9176 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9177 &quot;!&quot; at the beginning of the pattern line.
9178 It would look something like
9180 <PRE>
9181  ! From pattern = susan@example.com
9182 </PRE>
9184 When the &quot;!&quot; is present, it reverses the meaning of the match.
9186 If you want to check for the presence of a header field but don't care
9187 about its value, then
9188 the empty pattern that you get by entering a pair of
9189 double quotes (&quot;&quot;) should match any message that
9190 has the corresponding header field.
9192 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9194 AllText patterns are just like header patterns except that the text is
9195 searched for anywhere in the message's headers or body, not just in the
9196 contents of a particular header field.
9199 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9201 BodyText patterns are just like header patterns except that the text is
9202 searched for anywhere in the message's body, not just in the
9203 contents of a particular header field.
9206 If there is more than one header pattern or AllText pattern or BodyText pattern
9207 for which you want to take the
9208 same action there is a shorthand notation that may be used.
9209 Any of these patterns may be a list of patterns instead of
9210 just a single pattern.
9211 If any one of the patterns in the list matches the message
9212 then it is considered a match.
9213 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9214 you to use the same role when replying to messages, you might have
9215 a To pattern that looks like
9217 <PRE>
9218  To pattern = company1.com
9219               company2.com
9220 </PRE>
9222 This means that if the mail you are replying to was addressed to
9223 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9224 then this Pattern is a match and the same actions will be taken.
9226 The meaning of an AllText or BodyText pattern may be negated with the
9227 &quot;!&quot; &quot;toggle NOT&quot; command.
9228 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9229 &quot;!&quot; at the beginning of the pattern line.
9230 When the &quot;!&quot; is present, it reverses the meaning of the match.
9232 A technicality: Since comma is the character used to separate multiple values
9233 in any of the fields that may have multiple values (such as header patterns,
9234 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9235 you must escape comma with a
9236 backslash (&#92;) if you want to include a literal comma in one of those fields.
9237 In other words, if you type a backslash followed by a comma it will
9238 be interpreted as a comma by Alpine, instead of as a separator between
9239 pattern values.
9240 All other backslashes (those not followed by a comma) are literal
9241 backslashes and should not be escaped.
9242 It's unlikely you'll ever need to enter a literal comma or backslash in
9243 any of the patterns.
9245 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9247 The &quot;Current Folder Type&quot; may be set to one of four different
9248 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9249 &quot;Specific&quot;.
9250 If the value is set to &quot;News&quot;, then the
9251 Pattern will only match if the currently open folder is a newsgroup.
9252 The value &quot;Email&quot; only matches if the current folder is not news and
9253 the value &quot;Any&quot; causes any folder to match.
9254 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9255 then you must fill in a value for &quot;Folder&quot;, which is on the line
9256 below the &quot;Specific&quot; line.
9257 In this case you will only get a match if the currently open folder is
9258 the specific folder you list.
9259 You may give a list of folders instead of just a single
9260 folder name, in which case the Pattern will match if the open folder is
9261 any one of the folders in the list.
9262 The name of each folder in the list may be either &quot;INBOX&quot;,
9263 the technical specification
9264 of the folder (like what appears in your configuration file) or, if the
9265 folder is one of your incoming folders, it may be the nickname you've given
9266 the folder.
9267 Here are some samples of specific folder names:
9269 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9271 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9273 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9275 The easiest way to fill in the &quot;Folder&quot; field is to use
9276 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9277 highlighted, or to use the &quot;Take&quot; command with the configuration
9278 feature
9279 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9280 turned on.
9282 When reading a newsgroup, there may be a performance penalty
9283 incurred when collecting the information necessary to check whether
9284 or not a Pattern matches a message.
9285 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9286 If you have Patterns with a Current Folder Type of either
9287 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9288 Index Line Coloring or Scoring, you may experience
9289 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9291 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9293 The &quot;Age Interval&quot; may be set to an interval of message
9294 ages that should be considered a match.
9295 Like the other parts of the Pattern, if it is unset it will be ignored.
9296 The Age Interval looks like
9298 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9300 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9301 than or equal to zero.
9302 The special value &quot;INF&quot; may be used for
9303 the max value. It represents infinity.
9305 Actually, this option may be defined as a list of intervals instead
9306 of just a single interval.
9307 The list is separated by commas.
9308 It can look like
9310 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9312 When there is an Age Interval defined, it is a match if the age, in days, of
9313 the message is contained in any of the intervals.
9314 The intervals include both endpoints.
9316 Even though this option is called Age, it isn't actually
9317 the <EM>age</EM> of the message.
9318 Instead, it is how many days ago the message arrived in one of your folders.
9319 If the current time is a little past midnight, then a message that arrived
9320 just before midnight arrived yesterday, even though the message is only
9321 a few minutes old.
9322 By default, the date being used is not the date in the Date
9323 header of the message.
9324 It is the date that the message arrived in one of your folders.
9325 When you Save a message from one folder to another that arrival date
9326 is preserved.
9327 If you would like to use the date in the Date header that is possible.
9328 Turn on the option
9329 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9330 near the bottom of the rule definition.
9331 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9333 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9335 The &quot;Size Interval&quot; may be set to an interval of message
9336 sizes that should be considered a match.
9337 Like the other parts of the Pattern, if it is unset it will be ignored.
9338 The Size Interval looks like
9340 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9342 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9343 than or equal to zero.
9344 The special value &quot;INF&quot; may be used for
9345 the max value. It represents infinity.
9347 Actually, this option may be defined as a list of intervals instead
9348 of just a single interval.
9349 The list is separated by commas.
9350 It can look like
9352 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9354 When there is a Size Interval defined, it is a match if the size, in bytes, of
9355 the message is contained in any of the intervals.
9356 The intervals include both endpoints.
9358 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9360 The &quot;Score Interval&quot; may be set to an interval of message
9361 scores that should be considered a match.
9362 Like the other parts of the Pattern, if it is unset it will be ignored.
9363 The Score Interval looks like
9365 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9367 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9368 negative integers, with min_score less than or equal to max_score.
9369 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9370 the min and max values to represent negative and positive infinity.
9372 Actually, a list of intervals may be used if you wish.
9373 A list would look like
9375 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9377 When there is a Score Interval defined, it is a match if the score for
9378 the message is contained in any of the intervals in the list.
9379 The intervals include the endpoints.
9380 The score for a message is calculated by looking at every Score rule defined and
9381 adding up the Score Values for the ones that match the message.
9382 When deciding whether or not a Pattern matches a message for purposes of
9383 calculating the score, the Score Interval is ignored.
9385 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9387 There are five separate message status settings.
9388 By default, all five are set to the value &quot;Don't care&quot;, which
9389 will match any message.
9390 The value &quot;Yes&quot; means that the particular status must be true
9391 for a match, and the value &quot;No&quot; means that the particular
9392 status must not be true for a match.
9393 For example, one of the five Message Status settings is whether a message
9394 is marked Important or not.
9395 A &quot;Yes&quot; means that the message must be Important to be
9396 considered a match and &quot;No&quot; means that the message must not be
9397 Important to be considered a match.
9398 The same is true of the other four message status settings that depend
9399 on whether or not the message is New; whether the message has 
9400 been Answered or not; whether the message has been Deleted or not, and
9401 whether the message is Recent or not. 
9403 The nomenclature for New and Recent is a bit confusing:
9405 New means that the message is Unseen.
9406 It could have been in your mailbox for a long time but if you haven't looked
9407 at it, it is still considered New.
9408 That matches the default Alpine index display that shows an N for such a
9409 message.
9411 Recent means that the message was added to this folder since the last time
9412 you opened the folder.
9413 Alpine also shows an N by default for these types of messages.
9414 If you were to run two copies of Alpine that opened a folder one right after
9415 the other, a message would only show up as Recent in (at most) the first
9416 Alpine session.
9418 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9420 Keywords are similar to Message Status, but they are chosen by the user.
9421 Provided the mail server allows for it, you may add a set of possible keywords
9422 to a folder and then you may set those keywords or not for each message
9423 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9424 The syntax of this part of the Pattern is similar to the header patterns.
9425 It is a list of keywords.
9426 The Keyword part of the Pattern is a match if the message has any of
9427 the keywords in the list set.
9428 Like other parts of the Pattern, if this is unset it will be ignored.
9430 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9432 A message may use one or more character sets.
9433 This part of the Pattern matches messages that make use of one or more of
9434 the character sets specified in the pattern.
9435 It will be considered a match if a message uses any of the character
9436 sets in the list you give here.
9439 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9440 GB2312) you may also use some shorthand names that Alpine provides.
9441 These names are more understandable shorthand names for sets of 
9442 character set names.
9443 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9444 Selecting one of these shorthand names is equivalent to selecting all of
9445 the character sets that make up the set.
9446 You can see all of these shorthand names and the lists of character sets
9447 they stand for by typing the &quot;T&quot; command with the Character
9448 Set pattern highlighted.
9449 The syntax of this part of the Pattern is similar to the header patterns
9450 and the Message Keywords pattern.
9451 It is a list of character sets (or shorthand names).
9452 The Character Set part of the Pattern is a match if the message uses any
9453 of the character sets in the list.
9454 Like other parts of the Pattern, if this is unset it will be ignored.
9456 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9458 It seems that lots of unwanted email contains unencoded 8-bit characters
9459 in the Subject.
9460 Normally, characters with the 8th bit set are not allowed in the Subject
9461 header unless they are MIME-encoded.
9462 This option gives you a way to match messages that have Subjects that
9463 contain unencoded 8-bit characters.
9464 By default, the value of this option is &quot;Don't care&quot;, which
9465 will match any message.
9466 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9467 the Subject of the message in order for there to be a match,
9468 and the value &quot;No&quot; is the opposite.
9469 Setting this option will affect performance in large folders because the
9470 subject of each message in the folder has to be checked.
9472 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9474 This option gives you a way to take some action once per month.
9475 By default, the value of this option is &quot;Don't care&quot;, which
9476 will always match.
9477 The value &quot;Yes&quot; means that this must be the first time Alpine has
9478 been run this month in order to count as a match,
9479 and the value &quot;No&quot; is the opposite.
9481 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9483 This option gives you a way to take some action once per year.
9484 By default, the value of this option is &quot;Don't care&quot;, which
9485 will always match.
9486 The value &quot;Yes&quot; means that this must be the first time Alpine has
9487 been run this year in order to count as a match,
9488 and the value &quot;No&quot; is the opposite.
9490 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9492 This option gives you a way to match messages that have an address
9493 that is in one of your address books.
9494 Only the simple entries in your address books are searched.
9495 Address book distribution lists are ignored!
9496 By default, the value of this option is &quot;Don't care&quot;, which
9497 will match any message.
9498 The value &quot;Yes, in any address book&quot; means the address
9499 from the message must be in at least one of your
9500 address books in order to be a match.
9501 The value &quot;No, not in any address book&quot;
9502 means none of the addresses may
9503 be in any of your address books in order to be a match.
9504 The values &quot;Yes, in specific address books&quot; and
9505 &quot;No, not in any of specific address books&quot; are similar but instead
9506 of depending on all address books you are allowed to give a list of address
9507 books to look in.
9508 The addresses from the message that are checked for are determined by the
9509 setting you have for &quot;Types of addresses to check for in address book&quot;.
9510 If you set this to &quot;From&quot; the From address from the message will
9511 be looked up in the address book.
9512 If you set it to only &quot;To&quot; then the To addresses will be used.
9513 If any of the To addresses are in the address book then it is considered
9514 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9515 You could set it to both From and To, in which case all of the From and To
9516 addresses are used.
9517 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9518 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9519 exists or the From address if there is no Reply-To address.
9520 Same for the Sender address.
9521 Setting this option may affect performance in large folders because the
9522 From and Reply-To of each message in the folder have to be checked.
9524 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9526 This is a command that is run with its standard input set to the message
9527 being checked and its standard output discarded.
9528 The full directory path should be specified.
9529 The command will be run and then its exit status will be checked against
9530 the Exit Status Interval, which defaults to just the value zero.
9531 If the exit status of the command falls in the interval, it is considered
9532 a match, otherwise it is not a match.
9535 This option may actually be a list of commands.
9536 The first one that exists and is executable is used.
9537 That makes it possible to use the same configuration with Unix Alpine and
9538 PC-Alpine.
9541 If none of the commands in the list exists and is executable then the rule
9542 is <EM>not</EM> a match.
9543 If it is possible that the command may not exist, you should be careful
9544 to structure your rules so that nothing destructive
9545 happens when the command does not exist.
9546 For example, you might have a filter that filters away spam when there is
9547 a match but does nothing when there is not a match.
9548 That would continue to work correctly if the command didn't exist.
9549 However, if you have a filter that filters away spam when there is not
9550 a match and keeps it when there is a match, that would filter everything
9551 if the categorizer command didn't exist.
9553 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9554 setup for the bogofilter filter.
9557 &lt;End of help on this topic&gt;
9558 </BODY>
9559 </HTML>
9560 ===== h_rules_roles =====
9561 <HTML>
9562 <HEAD>
9563 <TITLE>SETUP ROLES SCREEN</TITLE>
9564 </HEAD>
9565 <BODY>
9566 <H1>SETUP ROLES SCREEN</H1>
9567 <H2>SETUP ROLES COMMANDS</H2>
9568 <!--chtml if pinemode="function_key"-->
9569 <PRE>
9570 Available  Commands -- Group 1         Available Commands -- Group 2   
9571 -------------------------------        ------------------------------  
9572 F1  Show Help Text                      F1  Show Help Text             
9573 F2  See commands in next group          F2  See commands in next group
9574 F3  Back to MAIN Alpine menu
9575 F4  Change configuration for role
9576 F5  Move to previous role               F5  Include file in role config
9577 F6  Move to next role                   F6  Exclude file from config
9578 F7  Previous page of roles
9579 F8  Next page of roles
9580 F9  Add new role                        F9  Replicate existing role
9581 F10 Delete existing role
9582 F11 Shuffle the order of roles
9583 F12 Whereis (search role nicknames)
9584 </PRE>
9585 <!--chtml else-->
9586 <PRE>
9587 Navigation                     General Alpine Commands
9588 -------------------------      -----------------------
9589  P  Prev Role                     ?  Display this help text
9590  N  Next Role                     E  Back to MAIN Alpine menu
9591  -  Previous page
9592 Spc (space bar) Next page
9593  W  WhereIs (search for word in role nicknames)
9595 Setup Roles Commands
9596 ------------------------------------------------
9597  A  Add new role                  $  Shuffle the order of roles
9598  D  Delete existing role          C  Change configuration for highlighted role
9599  R  Replicate existing role
9600  I  Include file in role config   X  Exclude file from role config
9601 </PRE>
9602 <!--chtml endif-->
9604 <H2>Description of the Setup Roles Screen</H2>
9606 This screen lets you add, delete, modify, or change the order of the rules
9607 that determine the role you are playing when composing a message.
9609 You may play different roles depending on who you are replying to.
9610 For example, if you are replying to a message addressed to help-desk you
9611 may be acting as a Help Desk Worker.
9612 That role may require that you use a different return address and/or
9613 a different signature.
9615 Roles are optional.
9616 If you set up roles they work like this:  Each role has a set of
9617 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9618 considered for a particular use; a &quot;Pattern&quot;,
9619 which is used to decide which of the eligible roles is used; and a set
9620 of &quot;Actions&quot;, which are taken when that role is used.
9621 When you reply to a message, the message you are replying to is compared
9622 with the Patterns of the roles marked as eligible for use when replying.
9623 The comparisons start with the first eligible role and keep going until there
9624 is a match.
9625 If a match is found, the matching role's Actions are taken.
9627 It is also possible to set a default role and to change that role during
9628 your Alpine session.
9629 When you start Alpine no default role will be set.
9630 You may set or change the current default role by using the &quot;D&quot;
9631 command in the role selection screen.
9632 You'll see that screen while composing a message and being asked to select
9633 a role.
9634 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9635 compose a message.
9636 You may find a default role useful if you normally perform the duties of one
9637 of your roles for a while, then you switch to another role and stay in the
9638 new role for another period of time.
9639 It may be easier than using the Role Command to select the role each time you
9640 compose a message.
9642 <H2>Role Uses</H2>
9644 There are three types of use to be configured;
9645 one for Replying, one for Forwarding, and one for Composing.
9646 These indicate whether or not you want a role to be considered when you
9647 type the Reply, Forward, or Compose commands.
9648 (The Role command is an alternate form of the Compose command, and it is
9649 not affected by these settings.)
9650 Each of these Use types has three possible values.
9651 The value &quot;Never&quot;
9652 means that the role will never be considered as a candidate for use with
9653 the corresponding command.
9654 For example, if you set a role's Reply Use to Never, then when you Reply to
9655 a message, that role won't even be considered.
9656 (That isn't quite true. If the message you are replying to matches some other
9657 role that requires confirmation,
9658 then there will be a ^T command available which allows you to select a role
9659 from all of your roles, not just the reply-eligible roles.)
9662 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9663 both mean that you do want to consider this role when using the corresponding
9664 command.
9665 For either of these settings the role's Pattern will
9666 be checked to see if it matches the message.
9667 For Reply Use, the message used to compare the Pattern with is the message
9668 being replied to.
9669 For Forward Use, the message used to compare the Pattern with is the message
9670 being forwarded.
9671 For Compose Use, there is no message, so the parts of the Pattern that depend
9672 on a message (everything other than Current Folder Type) are ignored.
9673 In all cases, the Current Folder Type is checked if defined.
9674 If there is a match then this role will either be used without confirmation
9675 or will be the default when confirmation is asked for, depending on
9676 which of the two options is selected.
9677 If confirmation is requested, you will have a chance to
9678 choose No Role instead of the offered role, or to
9679 change the role to any one of your other roles (with the ^T command).
9681 <H2>Role Patterns</H2>
9683 In order to determine whether or not a message matches a role the message is
9684 compared with the Role's Pattern.
9685 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9686 Scoring, Other Rules, and Search Rules, so are described in only one place,
9687 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9689 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9690 a role that has all header patterns unset, the AllText pattern unset,
9691 the BodyText pattern unset,
9692 the Score Interval unset, and the Current Folder Type set to
9693 &quot;Any&quot; may be used as a default role.
9694 It should be put last in the list of roles since the matching
9695 starts at the beginning and proceeds until one of the roles is a match.
9696 If no roles at all match, then Alpine will
9697 use its regular methods of defining the role.
9698 If you wanted to, you could define a different &quot;default&quot; role
9699 for Replying, Forwarding, and Composing by setting the
9700 &quot;Use&quot; fields appropriately.
9702 <H2>Role Actions</H2>
9704 Once a role match is found, the role's Actions are taken.
9705 For each role there are several possible actions that may be defined.
9706 They are actions to set the From address, the Reply-To address,
9707 the Fcc, the Signature, the Template file, and Other Headers.
9709 <H3>Set From</H3>
9711 The From address is the address used on the From line of the message
9712 you are sending.
9714 <H3>Set Reply-To</H3>
9716 The Reply-To address is the address used on the Reply-To line of the message
9717 you are sending.
9718 You don't need a Reply-To address unless it is different from the From address.
9720 <H3>Set Other Headers</H3>
9722 If you want to set the value of the From or Reply-To headers, use
9723 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9724 If you want to set the values of other headers, use this field.
9725 This field is similar to the
9726 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9727 Each header you specify here must include the header tag
9728 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9729 and may optionally include a value for that header.
9730 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9731 for a header here will replace any value that already exists.
9732 For example, if you are Replying to a message there will be at least one
9733 address in the To header (the address you are Replying to).
9734 However, if you Reply using a role that sets the To header, that role's
9735 To header value will be used instead.
9737 <H3>Set Fcc</H3>
9739 The Fcc is used as the Fcc for the message you are sending.
9741 <H3>Set Signature or Set LiteralSig</H3>
9743 The Signature is the name of a file to be used as the signature file when
9744 this role is being used.
9745 If the name of the file has a vertical bar following it (|)
9746 then it is assumed that the file is a program that should be run to
9747 produce the signature.
9748 If the LiteralSig is set, then it is used instead of the signature file.
9749 LiteralSig is just a different way to store the signature.
9750 It is stored in the pine configuration file instead of in a separate
9751 signature file.
9752 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9753 either in the role or as the default signature in the Setup/Config screen,
9754 then the signature file is ignored.
9756 <H3>Set Template</H3>
9758 A Template is the name of a file to be included in the message when this
9759 role is being used.
9760 If the name of the file has a vertical bar following it (|)
9761 then it is assumed that the file is a program that should be run to
9762 produce the template.
9765 Both signature files and template files may be stored remotely on an IMAP
9766 server.
9767 In order to do that you just give the file a remote name.
9768 This works just like the regular
9769 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9770 option that is configured from the Setup/Configuration screen.
9771 A remote signature file name might look like:
9773 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9775 Once you have named the remote signature or template file you create its
9776 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9777 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9778 line of the role editor.
9781 Both signature files and template files (or the output of signature programs
9782 and template file programs) may contain special tokens
9783 that are replaced with contents
9784 that depend on the message being replied to or forwarded.
9785 See the help for the individual fields inside the role editor for more
9786 information on tokens.
9788 <H3>Use SMTP Server</H3>
9790 If this field has a value, then it will be used as the SMTP server
9791 to send mail when this role is being used (unless the SMTP server variable
9792 is set in the system-wide fixed configuration file).
9793 It has the same semantics as the
9794 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9795 variable in the Setup/Config screen.
9796 When you postpone the composition this SMTP server list will be saved
9797 with the postponed composition and it cannot be changed later.
9798 Because of that, you may want to make this a list of SMTP servers
9799 with the preferred server at the front of the list and alternate servers
9800 later in the list.
9803 If any of the actions are left unset, then the action depends on what
9804 is present in the &quot;Initialize settings using role&quot; field.
9805 If you've listed the nickname of another one of your roles there, then the
9806 corresponding action from that role will be used here.
9807 If that action is also blank, or if there is no nickname specified,
9808 then Alpine will do whatever it normally does to set these actions.
9809 This depends on other configuration options and features you've set.
9811 <H2>Command Descriptions</H2>
9813 <H3>Add</H3>
9815 The Add command is used to add a new role definition to your set of
9816 roles.
9817 The new role will be added after the highlighted role.
9819 <H3>Delete</H3>
9821 The Delete command deletes the currently highlighted role.
9823 <H3>Change</H3>
9825 The Change command lets you edit the nickname, Uses, Pattern,
9826 and Actions of the currently highlighted role.
9828 <H3>Shuffle</H3>
9830 The Shuffle command allows you to change the order of the roles.
9831 You may move the currently highlighted role up or down in the list.
9832 The order of the roles is important since the roles are tested for a
9833 match starting with the first role and continuing until a match is found.
9834 You should place the roles with more specific Patterns near the beginning
9835 of the list, and those with more general Patterns near the end so that
9836 the more specific matches will happen when appropriate.
9838 <H3>Replicate</H3>
9840 The Replicate command is used to copy an existing role and modify it.
9841 The new role will be added after the highlighted role.
9843 <H3>IncludeFile</H3>
9845 The IncludeFile command allows you to add a roles file to your configuration.
9846 Usually, your roles will be contained in your Alpine configuration file.
9847 If you wish, some or all of your roles may be stored in a separate file.
9848 If a roles file already exists (maybe it was made by somebody else using
9849 Alpine), you may insert it before the currently highlighted role.
9850 You may also insert an empty file or a file that does not yet exist.
9851 Once you have an empty roles file in your configuration, you may use
9852 the Shuffle command to move roles into it.
9853 In fact, that's the only way to get the initial role into the file.
9855 <H3>eXcludeFile</H3>
9857 The eXcludeFile command removes a roles file from your roles configuration.
9858 A limitation of the program is that in order to exclude a roles file
9859 that file must have at least one role
9860 in it, otherwise you won't be able to highlight a line in the file.
9861 So you may have to add a dummy role to the file in order to exclude the file.
9862 <P><UL>
9863 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9864 </UL>
9866 &lt;End of help on this topic&gt;
9867 </BODY>
9868 </HTML>
9869 ===== h_rules_other =====
9870 <HTML>
9871 <HEAD>
9872 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
9873 </HEAD>
9874 <BODY>
9875 <H1>SETUP OTHER RULES SCREEN</H1>
9876 <H2>SETUP OTHER RULES COMMANDS</H2>
9877 <!--chtml if pinemode="function_key"-->
9878 <PRE>
9879 Available  Commands -- Group 1         Available Commands -- Group 2   
9880 -------------------------------        ------------------------------  
9881 F1  Show Help Text                      F1  Show Help Text             
9882 F2  See commands in next group          F2  See commands in next group
9883 F3  Back to MAIN Alpine menu
9884 F4  Change configuration for rule
9885 F5  Move to previous rule               F5  Include file in rule config
9886 F6  Move to next rule                   F6  Exclude file from config
9887 F7  Previous page of rules
9888 F8  Next page of rules
9889 F9  Add new rule                        F9  Replicate existing rule
9890 F10 Delete existing rule
9891 F11 Shuffle the order of rules
9892 F12 Whereis (search rule nicknames)
9893 </PRE>
9894 <!--chtml else-->
9895 <PRE>
9896 Navigation                     General Alpine Commands
9897 -------------------------      -----------------------
9898  P  Prev rule                     ?  Display this help text
9899  N  Next rule                     E  Back to MAIN Alpine menu
9900  -  Previous page
9901 Spc (space bar) Next page
9902  W  WhereIs (search for word in rule nicknames)
9904 Setup Other Rules Commands
9905 ------------------------------------------------
9906  A  Add new rule                  $  Shuffle the order of rules
9907  D  Delete existing rule          C  Change configuration for highlighted rule
9908  R  Replicate existing rule
9909  I  Include file in rule config   X  Exclude file from rule config
9910 </PRE>
9911 <!--chtml endif-->
9913 <H2>Description of the Setup Other Rules Screen</H2>
9915 This is where you may set various actions that do not fit well into the
9916 other Rules categories.
9918 <H2>Patterns</H2>
9920 Other Rules are a little different from the rest of the Rules because
9921 they depend only on the current folder, and not on a particular message.
9922 In order to determine whether or not a rule's actions should be applied
9923 the current folder is compared with the rule's Pattern, which consists
9924 of only the Current Folder Type.
9925 Current Folder Type works the same for Other Rules as it does for Roles,
9926 Filtering, Index Coloring, and Scoring.
9927 Keep in mind that the only part of the Pattern that applies to Other
9928 Rules is the Current Folder Type when looking at the description of
9929 Patterns given
9930 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9932 <H2>The Actions</H2>
9934 <H3>Set Sort Order</H3>
9936 When you enter a new folder, these rules will be checked to see if you
9937 have set a sort order that is different from your default sort order.
9938 The default is set in the Setup/Config screen with
9939 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
9940 If the Sort Order action is set, then the folder will be displayed sorted in
9941 that sort order instead of in the default order.
9943 A possible point of confusion arises when you change the configuration
9944 of the Sort Order for the currently open folder.
9945 The folder will normally be re-sorted when you go back to viewing the
9946 index.
9947 However, if you have manually sorted the folder with the
9948 Sort
9949 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
9950 command, then it will not be re-sorted until the next time it is opened.
9952 <H3>Set Index Format</H3>
9954 When you enter a new folder, these rules will be checked to see if you
9955 have set an Index Format that is different from your default Index Format,
9956 which is set with the
9957 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
9958 If so, the index will be displayed with this format instead of the default.
9960 <H3>Set Startup Rule</H3>
9962 When you enter a new folder, these rules will be checked to see if you
9963 have set a startup rule that is different from the default startup rule.
9964 The default for incoming folders is set in the Setup/Config screen with
9965 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
9966 The default for folders other than INBOX that are not part of your
9967 incoming collection
9968 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
9969 is to start with the last message in the folder.
9970 If the Startup Rule is set to something other than &quot;default&quot;,
9971 then the rule will determine which message will be the current message when
9972 the folder is first opened.
9974 The various startup rule possibilities work the same here as they do in
9975 the incoming collection, so check
9976 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
9977 for more help.
9979 <H2>Command Descriptions</H2>
9981 <H3>Add</H3>
9983 The Add command is used to add a new rule definition to your set of
9984 rules.
9985 The new rule will be added after the highlighted rule.
9987 <H3>Delete</H3>
9989 The Delete command deletes the currently highlighted rule.
9991 <H3>Change</H3>
9993 The Change command lets you edit the nickname, Pattern,
9994 and Action of the currently highlighted rule.
9996 <H3>Shuffle</H3>
9998 The Shuffle command allows you to change the order of the rules.
9999 You may move the currently highlighted rule up or down in the list.
10000 The order of the rules is important since the rules are tested for a
10001 match starting with the first rule and continuing until a match is found.
10002 You should place the rules with more specific Patterns near the beginning
10003 of the list, and those with more general Patterns near the end so that
10004 the more specific matches will happen when appropriate.
10006 <H3>Replicate</H3>
10008 The Replicate command is used to copy an existing rule definition and modify it.
10009 The new rule will be added after the highlighted rule.
10011 <H3>IncludeFile</H3>
10013 The IncludeFile command allows you to add a rules file to your configuration.
10014 Usually, your rules will be contained in your Alpine configuration file.
10015 If you wish, some or all of your rules may be stored in a separate file.
10016 If a rules file already exists (maybe it was made by somebody else using
10017 Alpine), you may insert it before the currently highlighted rule.
10018 You may also insert an empty file or a file that does not yet exist.
10019 Once you have an empty rules file in your configuration, you may use
10020 the Shuffle command to move rules into it.
10021 In fact, that's the only way to get the initial rule into the file.
10023 <H3>eXcludeFile</H3>
10025 The eXcludeFile command removes a rules file from your rules configuration.
10026 A limitation of the program is that in order to exclude a rules file
10027 that file must have at least one rule
10028 in it, otherwise you won't be able to highlight a line in the file.
10029 So you may have to add a dummy rule to the file in order to exclude the file.
10030 <P><UL>
10031 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10032 </UL>
10034 &lt;End of help on this topic&gt;
10035 </BODY>
10036 </HTML>
10037 ===== h_rules_srch =====
10038 <HTML>
10039 <HEAD>
10040 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10041 </HEAD>
10042 <BODY>
10043 <H1>SETUP SEARCH RULES SCREEN</H1>
10044 <H2>SETUP SEARCH RULES COMMANDS</H2>
10045 <!--chtml if pinemode="function_key"-->
10046 <PRE>
10047 Available  Commands -- Group 1         Available Commands -- Group 2   
10048 -------------------------------        ------------------------------  
10049 F1  Show Help Text                      F1  Show Help Text             
10050 F2  See commands in next group          F2  See commands in next group
10051 F3  Back to MAIN Alpine menu
10052 F4  Change configuration for rule
10053 F5  Move to previous rule               F5  Include file in rule config
10054 F6  Move to next rule                   F6  Exclude file from config
10055 F7  Previous page of rules
10056 F8  Next page of rules
10057 F9  Add new rule                        F9  Replicate existing rule
10058 F10 Delete existing rule
10059 F11 Shuffle the order of rules
10060 F12 Whereis (search rule nicknames)
10061 </PRE>
10062 <!--chtml else-->
10063 <PRE>
10064 Navigation                     General Alpine Commands
10065 -------------------------      -----------------------
10066  P  Prev rule                     ?  Display this help text
10067  N  Next rule                     E  Back to MAIN Alpine menu
10068  -  Previous page
10069 Spc (space bar) Next page
10070  W  WhereIs (search for word in rule nicknames)
10072 Setup Search Rules Commands
10073 ------------------------------------------------
10074  A  Add new rule                  $  Shuffle the order of rules
10075  D  Delete existing rule          C  Change configuration for highlighted rule
10076  R  Replicate existing rule
10077  I  Include file in rule config   X  Exclude file from rule config
10078 </PRE>
10079 <!--chtml endif-->
10081 <H2>Description of the Setup Search Rules Screen</H2>
10083 One of the commands that becomes available when that feature is turned on
10084 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10085 screen to select a set of messages.
10086 One way of selecting messages is to use a Rule.
10087 All of the messages that match (or don't match if you wish)
10088 a Rule's Pattern will be selected.
10090 Any of your Rules may be used for this purpose.
10091 You might already have Rules set up for filtering, index line color, scores, or roles;
10092 and you may use any of those Rules with the Select command.
10093 However, you might find it more convenient to set up a separate set of Rules
10094 just for this purpose without having to worry about what other effects
10095 they may cause.
10096 That is the purpose of these Select Rules.
10099 Each rule has a &quot;Pattern&quot;
10100 that is used to decide which messages are selected when you use it with
10101 the Select command.
10103 <H2>Patterns</H2>
10105 In order to determine whether or not a message should be selected
10106 the message is compared with the rule's Pattern.
10107 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10108 Scoring, Other Rules, and Search Rules, so are described in only one place,
10109 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10111 <H2>Command Descriptions</H2>
10113 <H3>Add</H3>
10115 The Add command is used to add a new rule definition to your set of
10116 rules.
10117 The new rule will be added after the highlighted rule.
10119 <H3>Delete</H3>
10121 The Delete command deletes the currently highlighted rule.
10123 <H3>Change</H3>
10125 The Change command lets you edit the nickname and Pattern
10126 of the currently highlighted rule.
10128 <H3>Shuffle</H3>
10130 The Shuffle command allows you to change the order of the rules.
10131 This affects only the order they are presented in when you use the
10132 ^T subcommand of the Select by Rule command.
10133 You may move the currently highlighted rule up or down in the list.
10135 <H3>Replicate</H3>
10137 The Replicate command is used to copy an existing rule definition and modify it.
10138 The new rule will be added after the highlighted rule.
10140 <H3>IncludeFile</H3>
10142 The IncludeFile command allows you to add a rules file to your configuration.
10143 Usually, your rules will be contained in your Alpine configuration file.
10144 If you wish, some or all of your rules may be stored in a separate file.
10145 If a rules file already exists (maybe it was made by somebody else using
10146 Alpine), you may insert it before the currently highlighted rule.
10147 You may also insert an empty file or a file that does not yet exist.
10148 Once you have an empty rules file in your configuration, you may use
10149 the Shuffle command to move rules into it.
10150 In fact, that's the only way to get the initial rule into the file.
10152 <H3>eXcludeFile</H3>
10154 The eXcludeFile command removes a rules file from your rules configuration.
10155 A limitation of the program is that in order to exclude a rules file
10156 that file must have at least one rule
10157 in it, otherwise you won't be able to highlight a line in the file.
10158 So you may have to add a dummy rule to the file in order to exclude the file.
10159 <P><UL>
10160 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10161 </UL>
10163 &lt;End of help on this topic&gt;
10164 </BODY>
10165 </HTML>
10166 ===== h_rules_incols =====
10167 <HTML>
10168 <HEAD>
10169 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10170 </HEAD>
10171 <BODY>
10172 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10173 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10174 <!--chtml if pinemode="function_key"-->
10175 <PRE>
10176 Available  Commands -- Group 1         Available Commands -- Group 2   
10177 -------------------------------        ------------------------------  
10178 F1  Show Help Text                      F1  Show Help Text             
10179 F2  See commands in next group          F2  See commands in next group
10180 F3  Back to MAIN Alpine menu
10181 F4  Change configuration for rule
10182 F5  Move to previous rule               F5  Include file in rule config
10183 F6  Move to next rule                   F6  Exclude file from config
10184 F7  Previous page of rules
10185 F8  Next page of rules
10186 F9  Add new rule                        F9  Replicate existing rule
10187 F10 Delete existing rule
10188 F11 Shuffle the order of rules
10189 F12 Whereis (search rule nicknames)
10190 </PRE>
10191 <!--chtml else-->
10192 <PRE>
10193 Navigation                     General Alpine Commands
10194 -------------------------      -----------------------
10195  P  Prev rule                     ?  Display this help text
10196  N  Next rule                     E  Back to MAIN Alpine menu
10197  -  Previous page
10198 Spc (space bar) Next page
10199  W  WhereIs (search for word in rule nicknames)
10201 Setup Index Color Commands
10202 ------------------------------------------------
10203  A  Add new rule                  $  Shuffle the order of rules
10204  D  Delete existing rule          C  Change configuration for highlighted rule
10205  R  Replicate existing rule
10206  I  Include file in rule config   X  Exclude file from rule config
10207 </PRE>
10208 <!--chtml endif-->
10210 <H2>Description of the Setup Index Line Colors Screen</H2>
10212 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10213 This action is only available if your terminal is capable of displaying
10214 color and color display has been enabled with the
10215 <A HREF="h_config_color_style">Color Style</A> option within the
10216 Setup Color screen.
10217 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10218 This screen lets you add, delete, modify, or change the order of the rules
10219 that cause the lines in the MESSAGE INDEX to be displayed in different
10220 colors.
10222 Each rule has a &quot;Pattern&quot;,
10223 which is used to decide which of the rules is used; and the color that
10224 is used if the Pattern matches a particular message.
10226 <H2>Index Color Patterns</H2>
10228 In order to determine whether or not a message matches an Index Color Rule
10229 the message is compared with the rule's Pattern.
10230 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10231 Scoring, Other Rules, and Search Rules, so are described in only one place,
10232 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10235 If none of the Index Color rules is a match for a particular index line,
10236 then the color used is set using
10237 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10239 <H2>Index Line Color</H2>
10241 This is the color that index lines are colored when there is a matching
10242 Pattern.
10243 This colors the whole index line, except possibly the status letters,
10244 which may be colored separately using
10245 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10247 <H2>Command Descriptions</H2>
10249 <H3>Add</H3>
10251 The Add command is used to add a new rule definition to your set of
10252 rules.
10253 The new rule will be added after the highlighted rule.
10255 <H3>Delete</H3>
10257 The Delete command deletes the currently highlighted rule.
10259 <H3>Change</H3>
10261 The Change command lets you edit the nickname, Pattern,
10262 and Index Line Color of the currently highlighted rule.
10264 <H3>Shuffle</H3>
10266 The Shuffle command allows you to change the order of the rules.
10267 You may move the currently highlighted rule up or down in the list.
10268 The order of the rules is important since the rules are tested for a
10269 match starting with the first rule and continuing until a match is found.
10270 You should place the rules with more specific Patterns near the beginning
10271 of the list, and those with more general Patterns near the end so that
10272 the more specific matches will happen when appropriate.
10274 <H3>Replicate</H3>
10276 The Replicate command is used to copy an existing rule definition and modify it.
10277 The new rule will be added after the highlighted rule.
10279 <H3>IncludeFile</H3>
10281 The IncludeFile command allows you to add a rules file to your configuration.
10282 Usually, your rules will be contained in your Alpine configuration file.
10283 If you wish, some or all of your rules may be stored in a separate file.
10284 If a rules file already exists (maybe it was made by somebody else using
10285 Alpine), you may insert it before the currently highlighted rule.
10286 You may also insert an empty file or a file that does not yet exist.
10287 Once you have an empty rules file in your configuration, you may use
10288 the Shuffle command to move rules into it.
10289 In fact, that's the only way to get the initial rule into the file.
10291 <H3>eXcludeFile</H3>
10293 The eXcludeFile command removes a rules file from your rules configuration.
10294 A limitation of the program is that in order to exclude a rules file
10295 that file must have at least one rule
10296 in it, otherwise you won't be able to highlight a line in the file.
10297 So you may have to add a dummy rule to the file in order to exclude the file.
10298 <P><UL>
10299 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10300 </UL>
10302 &lt;End of help on this topic&gt;
10303 </BODY>
10304 </HTML>
10305 ===== h_rules_filter =====
10306 <HTML>
10307 <HEAD>
10308 <TITLE>SETUP FILTERING SCREEN</TITLE>
10309 </HEAD>
10310 <BODY>
10311 <H1>SETUP FILTERING SCREEN</H1>
10312 <H2>SETUP FILTERING COMMANDS</H2>
10313 <!--chtml if pinemode="function_key"-->
10314 <PRE>
10315 Available  Commands -- Group 1         Available Commands -- Group 2   
10316 -------------------------------        ------------------------------  
10317 F1  Show Help Text                      F1  Show Help Text             
10318 F2  See commands in next group          F2  See commands in next group
10319 F3  Back to MAIN Alpine menu
10320 F4  Change configuration for filter
10321 F5  Move to previous filter             F5  Include file in filter config
10322 F6  Move to next filter                 F6  Exclude file from config
10323 F7  Previous page of filters
10324 F8  Next page of filters
10325 F9  Add new filter                      F9  Replicate existing filter
10326 F10 Delete existing filter
10327 F11 Shuffle the order of filters
10328 F12 Whereis (search filter nicknames)
10329 </PRE>
10330 <!--chtml else-->
10331 <PRE>
10332 Navigation                     General Alpine Commands
10333 -------------------------      -----------------------
10334  P  Prev Filter                   ?  Display this help text
10335  N  Next Filter                   E  Back to MAIN Alpine menu
10336  -  Previous page
10337 Spc (space bar) Next page
10338  W  WhereIs (search for word in filter nicknames)
10340 Setup Filters Commands
10341 ------------------------------------------------
10342  A  Add new filter                $  Shuffle the order of filters
10343  D  Delete existing filter        C  Change configuration for highlighted filter
10344  R  Replicate existing filter
10345  I  Include file in filter config X  Exclude file from filter config
10346 </PRE>
10347 <!--chtml endif-->
10349 <H2>Description of the Setup Filtering Screen</H2>
10351 This screen lets you add, delete, modify, or change the order of the rules
10352 that determine the filtering Alpine does on folders you view.
10354 The software that actually delivers mail (the stuff that happens
10355 before Alpine is involved) for you is in a better position to do mail filtering
10356 than Alpine itself.
10357 If possible, you may want to look into using that sort of mail filtering to
10358 deliver mail to different folders, delete it, or forward it.
10359 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10361 Filtering is a way to automatically move certain messages from one folder
10362 to another or to delete messages.
10363 It can also be used to set message status (Important, Deleted, New,
10364 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10365 Alpine doesn't have the ability to forward mail to another address or
10366 to deliver vacation messages.
10368 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10369 When a folder is opened, when new mail arrives in an open folder, or
10370 when mail is Expunged from a folder; each
10371 message is compared with the Patterns of your filtering rules.
10372 The comparisons start with the first rule and keep going until there
10373 is a match.
10374 If a match is found, the message may be deleted or moved, depending on
10375 the setting of the Filter Action.
10376 If the message is not deleted, it may have its status altered.
10379 <EM>NOTE:</EM>
10380 When setting up a Pattern used to delete messages,
10381 it is recommended that you test the Pattern first with a &quot;Move&quot;
10382 folder specified in
10383 case unintended matches occur.  Messages that are deleted will be removed 
10384 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10385 next Expunge command or once the folder being filtered has been closed.
10387 <H2>Filter Patterns</H2>
10389 In order to determine whether or not a message matches a filter the message is
10390 compared with the Filter's Pattern.
10391 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10392 Scoring, Other Rules, and Search Rules, so are described in only one place,
10393 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10395 Since filtering is a potentially destructive action, if you have a filtering
10396 Pattern with nothing other than Current Folder Type set, that filtering
10397 rule is ignored.
10399 <H2>Filter Actions</H2>
10401 Once a filter match is found for a particular message, there are some actions
10402 that may be taken.
10403 First, the message may have its status changed.
10404 This is the same message status that you can manipulate manually using the
10405 <a href="h_common_flag">Flag Command</a>.
10406 There are always four elements of message status that you can control.
10407 You can set or clear the Important status, the New status, the Deleted
10408 status, and the Answered status.
10409 Of course, if the filter is going to delete the message,
10410 then there is no point in setting message status.
10411 You may also be able to set user-defined keywords for a message.
10412 Read a little about keywords in the help text for the
10413 <A HREF="h_common_flag">Flag</A> command.
10415 Second, the filter may delete or move the message.
10416 Deleting the message marks it Deleted and removes it from view.
10417 It is effectively gone forever (though it technically is still there until
10418 the next expunge command, which may happen implicitly).
10419 Moving the message moves it from the open folder into the folder
10420 listed on the &quot;Folder List&quot; line of the filter configuration.
10421 If you list more than one folder name (separated by commas) then the message
10422 will be copied to each of those folders.
10423 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10424 message is removed from the current folder.
10425 If you just want to set the messages status without deleting it from
10426 the folder, then set the filter action to
10427 &quot;Just Set Message Status&quot;.
10429 (There is no way to do a Copy instead of a Move, due to the difficulties
10430 involved in keeping track of whether or not a message has
10431 already been copied.)
10433 <H2>Command Descriptions</H2>
10435 <H3>Add</H3>
10437 The Add command is used to add a new filter definition to your set of
10438 filters.
10439 The new filter will be added after the highlighted filter.
10441 <H3>Delete</H3>
10443 The Delete command deletes the currently highlighted filter.
10445 <H3>Change</H3>
10447 The Change command lets you edit the nickname, Pattern,
10448 and Folder of the currently highlighted filter.
10450 <H3>Shuffle</H3>
10452 The Shuffle command allows you to change the order of the filters.
10453 You may move the currently highlighted filter up or down in the list.
10454 The order of the filters is important since the filters are tested for a
10455 match starting with the first filter and continuing until a match is found.
10456 You should place the filters with more specific Patterns near the beginning
10457 of the list, and those with more general Patterns near the end so that
10458 the more specific matches will happen when appropriate.
10460 <H3>Replicate</H3>
10462 The Replicate command is used to copy an existing filter and modify it.
10463 The new filter will be added after the highlighted filter.
10465 <H3>IncludeFile</H3>
10467 The IncludeFile command allows you to add a filters file to your configuration.
10468 Usually, your filters will be contained in your Alpine configuration file.
10469 If you wish, some or all of your filters may be stored in a separate file.
10470 If a filters file already exists (maybe it was made by somebody else using
10471 Alpine), you may insert it before the currently highlighted filter.
10472 You may also insert an empty file or a file that does not yet exist.
10473 Once you have an empty filters file in your configuration, you may use
10474 the Shuffle command to move filters into it.
10475 In fact, that's the only way to get the initial filter into the file.
10477 <H3>eXcludeFile</H3>
10479 The eXcludeFile command removes a filters file from your filters configuration.
10480 A limitation of the program is that in order to exclude a filters file
10481 that file must have at least one filter
10482 in it, otherwise you won't be able to highlight a line in the file.
10483 So you may have to add a dummy filter to the file in order to exclude the file.
10484 <P><UL>
10485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10486 </UL>
10488 <H3>Performance Considerations</H3>
10489 The number and type of patterns being tested can 
10490 adversely effect performance.  Issues to be aware
10491 of include:
10493 <UL>
10494   <LI> The more filters you have defined the longer it will take to run down
10495 the list.  Deleting unused filters is a good idea.
10496   <LI> Filtering in newsgroups served by an NNTP server will be slow
10497 if your patterns include tests other than &quot;From:&quot;
10498 or &quot;Subject:&quot;.
10499 </UL>
10501 &lt;End of help on this topic&gt;
10502 </BODY>
10503 </HTML>
10504 ===== h_rules_score =====
10505 <HTML>
10506 <HEAD>
10507 <TITLE>SETUP SCORING SCREEN</TITLE>
10508 </HEAD>
10509 <BODY>
10510 <H1>SETUP SCORING SCREEN</H1>
10511 <H2>SETUP SCORING COMMANDS</H2>
10512 <!--chtml if pinemode="function_key"-->
10513 <PRE>
10514 Available  Commands -- Group 1         Available Commands -- Group 2   
10515 -------------------------------        ------------------------------  
10516 F1  Show Help Text                      F1  Show Help Text             
10517 F2  See commands in next group          F2  See commands in next group
10518 F3  Back to MAIN Alpine menu
10519 F4  Change configuration for rule
10520 F5  Move to previous rule               F5  Include file in rule config
10521 F6  Move to next rule                   F6  Exclude file from config
10522 F7  Previous page of rules
10523 F8  Next page of rules
10524 F9  Add new rule                        F9  Replicate existing rule
10525 F10 Delete existing rule
10526 F11 Shuffle the order of rules
10527 F12 Whereis (search rule nicknames)
10528 </PRE>
10529 <!--chtml else-->
10530 <PRE>
10531 Navigation                     General Alpine Commands
10532 -------------------------      -----------------------
10533  P  Prev rule                     ?  Display this help text
10534  N  Next rule                     E  Back to MAIN Alpine menu
10535  -  Previous page
10536 Spc (space bar) Next page
10537  W  WhereIs (search for word in rule nicknames)
10539 Setup Scoring Commands
10540 ------------------------------------------------
10541  A  Add new rule                  $  Shuffle the order of rules
10542  D  Delete existing rule          C  Change configuration for highlighted rule
10543  R  Replicate existing rule
10544  I  Include file in rule config   X  Exclude file from rule config
10545 </PRE>
10546 <!--chtml endif-->
10548 <H2>Description of the Setup Scoring Screen</H2>
10550 Most people will not use scores at all, but if you do use them, here's how
10551 they work in Alpine.
10552 Using this screen, you may define Scoring rules.
10553 The score for a message is calculated by looking at every Score rule defined
10554 and adding up the Score Values for the ones that match the message.
10555 If there are no matches for a message, it has a score of zero.
10556 Message scores may be used a couple of ways in Alpine.
10558 <H3>Sorting by Score</H3>
10560 One of the methods you may use to sort message indexes is to sort by
10561 score.
10562 The scores of all the messages in a folder will be calculated and then
10563 the index will be ordered by placing the messages in order of ascending or
10564 descending score.
10566 <H3>Scores for use in Patterns</H3>
10568 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10569 category labeled &quot;Score Interval&quot;.
10570 When a message is being compared with a Pattern to check for a match, if
10571 the Score Interval is set only messages that have a score somewhere in
10572 the interval are a match.
10574 <H2>Scoring Rule Patterns</H2>
10576 In order to determine whether or not a message matches a scoring rule
10577 the message is compared with the rule's Pattern.
10578 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10579 Scoring, Other Rules, and Search Rules, so are described in only one place,
10580 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10583 Actually, Scoring rule Patterns are slightly different from the other types of
10584 Patterns because Scoring rule Patterns don't contain a Score Interval.
10585 In other words, when calculating the score for a message, which is done
10586 by looking at the Scoring rule Patterns, scores aren't used.
10588 <H2>Score Value</H2>
10590 This is the value that will be added to the score for a message if the
10591 rule's Pattern is a match.
10592 Each individual Score Value is an integer between -100 and 100, and the
10593 values from matching rules are added together to get a message's score.
10594 There is also a way to extract the value from a particular header of each
10595 message. See the help text for Score Value for further information.
10597 <H2>Command Descriptions</H2>
10599 <H3>Add</H3>
10601 The Add command is used to add a new scoring rule definition.
10602 The new rule will be added after the highlighted rule.
10604 <H3>Delete</H3>
10606 The Delete command deletes the currently highlighted scoring rule.
10608 <H3>Change</H3>
10610 The Change command lets you edit the nickname, Pattern,
10611 and Score Value of the currently highlighted scoring rule.
10613 <H3>Shuffle</H3>
10615 The Shuffle command allows you to change the order of the scoring rules.
10616 You may move the currently highlighted rule up or down in the list.
10617 The order of the rules is important since the rules are tested for a
10618 match starting with the first rule and continuing until a match is found.
10619 You should place the rules with more specific Patterns near the beginning
10620 of the list, and those with more general Patterns near the end so that
10621 the more specific matches will happen when appropriate.
10623 <H3>Replicate</H3>
10625 The Replicate command is used to copy an existing rule and modify it.
10626 The new rule will be added after the highlighted rule.
10628 <H3>IncludeFile</H3>
10630 The IncludeFile command allows you to add a rules file to your configuration.
10631 Usually, your rules will be contained in your Alpine configuration file.
10632 If you wish, some or all of your rules may be stored in a separate file.
10633 If a rules file already exists (maybe it was made by somebody else using
10634 Alpine), you may insert it before the currently highlighted rule.
10635 You may also insert an empty file or a file that does not yet exist.
10636 Once you have an empty rules file in your configuration, you may use
10637 the Shuffle command to move rules into it.
10638 In fact, that's the only way to get the initial rule into the file.
10640 <H3>eXcludeFile</H3>
10642 The eXcludeFile command removes a rules file from your rules configuration.
10643 A limitation of the program is that in order to exclude a rules file
10644 that file must have at least one rule
10645 in it, otherwise you won't be able to highlight a line in the file.
10646 So you may have to add a dummy rule to the file in order to exclude the file.
10647 <P><UL>
10648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10649 </UL>
10651 &lt;End of help on this topic&gt;
10652 </BODY>
10653 </HTML>
10654 ===== h_direct_config =====
10655 <HTML>
10656 <HEAD>
10657 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10658 </HEAD>
10659 <BODY>
10660 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10661 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10662 <!--chtml if pinemode="function_key"-->
10663 <PRE>
10664 Available  Commands                        
10665 -------------------------------            
10666 F1  Show Help Text                         
10667 F3  Back to MAIN Alpine menu                 
10668 F4  Change configuration for directory server  
10669 F5  Move to previous directory server          
10670 F6  Move to next directory server              
10671 F7  Previous page of directory servers         
10672 F8  Next page of directory servers
10673 F9  Add new directory server
10674 F10 Delete existing directory server
10675 F11 Shuffle the order of directory servers
10676 F12 Whereis (search directory server titles)   
10677 </PRE>
10678 <!--chtml else-->
10679 <PRE>
10680 Navigation                     General Alpine Commands
10681 -------------------------      -----------------------
10682  P  Prev Directory Server         ?  Display this help text
10683  N  Next Directory Server         E  Back to MAIN Alpine menu
10684  -  Previous page
10685 Spc (space bar) Next page
10686  W  WhereIs (search for word in directory server titles)
10688 Setup LDAP Directory Server Commands
10689 ------------------------------------------------
10690  A  Add new directory server      $  Shuffle the order of directory servers
10691  D  Delete existing dir server    C  Change configuration for highlighted server
10692 </PRE>
10693 <!--chtml endif-->
10695 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10697 This screen lets you add, delete, modify, or change the order of your
10698 directory servers. You may also set some optional behavior for each server.
10699 The &quot;Add Dir&quot; command brings up a blank form to 
10700 fill in. You will have to supply at least the name of the LDAP server.
10701 You will often have to supply a search base to be used with that server,
10702 as well. Once the form has been brought up on your screen, there is help
10703 available for each of the options you may set.
10705 The &quot;Del Dir&quot; command allows you to remove a directory server
10706 from your configuration.
10708 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10709 The difference is that instead of bringing up a form for a new server
10710 configuration, you are changing the configuration of an existing entry.
10711 For example, you might want to correct a typing error, change a
10712 nickname, or change one of the options set for that server.
10714 The &quot;Shuffle&quot; command is used to change the order of directory
10715 servers.
10716 <P><UL>
10717 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10718 </UL>
10720 &lt;End of help on this topic&gt;
10721 </BODY>
10722 </HTML>
10723 ============= h_address_display ========================
10724 <HTML>
10725 <HEAD>
10726 <TITLE>SEARCH RESULTS INDEX</TITLE>
10727 </HEAD>
10728 <BODY>
10729 <H1>SEARCH RESULTS INDEX</H1>
10730 This screen shows the results, if any, of your Directory Server search.  
10731 Commands (besides those for screen navigation) are:
10732 <DL>
10733 <DT>View
10734 <!--chtml if pinemode="function_key"-->
10735 (F4)
10736 <!--chtml else-->
10738 <!--chtml endif-->
10739 </DT>
10740 <DD>See the full information for the selected entry.
10742 <DT>Compose
10743 <!--chtml if pinemode="function_key"-->
10744 (F9)
10745 <!--chtml else-->
10747 <!--chtml endif--></DT>
10748 <DD>Compose a message with the selected entry as the recipient.
10750 <DT>Role
10751 <!--chtml if pinemode="function_key"-->
10752 (F2)
10753 <!--chtml else-->
10755 <!--chtml endif--></DT>
10756 <DD>Compose a message with the selected entry as the recipient. This differs
10757 from Compose in that you may select a role before beginning your composition.
10759 <DT>Forward
10760 <!--chtml if pinemode="function_key"-->
10761 (F10)
10762 <!--chtml else-->
10764 <!--chtml endif--></DT>
10765 <DD>Send the full information for the selected entry as an 
10766 email message to someone else.
10768 <DT>Save
10769 <!--chtml if pinemode="function_key"-->
10770 (F11)
10771 <!--chtml else-->
10773 <!--chtml endif-->
10774 </DT>
10775 <DD>Save to your address book:
10776 <UL>
10777 <LI>the result of the search (as just found through your query) for the 
10778 selected entry; or 
10779 <LI>the selected entry for repeated Directory Server searching when used 
10780 in the future.
10781 </UL>
10782 or<BR>
10783 Export to a file (external to Alpine):
10784 <UL>
10785 <LI>the full information for the selected entry; or
10786 <LI>the email address from the selected entry; or
10787 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10788 </UL>
10789 <DT>WhereIs
10790 <!--chtml if pinemode="function_key"-->
10791 (F12)
10792 <!--chtml else-->
10794 <!--chtml endif-->
10795 </DT>
10796 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10797 displayed text, not the full records for each entry.)  
10798 </DL>
10799 &lt;End of help on this topic&gt;
10800 </BODY>
10801 </HTML>
10802 ============= h_address_select ========================
10803 <HTML>
10804 <HEAD>
10805 <TITLE>SEARCH RESULTS INDEX</TITLE>
10806 </HEAD>
10807 <BODY>
10808 <H1>SEARCH RESULTS INDEX</H1>
10809 This screen shows the results, if any, of your Directory Server search.  
10810 Commands (besides those for screen navigation) are:
10811 <DL>
10812 <DT>Select
10813 </DT>
10814 <DD>Select this entry for use.
10816 <DT>ExitSelect
10817 <DD>Exit without selecting any of the entries.
10819 <DT>WhereIs
10820 </DT>
10821 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10822 displayed text, not the full records for each entry.)  
10823 </DL>
10824 &lt;End of help on this topic&gt;
10825 </BODY>
10826 </HTML>
10827 ===== h_folder_maint =====
10828 <HTML>
10829 <HEAD>
10830 <TITLE>Help for Folder List</TITLE>
10831 </HEAD>
10832 <BODY>
10833 <H1>FOLDER LIST COMMANDS</H1>
10834 <!--chtml if pinemode="function_key"-->
10835 <PRE>
10836 Available Commands -- Group 1        Available Commands -- Group 2
10837 -------------------------------      ------------------------------
10838 F1  Show Help Text                    F1  Show Help Text               
10839 F2  See commands in next group        F2  See commands in next group  
10840 F3  MAIN MENU Screen                  F3  Quit Alpine                    
10841 F4  Select folder and view it         F4  MAIN MENU Screen
10842 F5  Move to previous folder
10843 F6  Move to next folder               F6  Specify a folder to go to
10844 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10845 F8  Show next screen of listing       F8  Compose a message
10846 F9  Add a new folder                  F9  Print folder listing
10847 F10 Delete selected folder
10848 F11 Rename selected folder
10849 F12 Whereis (search folder names)
10851 Available Commands -- Group 3
10852 F1  Show Help Text
10853 F2  See commands in next group
10854 F5  Go to next new message
10855     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10856 F8  Compose a message using roles
10857 F9  Export folder to a file
10858 F10 Import the file back to a folder
10859 </PRE>
10860 <!--chtml else-->
10861 <PRE>
10862 Navigating the Folder Screen            Operations on the Selected Folder
10863 ----------------------------            ---------------------------------
10864  P   Move to previous folder              V  View Index of selected folder
10865  N   Move to next folder                  D  Delete
10866  -   Show previous page of listing        R  Rename
10867 Spc  (space bar) Show next page           E  Export to file
10868                                           U  Import from file to folder
10870 FOLDER LIST Screen Commands              General Alpine Command
10871 ---------------------------              -----------------------
10872  A  Add a folder                          O  Show all other available commands
10873  G  Specify a folder to go to             ?  Show Help text
10874  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
10875  W  Whereis (search folder names)         Q  Quit Alpine
10876  %  Print folder listing                  C  Compose a message
10877                                           #  Compose a message using roles
10878 </PRE>
10879 <!--chtml endif-->
10881 These commands are only available in the FOLDER LIST screen when the 
10882 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
10883 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
10884 <DT>Select:</DT>
10885 <DD>Select folders by certain criteria:<UL>
10886 <LI>All: of limited use, since there is no Apply command.
10887 <LI>by Property: <UL>
10888         <LI>folder contains messages not yet seen 
10889         <LI>folder contains new messages
10890         <LI>folder contains exactly as many, more, or fewer messages 
10891 than a given number
10892         </UL>
10893 <LI>by Text: <UL>
10894         <LI>contained in name of folder (Name Select)
10895         <LI>contained in messages in folder (Content Select)
10896         </UL>
10897 </UL></DD>
10899 <DT>Select current:</DT>
10900 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
10901 add one or more folders to a set created with the Select command described 
10902 above.)</DD>
10903 <DT>Zoom mode:</DT>
10904 <DD>Toggles display of only selected folders or all folders on and off.</DD>
10905 </DL>
10907 If the feature
10908 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
10909 is set then the TAB key will display the number of recent messages and
10910 the total number of messages in the highlighted folder.
10912 The &quot;Export&quot; command causes the lowest common denominator style
10913 mailbox to be written to a file.
10914 If the file already exists, you are asked if you want to delete it.
10915 If you say No, then the operation is aborted.
10916 Export might be a reasonable way to store a backup or an archival copy of
10917 a folder.
10918 The exported-to file is a local file on the system where you are running Alpine.
10919 The &quot;Import&quot; command is the opposite of the Export command.
10920 It reads a file created by Export and asks where it should save it in your
10921 folders.
10922 This could be a new folder or an existing folder.
10923 If the folder already exists, the messages from the exported file will be
10924 appended to the folder.
10926 <CENTER>Description of the FOLDER LIST Screen</CENTER>
10928 The purpose of the FOLDER LIST screen is to help you browse and manage
10929 the folders and directories (also known as &quot;hierarchy&quot;)
10930 contained within a collection.
10933 Folders and directories are arranged alphabetically across lines of
10934 the screen.  Directories, if present, are denoted by a special
10935 character at the end of the name known as the hierarchy delimiter
10936 (typically, &quot;/&quot;).  By default, folders and directories are
10937 mixed together.  The
10938 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
10939 configuration option can be used to group directories toward the 
10940 beginning or end of the list.
10943 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
10944 commands change the &quot;selected&quot; (i.e., highlighted) folder or
10945 directory, and the View Fldr/Dir commands will &quot;open&quot; the
10946 selected item.  Folder and directory management is provided via the
10947 Rename, Delete and Add commands.
10949 <P><CENTER>About Folders</CENTER>
10950 What are Folders?<P>
10952 Folders are simply files where messages are kept.  Every message has to be
10953 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
10954 folder for sent mail and a folder for saved messages.<P>
10956 You may create as many other folders as you wish.  They must be given
10957 names that can be filenames on the filesystem.  
10960 You can move messages from one folder to another by opening the original
10961 folder and saving messages into the other folder just as you can save
10962 message from your INBOX to any other folder.<P>
10964 Folders are typically just files in the filesystem.  However, the files
10965 that are
10966 folders have some special formatting in them (so that Alpine knows where one
10967 message ends and another begins) and should <EM>not</EM> be edited outside of
10968 Alpine.  If you want copies of your messages in text files that you can edit
10969 or otherwise manipulate, use the Export command to copy them from Alpine into
10970 your regular file area.
10973 FOR MORE INFORMATION: See the section on
10974 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10976 <CENTER>About Directories</CENTER>
10978 A directory is simply a container used to group folders within a
10979 folder list.  You can create as many directories as you like.  And 
10980 directories can even contain directories themselves.
10983 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
10984 to note that not all IMAP servers support directories.  If you find that
10985 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
10986 then it's likely that directories are not supported by the server serving
10987 in that collection.
10990 Similarly, servers that do provide for directories may not do so in
10991 the same way.  On some servers, for example, each folder name you
10992 create is at the same time capable of being a directory.  When this
10993 happens, Alpine will display both the folder name and the name of the
10994 directory (with trailing hierarchy delimiter) in the folder list.
10997 Another issue with IMAP access, though with a much smaller set of servers,
10998 is that not all servers accept the request to list out the available
10999 folders and directories in the same way.  If you find yourself having
11000 trouble viewing folders on your server, you might investigate the
11001 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11002 feature.
11004 <UL>
11005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11006 </UL>
11008 &lt;End of help on this topic&gt;
11009 </BODY>
11010 </HTML>
11011 ========= h_valid_folder_names ========
11012 <HTML>
11013 <HEAD>
11014 <TITLE>Explanation of Valid Folder Names</TITLE>
11015 </HEAD>
11016 <BODY>
11017 <H1>Folder Name Syntax Explained</H1>
11019 Once your folder collections are defined, you can usually refer to
11020 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11021 display.  However, understanding the complete syntax for folder names,
11022 both local and remote, is handy when using the Goto command and when
11023 you are adding new folder collections via the Setups/collectionList screen.
11025 An Alpine folder name looks like
11028 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11031 The square brackets ([]) mean that the part is optional.
11034 If there is no remote-specification, then the folder name is interpreted
11035 locally on the computer running Alpine.
11036 Local folder names depend on the operating system used by the computer 
11037 running Alpine, as well as the configuration of that system.  For example,
11038 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11039 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11040 system running Unix.
11043 Alpine users have the option of using folders that are stored on some other
11044 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11045 Access Protocol), or in the case of news, via NNTP (the Network News
11046 Transport Protocol).  To be able to access remote folders in Alpine, the
11047 remote host must be running the appropriate server software (imapd or
11048 nntpd) and you must correctly specify the name of the folder to Alpine,
11049 including the domain name of the remote machine. For example,
11051 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11053 could be a remote folder specification, and so could
11055 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11058 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11060 Note that in the case of remote folders, the directory/file path in the specification is 
11061 determined by the operating system of the remote computer, <B>not</B> by
11062 the operating system of the computer on which you are running Alpine.
11064 As you can tell, the name of the computer is in &#123;} brackets
11065 followed immediately by the name of the folder.  (In each of these cases the
11066 optional namespace is missing.)  If, as in these
11067 examples, there is no remote access protocol specified, then IMAP is
11068 assumed.  Check
11069 <A HREF="h_folder_server_syntax">here</A>
11070 for a more detailed look at what options can be placed between the brackets.
11071 If there are no brackets at all, then the folder name is interpreted locally
11072 on the computer on which you are running Alpine.
11075 To the right of the brackets when a server name is present, or at the
11076 start of the foldername if no server is present, the sharp sign,
11077 &quot;#&quot;, holds special meaning.  It indicates a folder name
11078 outside the area reserved for your personal folders.  In fact, it's
11079 used to indicate both the name of the folder, and a special phrase
11080 telling Alpine how to interpret the name that follows.
11083 So, for example, Alpine can be used to access a newsgroup that might be 
11084 available on your computer using:
11086 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11088 The sharp sign indicates the folder name is outside your personal
11089 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11090 interpret the remainder of the name as a newsgroup.
11093 Similarly, to access a newsgroup on your IMAP server, you might
11094 use something like:
11096 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11099 There are a number of such special phrases (or &quot;namespaces&quot;)
11100 available.  For a more detailed explanation read about
11101 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11104 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11105 names.  The name INBOX refers to your &quot;principal incoming
11106 message folder&quot; and will be mapped to the actual file name used for your
11107 INBOX on any given host.  Therefore, a name like
11108 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11109 store incoming mail for you on that particular host.
11112 &lt;End of help on this topic&gt;
11113 </BODY>
11114 </HTML>
11115 ======= h_folder_name_namespaces =======
11116 <HTML>
11117 <HEAD>
11118 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11119 </HEAD>
11120 <BODY>
11121 <H1>Folder Name Namespaces Explained</H1>
11123 An Alpine folder name looks like
11126 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11129 The local part of a folder name has an optional &quot;Namespace&quot; which
11130 tells Alpine how to interpret the rest of the name.
11132 <P> 
11133 By default the folder name is interpreted as defining a section of your personal
11134 folder area.  This area and how you specify it are defined by the
11135 server, if one is specified, or, typically, the home
11136 directory, if no server is defined.
11139 If a namespace is specified, it begins with the
11140 sharp, &quot;#&quot;, character followed by the name of the namespace
11141 and then the namespace's path-element-delimiter.  Aside from the
11142 path's format, namespaces can also imply access rights, content
11143 policy, audience, location, and, occasionally, access methods.
11146 Each server exports its own set (possibly of size one) of 
11147 namespaces.  Hence, it's likely communication with your server's
11148 administrator will be required for specific configurations.  Some of
11149 the more common namespaces, however, include:
11151 <DL>
11152 <DT>#news.</DT>
11153 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11154 names are hierarchically defined with each level delimited by a period.
11156 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11158 </DD>
11159 <DT>#public/</DT>
11160 <DD>This specifies a folder area that the server may export to the general
11161 public.
11162 </DD>
11163 <DT>#shared/</DT>
11164 <DD>This specifies a folder area that the server may export to groups
11165 of users.
11166 </DD>
11167 <DT>#ftp/</DT>
11168 <DD>This specifies a folder area that is the same as that it may have 
11169 exported via the &quot;File Transfer Protocol&quot;.
11170 </DD>
11171 <DT>#mh/</DT>
11172 <DD>This specifies the personal folder area associated with folders
11173 and directories that were created using the MH message handling system.
11174 </DD>
11175 <DT>#move/</DT>
11176 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11178 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11180 The #move namespace is followed by two folder names separated by a delimiter
11181 character.
11182 The delimiter character may be any character that does not appear in
11183 the MailDropFolder name.
11184 The meaning of #move is that mail will be copied from the MailDropFolder to
11185 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11186 Periodic checks at frequency
11187 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11188 time between checks set by
11189 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11190 are made for new mail arriving in the MailDropFolder.
11191 An example that copies mail from a POP inbox to a local folder follows
11193 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11195 To you it appears that mail is being delivered to the local folder when it
11196 is copied from the MailDropFolder, and you read mail from the local folder.
11198 Note that if the DestinationFolder does not exist then the messages are not
11199 copied from the MailDropFolder.
11200 A #move folder may only be used as an
11201 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11202 an Inbox.
11203 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11204 on the
11205 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11206 option)
11207 the Add command has a subcommand &quot;Use Mail Drop&quot;
11208 which may be helpful for defining the folder in your Alpine configuration.
11209 The same is true when you edit the
11210 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11211 option in Setup/Config.
11212 Each of these configuration methods will also create the DestinationFolder
11213 if it doesn't already exist.
11214 If you are having problems, make sure the DestinationFolder exists.
11215 You may find some more useful information about Mail Drops at
11216 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11217 </DD>
11218 </DL>
11221 In addition, the server may support access to other user's folders,
11222 provided you have suitable permissions.  Common methods use a prefix
11223 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11224 indicate the root of the other user's folder area.
11227 No, nothing's simple.
11230 &lt;End of help on this topic&gt;
11231 </BODY>
11232 </HTML>
11233 ============= h_whatis_vcard ========================
11234 <HTML>
11235 <HEAD>
11236 <TITLE>VCARD EXPLAINED</TITLE>
11237 </HEAD>
11238 <BODY>
11239 <H1>What is the vCard format?</H1>
11240 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11241 information about and among people and organizations electronically.  
11242 More information about vCard can be found (as of May 1998) on the WWW site 
11243 of the Internet Mail Consortium at the URL:
11245 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11247 &lt;End of help on this topic&gt;
11248 </BODY>
11249 </HTML>
11250 ===== h_folder_open =====
11251 <HTML>
11252 <HEAD>
11253 <TITLE>Explanation of Folder Selection</TITLE>
11254 </HEAD>
11255 <BODY>
11256 <BR>
11257 <BR>
11258 This screen is designed to allow you to quickly and easily survey your
11259 folders and select one to open.
11260 <!--chtml if pinemode="function_key"-->
11261 <PRE>
11262 Navigating the List of Folders             General Alpine Commands
11263 ------------------------------             -----------------------
11264  P   Move to previous folder               ?   Show this help text
11265  N   Move to next folder
11266  -   Show previous screen of folders
11267 Spc  (space bar) Show next screen
11268  W   WhereIs (search folder names)
11270 Folder Selection Commands
11271 -------------------------
11272  E   Exit the Folder Select menu (without selecting a folder)
11273  S   Select the currently highlighted folder
11274 </PRE>
11275 <!--chtml else-->
11276 <PRE>
11277 Navigating the List of Folders             General Alpine Commands
11278 ------------------------------             -----------------------
11279 F5   Move to previous folder               F1  Show this help text
11280 F6   Move to next folder
11281 F7   Show previous screen of folders
11282 F8   Show next screen of folders
11283 F12  WhereIs (search folder names)
11285 Folder Selection Commands
11286 -------------------------
11287 F3   Exit the Folder Select menu (without selecting a folder)
11288 F4   Select the currently highlighted folder
11289 </PRE>
11290 <!--chtml endif-->
11292 FOR MORE INFORMATION: See the section on
11293 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11295 &lt;End of help on this topic&gt;
11296 </BODY>
11297 </HTML>
11298 ===== h_folder_subscribe =====
11299 <HTML>
11300 <HEAD>
11301 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11302 </HEAD>
11303 <BODY>
11304 <H1>FOLDER SUBSCRIBE HELP</H1>
11306 This screen is designed to help you subscribe to newsgroups you are
11307 not currently subscribed to.  The screen display is a list of all
11308 available newsgroups (or possibly a partial list if you specified a
11309 partial name when entering the screen).  Groups you have already
11310 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11311 select a single new group to subscribe to by moving the cursor to that
11312 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11313 you may change into ListMode with the &quot;ListMode&quot; command.
11314 The display will change slightly so that each group has a checkbox in
11315 front of it.  Use the cursor and the Set/Unset command to place an
11316 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11319 When you are finished marking groups, the &quot;Subscribe&quot;
11320 command will subscribe you to those groups you have marked.  Note, you
11321 may not unsubscribe to groups with this command.  Instead of the
11322 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11323 UnSbscrbe command.
11326 <!--chtml if pinemode="function_key"-->
11327 <PRE>
11328 Navigating the List of Newsgroups          General Alpine Commands
11329 ---------------------------------          -----------------------
11330 F5   Move to previous group                F1   Show this help text
11331 F6   Move to next group
11332 F7   Show previous screen of groups
11333 F8   Show next screen of groups
11334 F12  WhereIs (search group names)
11335 F9   Use ListMode
11337 Group Selection Commands
11338 -------------------------
11339 F3  Exit the News Subscribe menu (without selecting any groups)
11340 F4  Subscribe to the currently highlighted newsgroup
11341 </PRE>
11342 <!--chtml else-->
11343 <PRE>
11344 Navigating the List of Newsgroups          General Alpine Commands
11345 ---------------------------------          -----------------------
11346  P   Move to previous group                ?   Show this help text
11347  N   Move to next group
11348  -   Show previous screen of groups
11349 Spc  (space bar) Show next screen
11350  W   WhereIs (search group names)
11351  L   Use ListMode
11353 Group Selection Commands
11354 -------------------------
11355  E   Exit the News Subscribe menu (without selecting any groups)
11356  S   Subscribe to the currently highlighted newsgroup
11357 </PRE>
11358 <!--chtml endif-->
11360 When in ListMode, there is an additional command for marking groups to
11361 subscribe to:
11363 <!--chtml if pinemode="function_key"-->
11364 <PRE>
11365 ListMode Commands
11366 -------------------------
11367 F9  Set or unset the highlighted group
11368 </PRE>
11369 <!--chtml else-->
11370 <PRE>
11371 ListMode Commands
11372 -------------------------
11373 X   Set or unset the highlighted group
11374 </PRE>
11375 <!--chtml endif-->
11377 &lt;End of help on this topic&gt;
11378 </BODY>
11379 </HTML>
11380 ===== h_folder_postnews =====
11381 <HTML>
11382 <HEAD>
11383 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11384 </HEAD>
11385 <BODY>
11386 This screen is designed to allow you to quickly and easily survey
11387 the available newsgroups and select one to post news to.
11389 <!--chtml if pinemode="function_key"-->
11390 <PRE>
11391 Navigating the List of Newsgroups          General Alpine Commands
11392 ---------------------------------          -----------------------
11393 F5   Move to previous group                F1  Show this help text
11394 F6   Move to next group
11395 F7   Show previous screen of groups
11396 F8   Show next screen of groups
11397 F12  WhereIs (search group names)
11399 Group Selection Commands
11400 -------------------------
11401 F3   Exit the Selection menu (without selecting a group)
11402 F4   Select the currently highlighted newsgroup
11403 </PRE>
11404 <!--chtml else-->
11405 <PRE>
11406 Navigating the List of Newsgroups          General Alpine Commands
11407 ---------------------------------          -----------------------
11408  P   Move to previous group                ?  Show this help text
11409  N   Move to next group
11410  -   Show previous screen of groups
11411 Spc  (space bar) Show next screen of groups
11412  W   WhereIs (search group names)
11414 Group Selection Commands
11415 -------------------------
11416  E   Exit the Selection menu (without selecting a group)
11417  S   Select the currently highlighted newsgroup
11418 </PRE>
11419 <!--chtml endif-->
11421 &lt;End of help on this topic&gt;
11422 </BODY>
11423 </HTML>
11424 ===== h_folder_save =====
11425 <HTML>
11426 <HEAD>
11427 <TITLE>Folder Select for Save Explained</TITLE>
11428 </HEAD>
11429 <BODY>
11430 This screen is designed to allow you to quickly and easily survey your
11431 folders and select one to use for saving the current message.
11434 <!--chtml if pinemode="function_key"-->
11435 <PRE>
11436 Navigating the List of Folders             General Alpine Commands
11437 ------------------------------             -----------------------
11438 F5   Move to previous folder               F1  Show this help text
11439 F6   Move to next folder
11440 F7   Show previous screen of folders
11441 F8   Show next screen of folders
11442 F12  WhereIs (search folder names)
11444 Folder Selection Commands
11445 -------------------------
11446 F3   Exit the Folder Select menu (without selecting a folder)
11447 F4   Select the currently highlighted folder
11448 F11  AddNew folder (just like Select, but you type in a new folder name)
11449 </PRE>
11450 <!--chtml else-->
11451 <PRE>
11452 Navigating the List of Folders             General Alpine Commands
11453 ------------------------------             -----------------------
11454  P   Move to previous folder               ?  Show this help text
11455  N   Move to next folder
11456  -   Show previous screen of folders
11457 Spc  (space bar) Show next screen of folders
11458  W   WhereIs (search folder names)
11460 Folder Selection Commands
11461 -------------------------
11462  E   Exit the Folder Select menu (without selecting a folder)
11463  S   Select the currently highlighted folder
11464  A   AddNew folder (just like Select, but you type in a new folder name)
11465 </PRE>
11466 <!--chtml endif-->
11468 FOR MORE INFORMATION: See the section on
11469 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11471 &lt;End of help on this topic&gt;
11472 </BODY>
11473 </HTML>
11474 ===== h_folder_fcc =====
11475 <HTML>
11476 <HEAD>
11477 <TITLE>Folder Select for Fcc Explained</TITLE>
11478 </HEAD>
11479 <BODY>
11480 This screen is designed to allow you to quickly and easily survey your
11481 folders and select one to use as the file carbon copy (fcc) for the
11482 current message.
11485 <!--chtml if pinemode="function_key"-->
11486 <PRE>
11487 Navigating the List of Folders             General Alpine Commands
11488 ------------------------------             -----------------------
11489 F5   Move to previous folder               F1  Show this help text
11490 F6   Move to next folder
11491 F7   Show previous screen of folders
11492 F8   Show next screen of folders
11493 F12  WhereIs (search folder names)
11495 Folder Selection Commands
11496 -------------------------
11497 F3   Exit the Folder Select menu (without selecting a folder)
11498 F4   Select the currently highlighted folder
11499 F11  AddNew folder (just like Select, but you type in a new folder name)
11500 </PRE>
11501 <!--chtml else-->
11502 <PRE>
11503 Navigating the List of Folders             General Alpine Commands
11504 ------------------------------             -----------------------
11505  P   Move to previous folder               ?  Show this help text
11506  N   Move to next folder
11507  -   Show previous screen of folders
11508 Spc  (space bar) Show next screen of folders
11509  W   WhereIs (search folder names)
11511 Folder Selection Commands
11512 -------------------------
11513  E   Exit the Folder Select menu (without selecting a folder)
11514  S   Select the currently highlighted folder
11515  A   AddNew folder (just like Select, but you type in a new folder name)
11516 </PRE>
11517 <!--chtml endif-->
11519 FOR MORE INFORMATION: See the section on
11520 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11522 &lt;End of help on this topic&gt;
11523 </BODY>
11524 </HTML>
11525 ===== h_folder_pattern_roles =====
11526 <HTML>
11527 <HEAD>
11528 <TITLE>Folder Select for Current Folder Explained</TITLE>
11529 </HEAD>
11530 <BODY>
11531 This screen is designed to allow you to quickly and easily survey your
11532 folders and select one to use as the specific Current Folder
11533 in a Pattern.
11536 <!--chtml if pinemode="function_key"-->
11537 <PRE>
11538 Navigating the List of Folders             General Alpine Commands
11539 ------------------------------             -----------------------
11540 F5   Move to previous folder               F1  Show this help text
11541 F6   Move to next folder
11542 F7   Show previous screen of folders
11543 F8   Show next screen of folders
11544 F12  WhereIs (search folder names)
11546 Folder Selection Commands
11547 -------------------------
11548 F3   Exit the Folder Select menu (without selecting a folder)
11549 F4   Select the currently highlighted folder
11550 F11  AddNew folder (just like Select, but you type in a new folder name)
11551 </PRE>
11552 <!--chtml else-->
11553 <PRE>
11554 Navigating the List of Folders             General Alpine Commands
11555 ------------------------------             -----------------------
11556  P   Move to previous folder               ?  Show this help text
11557  N   Move to next folder
11558  -   Show previous screen of folders
11559 Spc  (space bar) Show next screen of folders
11560  W   WhereIs (search folder names)
11562 Folder Selection Commands
11563 -------------------------
11564  E   Exit the Folder Select menu (without selecting a folder)
11565  S   Select the currently highlighted folder
11566  A   AddNew folder (just like Select, but you type in a new folder name)
11567 </PRE>
11568 <!--chtml endif-->
11570 FOR MORE INFORMATION: See the section on
11571 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11573 &lt;End of help on this topic&gt;
11574 </BODY>
11575 </HTML>
11576 ===== h_folder_stayopen_folders =====
11577 <HTML>
11578 <HEAD>
11579 <TITLE>Folder Select Explained</TITLE>
11580 </HEAD>
11581 <BODY>
11582 This screen is designed to allow you to quickly and easily survey your
11583 folders and select one to use as a Stay-Open folder.
11586 <!--chtml if pinemode="function_key"-->
11587 <PRE>
11588 Navigating the List of Folders             General Alpine Commands
11589 ------------------------------             -----------------------
11590 F5   Move to previous folder               F1  Show this help text
11591 F6   Move to next folder
11592 F7   Show previous screen of folders
11593 F8   Show next screen of folders
11594 F12  WhereIs (search folder names)
11596 Folder Selection Commands
11597 -------------------------
11598 F3   Exit the Folder Select menu (without selecting a folder)
11599 F4   Select the currently highlighted folder
11600 F11  AddNew folder (just like Select, but you type in a new folder name)
11601 </PRE>
11602 <!--chtml else-->
11603 <PRE>
11604 Navigating the List of Folders             General Alpine Commands
11605 ------------------------------             -----------------------
11606  P   Move to previous folder               ?  Show this help text
11607  N   Move to next folder
11608  -   Show previous screen of folders
11609 Spc  (space bar) Show next screen of folders
11610  W   WhereIs (search folder names)
11612 Folder Selection Commands
11613 -------------------------
11614  E   Exit the Folder Select menu (without selecting a folder)
11615  S   Select the currently highlighted folder
11616  A   AddNew folder (just like Select, but you type in a new folder name)
11617 </PRE>
11618 <!--chtml endif-->
11620 FOR MORE INFORMATION: See the section on
11621 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11623 &lt;End of help on this topic&gt;
11624 </BODY>
11625 </HTML>
11626 ===== h_folder_action_roles =====
11627 <HTML>
11628 <HEAD>
11629 <TITLE>Folder Select Explained</TITLE>
11630 </HEAD>
11631 <BODY>
11632 This screen is designed to allow you to quickly and easily survey your
11633 folders and select one to use as the folder into which messages
11634 matching this filter will be moved.
11637 <!--chtml if pinemode="function_key"-->
11638 <PRE>
11639 Navigating the List of Folders             General Alpine Commands
11640 ------------------------------             -----------------------
11641 F5   Move to previous folder               F1  Show this help text
11642 F6   Move to next folder
11643 F7   Show previous screen of folders
11644 F8   Show next screen of folders
11645 F12  WhereIs (search folder names)
11647 Folder Selection Commands
11648 -------------------------
11649 F3   Exit the Folder Select menu (without selecting a folder)
11650 F4   Select the currently highlighted folder
11651 F11  AddNew folder (just like Select, but you type in a new folder name)
11652 </PRE>
11653 <!--chtml else-->
11654 <PRE>
11655 Navigating the List of Folders             General Alpine Commands
11656 ------------------------------             -----------------------
11657  P   Move to previous folder               ?  Show this help text
11658  N   Move to next folder
11659  -   Show previous screen of folders
11660 Spc  (space bar) Show next screen of folders
11661  W   WhereIs (search folder names)
11663 Folder Selection Commands
11664 -------------------------
11665  E   Exit the Folder Select menu (without selecting a folder)
11666  S   Select the currently highlighted folder
11667  A   AddNew folder (just like Select, but you type in a new folder name)
11668 </PRE>
11669 <!--chtml endif-->
11671 FOR MORE INFORMATION: See the section on
11672 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11674 &lt;End of help on this topic&gt;
11675 </BODY>
11676 </HTML>
11677 ===== h_abook_config =====
11678 <HTML>
11679 <HEAD>
11680 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11681 </HEAD>
11682 <BODY>
11683 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11684 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11685 <!--chtml if pinemode="function_key"-->
11686 <PRE>
11687 Available  Commands                        
11688 -------------------------------            
11689 F1  Show Help Text                         
11690 F3  Back to MAIN Alpine menu                 
11691 F4  Change configuration for address book  
11692 F5  Move to previous address book          
11693 F6  Move to next address book              
11694 F7  Previous page of address books         
11695 F8  Next page of address books             
11696 F9  Add new address book                   
11697 F10 Delete existing address book           
11698 F11 Shuffle the order of address books     
11699 F12 Whereis (search address book titles)   
11700 </PRE>
11701 <!--chtml else-->
11702 <PRE>
11703 Navigation                     General Alpine Commands
11704 -----------------------        -----------------------
11705  P  Prev Address Book           ?  Display this help text
11706  N  Next Address Book           E  Back to MAIN Alpine menu
11707  -  Previous page
11708 Spc (space bar) Next page
11709  W  WhereIs (search for word in address book titles)
11711 Setup Address Books Commands
11712 ------------------------------------------------
11713  A  Add new address book          $  Shuffle the order of address books
11714  D  Delete existing address book  C  Change configuration for address book
11715 </PRE>
11716 <!--chtml endif-->
11718 <H2>Description of the Setup Address Books Screen</H2>
11720 This screen lets you add, delete, modify, or change the order of your
11721 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11722 fill in.  If you are adding a remote address book on an IMAP server
11723 you should fill in the name of the IMAP server.  Otherwise, leave
11724 that field blank.  (Note that remote IMAP address books are an Alpine
11725 concept and are unlikely to interoperate with other mail clients.)
11726 For a remote address book, fill in the name of the remote folder
11727 in the Folder field.  This should be a folder that is used only for
11728 this one purpose, not a general purpose folder you expect to store
11729 messages in.
11730 <P>If you are adding a local address book, fill in the
11731 Folder Name field with a local file name (e.g., .addressbook).
11733 <B>Please note:</B> Remote address books stored on an IMAP server are 
11734 of an entirely different format (namely, a special-purpose 
11735 &quot;mail folder&quot;) than that of the local addressbook familiar 
11736 to Alpine users.  Therefore, 
11737 you cannot use &quot;add a remote address book&quot; to make an existing 
11738 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11739 Alpine running on a different host.  
11742 The &quot;Del Abook&quot; command allows you to remove an address book
11743 from your configuration.  It will also ask you if you wish to remove
11744 the data for that address book, which would erase all traces of the
11745 address book if you answer Yes.
11748 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11749 The difference is that instead of adding a new address book to your
11750 configuration, you are changing the configuration of an existing entry.
11751 For example, you might want to correct a typing error or change a
11752 nickname.  The &quot;Change&quot; command is not a move command.  If you
11753 change the folder name or server name the data will not be moved for you.
11756 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11757 an address book toward another address book in the same group then
11758 the order of those two address books will be swapped.  If you shuffle
11759 the last Personal address book down towards the Global address book
11760 section, it will become a Global address book.  If you shuffle
11761 the first Global address book up it will become a Personal address
11762 book.  The main difference between Personal and Global address
11763 books is that Global address books are forced read-only.
11764 <P><UL>
11765 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11766 </UL>
11768 &lt;End of help on this topic&gt;
11769 </BODY>
11770 </HTML>
11771 ===== h_abook_top =====
11772 <HTML>
11773 <HEAD>
11774 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11775 </HEAD>
11776 <BODY>
11777 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11778 <!--chtml if pinemode="function_key"-->
11779 <PRE>
11780 Available  Commands -- Group 1         Available Commands -- Group 2
11781 -------------------------------        ------------------------------
11782 F1  Show Help Text                      F1  Show Help Text
11783 F2  See commands in next group          F2  See commands in next group
11784 F3  Exit to MAIN MENU                   F3  Quit Alpine
11785 F4  View/Edit selected address book
11786 F5  Move to previous address book       F5  FOLDER LIST screen
11787 F6  Move to next address book           F6  Specify a folder to go to
11788 F7  Previous page                       F7  MESSAGE INDEX screen
11789 F8  Next page                           F9  Print list of address books
11790 F12 Whereis (search for word)
11791 </PRE>
11792 <!--chtml else-->
11793 <PRE>
11794 Navigation                       General Alpine Commands
11795 -----------------------          -----------------------
11796  P  Previous Entry                ?  Display this help text
11797  N  Next Entry                    O  Show all other available commands
11798  -  Previous page                 &lt;  Back to MAIN Alpine menu
11799 Spc (space bar) Next page         Q  Quit Alpine
11800  W  WhereIs (search for word)     L  FOLDER LIST screen
11801                                   G  Specify a folder to go to
11802 Address Book Commands             I  MESSAGE INDEX screen
11803 ------------------------------------------------
11804  &gt;  View/Edit selected address book
11805               or
11806  &gt;  Search on selected directory server
11808  %  Print list of address books and directory servers
11809 </PRE>
11810 <!--chtml endif-->
11812 <H2>Description of the Address Book List Screen</H2>
11814 From this screen you may choose which address book you wish to view
11815 or edit. For more information on address books, view one of your
11816 address books (with
11817 <!--chtml if pinemode="function_key"-->
11819 <!--chtml else-->
11820 &quot;&gt;&quot;
11821 <!--chtml endif-->)
11822 and see the Help Text there.<P>
11824 You may also choose a directory server on which to search for entries.
11825 You do that by highlighting the directory server line and using
11826 <!--chtml if pinemode="function_key"-->
11828 <!--chtml else-->
11829 &quot;&gt;&quot;
11830 <!--chtml endif-->.<P>
11832 If you wish to define new address books or directory servers go to the Main
11833 menu and choose Setup. You may then either choose to setup AddressBooks or
11834 Directory (among other things). It's possible that the Directory option
11835 will not be there if the Alpine you are using does not contain LDAP directory
11836 lookup functionality.
11838 <P><UL>
11839 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11840 </UL><P>
11841 &lt;End of help on this topic&gt;
11842 </BODY>
11843 </HTML>
11844 ===== h_abook_opened =====
11845 <HTML>
11846 <HEAD>
11847 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11848 </HEAD>
11849 <BODY>
11850 <H1>THE ALPINE ADDRESS BOOK</H1>
11851 <H2>ADDRESS BOOK COMMANDS</H2>
11852 <PRE>
11853 <!--chtml if pinemode="function_key"-->
11854 Available  Commands -- Group 1         Available Commands -- Group 2   
11855 -------------------------------        ------------------------------  
11856 F1  Show Help Text                      F1  Show Help Text             
11857 F2  See commands in next group          F2  See commands in next group
11858 F3  Exit this screen                    F3  Quit Alpine                  
11859 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11860 F5  Move to previous entry              F5  FOLDER LIST screen         
11861 F6  Move to next entry                  F6  Specify a folder to go to  
11862 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11863 F8  Next page of address book           F8  Compose to entry using roles
11864 F9  Add new entry to address book       F9  Print address book         
11865 F10 Delete selected entry               F10 TakeAddr to another addrbook
11866 F11 Compose to selected entry           F11 Save or Export addrbook selections
11867 F12 Whereis (search address book)       F12 Forward entry by mail       
11869 Available Commands -- Group 3                                           
11870 ------------------------------                                          
11871 F3  Select                              F6  Zoom (or unZoom)            
11872 F5  Select Current                      F7  Apply Command to Selection  
11873 <!--chtml else-->
11874 Address Book Navigation        General Alpine Commands
11875 -----------------------        -----------------------
11876  P  Prev Address                  ?  Display this help text
11877  N  Next Address                  O  Show all other available commands
11878  -  Previous page of address book M  Back to MAIN MENU
11879 Spc (space bar) Next page         Q  Quit Alpine
11880  W  WhereIs (search for word      C  Compose message to selected addr
11881      or name in address book)     #  Compose to addr using roles
11882  &lt;  To List of Address Books if   L  FOLDER LIST screen
11883      more than one, else to MAIN  G  Specify a folder to go to
11884                                   I  MESSAGE INDEX screen
11886 Address Book Commands
11887 ----------------------------------------------------
11888  &gt;  View/Update selected entry    D  Delete selected entries
11889  %  Print address book            S  Save or Export address book selections
11890  F  Forward entries by mail       @  Add new entry to address book
11892  ;  Select command                Z  Toggle Zoom Mode
11893  :  Select highlighted entry      A  Apply command to selected entries
11895 <!--chtml endif-->
11896 </PRE>
11897 Note:  The presence or absence of the final four commands above is
11898 controlled by the option 
11899 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
11902 <H2>Description of the Address Book Screen</H2>
11904 This screen lets you edit and manage entries in your address book.  It
11905 also acts as a short-cut for composing messages to people in the address
11906 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
11907 message starts &quot;pre-addressed&quot; to whatever address book entry is
11908 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
11909 role to use in your composition.
11911 Alpine's address book helps you keep a list of addresses you send email to so
11912 you do not have to remember addresses that are often complex.  Each entry
11913 in the address book has five fields, all of them optional.  The three
11914 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
11916         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
11917         This is what you type in as you are addressing the message in the
11918         composer.  If there is a matching entry in your address book(s),
11919         Alpine will extract the corresponding FullName and Address fields to
11920         generate the actual address for your message.
11922         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
11923 of the
11924         person or organization.  Usually the full names are put in last
11925         name first so they sort nicely in alphabetical order.  Whatever
11926         you put as the name here will appear on the message when it is
11927         finally delivered.  Examples:<PRE>
11928            Garcia Marquez, Gabriel
11929            Henscheid, Eckhard
11930            Alpine-Info mailing list
11931            Library materials renewal requests
11932            Kim An-guk
11933            &quot;George III, King of Great Britain, 1738-1820&quot;
11934 </PRE>
11935 (In the second-to-last example, no comma is used in the name so that 
11936 the family name appears first in the address book and when the entry is 
11937 used in the composer.
11938 In the last example, retaining the commas is intended; 
11939 double-quotation marks surround the name to 
11940 prevent the transposition of its parts when the entry is used in 
11941 the composer.)
11943         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
11944         a valid Internet address that conforms to the Internet message
11945         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
11947 The two fields that aren't usually visible are:<DL>
11949   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
11950         message to this address to be saved in.  If this field is set, and
11951         this address is the first one in the message's To: header, then
11952         Alpine will use this folder name for the FCC in lieu of the normal
11953         FCC folder name.
11955   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
11956         </DL>
11958 Due to screen width limitations, these last two fields do not show up in
11959 the normal ADDRESS BOOK display.  You may select the 
11960 &quot;View/Update&quot; command to
11961 view or modify them.  You may use the configuration variable
11962 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
11963 to add these fields to your ADDRESS BOOK 
11964 display, or to modify the format of the display.
11966 <H2>Sorting the Address book</H2>
11968 By default, address book entries are sorted alphabetically on the full
11969 name with distribution lists sorted to the end.  Sorting can be changed by
11970 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
11971 --assuming you have &quot;write&quot; permission for the address book file.
11973 Unlike the sorting of folders (which only changes presentation), sorting an
11974 address book actually changes the file as it is kept on the computer.  For
11975 this reason you won't be able to sort a shared or system-wide address
11976 book.
11978 <H2>Adding New Entries</H2>
11980 The easiest way to add new entries to your address book is to use the
11981 &quot;TakeAddr&quot; command when viewing a message.
11982 This command allows you to take addresses from the header and body of the
11983 message and put them into your address book, without having to type
11984 them in.
11987 To manually add a new entry from within the address book screen, use the AddNew
11988 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
11989 Use this command both for adding a simple alias and for adding a
11990 distribution list.
11992 <H2>Distribution Lists</H2>
11994 Address book entries can be simple cases of aliases (a single nickname is linked
11995 to a single email address) or distribution lists (a single nickname
11996 pointing at more than one email address).  Each distribution list has a
11997 nickname, a full name and a list of addresses.  The addresses may be
11998 actual addresses or they may be other nicknames in your address book.
11999 They may even refer to other distribution lists.
12000 There's really no difference between a simple alias and a distribution list,
12001 other than the number of addresses.
12002 Therefore, you can turn a simple alias with one address into a distribution
12003 list simply by adding more addresses.
12004 To add entries to an existing list or alias
12005 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
12006 a single address from the list if the cursor is placed on the address;
12007 it will delete the entire distribution list if the cursor is on the
12008 nickname/fullname line.  View/Update may also be used to delete addresses
12009 from a list.
12011 Address field entries in distribution lists may take any one of three
12012 forms: a nickname existing in any of the defined address books, a normal
12013 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12014 fullname/address combination, e.g. &quot;John Smith
12015 &lt;jsmith@art.example.com&gt;&quot;.
12017 Distribution lists in Alpine address books can only be used by the person or
12018 people who have access to that address book.  They are not usually used to
12019 implement discussion groups, but can be used to facilitate small
12020 discussion groups if all the participants have access to the same shared
12021 address book.
12023 <H2>FCC and Comments</H2>
12025 As mentioned above, each entry in the address book also has two other optional
12026 fields, Fcc and Comments.  The command to look at or change either of these
12027 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
12028 Comments field is just for your own use.  The Fcc field overrides the
12029 default Fcc if this address is the first one on the To line.  The WhereIs
12030 command may be used to search for particular strings in the address book,
12031 including fields that are not visible (like Comment and Fcc by default).
12033 <H2>Aggregate Operations</H2>
12035 If the feature
12036 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12037 is turned on (the default), then the four commands &quot;Select&quot;,
12038 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12039 are available.  The two selection commands allow you to mark a set of
12040 address book entries as being selected.  If you have more than one address
12041 book, the selections may be in more than one of those address books.
12042 The &quot;Zoom&quot; command will toggle between displaying only the selected
12043 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12044 apply one of the regular address book commands to all of the selected
12045 entries.  Usually the address book commands apply to only the entry
12046 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12047 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12048 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12050 <H2>Exporting and Forwarding Address book entries</H2>
12052 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
12053 address book entry is placed in a plain text file in your home directory
12054 <!--chtml if pinemode="running"-->
12055 (which, in the present configuration of your system, is
12056  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12057 <!--chtml endif-->
12058 or current working directory
12059 <!--chtml if pinemode="running"-->
12060 (which, at least for your current Alpine &quot;session,&quot; 
12061 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12062 <!--chtml endif-->, depending on the 
12063 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12064 configuration setting.  If you have some entries selected and use the
12065 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12066 placed in the text file.
12068 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12069 address book entry is placed in a special attachment and you are put into
12070 the composer.  You can fill in some comments in the body of the message,
12071 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12072 may use the TakeAddr command on that message to insert the address book
12073 entry you sent in their own address book.  If you have some entries
12074 selected and use the Apply Forward command all of the selected entries
12075 will be forwarded in a single message.  You may
12076 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.
12077 The recipient must be using Alpine in order to receive this correctly.
12078 One way for the recipient to handle this might be to create an empty
12079 address book and then &quot;Take&quot; your forwarded address book entries into
12080 that empty address book.
12082 <H2>Multiple and/or Site-Wide Address books</H2>
12084 You may have more than one personal address book.  In addition, there may
12085 be one or more global address books.  This capability allows you to have
12086 multiple personal address books (some of which may be shared) and it also
12087 allows system administrators to implement site-wide address books that
12088 contain entries for users on multiple machines within the organization.
12089 <P><DL>
12090 <DT>Searching
12091   <DD> If you enter a nickname when composing a message, your
12092   personal address books will be searched through in order, and then the
12093   global address book(s) searched. If more than one address book has an entry
12094   for the nickname, Alpine uses the first one that it finds, so an entry in
12095   your personal address book would override a global address book entry. If
12096   after searching all the address books there is still no match, (Unix) Alpine
12097   then searches the local host password file on the assumption that you have
12098   entered a local user name rather than an address book nickname.
12099   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12100   command, but global address books are always searched after personal
12101   address books.
12103   <P><DT>Tab completion
12104   <DD> If the
12105   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12106   feature is turned on (the default) then the Tab key may be used
12107   in the composer to complete partially typed nicknames in the To
12108   or Cc lines. You type the first few letters of a nickname and then
12109   press the Tab key. It there is only one nickname that matches it will
12110   be filled in by Alpine. If there is more than one the unambiguous part
12111   of the nicknames will be filled in. For example, if your address book or
12112   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12113   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12114   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12115   If you then type a second Tab character you will be presented with a list
12116   of matching nicknames to select from. Alternatively, you could type another
12117   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12118   in the entire &quot;barbecue&quot; entry.
12120   <P><DT>Defining
12121   <DD> You define multiple personal address books in the 
12122   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12123   from the MAIN MENU.  
12124   You may add as many as you like.  Global address books are usually
12125   site-wide address books defined by the System administrator, but
12126   you may define global address books of your own just like you define
12127   personal address books.
12129   <P><DT>Creating and updating
12130   <DD> Personal address books are normally created empty
12131   and populated by explicit additions from within Alpine, e.g. via the
12132   TakeAddr command.  Unlike personal address books, global address books may
12133   not be modified/updated from within Alpine; that is, they are Read-Only.
12134   Thus, global address books are created, populated and updated outside of
12135   Alpine. They might be hand-edited, generated by a program from another
12136   database, or by copying an existing address book.  They might also be
12137   some other user's personal address book, and so be modified normally by
12138   that user but accessed Read-Only by you.  See the Alpine Technical
12139   Notes document (included in the Alpine distribution) for more information on
12140   this.
12142   <P><DT>Accessing
12143   <DD>There are two different types of address books in Alpine.
12144   A local address book is stored in a regular file and the normal file
12145   access permissions apply.  A remote address book is stored on an IMAP
12146   server in a special folder that contains only messages pertaining to
12147   that address book.  The last message in the remote folder contains a
12148   copy of the address book data, and that data is copied to a local cache
12149   file in your home directory.  From there it is accessed just like a local
12150   address book.  The name of the cache file is kept track of in a special
12151   file called the
12152   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12153   the name of which is stored in
12154   your Alpine configuration file the first time you use a remote address book.
12155   Just as local Alpine address books use a format that only Alpine understands,
12156   remote Alpine address books do the same and other mail reading programs
12157   are unlikely to be able to understand them.<P>
12158   While global address books are explicitly intended to be shared, there is
12159   nothing to prevent you from sharing a personal address book with other
12160   Alpine users. This might be useful in the case of a small workgroup.
12161   However, it is recommended that updates to shared personal address books
12162   be done when other Alpine users are not accessing the address book. Alpine
12163   does not do any file-locking to manage concurrent updates to the
12164   addressbook, but it does check to see if the file has been modified before
12165   making any changes.  Consequently, inadvertent concurrent updates will
12166   only cause other Alpine users to have to restart their address book
12167   operation, which will cause Alpine to reopen the updated file.
12169   <P><DT>Converting to Remote
12170   <DD>The easiest way to convert an existing local
12171   address book into a remote address book is to create an empty new remote
12172   personal address book by typing &quot;A&quot; to execute the
12173   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12174   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12175   address book.
12176   After you have added the empty
12177   remote address book, go into the screen for the address book you wish
12178   to copy and &quot;Select&quot; &quot;All&quot;.
12179   This selects every entry in that
12180   address book.  Then type the command &quot;Apply Save&quot;.
12181   You will be asked for the address book to save to.  You may use ^P and ^N
12182   to get to the new empty address book, then hit RETURN and the addresses
12183   will be copied.
12184   At this point you'll probably want to unselect all the entries in the local
12185   address book before proceeding. You do that with
12186   &quot;Select&quot; &quot;unselect All&quot;.
12188 </DL>
12189 <UL>
12190 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12191 </UL>
12192 <P><UL>
12193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12194 </UL>
12196 &lt;End of help on this topic&gt;
12197 </BODY>
12198 </HTML>
12199 ===== h_abook_select_addr =====
12200 <HTML>
12201 <HEAD>
12202 <TITLE>Addressbook Selection Explained</TITLE>
12203 </HEAD>
12204 <BODY>
12205 <H1>SELECT ADDRESS</H1>
12206 <!--chtml if pinemode="function_key"-->
12207 <PRE>
12208 Navigating the List of Messages               General Alpine Commands
12209 -------------------------------               -----------------------
12210 F5   Move to previous entry                   F1  Show this help text
12211 F6   Move to next entry
12212 F7   Show previous screen of address book
12213 F8   Show next screen of address book
12214 F12  WhereIs (search through address book)
12216 Address Selection Commands
12217 --------------------------
12218 F3   Exit the Address Select screen (without selecting an address)
12219 F4   Select the currently highlighted entry
12220 </PRE>
12221 <!--chtml else-->
12222 <PRE>
12223 Navigating the List of Messages               General Alpine Commands
12224 -------------------------------               -----------------------
12225  P   Move to previous entry                    ?  Show this help text
12226  N   Move to next entry
12227  -   Show previous screen of address book
12228 Spc  (space bar) Show next screen of address book
12229  W   WhereIs (search through address book)
12231 Address Selection Commands
12232 --------------------------
12233  E   Exit the Address Select screen (without selecting an address)
12234  S   Select the currently highlighted entry
12235 </PRE>
12236 <!--chtml endif-->
12239 This screen is designed to let you easily scan your address book(s) in
12240 order to select an entry for the message you are composing.  You cannot
12241 edit your address book in any way at this time, for address book
12242 maintenance, select the address book command when not composing a message.
12245 If you are composing a message and know the nickname of the person/list you
12246 want, you can bypass this screen by simply typing in the nickname on the
12247 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12248 selecting an entry does not cancel your message.
12251 FOR MORE INFORMATION on addressing see
12252 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12253 <A HREF="h_abook_opened">Address Book Screen's</A>
12254 help text.
12256 &lt;End of help on this topic&gt;
12257 </BODY>
12258 </HTML>
12259 ===== h_abook_select_top =====
12260 <HTML>
12261 <HEAD>
12262 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12263 </HEAD>
12264 <BODY>
12265 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12266 <!--chtml if pinemode="function_key"-->
12267 <PRE>
12268 Navigating the List of Address Books       General Alpine Commands
12269 ------------------------------------       -----------------------
12270 F4   View the highlighted address book
12271 F5   Move to previous address book         F1  Show this help text
12272 F6   Move to next address book
12273 F7   Show previous screen of address books
12274 F8   Show next screen of address books
12275 F12  WhereIs (search through address books)
12277 Address Selection Commands
12278 --------------------------
12279 F3   Exit the Address Select screen (without selecting an address)
12280 F4   Select the currently selected entries (if using ListMode)
12281 F9   Change to ListMode
12282 </PRE>
12283 <!--chtml else-->
12284 <PRE>
12285 Navigating the List of Address Books       General Alpine Commands
12286 ------------------------------------       -----------------------
12287  &gt;   View the highlighted address book
12288  P   Move to previous address book         ?  Show this help text
12289  N   Move to next address book
12290  -   Show previous screen of address books
12291 Spc  (space bar) Show next screen of address books
12292  W   WhereIs (search through address books)
12294 Address Selection Commands
12295 --------------------------
12296  E   Exit the Address Select screen (without selecting an address)
12297  S   Select the currently selected entries (if using ListMode)
12298  L   Change to ListMode
12299 </PRE>
12300 <!--chtml endif-->
12303 This screen is designed to let you easily scan your address book(s) in
12304 order to select entries for the message you are composing.  You cannot
12305 edit your address book in any way at this time.  For address book
12306 maintenance, select the address book command when not composing a message.
12309 If you are composing a message and know the nickname of the person/list you
12310 want, you can bypass this screen by simply typing in the nickname on the
12311 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12312 selecting an entry does not cancel your message.
12315 The ListMode command will add a column at the left edge of the screen.
12316 You mark the entries that you wish to select with the &quot;X&quot; command.
12317 This allows you to choose more than one entry at a time.
12320 An alternative method of composing a message to entries in your
12321 address book(s) is to first use the &quot;Select&quot; command from
12322 the address book maintenance screen and then the &quot;Apply&quot;
12323 &quot;ComposeTo&quot; command to start the composer composing to the
12324 selected entries.
12327 FOR MORE INFORMATION on addressing see
12328 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12329 <A HREF="h_abook_opened">Address Book Screen's</A>
12330 help text.
12332 &lt;End of help on this topic&gt;
12333 </BODY>
12334 </HTML>
12335 ===== h_abook_select_listmode =====
12336 <HTML>
12337 <HEAD>
12338 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12339 </HEAD>
12340 <BODY>
12341 <H1>COMPOSER: SELECT ADDRESSES</H1>
12342 <!--chtml if pinemode="function_key"-->
12343 <PRE>
12344 Navigating the List of Messages                 General Alpine Commands
12345 -------------------------------                 -----------------------
12346 F5   Move to previous entry                     F1  Show this help text
12347 F6   Move to next entry
12348 F7   Show previous screen of address book
12349 F8   Show next screen of address book
12350 F12  WhereIs (search through address book)
12352 Address Selection Commands
12353 --------------------------
12354 F3   Exit the Address Select screen (without selecting an address)
12355 F4   Select the currently highlighted entry
12356 F9   Change to ListMode
12357 </PRE>
12358 <!--chtml else-->
12359 <PRE>
12360 Navigating the List of Messages                 General Alpine Commands
12361 -------------------------------                 -----------------------
12362  P   Move to previous entry                     ?  Show this help text
12363  N   Move to next entry
12364  -   Show previous screen of address book
12365 Spc  (space bar) Show next screen of address book
12366  W   WhereIs (search through address book)
12368 Address Selection Commands
12369 --------------------------
12370  E   Exit the Address Select screen (without selecting an address)
12371  S   Select the currently highlighted entry
12372  L   Change to ListMode
12373 </PRE>
12374 <!--chtml endif-->
12377 This screen is designed to let you easily scan your address book(s) in
12378 order to select entries for the message you are composing.  You cannot
12379 edit your address book in any way at this time, for address book
12380 maintenance, select the address book command when not composing a message.
12383 If you are composing a message and know the nickname of the person/list you
12384 want, you can bypass this screen by simply typing in the nickname on the
12385 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12386 selecting an entry does not cancel your message.
12389 The ListMode command will add a column at the left edge of the screen.
12390 You mark the entries that you wish to select with the &quot;X&quot; command.
12391 This allows you to choose more than one entry at a time.
12394 An alternative method of composing a message to entries in your
12395 address book(s) is to first use the &quot;Select&quot; command from
12396 the address book maintenance screen and then the &quot;Apply&quot;
12397 &quot;ComposeTo&quot; command to start the composer composing to the
12398 selected entries.
12401 FOR MORE INFORMATION on addressing see
12402 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12403 <A HREF="h_abook_opened">Address Book Screen's</A>
12404 help text.
12406 &lt;End of help on this topic&gt;
12407 </BODY>
12408 </HTML>
12409 ===== h_abook_select_checks =====
12410 <HTML>
12411 <HEAD>
12412 <TITLE>Address Selection from Composer Explained</TITLE>
12413 </HEAD>
12414 <BODY>
12415 <H1>COMPOSER: SELECT ADDRESSES</H1>
12416 <!--chtml if pinemode="function_key"-->
12417 <PRE>
12418 Navigating the List of Messages                 General Alpine Commands
12419 -------------------------------                 -----------------------
12420 F5   Move to previous entry                     F1  Show this help text
12421 F6   Move to next entry
12422 F7   Show previous screen of address book
12423 F8   Show next screen of address book
12424 F12  WhereIs (search through address book)
12426 Address Selection Commands
12427 --------------------------
12428 F3   Exit the Address Select screen (without selecting an address)
12429 F4   Select the currently highlighted entry
12430 F8   Either Sets or Unsets all entries in this address book
12431 F9   Set or Unset the highlighted entry
12432 </PRE>
12433 <!--chtml else-->
12434 <PRE>
12435 Navigating the List of Messages                 General Alpine Commands
12436 -------------------------------                 -----------------------
12437  P   Move to previous entry                     ?  Show this help text
12438  N   Move to next entry
12439  -   Show previous screen of address book
12440 Spc  (space bar) Show next screen of address book
12441  W   WhereIs (search through address book)
12443 Address Selection Commands
12444 --------------------------
12445  E   Exit the Address Select screen (without selecting an address)
12446  S   Select the currently highlighted entry
12447  X   Set or Unset the highlighted entry
12448  A   Either Sets or Unsets all entries in this address book
12449 </PRE>
12450 <!--chtml endif-->
12453 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12454 command.  Type &quot;S Select&quot; to select all of the entries you
12455 have marked, just as if you had typed them in by hand.
12458 An alternative method of composing a message to entries in your
12459 address book(s) is to first use the &quot;Select&quot; command from
12460 the address book maintenance screen and then the &quot;Apply&quot;
12461 &quot;ComposeTo&quot; command to start the composer composing to the
12462 selected entries.
12465 FOR MORE INFORMATION on addressing see
12466 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12467 <A HREF="h_abook_opened">Address Book Screen's</A>
12468 help text.
12470 &lt;End of help on this topic&gt;
12471 </BODY>
12472 </HTML>
12473 ===== h_abook_select_nicks_take =====
12474 <HTML>
12475 <HEAD>
12476 <TITLE>Take Address Nickname Selection Explained</TITLE>
12477 </HEAD>
12478 <BODY>
12479 <H1>TAKEADDR: SELECT NICKNAME</H1>
12480 <!--chtml if pinemode="function_key"-->
12481 <PRE>
12482 Navigating the List of Messages                 General Alpine Commands
12483 -------------------------------                 -----------------------
12484 F5   Move to previous entry                     F1  Show this help text
12485 F6   Move to next entry
12486 F7   Show previous screen of address book
12487 F8   Show next screen of address book
12488 F12  WhereIs (search through address book)
12490 Message Selection Commands
12491 --------------------------
12492 F3   Exit the Nickname Select screen (without selecting an address)
12493 F4   Select the currently highlighted entry
12494 </PRE>
12495 <!--chtml else-->
12496 <PRE>
12497 Navigating the List of Messages                 General Alpine Commands
12498 -------------------------------                 -----------------------
12499  P   Move to previous entry                     ?  Show this help text
12500  N   Move to next entry
12501  -   Show previous screen of address book
12502 Spc  (space bar) Show next screen of address book
12503  W   WhereIs (search through address book)
12505 Message Selection Commands
12506 --------------------------
12507  E   Exit the Nickname Select screen (without selecting an address)
12508  S   Select the currently highlighted entry
12509 </PRE>
12510 <!--chtml endif-->
12513 This screen is designed to let you modify or add to an existing
12514 address book entry.  You have already selected the name(s) and
12515 address(es) through &quot;Take Address&quot;.  This screen simply lets
12516 you scan your address books and select the nickname to be
12517 changed/augmented.  If you want to add a new entry, then you are in
12518 the wrong place-- Select &quot;Exit&quot; command.
12521 FOR MORE INFORMATION on addressing see
12522 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12523 <A HREF="h_abook_opened">Address Book Screen's</A>
12524 help text.
12526 &lt;End of help on this topic&gt;
12527 </BODY>
12528 </HTML>
12529 ===== h_abook_select_nick =====
12530 <HTML>
12531 <HEAD>
12532 <TITLE>Nickname Selection Explained</TITLE>
12533 </HEAD>
12534 <BODY>
12535 <H1>SELECT NICKNAME</H1>
12536 <!--chtml if pinemode="function_key"-->
12537 <PRE>
12538 Navigating the List of Messages                 General Alpine Commands
12539 -------------------------------                 -----------------------
12540 F5   Move to previous entry                     F1  Show this help text
12541 F6   Move to next entry
12542 F7   Show previous screen of address book
12543 F8   Show next screen of address book
12544 F12  WhereIs (search through address book)
12546 Message Selection Commands
12547 --------------------------
12548 F3   Exit the Nickname Select screen (without selecting an address)
12549 F4   Select the currently highlighted entry
12550 </PRE>
12551 <!--chtml else-->
12552 <PRE>
12553 Navigating the List of Messages                 General Alpine Commands
12554 -------------------------------                 -----------------------
12555  P   Move to previous entry                     ?  Show this help text
12556  N   Move to next entry
12557  -   Show previous screen of address book
12558 Spc  (space bar) Show next screen of address book
12559  W   WhereIs (search through address book)
12561 Message Selection Commands
12562 --------------------------
12563  E   Exit the Nickname Select screen (without selecting an address)
12564  S   Select the currently highlighted entry
12565 </PRE>
12566 <!--chtml endif-->
12569 This screen is designed to let you look at the nicknames in your address
12570 books before choosing a new one.
12573 FOR MORE INFORMATION on addressing see
12574 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12575 <A HREF="h_abook_opened">Address Book Screen's</A>
12576 help text.
12578 &lt;End of help on this topic&gt;
12579 </BODY>
12580 </HTML>
12581 ===== h_takeaddr_screen =====
12582 <HTML>
12583 <HEAD>
12584 <TITLE>Take Address Screen Explained</TITLE>
12585 </HEAD>
12586 <BODY>
12587 <H1>TAKE ADDRESS COMMANDS</H1>
12588 <!--chtml if pinemode="function_key"-->
12589 <PRE>
12590 Navigating the List of Addresses       Address Selection Commands        
12591 --------------------------------       --------------------------        
12592  F5  Move to previous entry            F3  Exit without taking address
12593  F6  Move to next entry                F4  Take current address(es)
12594  F7  Show previous page of address list
12595  F8  Show next page of address list
12596  F2  WhereIs (search list)
12597                                --------------
12598 Mode Toggle            F9  Set/Unset current address
12599 -----------            F10 Set all
12600  F12 Toggle between List and single mode       F11 Unset all
12601 </PRE>
12602 <!--chtml else-->
12603 <PRE>
12604 Navigating the List of Addresses       Address Selection Commands
12605 --------------------------------       --------------------------
12606  P  Move to previous entry              &lt;  Exit without taking address
12607  N  Move to next entry                  T  Take address
12608  -  Show previous page of address list
12609 Spc (space bar) Show next page of address list
12610  W  WhereIs (search list)              List Mode
12611                                        ---------
12612 Single Mode                             X  Set/Unset current address
12613 -----------                             A  Set all addresses
12614  L  Switch to list mode                 U  Unset all addresses
12615                                         S  Switch to single mode
12616 </PRE>
12617 <!--chtml endif-->
12619 <H2>Description of the Take Address Screen</H2>
12621 This screen is designed to let you select one or more address/name
12622 combinations from the current message and put them into your address book.
12623 The cursor is initially placed on the line with the message author.
12624 Other lines include the names of people and/or mailing lists who also
12625 received the message.  Other people &quot;involved&quot; in the
12626 message (e.g. the person named as Reply-To:) are also listed here.
12629 The simple case is adding a new, single entry into your address book. To
12630 do this, simply highlight the correct line and press 
12631 <!--chtml if pinemode="function_key"-->
12633 <!--chtml else-->
12634 &quot;T&quot;.
12635 <!--chtml endif-->
12636 To create a new list or add to an existing list, switch the screen display
12637 into List Mode by pressing
12638 <!--chtml if pinemode="function_key"-->
12639 F12.
12640 <!--chtml else-->
12641 &quot;L&quot;.
12642 <!--chtml endif-->
12643 In List Mode, you select the
12644 group of addresses you wish to manipulate by marking them with an
12645 &quot;X&quot;.
12646 The Set/Unset
12647 <!--chtml if pinemode="function_key"-->
12648 (F9)
12649 <!--chtml else-->
12650 (&quot;X&quot;)
12651 <!--chtml endif-->
12652 command will turn the &quot;X&quot; on for the
12653 highlighted address if it was off or turn it off if it was previously on.
12654 The SetAll command will select all of the addresses, and the UnSetAll
12655 command will turn off all the selections.  Once you've gotten the
12656 selection the way you want it, you may create a new list by pressing
12657 <!--chtml if pinemode="function_key"-->
12659 <!--chtml else-->
12660 &quot;T&quot;.
12661 <!--chtml endif-->
12664 In both the simple and list cases, after choosing to take the address,
12665 you will be asked for the nickname of the entry.  Typing in a new name
12666 creates the new entry/list.  Entering an existing nickname will replace
12667 the entry (simple case) or add to the list (list case).  Alternatively,
12668 you can press Ctrl-T at the nickname prompt and select an existing
12669 nickname from your address book.
12672 You will normally start in Single Mode, unless you used the Apply command
12673 to startup the TakeAddr screen, in which case you will start in List Mode.
12674 You may switch between the two modes at any time.  If you've already
12675 selected several addresses in List Mode, those will be remembered when you
12676 switch to Single Mode and then back to List Mode.  The set of addresses
12677 that are pre-selected when you start in List Mode are the From addresses
12678 of all of the messages you are operating on.  You may, of course, easily
12679 erase those selections with the UnSetAll command.
12682 If you have more than one writable address book, you will be prompted for
12683 the name of the address book you wish to add the new entry to before
12684 anything else. You can use ^N and ^P to choose among the defined address
12685 books, or type in the address book name.
12688 FOR MORE INFORMATION on addressing see
12689 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12690 <A HREF="h_abook_opened">Address Book Screen's</A>
12691 help text.
12693 &lt;End of help on this topic&gt;
12694 </BODY>
12695 </HTML>
12696 ===== h_takeexport_screen =====
12697 <HTML>
12698 <HEAD>
12699 <TITLE>Take Export Screen Explained</TITLE>
12700 </HEAD>
12701 <BODY>
12702 <H1>TAKE EXPORT COMMANDS</H1>
12703 <!--chtml if pinemode="function_key"-->
12704 <PRE>
12705 Navigating the List of Addresses       Address Selection Commands        
12706 --------------------------------       --------------------------        
12707  F5  Move to previous entry            F3  Exit without taking address
12708  F6  Move to next entry                F4  Take current address(es)
12709  F7  Show previous page of address list
12710  F8  Show next page of address list
12711  F2  WhereIs (search list)
12712                                --------------
12713 Mode Toggle            F9  Set/Unset current address
12714 -----------            F10 Set all
12715  F12 Toggle between List and single mode       F11 Unset all
12716 </PRE>
12717 <!--chtml else-->
12718 <PRE>
12719 Navigating the List of Addresses       Address Selection Commands
12720 --------------------------------       --------------------------
12721  P  Move to previous entry              &lt;  Exit without taking address
12722  N  Move to next entry                  T  Take address
12723  -  Show previous page of address list
12724 Spc (space bar) Show next page of address list
12725  W  WhereIs (search list)              List Mode
12726                                        ---------
12727 Single Mode                             X  Set/Unset current address
12728 -----------                             A  Set all addresses
12729  L  Switch to list mode                 U  Unset all addresses
12730                                         S  Switch to single mode
12731 </PRE>
12732 <!--chtml endif-->
12734 <H2>Description of the Take Export Screen</H2>
12736 This screen is designed to let you select one or more addresses
12737 from the current message and put them into a file.
12738 Only the user@domain_name part of each address is put into the file.
12741 To put a single entry into a file simply highlight the correct line and press 
12742 <!--chtml if pinemode="function_key"-->
12744 <!--chtml else-->
12745 &quot;T&quot;.
12746 <!--chtml endif-->
12747 To put more than one entry into a file
12748 switch the screen display
12749 into List Mode by pressing
12750 <!--chtml if pinemode="function_key"-->
12751 F12.
12752 <!--chtml else-->
12753 &quot;L&quot;.
12754 <!--chtml endif-->
12755 In List Mode, you select the
12756 group of addresses you wish to manipulate by marking them with an
12757 &quot;X&quot;.
12758 The Set/Unset
12759 <!--chtml if pinemode="function_key"-->
12760 (F9)
12761 <!--chtml else-->
12762 (&quot;X&quot;)
12763 <!--chtml endif-->
12764 command will turn the &quot;X&quot; on for the
12765 highlighted address if it was off or turn it off if it was previously on.
12766 The SetAll command will select all of the addresses, and the UnSetAll
12767 command will turn off all the selections.  Once you've gotten the
12768 selection the way you want it, you may put the addresses in a file by typing
12769 <!--chtml if pinemode="function_key"-->
12771 <!--chtml else-->
12772 &quot;T&quot;.
12773 <!--chtml endif-->
12776 You will be asked for the name of a file to put the addresses in.
12777 If the file already exists, you will be asked whether you want to Overwrite
12778 (replace) the contents of the file or Append to the contents of the file.
12781 &lt;End of help on this topic&gt;
12782 </BODY>
12783 </HTML>
12784 ============= h_abook_view ========================
12785 <HTML>
12786 <HEAD>
12787 <TITLE>Address Book View Explained</TITLE>
12788 </HEAD>
12789 <BODY>
12790 This function allows you to view the contents of an address book entry. You
12791 can only view one entry at a time.
12793 <DL>
12794 <DT>Help
12795 <!--chtml if pinemode="function_key"-->
12796 (F1)
12797 <!--chtml else-->
12799 <!--chtml endif-->
12800 </DT>
12801 <DD>
12802 Display this help text.
12804 <DT>Abook
12805 <!--chtml if pinemode="function_key"-->
12806 (F3)
12807 <!--chtml else-->
12808 (&lt;)
12809 <!--chtml endif-->
12810 </DT>
12811 <DD>
12812 Go back to index of address book entries.
12814 <DT>Update
12815 <!--chtml if pinemode="function_key"-->
12816 (F4)
12817 <!--chtml else-->
12819 <!--chtml endif-->
12820 </DT>
12821 <DD>
12822 Update (modify) this entry.
12824 <DT>ComposeTo
12825 <!--chtml if pinemode="function_key"-->
12826 (F5)
12827 <!--chtml else-->
12829 <!--chtml endif-->
12830 </DT>
12831 <DD>Compose a message to the address(es) in this entry.
12833 <DT>Role
12834 <!--chtml if pinemode="function_key"-->
12835 (F6)
12836 <!--chtml else-->
12838 <!--chtml endif-->
12839 </DT>
12840 <DD>Compose a message to the address(es) in this entry using roles.
12842 <DT>Prev Page
12843 <!--chtml if pinemode="function_key"-->
12844 (F7)
12845 <!--chtml else-->
12847 <!--chtml endif-->
12848 </DT>
12849 <DD>
12850 Show the previous page of the current entry.
12852 <DT>Next Page
12853 <!--chtml if pinemode="function_key"-->
12854 (F8)
12855 <!--chtml else-->
12856 (Space)
12857 <!--chtml endif-->
12858 </DT>
12859 <DD>
12860 Show the next page of the current entry.
12862 <DT>Print
12863 <!--chtml if pinemode="function_key"-->
12864 (F9)
12865 <!--chtml else-->
12867 <!--chtml endif-->
12868 </DT>
12869 <DD>Print the current entry.  You can select the
12870 printer or the print command via the &quot;Setup&quot; command
12871 on the MAIN MENU.
12873 <DT>WhereIs
12874 <!--chtml if pinemode="function_key"-->
12875 (F10)
12876 <!--chtml else-->
12878 <!--chtml endif-->
12879 </DT>
12880 <DD>Search the entry for a string of letters.  If it is
12881 found, move to it.  The string can be one word or a phrase.
12882 If there are multiple occurrences, the cursor moves to the
12883 first occurrence beyond the current cursor position.
12885 <DT>Fwd Email
12886 <!--chtml if pinemode="function_key"-->
12887 (F11)
12888 <!--chtml else-->
12890 <!--chtml endif-->
12891 </DT>
12892 <DD>Begin composition of a new mail message with the displayed
12893 text already inserted in the message body.
12895 </DL>
12897 &lt;End of help on this topic&gt;
12898 </BODY>
12899 </HTML>
12900 ============= h_ldap_view ========================
12901 <HTML>
12902 <HEAD>
12903 <TITLE>LDAP Response View Explained</TITLE>
12904 </HEAD>
12905 <BODY>
12906 This function allows you to view the contents of a directory entry. You
12907 can only view one entry at a time.
12909 <DL>
12910 <DT>Help
12911 <!--chtml if pinemode="function_key"-->
12912 (F1)
12913 <!--chtml else-->
12915 <!--chtml endif-->
12916 </DT>
12917 <DD>
12918 Display this help text.
12920 <DT>Results Index
12921 <!--chtml if pinemode="function_key"-->
12922 (F3)
12923 <!--chtml else-->
12924 (&lt;)
12925 <!--chtml endif-->
12926 </DT>
12927 <DD>Go back to index of search results.
12929 <DT>ComposeTo
12930 <!--chtml if pinemode="function_key"-->
12931 (F5)
12932 <!--chtml else-->
12934 <!--chtml endif-->
12935 </DT>
12936 <DD>Compose a message to the address(es) in this entry.
12938 <DT>Role
12939 <!--chtml if pinemode="function_key"-->
12940 (F6)
12941 <!--chtml else-->
12943 <!--chtml endif-->
12944 </DT>
12945 <DD>Compose a message to the address(es) in this entry using roles.
12947 <DT>Prev Page
12948 <!--chtml if pinemode="function_key"-->
12949 (F7)
12950 <!--chtml else-->
12952 <!--chtml endif-->
12953 </DT>
12954 <DD>
12955 Show the previous page of the current entry.
12957 <DT>Next Page
12958 <!--chtml if pinemode="function_key"-->
12959 (F8)
12960 <!--chtml else-->
12961 (Space)
12962 <!--chtml endif-->
12963 </DT>
12964 <DD>
12965 Show the next page of the current entry.
12967 <DT>Print
12968 <!--chtml if pinemode="function_key"-->
12969 (F9)
12970 <!--chtml else-->
12972 <!--chtml endif-->
12973 </DT>
12974 <DD>Print the current entry on paper.  You can select the
12975 printer or the print command via the &quot;Setup&quot; command
12976 on the MAIN MENU.
12978 <DT>WhereIs
12979 <!--chtml if pinemode="function_key"-->
12980 (F10)
12981 <!--chtml else-->
12983 <!--chtml endif-->
12984 </DT>
12985 <DD>Search the entry for a string of letters.  If it is
12986 found, move to it.  The string can be one word or a phrase.
12987 If there are multiple occurrences, the cursor moves to the
12988 first occurrence beyond the current cursor position.
12990 <DT>Fwd Email
12991 <!--chtml if pinemode="function_key"-->
12992 (F11)
12993 <!--chtml else-->
12995 <!--chtml endif-->
12996 </DT>
12997 <DD>Begin composition of a new mail message with the displayed
12998 text already inserted in the message body.
13000 <DT>Save
13001 <!--chtml if pinemode="function_key"-->
13002 (F12)
13003 <!--chtml else-->
13005 <!--chtml endif-->
13006 </DT>
13007 <DD>Save the displayed entry to one of your address books or export
13008 it to a file.
13009 </DL>
13011 &lt;End of help on this topic&gt;
13012 </BODY>
13013 </HTML>
13014 ===== h_attachment_screen =====
13015 <HTML>
13016 <HEAD>
13017 <TITLE>Attachment Index Screen Explained</TITLE>
13018 </HEAD>
13019 <BODY>
13020 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13021 message's attachments, and allows various operations on them.  The
13022 first attachment is usually the message text, but does not include the
13023 header portion of the message.
13025 Available commands include:
13027 <DL>
13029 <DT>Help</DT>
13030 <DD>Show this help text.
13032 <DT>Msg #<I>num</I></DT>
13033 <DD>Leave this screen without displaying or saving any attachments.
13035 <DT>View</DT>
13036 <DD>View the currently selected attachment.
13038 <DT>Prev Attach</DT>
13039 <DD>Move to previous attachment.
13041 <DT>Next Attach</DT>
13042 <DD>Move to next attachment.
13044 <DT>Prev Page</DT>
13045 <DD>Previous page of the listed attachments.
13047 <DT>Next Page</DT>
13048 <DD>Next page of the listed attachments.
13050 <DT>Delete</DT>
13051 <DD>Mark the currently selected attachment for Deletion.
13052 This does not modify the current message by deleting the attachment from
13053 it, but instead the delete flag <EM>only</EM> has an effect when saving
13054 the message to a folder.
13055 Attachments marked for deletion are not copied to the destination folder
13056 along with the rest of the message when it is saved.
13057 It is ok for the destination folder to be the same as the current folder.
13058 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13060 <DT>Undelete</DT>
13061 <DD>Turn off the Delete flag for the selected attachment.
13063 <DT>Save</DT>
13064 <DD>Save the selected attachment to a file.  If the attachment is of
13065 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13066 the specified mail folder.
13068 <DT>Export</DT>
13069 <DD>If the attachment is of
13070 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13071 copy the message to a file in the same way this command works on 
13072 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13074 <DT>Pipe</DT>
13075 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13076 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13078 <DT>WhereIs</DT>
13079 <DD>Find a matching string in the attachment list.
13081 <DT>AboutAttch</DT>
13082 <DD>Examine various aspects of the selected attachment.
13084 <DT>Print</DT>
13085 <DD>Print the selected attachment.
13087 <DT>Forward</DT>
13088 <DD>Forward the selected attachment as an attachment.
13089 </DL>
13093 All attachments can be saved or piped into a UNIX command, but some may
13094 not be readily displayed by either Alpine or an external tool.  In such
13095 cases, the reason why the message cannot be displayed is displayed on
13096 Alpine's message line.
13098 &lt;End of help on this topic&gt;
13099 </BODY>
13100 </HTML>
13101 ============= h_mail_text_att_view ========================
13102 <HTML>
13103 <HEAD>
13104 <TITLE>Attachment View Screen Explained</TITLE>
13105 </HEAD>
13106 <BODY>
13107 This function allows you to view the contents of a text attachment. You
13108 can only view one attachment at a time.
13110 Available commands include:
13112 <DL>
13114 <DT>Help</DT>
13115 <DD>Display this help text
13117 <DT>AttchIndex</DT>
13118 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13120 <DT>Prev Page</DT>
13121 <DD>Show the previous page of the current attachment.
13123 <DT>Next Page</DT>
13124 <DD>Show the next page of the current attachment by pressing the space bar.
13126 <DT>Delete</DT>
13127 <DD>Mark the viewed attachment for Deletion.  The delete
13128 flag <EM>only</EM> has affect when saving the message to a folder.
13129 Attachments marked for deletion are exluded from the messsage when
13130 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13131 this Alpine session.
13133 <DT>Undelete</DT>
13134 <DD>Turn off the Delete flag for the selected attachment.
13136 <DT>Save</DT>
13137 <DD>Copy the current attachment to a file.  If you just enter
13138 a filename, the attachment will be saved with that name in
13139 your home directory 
13140 <!--chtml if pinemode="running"-->
13141 (which, in the present configuration of your system, is
13142  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13143 <!--chtml endif-->
13144 or current working directory
13145 <!--chtml if pinemode="running"-->
13146 (which, at least for your current Alpine &quot;session,&quot; 
13147 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13148 <!--chtml endif-->, depending on the
13149 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13150 configuration setting.  You may enter the full
13151 path and filename to save it in another directory instead.
13153 <DT>Export</DT>
13154 <DD>If the attachment is of
13155 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13156 copy the message to a file in the same way this command works on 
13157 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13158 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13159 defined, they may affect the contents of the exported file.)
13161 <DT>Pipe</DT>
13162 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13164 <DT>WhereIs</DT>
13165 <DD>Search the attachment for a string of letters.  If it is
13166 found, move to it.  The string can be one word or a phrase.
13167 If there are multiple occurrences, the cursor moves to the
13168 first occurrence beyond the current cursor position.
13170 <DT>Print</DT>
13171 <DD>Print the current attachment on paper.  You can select the
13172 printer or the print command via the &quot;Setup&quot; command
13173 on the MAIN MENU.
13175 <DT>Forward</DT>
13176 <DD>Forward the selected attachment as an attachment.
13177 </DL>
13179 &lt;End of help on this topic&gt;
13180 </BODY>
13181 </HTML>
13182 ============= h_journal ==============
13183 <HTML>
13184 <HEAD>
13185 <TITLE>Recent Message Journal Explained</TITLE>
13186 </HEAD>
13187 <BODY>
13189 The following commands are available on this screen:
13191 <DL>
13192 <DT>Help</DT>
13193 <DD>Show this help text
13195 <DT>Exit</DT>
13196 <DD>Exit Viewer, and go back to mail processing
13198 <DT>Prev Page</DT>
13199 <DD>Show the previous page text
13201 <DT>Next Page</DT>
13202 <DD>Show the next page of text by pressing the space bar
13204 <DT>Print</DT>
13205 <DD>Print the displayed text on paper.  You can select the
13206 printer or the print command via the &quot;Setup&quot; command
13207 on the MAIN MENU.
13209 <DT>Fwd Email</DT>
13210 <DD>Begin composition of a new mail message with the displayed
13211 text already inserted in the message body.
13213 <DT>Save</DT>
13214 <DD>Copy the displayed text to a file.  If you just enter
13215 a filename, the text will be saved with that name in
13216 your 
13217 home directory 
13218 <!--chtml if pinemode="running"-->
13219 (which, in the present configuration of your system, is
13220  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13221 <!--chtml endif-->
13222 or current working directory
13223 <!--chtml if pinemode="running"-->
13224 (which, at least for your current Alpine &quot;session,&quot; 
13225 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13226 <!--chtml endif-->, depending on the
13227 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13228 configuration setting.   You may enter the full
13229 path and filename to save it in another directory instead.
13231 <DT>WhereIs</DT>
13232 <DD>Search the text for a string of letters.  If it is
13233 found, move to it.  The string can be one word or a phrase.
13234 If there are multiple occurrences, the cursor moves to the
13235 first occurrence beyond the current cursor position.
13236 </DL>
13238 &lt;End of help on this topic&gt;
13239 </BODY>
13240 </HTML>
13241 ============= h_debugjournal ==============
13242 <HTML>
13243 <HEAD>
13244 <TITLE>Debug Journal Explained</TITLE>
13245 </HEAD>
13246 <BODY>
13248 The following commands are available on this screen:
13250 <DL>
13251 <DT>Help</DT>
13252 <DD>Show this help text
13254 <DT>Exit</DT>
13255 <DD>Exit Viewer, and go back to mail processing
13257 <DT>Timestamps</DT>
13258 <DD>Turn on or off timestamps.
13260 <DT>DebugView</DT>
13261 <DD>Set the level of debugging you want to see. The level may be any number
13262 in the range 0-9. Higher numbers show more debugging detail. Note that the
13263 debugging information has already been captured. This setting just causes the
13264 debugging information that you see to be filtered. If you set this to
13265 the number &quot;5&quot; then you will be shown all of the debugging information
13266 at levels 5 and below.
13267 It's actually a bit more complicated than that. A fixed amount of memory
13268 is used to store the debug information.
13269 Since the amount of memory used is limited the debugging information
13270 has to be trimmed back when it gets too large.
13272 <DT>Prev Page</DT>
13273 <DD>Show the previous page text
13275 <DT>Next Page</DT>
13276 <DD>Show the next page of text by pressing the space bar
13278 <DT>Print</DT>
13279 <DD>Print the displayed text on paper.  You can select the
13280 printer or the print command via the &quot;Setup&quot; command
13281 on the MAIN MENU.
13283 <DT>Fwd Email</DT>
13284 <DD>Begin composition of a new mail message with the displayed
13285 text already inserted in the message body.
13287 <DT>Save</DT>
13288 <DD>Copy the displayed text to a file.  If you just enter
13289 a filename, the text will be saved with that name in
13290 your 
13291 home directory 
13292 <!--chtml if pinemode="running"-->
13293 (which, in the present configuration of your system, is
13294  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13295 <!--chtml endif-->
13296 or current working directory
13297 <!--chtml if pinemode="running"-->
13298 (which, at least for your current Alpine &quot;session,&quot; 
13299 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13300 <!--chtml endif-->, depending on the
13301 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13302 configuration setting.   You may enter the full
13303 path and filename to save it in another directory instead.
13305 <DT>WhereIs</DT>
13306 <DD>Search the text for a string of letters.  If it is
13307 found, move to it.  The string can be one word or a phrase.
13308 If there are multiple occurrences, the cursor moves to the
13309 first occurrence beyond the current cursor position.
13310 </DL>
13312 &lt;End of help on this topic&gt;
13313 </BODY>
13314 </HTML>
13315 ============= h_simple_text_view ==============
13316 <HTML>
13317 <HEAD>
13318 <TITLE>Simple Text View Screen Explained</TITLE>
13319 </HEAD>
13320 <BODY>
13322 The following commands are available on this screen:
13324 <DL>
13325 <DT>Help</DT>
13326 <DD>Show this help text
13328 <DT>Exit</DT>
13329 <DD>Exit Viewer, and go back to mail processing
13331 <DT>Prev Page</DT>
13332 <DD>Show the previous page text
13334 <DT>Next Page</DT>
13335 <DD>Show the next page of text by pressing the space bar
13337 <DT>Print</DT>
13338 <DD>Print the displayed text on paper.  You can select the
13339 printer or the print command via the &quot;Setup&quot; command
13340 on the MAIN MENU.
13342 <DT>Fwd Email</DT>
13343 <DD>Begin composition of a new mail message with the displayed
13344 text already inserted in the message body.
13346 <DT>Save</DT>
13347 <DD>Copy the displayed text to a file.  If you just enter
13348 a filename, the attachment will be saved with that name in
13349 your 
13350 home directory 
13351 <!--chtml if pinemode="running"-->
13352 (which, in the present configuration of your system, is
13353  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13354 <!--chtml endif-->
13355 or current working directory
13356 <!--chtml if pinemode="running"-->
13357 (which, at least for your current Alpine &quot;session,&quot; 
13358 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13359 <!--chtml endif-->, depending on the
13360 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13361 configuration setting.   You may enter the full
13362 path and filename to save it in another directory instead.
13364 <DT>WhereIs</DT>
13365 <DD>Search the attachment for a string of letters.  If it is
13366 found, move to it.  The string can be one word or a phrase.
13367 If there are multiple occurrences, the cursor moves to the
13368 first occurrence beyond the current cursor position.
13369 </DL>
13371 &lt;End of help on this topic&gt;
13372 </BODY>
13373 </HTML>
13374 ======= h_pine_for_windows ========
13375 <HTML>
13376 <HEAD>
13377 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13378 </HEAD>
13379 <BODY>
13380 <H1>Getting Help In PC-Alpine</H1>
13383 PC-Alpine offers general and specific help text. From the <A
13384 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13385 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13386 specific help for that screen is available from the toolbar Help menu or
13387 with the 
13388 <!--chtml if pinemode="function_key"-->
13389 &quot;F1&quot; key.
13390 <!--chtml else-->
13391 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13392 typing &quot;?&quot; would be mistaken as entering text.
13393 <!--chtml endif-->
13396 Although this version of Alpine is for Microsoft Windows, it is not
13397 considered a full &quot;Graphical User Interface&quot; application. 
13398 Yet, many of the controls that Windows users are accustomed to seeing, 
13399 such as scrollbars and toolbars, are available.
13402 PC-Alpine offers considerable mouse support.  You can view what is
13403 &quot;click-able&quot; by dragging your mouse over any screen; when the
13404 arrow cursor changes into a hand, you found something. Mouse-click
13405 possibilities include navigating between screens and folders and
13406 double-clicking on hyperlinks to open your Web browser.
13407 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13408 screen.  Examples of right-click options include &quot;copy&quot; after
13409 selecting text to copy and &quot;View in New Window&quot; when you click
13410 on a particular message in the Message Index. The menu choices available
13411 to you will vary based upon what screen is open, where on the screen your
13412 cursor is located, and even what action you have already taken.
13415 &lt;End of help on this topic&gt;
13416 </BODY>
13417 </HTML>
13418 ===== h_composer =====
13419 <HTML>
13420 <HEAD>
13421 <TITLE>COMPOSER COMMANDS</TITLE>
13422 </HEAD>
13423 <BODY>
13424 <H1>COMPOSER COMMANDS</H1>
13426 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>
13427 &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>
13428 &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>
13429 &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>
13430 &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>
13431 &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>
13432 &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>
13433 &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>
13434 &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>
13435 &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>
13436 ---------------------------------------|&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>
13437 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>
13438 &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>
13439 &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>
13440 &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>
13443 NOTE:
13444 <OL>
13445  <LI>For help on a particular command, highlight the bold text associated
13446 with it above and hit Return.
13447  <LI> The availability of certain commands
13448 is determined by Alpine configuration files and system capabilities.
13449 At some sites, certain commands may not be available due to security or
13450 support concerns.
13451  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13452 Ctrl-&#92;, ESC.
13453  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13454 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13455 </OL>
13458 HINT: To move rapidly to the bottom of a message you are composing,
13459 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13460 with the Mark and Cut commands to eliminate large amounts of unwanted
13461 text in a Reply.
13463 <H2>Description of Composer</H2>
13465 Alpine has a built-in editing program that allows you to compose messages
13466 without having to leave Alpine.  The editor is designed to be very simple to
13467 use so that you can get started writing email right away.
13470 Messages are usually just text, about 80 columns wide.  Using upper and
13471 lower case is encouraged.  On some systems the size limit of the message
13472 is about 100,000 characters, which is about 2,000 lines.  You can include
13473 punctuation and special characters found on most keyboards, but you can't
13474 include characters with diacritical marks and certain special symbols.
13477 Text automatically wraps as you type past the end of a line so you do not
13478 have to hit return.  Using the
13479 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13480 you can also reformat text explicitly, perhaps after you have
13481 deleted some text.
13484 You can include other text files with the 
13485 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13486 which will prompt you for the name of the file to insert at the
13487 current cursor postion.
13490 <UL>
13491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13492 </UL>
13494 &lt;End of help on this topic&gt;
13495 </BODY>
13496 </HTML>
13497 ====== h_composer_browse =====
13498 <HTML>
13499 <HEAD>
13500 <TITLE>BROWSER</TITLE>
13501 </HEAD>
13502 <BODY>
13503 <H1>BROWSER</H1>
13504 This screen lets you browse your files and directories.  To go to another 
13505 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13506 choose &quot;Select&quot; (the default choice on the menu); 
13507 or choose &quot;Goto&quot; and enter the name of the directory.
13508 <!--chtml if pinemode="os_windows"-->
13509 <!--chtml else--> 
13510 In Unix Alpine, you may use 
13511 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13512 to another's home directory.  
13513 <!--chtml endif--><P>
13514 To select a file, move the cursor to it and 
13515 choose &quot;Select&quot; (the default choice on the menu).  
13517 <UL>
13518 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13519 inclusion in the 
13520 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13521 the 
13522 &quot;----- Message Text -----&quot; line
13523 while composing, then &quot;To Files&quot;):  Since the file 
13524 selected will become part of the message text, it must be in a format 
13525 suitable for that (Alpine does not check!), such as a plain text file.
13526 Files of other formats (for example, graphics, databases, software 
13527 programs) should be 
13528 <B>attached</B> to the message instead --
13529 by moving the cursor in the COMPOSE MESSAGE screen into the 
13530 message header area and pressing 
13531 <!--chtml if pinemode="function_key"-->
13533 <!--chtml else-->
13534 Ctrl-J.
13535 <!--chtml endif--> 
13537 <P><LI>
13538 Note <B>if</B> you are currently using the BROWSER for saving a message 
13539 attachment, or exporting a message, to a file: You can use the Add command to 
13540 provide the name for a new file to save/export to, and then select that name 
13541 to use it for the save/export operation.  Back at the prompt 
13542 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13543 either Overwrite or Append (it doesn't make a difference, since the file is 
13544 so far empty).  Note: If you cancel the 
13545 operation at that point, the file created with the Add command will remain 
13546 0 bytes in size.
13548 </UL>
13549 <P><UL>
13550 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13551 </UL>
13553 &lt;End of help on this topic&gt;
13554 </BODY>
13555 </HTML>
13556 ====== h_composer_ins =====
13557 <HTML>
13558 <HEAD>
13559 <TITLE>INSERT TEXT FILE</TITLE>
13560 </HEAD>
13561 <BODY>
13562 <H1>INSERT TEXT FILE</H1>
13564 Use this function to insert a text file. The file name
13565 given can be an absolute file path name for your system
13566 <!--chtml if pinemode="os_windows"-->
13567 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13568 with a relative pathname, or simply a file name without
13569 drive or directory specification.  
13570 <!--chtml else-->
13571 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13572 a file in your home directory, or a file path relative to your 
13573 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13574 your home directory or &quot;~user&quot; to refer to another
13575 account's home directory.
13576 <!--chtml endif-->
13578 No wild card characters may be used.  
13579 The file must reside on the system running Alpine.
13581 If the 
13582 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13583 feature is set, names are relative to your current working directory 
13584 <!--chtml if pinemode="running"-->
13585 (which, at least for your current Alpine &quot;session,&quot; 
13586 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13587 <!--chtml endif-->
13588 rather than your home directory
13589 <!--chtml if pinemode="running"-->
13590 (which, in the present configuration of your system, is
13591  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13592 <!--chtml endif-->
13594 <P><UL>
13595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13596 </UL>
13598 &lt;End of help on this topic&gt;
13599 </BODY>
13600 </HTML>
13601 ====== h_composer_ins_m =====
13602 <HTML>
13603 <HEAD>
13604 <TITLE>INSERT MESSAGE</TITLE>
13605 </HEAD>
13606 <BODY>
13607 <H1>INSERT MESSAGE</H1>
13609 Type in the number of a message in the currently open folder to insert it
13610 into your message.
13611 <P><UL>
13612 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13613 </UL>
13615 &lt;End of help on this topic&gt;
13616 </BODY>
13617 </HTML>
13618 ====== h_composer_search =====
13619 <HTML>
13620 <HEAD>
13621 <TITLE>Explanation of Composer Whereis Command </TITLE>
13622 </HEAD>
13623 <BODY>
13624 <H1>Help For Whereis Command</H1>
13626 Whereis is used to search the message for a word or part of a word.
13627 When searching in the composer, only the message part of your mail is
13628 searched, and the cursor is put on the first occurrence appearing
13629 after the location of the cursor.  The search will wrap to the
13630 beginning of the message when it no longer finds matches in the
13631 remainder of the message.
13633 To search for the same string a second time, press 
13634 <!--chtml if pinemode="function_key"-->
13635 &quot;F6&quot;
13636 <!--chtml else-->
13637 &quot;^W&quot;
13638 <!--chtml endif-->
13639 to begin search and then just press RETURN to accept the previous
13640 search string shown in square brackets rather than entering a new
13641 search string.<P>
13643 The &quot;Search&quot; prompt has several sub-command available:
13645 <DL>
13646 <DT>Get Help</DT>
13647 <DD> Takes you to this help page.
13649 <DT>Cancel</DT>
13650 <DD> Cancels the prompt.  No search takes place.
13652 <DT>First Line</DT>
13653 <DD> Takes you back to the composer with the cursor on the first character
13654 of the first line of text.
13656 <DT>Last Line</DT>
13657 <DD> Takes you back to the composer with the cursor on the last character
13658 of the last line of text.
13660 <DT>Replace (Optional)</DT>
13661 <DD> This sub-command is enabled by the 
13662 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13663 feature (which is on by default); see its help screen for details on how replacing works.
13665 </DL>
13667 &lt;End of help on this topic&gt;
13668 </BODY>
13669 </HTML>
13670 ====== h_sigedit_search =====
13671 <HTML>
13672 <HEAD>
13673 <TITLE>Explanation of Whereis Command </TITLE>
13674 </HEAD>
13675 <BODY>
13676 <H1>Help For Whereis Command</H1>
13678 Whereis is used to search for a word or part of a word.
13679 When searching the cursor is put on the first occurrence appearing
13680 after the location of the cursor.  The search will wrap to the
13681 beginning of the signature when it no longer finds matches in the
13682 remainder of the signature.
13684 To search for the same string a second time, press 
13685 <!--chtml if pinemode="function_key"-->
13686 &quot;F6&quot;
13687 <!--chtml else-->
13688 &quot;^W&quot;
13689 <!--chtml endif-->
13690 to begin search and then just press RETURN to accept the previous
13691 search string shown in square brackets rather than entering a new
13692 search string.<P>
13694 The &quot;Search&quot; prompt has several sub-command available:
13696 <DL>
13697 <DT>Get Help</DT>
13698 <DD> Takes you to this help page.
13700 <DT>Cancel</DT>
13701 <DD> Cancels the prompt.  No search takes place.
13703 <DT>First Line</DT>
13704 <DD> Takes you back to the composer with the cursor on the first character
13705 of the first line of text.
13707 <DT>Last Line</DT>
13708 <DD> Takes you back to the composer with the cursor on the last character
13709 of the last line of text.
13711 <DT>Replace (Optional)</DT>
13712 <DD> This sub-command is enabled by the 
13713 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13714 feature (which is on by default); see its help screen for details on how replacing works.
13716 </DL>
13718 &lt;End of help on this topic&gt;
13719 </BODY>
13720 </HTML>
13721 ======= h_composer_to ====
13722 <HTML>
13723 <HEAD>
13724 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13725 </HEAD>
13726 <BODY>
13727 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13729 <H2>The &quot;To:&quot; field</H2>
13730 The address you enter here must be a valid email address that is reachable
13731 from your site. 
13733 <H2>Email Address Format</H2>
13734 You may enter a full name and email address, 
13735 <!--chtml if pinemode="os_windows"-->
13736 <!--chtml else-->
13737 a local (meaning, on the same 
13738 host as the one you are running Alpine on) username that Alpine will
13739 complete for you, 
13740 <!--chtml endif-->
13741 the nickname of someone in a 
13742 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13743 mail alias defined by your system administrator.  When you move the cursor
13744 out of this field, the nicknames will be expanded to the addresses in your
13745 address book, and the local usernames will be expanded to include the 
13746 persons' actual names.  You may enter as many addresses as you wish, but they 
13747 must be separated by commas.  You can move around this and other header fields
13748 with the arrow keys and use many of the usual composer editing keys.
13750 <UL>
13751 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13752 </UL>
13755 <H2>MESSAGE HEADER COMMANDS</H2>
13756 <!--chtml if pinemode="function_key"-->
13757 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13758 ^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>
13759 ^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>
13760 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13761 ^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>
13762 ^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>
13763 ^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>
13764 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>
13765 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>
13766 ^@&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>
13767 ----------------------------------------|<BR>
13768 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13769 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>
13770 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>
13771 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>
13772 <!--chtml else-->
13773 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13774 ^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>
13775 ^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>
13776 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13777 ^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>
13778 ^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>
13779 ^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>
13780 ^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>
13781 ^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>
13782 ^@&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>
13783 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13784 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>
13785 ^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>
13786 ^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>
13787 ^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>
13788 <!--chtml endif-->
13791 NOTE:
13792 <OL>
13793  <LI>For help on a particular command, highlight the bold text associated
13794 with it above and hit Return.
13795  <LI> The availability of certain commands 
13796 is determined by Alpine configuration files and system capabilities.
13797 At some sites, certain commands may not be available due to security or
13798 support concerns.
13799 </OL>
13802 <UL>   
13803 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13804 </UL><P>
13805 &lt;End of help on this topic&gt;
13806 </BODY>
13807 </HTML>
13808 ======= h_composer_cc ====
13809 <HTML>
13810 <HEAD>
13811 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13812 </HEAD>
13813 <BODY>
13814 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13815 The Cc: field is just like the To: field, except it is used for addressees
13816 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13817 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13818 them to see the message.  The only difference the recipients see is that their 
13819 name is in the Cc: field, rather than the To: field.
13821 For help with Cc: field editing
13822 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13824 <UL>
13825 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13826 </UL>
13828 <UL>   
13829 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13830 </UL><P>
13831 &lt;End of help on this topic&gt;
13832 </BODY>
13833 </HTML>
13834 ======= h_composer_bcc ====
13835 <HTML>
13836 <HEAD>
13837 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13838 </HEAD>
13839 <BODY>
13840 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13841 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13842 a copy of the message to one or more people whose addresses you do not
13843 wish disclosed, either to reduce clutter or for confidentiality.
13845 The format of the Bcc: field is just the same as the To: and Cc: fields in
13846 the way the addresses are entered.  The recipients listed here will
13847 receive a copy of the message, but --assuming your site's mail transport
13848 software is properly configured-- their addresses will not show up in the
13849 headers of the message, as delivered to all of the recipients.  The To:
13850 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13852 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13853 will automatically generate and place in the To: field a pseudo-address of 
13854   &quot;undisclosed-recipients: ;&quot;
13855 or whatever string has been specified in the 
13856 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13857 variable.
13859 The reason for this is to avoid embarrassment caused by some Internet
13860 mail transfer software that interprets a &quot;missing&quot; To: header as 
13861 an error and replaces it with an Apparently-to: header that may contain
13862 the addresses you entered on the Bcc: line.  In addition, it may be
13863 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13865 You can manipulate what text ends up on the (originally) empty To:
13866 field.  Just remember to put a colon and semicolon at the end of the
13867 field, which is a special notation denoting that it is not a real address.
13869 For information on message header editing
13870 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13872 <UL>
13873 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13874 </UL>
13876 <UL>   
13877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13878 </UL><P>
13879 &lt;End of help on this topic&gt;
13880 </BODY>
13881 </HTML>
13882 ======= h_composer_lcc ====
13883 <HTML>
13884 <HEAD>
13885 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
13886 </HEAD>
13887 <BODY>
13888 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
13889 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
13890 you wish to send a message to a list of people but avoid having all
13891 of their addresses visible, in order to reduce clutter when the
13892 message is received.
13894 It is similar to the 
13895 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
13896 in that individual
13897 addressees are hidden, but Lcc is designed to work specifically with
13898 distribution lists you have created in your 
13899 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
13900 the nickname of the list on the Lcc line will result in the full name of
13901 your Alpine Address Book list being placed on the To: line of the message,
13902 using a special notation that distinguishes it from a real address. You
13903 must leave the To: line blank for your list name to appear there.
13905 For example, if you have this list entered in your Address Book:<PRE>
13907         largo         Key Largo List       DISTRIBUTION LIST:
13908                                            bogie@mgm.com
13909                                            lauren@mgm.com
13910                                            walter@mgm.com</PRE>
13913 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
13914 the result is:<PRE>
13916         To      : Key Largo List: ;
13917         Cc      :
13918         Bcc     :
13919         Fcc     : sent-mail
13920         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
13921                   lauren@mgm.com,
13922                   walter@mgm.com
13923         Subject :</PRE>
13925 Each recipient listed on the Lcc: line receives a copy of the message
13926 without their address being visible (as though they were listed on the
13927 Bcc: line). The colon-semicolon notation used to put the full-name of the
13928 list on the To: line is a special address format that doesn't specify any
13929 actual addressees, but does give some information to the recipients of the
13930 message.
13932 Note: if after entering an LCC, you delete the list name that is placed
13933 on the To: line, then recipients will see <PRE>
13934        To: undisclosed-recipients: ;</PRE>
13936 (or whatever string is defined in the 
13937 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13938 variable) just as in the BCC case. 
13940 For help with Lcc: field editing
13941 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13943 <UL>
13944 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13945 </UL>
13947 <UL>   
13948 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13949 </UL><P>
13950 &lt;End of help on this topic&gt;
13951 </BODY>
13952 </HTML>
13953 ======= h_composer_from =======
13954 <HTML>
13955 <HEAD>
13956 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
13957 </HEAD>
13958 <BODY>
13959 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
13961 This header carries your return address.  It is the address toward which
13962 replies (and often, future unrelated correspondence) will be directed,
13963 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
13964 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
13965 sure this address is correct.
13967 For help with message header editing
13968 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13970 <UL>
13971 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13972 </UL>
13974 <UL>   
13975 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13976 </UL><P>
13977 &lt;End of help on this topic&gt;
13978 </BODY>
13979 </HTML>
13980 ======= h_composer_reply_to =======
13981 <HTML>
13982 <HEAD>
13983 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
13984 </HEAD>
13985 <BODY>
13986 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
13988 Most people should not need this header. The Reply-To: header is used in
13989 cases where you would like replies to your messages to be directed to an
13990 address other than your normal &quot;From:&quot; address.  This is atypical, 
13991 but can happen when you use multiple machines and do not have the same account
13992 name on each one, or when you wish to direct certain replies to accounts
13993 or folders designated for specific classes of correspondence.
13995 For help with message header editing
13996 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13998 <UL>
13999 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14000 </UL>
14003 <UL>   
14004 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14005 </UL><P>
14006 &lt;End of help on this topic&gt;
14007 </BODY>
14008 </HTML>
14009 ======= h_composer_custom_addr ====
14010 <HTML>
14011 <HEAD>
14012 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14013 </HEAD>
14014 <BODY>
14015 <H1>CUSTOMIZED HEADER FIELD</H1>
14016 This is a customized header, i.e. not one that is part of Alpine's normal
14017 set of Compose headers.
14019 For help with message header editing
14020 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14022 <UL>
14023 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14024 </UL>
14026 <UL>   
14027 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14028 </UL><P>
14029 &lt;End of help on this topic&gt;
14030 </BODY>
14031 </HTML>
14032 ======= h_composer_custom_free ====
14033 <HTML>
14034 <HEAD>
14035 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14036 </HEAD>
14037 <BODY>
14038 <H1>CUSTOMIZED HEADER FIELD</H1>
14039 This is a customized header, i.e. not one that is part of Alpine's normal
14040 set of Compose headers.
14042 This field consists of arbitrary text.
14044 For help with message header editing
14045 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14047 <UL>   
14048 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14049 </UL><P>
14050 &lt;End of help on this topic&gt;
14051 </BODY>
14052 </HTML>
14053 ====== h_composer_news =====
14054 <HTML>
14055 <HEAD>
14056 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14057 </HEAD>
14058 <BODY>
14059 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14060 Use the newsgroups line to specify any and all USENET newsgroups to which
14061 your message should be posted.  When composing a message from scratch, this
14062 line may be hidden.  If so, just press the rich headers command
14063 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14064 to make it visible.
14066 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14067 people will be reading your message.  Also, you or your system manager
14068 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14069 in order for you to be able to post.
14071 For help with message header editing
14072 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14073 <P><UL>
14074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14075 </UL>
14077 &lt;End of help on this topic&gt;
14078 </BODY>
14079 </HTML>
14080 ======= h_composer_fcc ====
14081 <HTML>
14082 <HEADER>
14083 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14084 </HEADER>
14085 <BODY>
14086 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14087 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14088 each outgoing message.  The default value can be configured with the
14089 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14090 the file carbon copy on any message you send by editing the FCC header.<p>
14092 You may type ^T to get a list of all your folders and select one to use as
14093 the FCC for this message.<P>
14095 For help with message header editing
14096 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14098 <UL>   
14099 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14100 </UL><P>
14101 &lt;End of help on this topic&gt;
14102 </BODY>
14103 </HTML>
14104 ======= h_composer_subject ====
14105 <HTML>
14106 <HEADER>
14107 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14108 </HEADER>
14109 <BODY>
14110 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14112 The subject header provides a place to enter a few words that summarize
14113 the topic of the message you are sending.  You may leave this line blank,
14114 but it is considered a courtesy to use a meaningful subject.<p>
14116 For help with message header editing
14117 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14119 <UL>   
14120 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14121 </UL><P>
14122 &lt;End of help on this topic&gt;
14123 </BODY>
14124 </HTML>
14125 ======= h_composer_attachment ====
14126 <HTML>
14127 <HEAD>
14128 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14129 </HEAD>
14130 <BODY>
14131 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14133 The &quot;Attchmnt:&quot; field is where you specify what file or
14134 files you'd like attached to
14135 the message you are composing.  Those files must reside on the machine
14136 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14137 account on a Unix machine, you'll have to transfer it before attaching it.
14138 Contact local computer support people for assistance with transferring.
14141 The file name
14142 given can be an absolute file path name for your system
14143 <!--chtml if pinemode="os_windows"-->
14144 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14145 with a relative pathname, or simply a file name without
14146 drive or directory specification.  
14147 <!--chtml else-->
14148 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14149 a file in your home directory, or a file path relative to your 
14150 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14151 your home directory or &quot;~user&quot; to refer to another
14152 account's home directory.
14153 <!--chtml endif--><P>
14154 No wild card characters may be used.
14155 <P>If the 
14156 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14157 feature is set, names are relative to your current working directory 
14158 <!--chtml if pinemode="running"-->
14159 (which, at least for your current Alpine &quot;session,&quot; 
14160 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14161 <!--chtml endif-->
14162 rather than your home directory
14163 <!--chtml if pinemode="running"-->
14164 (which, in the present configuration of your system, is
14165  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14166 <!--chtml endif-->
14169 Alpine uses MIME encoding for attachments, so binaries and files of any
14170 length can safely be delivered to any MIME-capable mail reading program.
14171 If you send an attachment to someone who does not have a MIME-capable mail
14172 reading program yet, then the main message text will be readable, but
14173 attachments (even attachments that are just plain text) are not.
14176 Typing the filename on the Attchmnt: line achieves the same
14177 result as using the 
14178 <!--chtml if pinemode="function_key"-->
14180 <!--chtml else-->
14181 Ctrl-J
14182 <!--chtml endif--> command.
14185 If you Forward a message with attachments, you may delete them from your
14186 Forwarded message by editing the Attchmnt header line.
14189 For help with message header editing
14190 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14192 <UL>   
14193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14194 </UL><P>
14195 &lt;End of help on this topic&gt;
14196 </BODY>
14197 </HTML>
14198 ======= h_composer_ctrl_j ====
14199 <HTML>
14200 <HEAD>
14201 <TITLE>COMPOSER ATTACH</TITLE>
14202 </HEAD>
14203 <BODY>
14204 After the
14205 <!--chtml if pinemode="function_key"-->
14207 <!--chtml else-->
14208 Ctrl-J
14209 <!--chtml endif--> command:
14210 At the &quot;File to attach:&quot; prompt, enter the name of the 
14211 existing file to attach to your message.  
14212 When the feature
14213 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14214 is set
14215 you need only enter the beginning of the filename (enough of it to uniquely 
14216 identify the file) and press TAB to complete it.
14218 Or, press ^T to use the BROWSER screen for 
14219 selecting the file.  <P>
14220 For more information on attaching files, see the help screen for the 
14221 composer's 
14222 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14223 but can be revealed using the 
14224 <!--chtml if pinemode="function_key"-->
14226 <!--chtml else-->
14227 Ctrl-R
14228 <!--chtml endif--> 
14229 command with the cursor positioned above the
14230 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14232 &lt;End of help on this topic&gt;
14233 </BODY>
14234 </HTML>
14235 ======= h_edit_nav_cmds =========
14236 <HTML>
14237 <HEAD>
14238 <TITLE>Composer Editing Commands Explained</TITLE>
14239 </HEAD>
14240 <BODY>
14241 <H1>EDITING and NAVIGATION COMMANDS</H1>
14242 <!--chtml if pinemode="function_key"-->
14243 <PRE>
14244 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14245 ^B (Left Arrow)    Back character       | ^D       Delete current character
14246 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14247 ^P (Up Arrow)      Previous line        |
14248 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14249 ^A                 Beginning of line    |            delete current line
14250 ^E                 End of line          | F10      Undelete line(s)
14251 F7                 Previous page        |
14252 F8                 Next page            |-------------------------------------
14253 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14254 ----------------------------------------|
14255 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14256 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14257 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14258 </PRE>
14259 <!--chtml else-->
14260 <PRE>
14261 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14262 ^B (Left Arrow)    Back character       | ^D       Delete current character
14263 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14264 ^P (Up Arrow)      Previous line        |
14265 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14266 ^A                 Beginning of line    |            delete current line
14267 ^E                 End of line          | ^U       Undelete line(s)
14268 ^Y                 Previous page        |
14269 ^V                 Next page            |-------------------------------------
14270 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14271 ----------------------------------------|
14272 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14273 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14274 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14275 </PRE>
14276 <!--chtml endif-->
14277 &lt;End of help on this topic&gt;
14278 </BODY>
14279 </HTML>
14280 ===== h_composer_sigedit =====
14281 <HTML>
14282 <HEAD>
14283 <TITLE>Signature Editor Commands Explained</TITLE>
14284 </HEAD>
14285 <BODY>
14286 <H1>SIGNATURE EDITOR COMMANDS</H1>
14287 <!--chtml if pinemode="function_key"-->
14288 <PRE>
14289 CURSOR MOTION KEYS                     |EDITING KEYS
14290   ^B (Left Arrow)   Back character     | ^D       Delete current character
14291   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14292   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14293   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14294   ^A                Beginning of line  |           delete current line
14295   ^E                End of line        | F10       Paste text, undelete lines
14296   F7                Previous page      |           cut with ^K, or unjustify
14297   F8                Next page          |-------------------------------------
14298   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14299 ---------------------------------------| F6       Whereis (search for string)
14300 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14301  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14302                  |  ^Z    Suspend      | ^L       Redraw Screen
14303  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14304 </PRE>
14305 <!--chtml else-->
14306 <PRE>
14307 CURSOR MOTION KEYS                     |EDITING KEYS
14308   ^B (Left Arrow)   Back character     | ^D       Delete current character
14309   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14310   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14311   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14312   ^A                Beginning of line  |           delete current line
14313   ^E                End of line        | ^U        Paste text, undelete lines
14314   ^Y                Previous page      |           cut with ^K, or unjustify
14315   ^V                Next page          |-------------------------------------
14316   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14317 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14318 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14319  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14320                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14321  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14322 </PRE>
14323 <!--chtml endif-->
14325 NOTE: The presence or absence of the following commands is determined
14326 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14327 some of these commands may be administratively disabled by your system
14328 manager; if they don't work, please check with your local help desk
14329 before reporting a bug.
14331 <UL>
14332  <LI>Suspend (suspends Alpine and gives a system prompt)
14333  <LI>Alternate editor (allows you to compose with your own editor)
14334 </UL>
14337 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14338 Ctrl-&#92;, ESC
14341 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14342 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14344 &lt;End of help on this topic&gt;
14345 </BODY>
14346 </HTML>
14347 ===== h_composer_commentedit =====
14348 <HTML>
14349 <HEAD>
14350 <TITLE>Comment Editor Commands Explained</TITLE>
14351 </HEAD>
14352 <BODY>
14353 <H1>COMMENT EDITOR COMMANDS</H1>
14354 <!--chtml if pinemode="function_key"-->
14355 <PRE>
14356 CURSOR MOTION KEYS                     |EDITING KEYS
14357   ^B (Left Arrow)   Back character     | ^D       Delete current character
14358   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14359   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14360   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14361   ^A                Beginning of line  |           delete current line
14362   ^E                End of line        | F10       Paste text, undelete lines
14363   F7                Previous page      |           cut with ^K, or unjustify
14364   F8                Next page          |-------------------------------------
14365   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14366 ---------------------------------------| F6       Whereis (search for string)
14367 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14368  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14369                  |  ^Z    Suspend      | ^L       Redraw Screen
14370  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14371 </PRE>
14372 <!--chtml else-->
14373 <PRE>
14374 CURSOR MOTION KEYS                     |EDITING KEYS
14375   ^B (Left Arrow)   Back character     | ^D       Delete current character
14376   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14377   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14378   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14379   ^A                Beginning of line  |           delete current line
14380   ^E                End of line        | ^U        Paste text, undelete lines
14381   ^Y                Previous page      |           cut with ^K, or unjustify
14382   ^V                Next page          |-------------------------------------
14383   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14384 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14385 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14386  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14387                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14388  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14389 </PRE>
14390 <!--chtml endif-->
14392 NOTE: The presence or absence of the following commands is determined
14393 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14394 some of these commands may be administratively disabled by your system
14395 manager; if they don't work, please check with your local help desk
14396 before reporting a bug.
14398 <UL>
14399  <LI>Suspend (suspends Alpine and gives a system prompt)
14400  <LI>Alternate editor (allows you to compose with your own editor)
14401 </UL>
14404 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14405 Ctrl-&#92;, ESC
14408 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14409 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14411 &lt;End of help on this topic&gt;
14412 </BODY>
14413 </HTML>
14414 ======= h_composer_abook_nick =======
14415 <HTML>
14416 <HEAD>
14417 <TITLE>Addressbook Nickname Explained</TITLE>
14418 </HEAD>
14419 <BODY>
14420 This is a short nickname for this address book entry.  If it is used in
14421 place of an address from the composer, the composer will fill in the
14422 address(es) for the entry that matches the nickname. 
14425 Look <A HREF="h_edit_nav_cmds">here</A>
14426 to see the available Editing and Navigation commands.
14428 &lt;End of help on this topic&gt;
14429 </BODY>
14430 </HTML>
14431 ======= h_composer_abook_full =======
14432 <HTML>
14433 <HEAD>
14434 <TITLE>Addressbook Fullname Explained</TITLE>
14435 </HEAD>
14436 <BODY>
14437 This is the full name field for this entry.  If this is going to be a
14438 distribution list (more than one address), it should be a descriptive
14439 phrase describing the list.  It will be included in the mail header if you
14440 put the list in the To: or CC: field, or in the To: line if you put the
14441 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14442 leave any of the other fields blank, too). If this address book entry is
14443 going to be a simple entry with just one address, then this field is the
14444 person's name. When you send mail to this entry, this is the field to the
14445 left of the brackets. That is, it is the most readable part of the 
14446 address. For example, in the sample address:
14447 <PRE>
14448        John Doe &lt;jdoe@some.domain&gt;
14449 </PRE>
14450 "John Doe" is the full name field. If you are sorting your address book
14451 with one of the options that uses full names, then it might be useful to
14452 enter the full name as "Last, First", for example:
14453 <PRE>
14454        Doe, John
14455 </PRE>
14456 so that it will be sorted using Doe instead of John. This will be changed
14457 back into John Doe when you use it.
14459 Look <A HREF="h_edit_nav_cmds">here</A>
14460 to see the available Editing and Navigation commands.
14462 &lt;End of help on this topic&gt;
14463 </BODY>
14464 </HTML>
14465 ======= h_composer_abook_fcc =======
14466 <HTML>
14467 <HEAD>
14468 <TITLE>Addressbook Fcc Explained</TITLE>
14469 </HEAD>
14470 <BODY>
14471 If this entry is the first one in the To: line of an outgoing message,
14472 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14473 you would normally get (which depends on which
14474 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14475 you've chosen). 
14477 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14478 that you don't want any Fcc associated with this entry.
14480 Look <A HREF="h_edit_nav_cmds">here</A>
14481 to see the available Editing and Navigation commands.
14483 &lt;End of help on this topic&gt;
14484 </BODY>
14485 </HTML>
14486 ====== h_config_combined_abook_display =====
14487 <HTML>
14488 <HEAD>
14489 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14490 </HEAD>
14491 <BODY>
14492 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14494 This feature affects the address book display screens.
14495 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14496 will cause the remaining address books and directory servers to disappear
14497 from the screen, leaving only the entries of the expanded address book.
14498 If this feature is set, then the other address books will remain on the screen,
14499 so that all of the address books can be present at once.
14502 The way that commands work won't be changed.
14503 For example, the Select All command will select all of the entries in the
14504 current address book, not all of the entries in all of the address books.
14505 The WhereIs command will change a little.
14506 It will search through all of the text on the screen plus all of the entries
14507 from expanded address books.
14510 When this feature is set, the setting of the feature
14511 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14512 has an effect.
14514 &lt;End of help on this topic&gt;
14515 </BODY>
14516 </HTML>
14517 ====== h_config_titlebar_color_style =====
14518 <HTML>
14519 <HEAD>
14520 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14521 </HEAD>
14522 <BODY>
14523 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14525 This option affects the colors used to display the titlebar (the top
14526 line on the screen) when viewing a message.
14529 The available options include:
14532 <DL>
14533 <DT>default</DT>
14534 <DD>The color of the titlebar will be the color you set for the
14535 <A HREF="h_config_title_color">Title Color</A>.
14536 The Title Color may be set by using the
14537 <A HREF="h_color_setup">Setup Kolor</A> screen.
14538 </DD>
14540 <DT>indexline</DT>
14541 <DD>The color of the titlebar will be the same as the color of the
14542 index line corresponding to the message being viewed.
14543 The rules that determine what color the index line will be may be set
14544 up by going to the Setup/Rules/Indexcolor screen.
14545 If the index line for a message is not colored explicitly by the
14546 Indexcolor rules, then the titlebar will be colored the same as for
14547 the &quot;default&quot; option above (which is not the same color that
14548 the index line itself will have).
14549 </DD>
14551 <DT>reverse-indexline</DT>
14552 <DD>This is similar to the &quot;indexline&quot; option except the
14553 foreground and background colors from the corresponding index line will
14554 be reversed.
14555 For example, if the index line color is red letters on a white background,
14556 then the titlebar will be white letters on a red background.
14557 If the index line for a message is not colored explicitly by the
14558 Indexcolor rules, then the titlebar will be colored the same as for
14559 the &quot;default&quot; option above (which is not the same color that
14560 the index line itself will have).
14561 </DD>
14562 </DL>
14566 <UL>   
14567 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14568 </UL><P>
14569 &lt;End of help on this topic&gt;
14570 </BODY>
14571 </HTML>
14572 ====== h_config_index_color_style =====
14573 <HTML>
14574 <HEAD>
14575 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14576 </HEAD>
14577 <BODY>
14578 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14580 This option affects the colors used to display the current line in the
14581 MESSAGE INDEX screen.
14582 If you do not have Index Color Rules defined, then this option will
14583 have no effect in the index.
14584 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14586 If the option
14587 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14588 is turned on and the
14589 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14590 is set to something other than the default, then
14591 this option also affects the color used to display the current folder
14592 in the Incoming FOLDER LIST screen.
14595 The available options include:
14598 <DL>
14599 <DT>flip-colors</DT>
14600 <DD>This is the default.
14601 If an index line is colored because it matches one of your
14602 Index Color Rules, then its colors will be reversed when it is the currently
14603 highlighted line.
14604 For example, if the line is normally red text on a blue background, then
14605 when it is the current line it will be drawn as blue text on a red background.
14607 The rest of the option values all revert to this flip-colors behavior if
14608 there is no Reverse Color defined.
14609 </DD>
14611 <DT>reverse</DT>
14612 <DD>With this option the Reverse color is always used to highlight the
14613 current line.
14614 </DD>
14616 <DT>reverse-fg</DT>
14617 <DD>The foreground part of the Reverse Color is used to highlight
14618 the current line.
14619 If this would cause the text to be unreadable (because the foreground and
14620 background colors are the same) or if it would cause no change in the
14621 color of the index line, then the colors are flipped instead.
14623 Some people think this works particularly well if you use different
14624 background colors to emphasize &quot;interesting&quot; lines,
14625 but always with the same Normal foreground color,
14626 and you use a different foreground color for the Reverse Color.
14627 </DD>
14629 <DT>reverse-fg-no-ambiguity</DT>
14630 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14631 the resulting color will be exactly the same as the regular Reverse
14632 Color.
14633 That can lead to some possible confusion because an
14634 &quot;interesting&quot;
14635 line that is the current line will be displayed exactly the same as a
14636 non-interesting line that is current.
14637 You can't tell whether the line is just a regular current line or if it is
14638 an &quot;interesting&quot; current line by looking at the color.
14639 Setting the option to this value removes that ambiguity.
14640 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14641 interesting current line would look just like a non-interesting current line.
14642 In that case, the interesting line's colors are simply flipped (like in the
14643 default behavior).
14645 As an alternative way to preserve the line's interestingness in this case,
14646 you may find that using both a different foreground and a different
14647 background color for the interesting line will help.
14648 </DD>
14650 <DT>reverse-bg</DT>
14651 <DD>The background part of the Reverse Color is used to highlight
14652 the current line.
14653 If this would cause the text to be unreadable (because the foreground and
14654 background colors are the same) or if it would cause no change in the
14655 color of the index line, then the colors are flipped instead.
14657 Some people think this works particularly well if you use different
14658 foreground colors to emphasize &quot;interesting&quot; lines,
14659 but always with the same Normal background color,
14660 and you use a different background color for the Reverse Color.
14661 </DD>
14663 <DT>reverse-bg-no-ambiguity</DT>
14664 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14665 rule may also result in a color that is exactly the same as the regular
14666 Reverse Color.
14667 Setting the option to this value removes that ambiguity.
14668 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14669 current line has the same color as the Reverse Color.
14670 In that case, the interesting line's colors are simply flipped (like in the
14671 default behavior).
14672 </DD>
14673 </DL>
14677 <UL>   
14678 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14679 </UL><P>
14680 &lt;End of help on this topic&gt;
14681 </BODY>
14682 </HTML>
14683 ====== h_config_expanded_addrbooks =====
14684 <HTML>
14685 <HEAD>
14686 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14687 </HEAD>
14688 <BODY>
14689 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14691 If multiple address books (either personal or global) are defined, and you
14692 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14693 screen, then set this feature. This feature will have no effect unless the
14694 feature
14695 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14696 is also set.
14698 &lt;End of help on this topic&gt;
14699 </BODY>
14700 </HTML>
14701 ====== h_config_combined_folder_display =====
14702 <HTML>
14703 <HEAD>
14704 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14705 </HEAD>
14706 <BODY>
14707 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14709 This feature affects the folder list display screens.
14710 Normally, each folder list is viewed within its collection only.  This
14711 command allows folder lists to be viewed within a single screen that
14712 combines the contents of all collections.
14715 The way that commands work won't be changed.
14716 For example, the Select All command will select all of the folders in the
14717 current collection, not all of the entries in all of the collections.
14718 The WhereIs command will change a little.
14719 It will search through all of the folders in the current collection as well
14720 as all the folder in any other expanded collection.
14723 When this feature is set, the setting of the feature
14724 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14725 has an effect.
14727 &lt;End of help on this topic&gt;
14728 </BODY>
14729 </HTML>
14730 ====== h_config_combined_subdir_display =====
14731 <HTML>
14732 <HEAD>
14733 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14734 </HEAD>
14735 <BODY>
14736 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14738 This feature affects the Folder List screen when
14740 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14741 feature is enabled.  Normally, selecting a directory from the Folder
14742 List takes you into a new screen displaying only the contents of
14743 that directory.
14746 Enabling this feature will cause the contents of the selected
14747 directory to be
14748 displayed within the boundaries of the &quot;Collection&quot; it
14749 is a part of.  All previously displayed collections will remain
14750 in the screen.
14753 The way that commands work won't be changed.
14754 For example, the Select All command will select all of the folders in the
14755 directory, as opposed to all of the entries in all of the collections.
14756 The WhereIs command will change a little.
14757 It will search through all of the folders in the current collection as well
14758 as all the folder in any other expanded collection.
14761 &lt;End of help on this topic&gt;
14762 </BODY>
14763 </HTML>
14764 ====== h_config_separate_fold_dir_view =====
14765 <HTML>
14766 <HEAD>
14767 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14768 </HEAD>
14769 <BODY>
14770 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14772 This feature affects folder collections wherein a folder
14773 and directory can have the same name.  By default, Alpine displays them
14774 only once, denoting that it is both a folder and directory by appending
14775 the folder name with the hierarchy character enclosed
14776 in square brackets.
14780 Enabling this feature will cause Alpine to display such names
14781 separately marking the name representing a directory with a trailing
14782 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14785 The feature also alters the command set slightly.  By default, the
14786 right-arrow descends into the directory, while hitting the Return key will
14787 cause the folder by that name to be opened.
14790 With this feature set, the Return key will open the highlighted folder, or
14791 enter the highlighted directory.
14794 &lt;End of help on this topic&gt;
14795 </BODY>
14796 </HTML>
14797 ====== h_config_expanded_folders =====
14798 <HTML>
14799 <HEAD>
14800 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14801 </HEAD>
14802 <BODY>
14803 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14805 If multiple folder collections are defined, and you
14806 wish to have them all expanded implicitly upon entering the FOLDER LIST
14807 screen, then set this feature. This feature will have no effect unless the
14808 feature
14809 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14810 is also set.
14812 &lt;End of help on this topic&gt;
14813 </BODY>
14814 </HTML>
14815 ======= h_config_ldap_server =======
14816 <HTML>
14817 <HEAD>
14818 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14819 </HEAD>
14820 <BODY>
14821 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14822 This is the name of the host where an LDAP server is running.
14823 For redundancy, this may be a space-delimited set of server names, in which
14824 case the first server that answers is used.
14825 Each of the server names may be optionally followed by
14826 a colon and a port number.
14827 If this form is used then the port number configured below in the
14828 <EM>port</EM> field is not used.
14830 To find out whether your organization has its own LDAP server, 
14831 contact its computing support staff.
14832 <P><UL>
14833 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14834 </UL>
14836 &lt;End of help on this topic&gt;
14837 </BODY>
14838 </HTML>
14839 ======= h_config_ldap_base =======
14840 <HTML>
14841 <HEAD>
14842 <TITLE>LDAP OPTION: Search-Base</TITLE>
14843 </HEAD>
14844 <BODY>
14845 <H1>LDAP OPTION: Search-Base</H1>
14847 This is the search base to be used on this server.  It functions as a filter 
14848 by restricting your searches in the LDAP server database
14849 to the specified contents of the specified fields.  Without it, searches 
14850 submitted to this directory server may fail.  It might be something
14851 like:
14853 <PRE>
14854       O = &lt;Your Organization Name&gt;, C = US
14855 </PRE>
14856 or it might be blank.  
14857 (Some LDAP servers actually ignore anything specified here.)
14859 If in doubt what parameters you should specify here, 
14860 contact the maintainers of the LDAP server.
14861 <P><UL>
14862 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14863 </UL>
14865 &lt;End of help on this topic&gt;
14866 </BODY>
14867 </HTML>
14868 ======= h_config_ldap_port =======
14869 <HTML>
14870 <HEAD>
14871 <TITLE>LDAP OPTION: Port</TITLE>
14872 </HEAD>
14873 <BODY>
14874 <H1>LDAP OPTION: Port</H1>
14876 This is the TCP port number to be used with this LDAP server. If you leave
14877 this blank port 389 will be used.
14879 &lt;End of help on this topic&gt;
14880 </BODY>
14881 </HTML>
14882 ======= h_config_ldap_nick =======
14883 <HTML>
14884 <HEAD>
14885 <TITLE>LDAP OPTION: Nickname</TITLE>
14886 </HEAD>
14887 <BODY>
14888 <H1>LDAP OPTION: Nickname</H1>
14890 This is a nickname to be used in displays. If you don't supply a
14891 nickname the server name
14892 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
14893 will be used instead.  This option is strictly for your convenience.
14895 &lt;End of help on this topic&gt;
14896 </BODY>
14897 </HTML>
14898 ======= h_config_ldap_binddn =======
14899 <HTML>
14900 <HEAD>
14901 <TITLE>LDAP OPTION: Bind-DN</TITLE>
14902 </HEAD>
14903 <BODY>
14904 <H1>LDAP OPTION: Bind-DN</H1>
14906 You may need to authenticate to the LDAP server before you are able to use it.
14907 This is the Distinguished Name to bind to when authenticating to this server.
14908 Try leaving this blank until you know you need it.
14910 Alpine only knows about LDAP Simple authentication.
14911 It does not attempt LDAP SASL authentication.
14912 The DN and password will be sent in the clear unless TLS encryption is
14913 being used on this connection.
14914 Because of this, you may want to set the LDAP feature
14915 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
14916 or the feature
14917 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14918 if you are going to be providing a password.
14919 <P><UL>
14920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14921 </UL>
14923 &lt;End of help on this topic&gt;
14924 </BODY>
14925 </HTML>
14926 ======= h_config_ldap_opts_impl =======
14927 <HTML>
14928 <HEAD>
14929 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
14930 </HEAD>
14931 <BODY>
14932 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
14934 Set this to have lookups done to this server implicitly from the composer.
14935 If an address doesn't look like a fully-qualified address, it will be looked
14936 up in your address books, and if it doesn't match a nickname there, then it
14937 will be looked up on the LDAP servers that have this feature set.
14938 The lookups will also be done when using the address completion feature
14939 (TAB command) in the composer if any of the serves have this feature set.
14940 Also see the LDAP feature
14941 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
14942 and the Setup/Config feature
14943 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14945 &lt;End of help on this topic&gt;
14946 </BODY>
14947 </HTML>
14948 ======= h_config_ldap_opts_tls =======
14949 <HTML>
14950 <HEAD>
14951 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
14952 </HEAD>
14953 <BODY>
14954 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
14956 When connecting to this server Alpine will attempt to use TLS encryption
14957 on the connection.
14958 Also see the closely related feature
14959 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14961 Note that if this option is set, then 
14962 <A HREF="h_config_ldap_opts_ldaps">
14963 &quot;Require-LDAPS-On-Connection&quot;</A>
14964 can not be enabled for this server. You must disable this feature in
14965 order to use 
14966 <A HREF="h_config_ldap_opts_ldaps">
14967 &quot;Require-LDAPS-On-Connection&quot;</A>
14969 &lt;End of help on this topic&gt;
14970 </BODY>
14971 </HTML>
14972 ======= h_config_ldap_opts_tlsmust =======
14973 <HTML>
14974 <HEAD>
14975 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
14976 </HEAD>
14977 <BODY>
14978 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
14980 When connecting to this server Alpine will attempt to use TLS encryption
14981 on the connection.
14982 If the StartTLS operation fails then the connection will not be used.
14984 Note that if this option is set, then 
14985 <A HREF="h_config_ldap_opts_ldaps">
14986 &quot;Require-LDAPS-On-Connection&quot;</A>
14987 can not be enabled for this server. You must disable this feature in
14988 order to use 
14989 <A HREF="h_config_ldap_opts_ldaps">
14990 &quot;Require-LDAPS-On-Connection&quot;</A>
14992 &lt;End of help on this topic&gt;
14993 </BODY>
14994 </HTML>
14995 ======= h_config_ldap_opts_ldaps =======
14996 <HTML>
14997 <HEAD>
14998 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
14999 </HEAD>
15000 <BODY>
15001 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15003 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15004 on the connection.
15006 This feature can not be used along with 
15007 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15008  or
15009 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15010 If you want to connect using StartTLS to this server, you must disable
15011 this feature first.
15013 &lt;End of help on this topic&gt;
15014 </BODY>
15015 </HTML>
15016 ====== h_config_ldap_opts_rhs =====
15017 <HTML>
15018 <HEAD>
15019 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15020 </HEAD>
15021 <BODY>
15022 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15024 Normally implicit LDAP lookups from the composer are done only for the
15025 strings you type in from the composer screen. In other words, you type in
15026 something in the To or CC field and press return, then the string is looked up.
15027 First that string is looked up in your address books. If a match is found
15028 there, then the results of that match are looked up again. If you place
15029 a string in your address book that you want to have looked up on the LDAP
15030 directory server, you need to turn on this feature. If you set this feature
15031 for a server, you almost always will also want to set the
15032 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15033 feature. An example might serve to best illustrate this feature.
15035 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15036 entry with an
15037 address of pres@whitehouse.gov, then you might put an entry in your address
15038 book that looks like:
15040 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15041 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15043 Now, when you type &quot;bill&quot; into an
15044 address field in the composer Alpine will
15045 find the &quot;bill&quot; entry in your address book.
15046 It will replace &quot;bill&quot; with
15047 &quot;William Clinton&quot;.
15048 It will then search for an entry with that nickname
15049 in your address book and not find one. If this feature
15050 is set, Alpine will then attempt to lookup
15051 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15052 pres@whitehouse.gov.
15054 A better way to accomplish the same thing is probably to use the feature
15055 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15057 &lt;End of help on this topic&gt;
15058 </BODY>
15059 </HTML>
15060 ====== h_config_ldap_opts_ref =====
15061 <HTML>
15062 <HEAD>
15063 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15064 </HEAD>
15065 <BODY>
15066 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15068 Normally when you save the results of an LDAP directory lookup to your
15069 address book the results of the lookup are saved. If this feature is set
15070 and the entry being saved was found on this directory server, then the
15071 search criteria is saved instead of the results of the search. When this
15072 address book entry is used in the future, instead of copying the results
15073 from the address book the directory lookup will be done again. This could
15074 be useful if the copied result might become stale because the data on
15075 the directory server changes (for example, the entry's email address changes).
15076 You probably don't want to set this feature if the server is at all slow or
15077 unreliable.
15079 The way this actually works is that instead of saving the email address
15080 in your address book, Alpine saves enough information to look up the same
15081 directory entry again. In particular, it saves the server name and the
15082 distinguished name of the entry. It's possible that the server administrators
15083 might change the format of distinguished names on the server, or that the
15084 entry might be removed from the server. If Alpine notices this, you will be warned
15085 and a backup copy of the email address will be used. You may want to create
15086 a new entry in this case, since you will get the annoying warning every
15087 time you use the old entry. You may do that by Saving the entry to a new
15088 nickname in the same address book. You will be asked whether or not you
15089 want to use the backup email address.
15091 A related feature in the Setup/Config screen is
15092 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15094 &lt;End of help on this topic&gt;
15095 </BODY>
15096 </HTML>
15097 ======= h_config_ldap_opts_nosub =======
15098 <HTML>
15099 <HEAD>
15100 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15101 </HEAD>
15102 <BODY>
15103 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15105 Spaces in your input are normally handled specially.
15106 Each space character is replaced
15109 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15111 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15112 The reason this is done is so the input string
15114 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15116 (which is converted to &quot;Greg* Donald&quot;) will match
15117 the names &quot;Greg Donald&quot;,
15118 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15119 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15120 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15121 then it would also match the name &quot;Greg Donaldson&quot;.
15123 Turning on this feature will disable this substitution.
15125 &lt;End of help on this topic&gt;
15126 </BODY>
15127 </HTML>
15128 ====== h_config_ldap_searchtypes =======
15129 <HTML>
15130 <HEAD>
15131 <TITLE>LDAP OPTION: Search-Type</TITLE>
15132 </HEAD>
15133 <BODY>
15134 <H1>LDAP OPTION: Search-Type</H1>
15136 This affects the way that LDAP searches are done.
15137 In particular, this tells the server where to look for the string to be matched.
15138 If set to &quot;name&quot; then the string that is being searched for will
15139 be compared with the string in the
15140 &quot;Name&quot; field on the server
15141 (technically, it is the &quot;commonname&quot; field on the server).
15142 &quot;Surname&quot; means we're looking for a
15143 match in the &quot;Surname&quot; field on the
15144 server (actually the &quot;sn&quot; field).
15145 &quot;Givenname&quot; really is &quot;givenname&quot;
15146 and &quot;email&quot; is the electronic mail address (this is actually the field
15147 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15148 The other three types are combinations of
15149 the types listed so far. &quot;Name-or-email&quot;
15150 means the string should appear
15151 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15152 Likewise, &quot;surname-or-givenname&quot;
15153 means &quot;surname&quot; OR &quot;givenname&quot;
15154 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15156 This search TYPE is combined with the
15157 search <A HREF="h_config_ldap_searchrules">RULE</A>
15158 to form the actual search query.
15160 The usual default value for this
15161 option is &quot;sur-or-given-or-name-or-email&quot;.
15162 This type of search may be slow on some servers.
15163 Try &quot;name-or-email&quot;, which is often
15164 faster, or just &quot;name&quot; if the performance seems to be a problem.
15166 Some servers have been configured with different attribute names for
15167 these four fields.
15168 In other words, instead of using the attribute name &quot;mail&quot;
15169 for the email address field, the server might be configured to use something
15170 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15171 Alpine can be configured to use these different attribute names by using
15172 the four configuration options:
15173 <P><UL>
15174 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15175 </UL>
15176 <P><UL>
15177 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15178 </UL>
15179 <P><UL>
15180 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15181 </UL>
15182 <P><UL>
15183 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15184 </UL>
15186 &lt;End of help on this topic&gt;
15187 </BODY>
15188 </HTML>
15189 ====== h_config_ldap_searchrules =======
15190 <HTML>
15191 <HEAD>
15192 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15193 </HEAD>
15194 <BODY>
15195 <H1>LDAP OPTION: Search-Rule</H1>
15197 This affects the way that LDAP searches are done.
15198 If set to &quot;equals&quot; then
15199 only exact matches count.
15200 &quot;Contains&quot; means that the string you type in
15201 is a substring of what you are matching against.
15202 &quot;Begins-with&quot; and &quot;ends-with&quot;
15203 mean that the string starts or ends with the string you type in.
15205 Spaces in your input are normally handled specially, but you can turn that
15206 special handling off with the
15207 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15208 feature.
15210 The usual default value for this option is &quot;begins-with&quot;.
15212 &lt;End of help on this topic&gt;
15213 </BODY>
15214 </HTML>
15215 ======= h_config_ldap_email_attr =======
15216 <HTML>
15217 <HEAD>
15218 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15219 </HEAD>
15220 <BODY>
15221 <H1>LDAP OPTION: EmailAttribute</H1>
15223 This is the name of the attribute that is searched for when looking for
15224 an email address. The default value for this option is &quot;mail&quot; or
15225 &quot;electronicmail&quot;.
15226 If the server you are using uses a different attribute name for the email
15227 address, put that attribute name here.
15229 This will affect the search filter used if your Search-Type is one that
15230 contains a search for &quot;email&quot;.
15231 It will also cause the attribute value matching this attribute name to be used
15232 as the email address when you look up an entry from the composer.
15234 &lt;End of help on this topic&gt;
15235 </BODY>
15236 </HTML>
15237 ======= h_config_ldap_sn_attr =======
15238 <HTML>
15239 <HEAD>
15240 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15241 </HEAD>
15242 <BODY>
15243 <H1>LDAP OPTION: SurnameAttribute</H1>
15245 This is the name of the attribute that is searched for when looking for
15246 the surname of the entry. The default value for this option is &quot;sn&quot;.
15247 If the server you are using uses a different attribute name for the surname,
15248 put that attribute name here.
15249 This will affect the search filter used if your Search-Type is one that
15250 contains a search for &quot;surname&quot;.
15252 &lt;End of help on this topic&gt;
15253 </BODY>
15254 </HTML>
15255 ======= h_config_ldap_gn_attr =======
15256 <HTML>
15257 <HEAD>
15258 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15259 </HEAD>
15260 <BODY>
15261 <H1>LDAP OPTION: GivennameAttribute</H1>
15263 This is the name of the attribute that is searched for when looking for
15264 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15265 If the server you are using uses a different attribute name for the given name,
15266 put that attribute name here.
15267 This will affect the search filter used if your Search-Type is one that
15268 contains a search for &quot;givenname&quot;.
15270 &lt;End of help on this topic&gt;
15271 </BODY>
15272 </HTML>
15273 ======= h_config_ldap_cn_attr =======
15274 <HTML>
15275 <HEAD>
15276 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15277 </HEAD>
15278 <BODY>
15279 <H1>LDAP OPTION: NameAttribute</H1>
15281 This is the name of the attribute that is searched for when looking for
15282 the name of the entry. The default value for this option is &quot;cn&quot;, which
15283 stands for common name.
15284 If the server you are using uses a different attribute name for the name,
15285 put that attribute name here.
15286 This will affect the search filter used if your Search-Type is one that
15287 contains a search for &quot;name&quot;.
15289 &lt;End of help on this topic&gt;
15290 </BODY>
15291 </HTML>
15292 ======= h_config_ldap_time =======
15293 <HTML>
15294 <HEAD>
15295 <TITLE>LDAP OPTION: Timelimit</TITLE>
15296 </HEAD>
15297 <BODY>
15298 <H1>LDAP OPTION: Timelimit</H1>
15300 This places a limit on the number of seconds the LDAP search will continue.
15301 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15302 may place limits of their own on searches.
15304 &lt;End of help on this topic&gt;
15305 </BODY>
15306 </HTML>
15307 ======= h_config_ldap_size =======
15308 <HTML>
15309 <HEAD>
15310 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15311 </HEAD>
15312 <BODY>
15313 <H1>LDAP OPTION: Sizelimit</H1>
15315 This places a limit on the number of entries returned by the LDAP server.
15316 A value of 0 means no limit. The default is 0. Note that some servers
15317 may place limits of their own on searches.
15319 &lt;End of help on this topic&gt;
15320 </BODY>
15321 </HTML>
15322 ======= h_config_ldap_cust =======
15323 <HTML>
15324 <HEAD>
15325 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15326 </HEAD>
15327 <BODY>
15328 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15330 This one is for advanced users only! If you define this, then the
15331 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15332 However, the feature
15333 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15334 is still in effect.
15335 That is, the space substitution will take place even in a custom filter unless
15336 you disable it.
15338 If your LDAP service stops working and you suspect it might be because
15339 of your custom filter, just delete this filter and try using the
15340 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15341 Another option that sometimes causes trouble is the
15342 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15344 This variable may be set to the string representation of an LDAP search
15345 filter (see RFC1960). In the places where you want the address string to be
15346 substituted in, put a '%s' in this filter string. Here are some examples:
15348 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15349 is equivalent to the &quot;Custom-Search-Filter&quot;
15350 <PRE>
15351      (cn=%s*)
15352 </PRE>
15353 When you try to match against the string &quot;string&quot; the program replaces
15354 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15355 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15357 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15358 of &quot;contains&quot; is equivalent to
15359 <PRE>
15360      (|(cn=*%s*)(mail=*%s*))
15361 </PRE>
15363 If your server uses a different attribute <EM>name</EM> than
15364 Alpine uses by default,
15365 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15366 then you may be able to use one or more of the four attribute configuration
15367 options instead of defining a custom filter:
15368 <P><UL>
15369 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15370 </UL>
15371 <P><UL>
15372 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15373 </UL>
15374 <P><UL>
15375 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15376 </UL>
15377 <P><UL>
15378 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15379 </UL>
15381 &lt;End of help on this topic&gt;
15382 </BODY>
15383 </HTML>
15384 ======= h_composer_abook_comment =======
15385 <HTML>
15386 <HEAD>
15387 <TITLE>Addressbook Comment Explained</TITLE>
15388 </HEAD>
15389 <BODY>
15390 This is a comment to help you remember what this entry is. The WhereIs
15391 command searches comments so that it is easier to find an entry with a comment
15392 you know about attached to it. This field is not used in the outgoing message.
15394 Look <A HREF="h_edit_nav_cmds">here</A>
15395 to see the available Editing and Navigation commands.
15397 &lt;End of help on this topic&gt;
15398 </BODY>
15399 </HTML>
15400 ======= h_composer_abook_addrs =======
15401 <HTML>
15402 <HEAD>
15403 <TITLE>Addressbook Lists</TITLE>
15404 </HEAD>
15405 <BODY>
15406 <H1>Addressbook Lists</H1>
15408 This is a list of addresses to send to when sending to this address book
15409 entry.  Each member of the list may be an address or another nickname from
15410 any of your address books.  If it is an address, it is OK to include the
15411 full name field as well as the electronic address portion of that address.
15412 For example, the following are all legitimate entries in this field:
15414 <DL><DT>&nbsp;</DT>
15415 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15416 <DD>jdoe@some.domain
15417 <DD>John Doe &lt;jdoe@some.domain&gt;
15418 </DL>
15420 The addresses should be listed separated by commas, just like you would
15421 enter them from the composer.
15425 The only difference between a distribution list and a simple entry with a
15426 single address, is that a distribution list has more than one address   
15427 listed in the Addresses: field, whereas a simple personal entry has just  
15428 one address.
15432 For individual address book entries, if there is a full name in the
15433 Fullname: field (filling in the Fullname: field is not required), it is
15434 used.  If the full name is specified in the Address: field and not in the
15435 Fullname: field, then the full name from the Address: field is used.
15439 If you type the nickname of a distribution list from one of your address 
15440 books in the Lcc: field, then the full name of that list is used in the  
15441 To: field.  If you put a list in the To: or Cc: fields, that list will be
15442 expanded into all of its addresses.  If the list has a full name, then
15443 that will appear at the beginning of the addresses.
15445 <DL><DT>&nbsp;</DT>
15446 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15447 &lt;sal@here.there&gt;
15448 </DL>
15450 If the first address in the distribution list also has a full name, then
15451 the list full name and that full name are combined into something like the
15452 following:
15454 <DL><DT>&nbsp;</DT>
15455 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15456 </DL>
15459 If you specify a list via Lcc, the full name is used in the To: line.  If
15460 you specify a list in the To: or Cc: fields, then it uses the same method
15461 as for individual entries for filling in the full name.
15465 For help with editing and navigation commands, check the Help for the
15466 Nickname: field.
15469 &lt;End of help on this topic&gt;
15470 </BODY>
15471 </HTML>
15472 ======= h_config_role_nick =======
15473 <HTML>
15474 <HEAD>
15475 <TITLE>Nickname Explained</TITLE>
15476 </HEAD>
15477 <BODY>
15478 <H1>Nickname Explained</H1>
15480 This is a nickname to help you.
15481 You should have a different nickname for each role you define.
15482 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15483 pick a role to edit.
15484 It will also be used when you send a message to let you know you are
15485 sending with a different role than you use by default, and
15486 it will be useful for choosing a role when composing with the Role command
15487 or when composing with one of the Role Uses set to With Confirmation.
15488 This field is not used in the outgoing message.
15490 Look <A HREF="h_edit_nav_cmds">here</A>
15491 to see the available Editing and Navigation commands.
15493 &lt;End of help on this topic&gt;
15494 </BODY>
15495 </HTML>
15496 ======= h_config_role_comment =======
15497 <HTML>
15498 <HEAD>
15499 <TITLE>Comment Explained</TITLE>
15500 </HEAD>
15501 <BODY>
15502 <H1>Comment Explained</H1>
15504 This is a comment to help you.
15505 This comment does not play any functional role, it is simply an optional
15506 comment to help you remember what the rule is for.
15508 Look <A HREF="h_edit_nav_cmds">here</A>
15509 to see the available Editing and Navigation commands.
15511 &lt;End of help on this topic&gt;
15512 </BODY>
15513 </HTML>
15514 ======= h_config_other_nick =======
15515 <HTML>
15516 <HEAD>
15517 <TITLE>Nickname Explained</TITLE>
15518 </HEAD>
15519 <BODY>
15520 <H1>Nickname Explained</H1>
15522 This is a nickname to help you.
15523 You should have a different nickname for each rule you define.
15524 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15525 pick a rule to edit.
15527 Look <A HREF="h_edit_nav_cmds">here</A>
15528 to see the available Editing and Navigation commands.
15530 &lt;End of help on this topic&gt;
15531 </BODY>
15532 </HTML>
15533 ======= h_config_score_nick =======
15534 <HTML>
15535 <HEAD>
15536 <TITLE>Nickname Explained</TITLE>
15537 </HEAD>
15538 <BODY>
15539 <H1>Nickname Explained</H1>
15541 This is a nickname to help you.
15542 You should have a different nickname for each scoring rule you define.
15543 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15544 pick a rule to edit.
15546 Look <A HREF="h_edit_nav_cmds">here</A>
15547 to see the available Editing and Navigation commands.
15549 &lt;End of help on this topic&gt;
15550 </BODY>
15551 </HTML>
15552 ======= h_config_incol_nick =======
15553 <HTML>
15554 <HEAD>
15555 <TITLE>Nickname Explained</TITLE>
15556 </HEAD>
15557 <BODY>
15558 <H1>Nickname Explained</H1>
15560 This is a nickname to help you.
15561 You should have a different nickname for each color rule you define.
15562 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15563 pick a rule to edit.
15565 Look <A HREF="h_edit_nav_cmds">here</A>
15566 to see the available Editing and Navigation commands.
15568 &lt;End of help on this topic&gt;
15569 </BODY>
15570 </HTML>
15571 ======= h_config_filt_nick =======
15572 <HTML>
15573 <HEAD>
15574 <TITLE>Nickname Explained</TITLE>
15575 </HEAD>
15576 <BODY>
15577 <H1>Nickname Explained</H1>
15579 This is a nickname to help you.
15580 You should have a different nickname for each filtering rule you define.
15581 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15582 pick a rule to edit.
15584 Look <A HREF="h_edit_nav_cmds">here</A>
15585 to see the available Editing and Navigation commands.
15587 &lt;End of help on this topic&gt;
15588 </BODY>
15589 </HTML>
15590 ======= h_config_score_topat =======
15591 <HTML>
15592 <HEAD>
15593 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15594 </HEAD>
15595 <BODY>
15596 <H1>&quot;To:&quot; Pattern Explained</H1>
15598 Any text you enter as the &quot;To pattern&quot;
15599 will be compared to the recipients from the To: line of
15600 the message being scored.
15601 When the text you entered matches
15602 all or part of the To: line of a message, then the Score Value
15603 you have specified will be added to the score for the message.
15604 (Any other non-blank parts of the Pattern must match, too.)
15607 You may enter a complete email address, part of an address, or a
15608 list of addresses or partial addresses.
15609 For example:
15612 <PRE>
15613  To pattern = friend@public.com
15615  To pattern = rated.net
15617  To pattern = xxx@adults.com
15618               admin@msn.com
15619               fool@motleyfool.com
15620 </PRE>
15623 Each of those are valid To patterns.
15626 Messages match those patterns if any of the
15627 addresses in the To: line of the message contains the pattern.
15628 If the pattern is a list of patterns
15629 (like the last example above) then it is a match if any of the patterns in
15630 the list match any of the addresses in the To: line.
15631 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15632 present for a match.
15633 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15634 address2 must be present.
15635 That is exactly what using a list does.)
15638 Some messages may be &quot;bounced&quot; to you, and will
15639 have a &quot;Resent-To:&quot; header line.
15640 If the message contains a Resent-To: line
15641 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15642 Alpine will look for
15643 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15644 the original To: line.
15647 When entering a pattern, you may choose an address from your address book
15648 with the &quot;T&quot; command.
15651 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15652 &quot;!&quot; &quot;toggle NOT&quot; command.
15653 This changes the meaning of the To pattern so that it has the opposite meaning.
15654 It will be considered a match if there are no matches between the
15655 addresses in the To: line and the list of To patterns.
15657 Don't make the mistake of putting the &quot;!&quot; in the data field for
15658 the pattern.
15659 For example, if you type the characters &quot;!frizzle&quot; into the To
15660 pattern, the pattern will look like:
15662 <PRE>
15663  To pattern = !frizzle
15664 </PRE>
15666 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15667 In order to match messages that do not have &quot;frizzle&quot; in
15668 their To field, first type the characters &quot;frizzle&quot; followed
15669 by carriage return for the value of the To pattern, then negate it
15670 by typing the &quot;!&quot; command.
15671 It should end up looking like
15673 <PRE>
15674  ! To pattern = frizzle
15675 </PRE>
15677 You are not limited to using the six standard header patterns that are
15678 normally shown (To, From, Sender, Cc, News, and Subject).
15679 You may add any other header to a Pattern by
15680 using the &quot;eXtraHdr&quot; command to specify a different
15681 message header line; and then the Add or Change command to fill in
15682 a pattern for the new header line, just like you would for a standard header.
15684 A technicality: Since comma is the character used to separate multiple
15685 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15686 you want to include a literal comma in the field.
15687 In other words, if you type a backslash followed by a comma it will
15688 be interpreted as a comma by Alpine, instead of as a separator between
15689 pattern values.
15690 All other backslashes are literal backslashes and should not be escaped.
15692 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15693 for more information on Patterns.
15695 Look <A HREF="h_edit_nav_cmds">here</A>
15696 to see the available Editing and Navigation commands.
15698 &lt;End of help on this topic&gt;
15699 </BODY>
15700 </HTML>
15701 ======= h_config_incol_topat =======
15702 <HTML>
15703 <HEAD>
15704 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15705 </HEAD>
15706 <BODY>
15707 <H1>&quot;To:&quot; Pattern Explained</H1>
15709 Any text you enter as the &quot;To pattern&quot;
15710 will be compared to the recipients from the To: lines of
15711 the messages in the index.
15712 When the text you entered matches
15713 all or part of the To: line of a message, then the Index Line Color you have
15714 specified will be used for that line in the index.
15715 (Any other non-blank parts of the Pattern must match, too.)
15718 You may enter a complete email address, part of an address, or a
15719 list of addresses or partial addresses.
15720 For example:
15723 <PRE>
15724  To pattern = friend@public.com
15725  To pattern = rated.net
15726  To pattern = xxx@adults.com
15727               admin@msn.com
15728               fool@motleyfool.com
15729 </PRE>
15732 Each of those are valid To patterns.
15735 Messages match those patterns if any of the
15736 addresses in the To: line of the message contains the pattern.
15737 If the pattern is a list of patterns
15738 (like the last example above) then it is a match if any of the patterns in
15739 the list match any of the addresses in the To: line.
15740 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15741 present for a match.
15742 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15743 address2 must be present.
15744 That is exactly what using a list does.)
15747 Some messages may be &quot;bounced&quot; to you, and will
15748 have a &quot;Resent-To:&quot; header line.
15749 If the message contains a Resent-To: line
15750 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15751 Alpine will look for
15752 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15753 the original To: line.
15756 When entering a pattern, you may choose an address from your address book
15757 with the &quot;T&quot; command.
15760 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15761 &quot;!&quot; &quot;toggle NOT&quot; command.
15762 This changes the meaning of the To pattern so that it has the opposite meaning.
15763 It will be considered a match if there are no matches between the
15764 addresses in the To: line and the list of To patterns.
15766 Don't make the mistake of putting the &quot;!&quot; in the data field for
15767 the pattern.
15768 For example, if you type the characters &quot;!frizzle&quot; into the To
15769 pattern, the pattern will look like:
15771 <PRE>
15772  To pattern = !frizzle
15773 </PRE>
15775 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15776 In order to match messages that do not have &quot;frizzle&quot; in
15777 their To field, first type the characters &quot;frizzle&quot; followed
15778 by carriage return for the value of the To pattern, then negate it
15779 by typing the &quot;!&quot; command.
15780 It should end up looking like
15782 <PRE>
15783  ! To pattern = frizzle
15784 </PRE>
15787 You are not limited to using the six standard header patterns that are
15788 normally shown (To, From, Sender, Cc, News, and Subject).
15789 You may add any other header to a Pattern by
15790 using the &quot;eXtraHdr&quot; command to specify a different
15791 message header line; and then the Add or Change command to fill in
15792 a pattern for the new header line, just like you would for a standard header.
15794 A technicality: Since comma is the character used to separate multiple
15795 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15796 you want to include a literal comma in the field.
15797 In other words, if you type a backslash followed by a comma it will
15798 be interpreted as a comma by Alpine, instead of as a separator between
15799 pattern values.
15800 All other backslashes are literal backslashes and should not be escaped.
15802 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15803 for more information on Patterns.
15805 Look <A HREF="h_edit_nav_cmds">here</A>
15806 to see the available Editing and Navigation commands.
15808 &lt;End of help on this topic&gt;
15809 </BODY>
15810 </HTML>
15811 ======= h_config_other_topat =======
15812 <HTML>
15813 <HEAD>
15814 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15815 </HEAD>
15816 <BODY>
15817 <H1>&quot;To:&quot; Pattern Explained</H1>
15819 For some of the OTHER RULES actions, there is no message that is being
15820 compared against.
15821 If that is the case, then only the Current Folder Type is checked.
15822 In particular, this To pattern is ignored.
15823 Actions that fall into this category include both
15824 Sort Order and Index Format.
15826 A technicality: Since comma is the character used to separate multiple
15827 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15828 you want to include a literal comma in the field.
15829 In other words, if you type a backslash followed by a comma it will
15830 be interpreted as a comma by Alpine, instead of as a separator between
15831 pattern values.
15832 All other backslashes are literal backslashes and should not be escaped.
15834 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15835 for more information on Patterns.
15837 Look <A HREF="h_edit_nav_cmds">here</A>
15838 to see the available Editing and Navigation commands.
15840 &lt;End of help on this topic&gt;
15841 </BODY>
15842 </HTML>
15843 ======= h_config_filt_topat =======
15844 <HTML>
15845 <HEAD>
15846 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15847 </HEAD>
15848 <BODY>
15849 <H1>&quot;To:&quot; Pattern Explained</H1>
15851 Any text you enter as the &quot;To pattern&quot;
15852 will be compared to the recipients from the To: line of
15853 messages when Alpine opens folders.
15854 When the text you entered matches
15855 all or part of the To: line of a message, then the Filter Action you have
15856 specified will be carried out.
15857 (Any other non-blank parts of the Pattern must match, too.)
15860 You may enter a complete email address, part of an address, or a
15861 list of addresses or partial addresses.
15862 For example:
15865 <PRE>
15866  To pattern = friend@public.com
15867  To pattern = rated.net
15868  To pattern = xxx@adults.com
15869               admin@msn.com
15870               fool@motleyfool.com
15871 </PRE>
15874 Each of those are valid To patterns.
15877 Messages match those patterns if any of the
15878 addresses in the To: line of the message contains the pattern.
15879 If the pattern is a list of patterns
15880 (like the last example above) then it is a match if any of the patterns in
15881 the list match any of the addresses in the To: line.
15882 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15883 present for a match.
15884 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15885 address2 must be present.
15886 That is exactly what using a list does.)
15889 Some messages may be &quot;bounced&quot; to you, and will
15890 have a &quot;Resent-To:&quot; header line.
15891 If the message contains a Resent-To: line
15892 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15893 Alpine will look for
15894 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15895 the original To: line.
15898 When entering a pattern, you may choose an address from your address book
15899 with the &quot;T&quot; command.
15902 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15903 &quot;!&quot; &quot;toggle NOT&quot; command.
15904 This changes the meaning of the To pattern so that it has the opposite meaning.
15905 It will be considered a match if there are no matches between the
15906 addresses in the To: line and the list of To patterns.
15908 Don't make the mistake of putting the &quot;!&quot; in the data field for
15909 the pattern.
15910 For example, if you type the characters &quot;!frizzle&quot; into the To
15911 pattern, the pattern will look like:
15913 <PRE>
15914  To pattern = !frizzle
15915 </PRE>
15917 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15918 In order to match messages that do not have &quot;frizzle&quot; in
15919 their To field, first type the characters &quot;frizzle&quot; followed
15920 by carriage return for the value of the To pattern, then negate it
15921 by typing the &quot;!&quot; command.
15922 It should end up looking like
15924 <PRE>
15925  ! To pattern = frizzle
15926 </PRE>
15929 You are not limited to using the six standard header patterns that are
15930 normally shown (To, From, Sender, Cc, News, and Subject).
15931 You may add any other header to a Pattern by
15932 using the &quot;eXtraHdr&quot; command to specify a different
15933 message header line; and then the Add or Change command to fill in
15934 a pattern for the new header line, just like you would for a standard header.
15936 A technicality: Since comma is the character used to separate multiple
15937 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15938 you want to include a literal comma in the field.
15939 In other words, if you type a backslash followed by a comma it will
15940 be interpreted as a comma by Alpine, instead of as a separator between
15941 pattern values.
15942 All other backslashes are literal backslashes and should not be escaped.
15944 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15945 for more information on Patterns.
15947 Look <A HREF="h_edit_nav_cmds">here</A>
15948 to see the available Editing and Navigation commands.
15950 &lt;End of help on this topic&gt;
15951 </BODY>
15952 </HTML>
15953 ======= h_config_role_topat =======
15954 <HTML>
15955 <HEAD>
15956 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15957 </HEAD>
15958 <BODY>
15959 <H1>&quot;To:&quot; Pattern Explained</H1>
15961 Any text you enter as the &quot;To pattern&quot;
15962 will be compared to the recipients from the To: line of
15963 the message being replied to or forwarded.
15964 (Any other non-blank parts of the Pattern must match, too.)
15965 In the case of the Compose command, this pattern and the other header
15966 patterns are ignored.
15969 You may enter a complete email address, part of an address, or a
15970 list of addresses or partial addresses.
15971 For example:
15974 <PRE>
15975  To pattern = friend@public.com
15976  To pattern = rated.net
15977  To pattern = xxx@adults.com
15978               admin@msn.com
15979               fool@motleyfool.com
15980 </PRE>
15983 Each of those are valid To patterns.
15986 Messages match those patterns if any of the
15987 addresses in the To: line of the message contains the pattern.
15988 If the pattern is a list of patterns
15989 (like the last example above) then it is a match if any of the patterns in
15990 the list match any of the addresses in the To: line.
15991 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15992 present for a match.
15993 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15994 address2 must be present.
15995 That is exactly what using a list does.)
15998 Some messages may be &quot;bounced&quot; to you, and will
15999 have a &quot;Resent-To:&quot; header line.
16000 If the message contains a Resent-To: line
16001 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16002 Alpine will look for
16003 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16004 the original To: line.
16007 When entering a pattern, you may choose an address from your address book
16008 with the &quot;T&quot; command.
16011 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16012 &quot;!&quot; &quot;toggle NOT&quot; command.
16013 This changes the meaning of the To pattern so that it has the opposite meaning.
16014 It will be considered a match if there are no matches between the
16015 addresses in the To: line and the list of To patterns.
16017 Don't make the mistake of putting the &quot;!&quot; in the data field for
16018 the pattern.
16019 For example, if you type the characters &quot;!frizzle&quot; into the To
16020 pattern, the pattern will look like:
16022 <PRE>
16023  To pattern = !frizzle
16024 </PRE>
16026 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16027 In order to match messages that do not have &quot;frizzle&quot; in
16028 their To field, first type the characters &quot;frizzle&quot; followed
16029 by carriage return for the value of the To pattern, then negate it
16030 by typing the &quot;!&quot; command.
16031 It should end up looking like
16033 <PRE>
16034  ! To pattern = frizzle
16035 </PRE>
16038 You are not limited to using the six standard header patterns that are
16039 normally shown (To, From, Sender, Cc, News, and Subject).
16040 You may add any other header to a Pattern by
16041 using the &quot;eXtraHdr&quot; command to specify a different
16042 message header line; and then the Add or Change command to fill in
16043 a pattern for the new header line, just like you would for a standard header.
16045 A technicality: Since comma is the character used to separate multiple
16046 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16047 you want to include a literal comma in the field.
16048 In other words, if you type a backslash followed by a comma it will
16049 be interpreted as a comma by Alpine, instead of as a separator between
16050 pattern values.
16051 All other backslashes are literal backslashes and should not be escaped.
16053 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16054 for more information on Patterns.
16056 Look <A HREF="h_edit_nav_cmds">here</A>
16057 to see the available Editing and Navigation commands.
16059 &lt;End of help on this topic&gt;
16060 </BODY>
16061 </HTML>
16062 ======= h_config_role_frompat =======
16063 <HTML>
16064 <HEAD>
16065 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16066 </HEAD>
16067 <BODY>
16068 <H1>&quot;From:&quot; Pattern Explained</H1>
16070 This is just like the &quot;To pattern&quot; except that it is compared with
16071 the address in the From: line of the message
16072 instead of the addresses from the To: line.
16073 See the help for the To pattern for more information on header patterns.
16075 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16076 for more information on Patterns.
16078 Look <A HREF="h_edit_nav_cmds">here</A>
16079 to see the available Editing and Navigation commands.
16081 &lt;End of help on this topic&gt;
16082 </BODY>
16083 </HTML>
16084 ======= h_config_role_senderpat =======
16085 <HTML>
16086 <HEAD>
16087 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16088 </HEAD>
16089 <BODY>
16090 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16092 This is just like the &quot;To pattern&quot; except that it is compared with
16093 the address from the Sender: line of the message
16094 instead of the addresses from the To: line.
16095 See the help for the To pattern for more information on header patterns.
16097 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16098 for more information on Patterns.
16100 Look <A HREF="h_edit_nav_cmds">here</A>
16101 to see the available Editing and Navigation commands.
16103 &lt;End of help on this topic&gt;
16104 </BODY>
16105 </HTML>
16106 ======= h_config_role_ccpat =======
16107 <HTML>
16108 <HEAD>
16109 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16110 </HEAD>
16111 <BODY>
16112 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16114 This is just like the &quot;To pattern&quot; except that it is compared with
16115 the addresses from the Cc: line of the message
16116 instead of the addresses from the To: line.
16117 See the help for the To pattern for more information on header patterns.
16119 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16120 for more information on Patterns.
16122 Look <A HREF="h_edit_nav_cmds">here</A>
16123 to see the available Editing and Navigation commands.
16125 &lt;End of help on this topic&gt;
16126 </BODY>
16127 </HTML>
16128 ======= h_config_role_recippat =======
16129 <HTML>
16130 <HEAD>
16131 <TITLE>Recipient Pattern Explained</TITLE>
16132 </HEAD>
16133 <BODY>
16134 <H1>Recipient Pattern Explained</H1>
16136 This is just like the &quot;To pattern&quot; except that it is compared with
16137 the addresses from both the To: line and the Cc: line of the
16138 message instead of just the addresses from the To: line.
16139 In other words, it is considered a match if the pattern matches
16140 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16141 in the Cc: line.
16142 (Notice that defining the Recipient pattern does not have the same
16143 effect as defining both the To and Cc patterns.
16144 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16145 It is equivalent to having two different rules;
16146 one with a To pattern and the other with the same Cc pattern.)
16148 A technicality: Since comma is the character used to separate multiple
16149 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16150 you want to include a literal comma in the field.
16151 In other words, if you type a backslash followed by a comma it will
16152 be interpreted as a comma by Alpine, instead of as a separator between
16153 pattern values.
16154 All other backslashes are literal backslashes and should not be escaped.
16156 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16157 for more information on Patterns.
16159 Look <A HREF="h_edit_nav_cmds">here</A>
16160 to see the available Editing and Navigation commands.
16162 &lt;End of help on this topic&gt;
16163 </BODY>
16164 </HTML>
16165 ======= h_config_role_particpat =======
16166 <HTML>
16167 <HEAD>
16168 <TITLE>Participant Pattern Explained</TITLE>
16169 </HEAD>
16170 <BODY>
16171 <H1>Participant Pattern Explained</H1>
16173 This is just like the &quot;To pattern&quot; except that it is compared with
16174 the addresses from the From: line, the To: line, and the Cc: line of the
16175 message instead of just the addresses from the To: line.
16176 In other words, it is considered a match if the pattern matches
16177 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16178 in the To: line, <EM>OR</EM> an address in the Cc: line.
16179 (Notice that defining the Participant pattern does not have the same
16180 effect as defining all of the From, To, and Cc patterns.
16181 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16182 From <EM>AND</EM> To <EM>AND</EM> Cc.
16183 It is equivalent to having three different rules;
16184 one with a From pattern, another with the same To pattern, and a third with
16185 the same Cc pattern.)
16187 A technicality: Since comma is the character used to separate multiple
16188 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16189 you want to include a literal comma in the field.
16190 In other words, if you type a backslash followed by a comma it will
16191 be interpreted as a comma by Alpine, instead of as a separator between
16192 pattern values.
16193 All other backslashes are literal backslashes and should not be escaped.
16195 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16196 for more information on Patterns.
16198 Look <A HREF="h_edit_nav_cmds">here</A>
16199 to see the available Editing and Navigation commands.
16201 &lt;End of help on this topic&gt;
16202 </BODY>
16203 </HTML>
16204 ======= h_config_role_newspat =======
16205 <HTML>
16206 <HEAD>
16207 <TITLE>News Pattern Explained</TITLE>
16208 </HEAD>
16209 <BODY>
16210 <H1>News Pattern Explained</H1>
16212 If this pattern is non-blank, then for this rule to be considered a
16213 match, at least one of the newsgroups from
16214 the Newsgroups line of the message must match this pattern.
16215 If this pattern is a list of patterns, then at least one of the
16216 newsgroups must match at least one of the patterns.
16217 (Any other non-blank parts of the Pattern must match, too.)
16219 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16220 &quot;!&quot; &quot;toggle NOT&quot; command.
16221 This changes the meaning of the News pattern so that it has the opposite meaning.
16222 It will be considered a match if there are no matches between the
16223 addresses in the Newsgroups: line and the list of News patterns.
16225 Don't make the mistake of putting the &quot;!&quot; in the data field for
16226 the pattern.
16227 For example, if you type the characters &quot;!frizzle&quot; into the News
16228 pattern, the pattern will look like:
16230 <PRE>
16231  News pattern = !frizzle
16232 </PRE>
16234 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16235 In order to match messages that do not have &quot;frizzle&quot; in
16236 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16237 by carriage return for the value of the News pattern, then negate it
16238 by typing the &quot;!&quot; command.
16239 It should end up looking like
16241 <PRE>
16242  ! News pattern = frizzle
16243 </PRE>
16245 A technicality: Since comma is the character used to separate multiple
16246 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16247 you want to include a literal comma in the field.
16248 In other words, if you type a backslash followed by a comma it will
16249 be interpreted as a comma by Alpine, instead of as a separator between
16250 pattern values.
16251 All other backslashes are literal backslashes and should not be escaped.
16254 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16255 for more information on Patterns.
16257 Look <A HREF="h_edit_nav_cmds">here</A>
16258 to see the available Editing and Navigation commands.
16260 &lt;End of help on this topic&gt;
16261 </BODY>
16262 </HTML>
16263 ======= h_config_role_subjpat =======
16264 <HTML>
16265 <HEAD>
16266 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16267 </HEAD>
16268 <BODY>
16269 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16271 This is similar to the other parts of the Pattern.
16272 It is compared with
16273 the contents from the Subject of the message.
16275 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16276 for more information on Patterns.
16278 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16279 &quot;!&quot; &quot;toggle NOT&quot; command.
16280 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16281 It will be considered a match if there are no matches between the
16282 text in the Subject: line and the list of Subject patterns.
16285 If you wish to have a header pattern that is not one of the six standard
16286 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16288 A technicality: Since comma is the character used to separate multiple
16289 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16290 you want to include a literal comma in the field.
16291 In other words, if you type a backslash followed by a comma it will
16292 be interpreted as a comma by Alpine, instead of as a separator between
16293 pattern values.
16294 All other backslashes are literal backslashes and should not be escaped.
16296 Look <A HREF="h_edit_nav_cmds">here</A>
16297 to see the available Editing and Navigation commands.
16299 &lt;End of help on this topic&gt;
16300 </BODY>
16301 </HTML>
16302 ======= h_config_role_alltextpat =======
16303 <HTML>
16304 <HEAD>
16305 <TITLE>AllText Pattern Explained</TITLE>
16306 </HEAD>
16307 <BODY>
16308 <H1>AllText Pattern Explained</H1>
16310 This is similar to the header patterns.
16311 Instead of comparing with text in a particular header field it 
16312 is compared with all of the text in the message header and body.
16314 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16315 &quot;!&quot; &quot;toggle NOT&quot; command.
16316 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16317 It will be considered a match if there are no matches between the
16318 text of the message and the list of AllText patterns.
16320 Don't make the mistake of putting the &quot;!&quot; in the data field for
16321 the pattern.
16322 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16323 pattern, the pattern will look like:
16325 <PRE>
16326  AllText pattern = !frizzle
16327 </PRE>
16329 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16330 In order to match messages that do not have &quot;frizzle&quot; in
16331 the text of the message, first type the characters &quot;frizzle&quot; followed
16332 by carriage return for the value of the AllText pattern, then negate it
16333 by typing the &quot;!&quot; command.
16334 It should end up looking like
16336 <PRE>
16337  ! AllText pattern = frizzle
16338 </PRE>
16340 It is possible that you may notice degraded performance when using
16341 AllText Patterns.
16343 A technicality: Since comma is the character used to separate multiple
16344 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16345 you want to include a literal comma in the field.
16346 In other words, if you type a backslash followed by a comma it will
16347 be interpreted as a comma by Alpine, instead of as a separator between
16348 pattern values.
16349 All other backslashes are literal backslashes and should not be escaped.
16351 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16352 for more information on Patterns.
16354 Look <A HREF="h_edit_nav_cmds">here</A>
16355 to see the available Editing and Navigation commands.
16357 &lt;End of help on this topic&gt;
16358 </BODY>
16359 </HTML>
16360 ======= h_config_role_bodytextpat =======
16361 <HTML>
16362 <HEAD>
16363 <TITLE>BodyText Pattern Explained</TITLE>
16364 </HEAD>
16365 <BODY>
16366 <H1>BodyText Pattern Explained</H1>
16368 This is similar to the header patterns.
16369 Instead of comparing with text in a particular header field it 
16370 is compared with all of the text in the message body.
16372 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16373 &quot;!&quot; &quot;toggle NOT&quot; command.
16374 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16375 It will be considered a match if there are no matches between the
16376 text of the body of the message and the list of BodyText patterns.
16378 Don't make the mistake of putting the &quot;!&quot; in the data field for
16379 the pattern.
16380 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16381 pattern, the pattern will look like:
16383 <PRE>
16384  BdyText pattern = !frizzle
16385 </PRE>
16387 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16388 In order to match messages that do not have &quot;frizzle&quot; in
16389 their BodyText, first type the characters &quot;frizzle&quot; followed
16390 by carriage return for the value of the BodyText pattern, then negate it
16391 by typing the &quot;!&quot; command.
16392 It should end up looking like
16394 <PRE>
16395  ! BodyText pattern = frizzle
16396 </PRE>
16398 It is possible that you may notice degraded performance when using
16399 BodyText Patterns.
16401 A technicality: Since comma is the character used to separate multiple
16402 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16403 you want to include a literal comma in the field.
16404 In other words, if you type a backslash followed by a comma it will
16405 be interpreted as a comma by Alpine, instead of as a separator between
16406 pattern values.
16407 All other backslashes are literal backslashes and should not be escaped.
16409 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16410 for more information on Patterns.
16412 Look <A HREF="h_edit_nav_cmds">here</A>
16413 to see the available Editing and Navigation commands.
16415 &lt;End of help on this topic&gt;
16416 </BODY>
16417 </HTML>
16418 ======= h_config_role_charsetpat =======
16419 <HTML>
16420 <HEAD>
16421 <TITLE>Character Set Pattern Explained</TITLE>
16422 </HEAD>
16423 <BODY>
16424 <H1>Character Set Pattern Explained</H1>
16426 A message may use one or more character sets.
16427 This part of the Pattern matches messages that make use of
16428 certain specified character sets.
16429 It will be considered a match if a message uses any of the character
16430 sets in the list you give here.
16433 When filling in a value for this field, you may use
16434 the &quot;T&quot; command, which presents you with a large list of
16435 possible character sets to choose from.
16436 You may also just type in the name of a character set, and it need not
16437 be one that Alpine knows about.
16440 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16441 GB2312) you may also use some shorthand names that Alpine provides.
16442 These names are more understandable shorthand names for sets of 
16443 character set names.
16444 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16445 Selecting one of these shorthand names is equivalent to selecting all of
16446 the character sets that make up the set.
16447 You can see all of these shorthand names and the lists of character sets
16448 they stand for by typing the &quot;T&quot; command.
16451 For the purposes of this Pattern,
16452 Alpine will search through a message for all of the text parts and
16453 collect the character sets declared for each part.
16454 It will also look in the Subject line for a character set used there.
16455 Alpine does not actually look at the text of the message or the text
16456 of the Subject to determine if a declared character set is actually
16457 used, it looks only at the declarations themselves in the MIME part headers
16458 and in the Subject.
16461 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16462 &quot;!&quot; &quot;toggle NOT&quot; command.
16463 This changes the meaning of the Character Set pattern so that
16464 it has the opposite meaning.
16465 It will be considered a match if none of the character sets in the
16466 list are used in a message.
16468 Don't make the mistake of putting the &quot;!&quot; in the data field for
16469 the pattern.
16470 For example, if you type the characters &quot;!GB2312&quot; into the
16471 Character Set pattern, the pattern will look like:
16473 <PRE>
16474  Charset pattern = !GB2312
16475 </PRE>
16477 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16478 In order to match messages that do not have the
16479 character set &quot;GB2312&quot;
16480 set, first type the characters &quot;GB2312&quot; followed
16481 by carriage return for the value of the Character Set pattern, then negate it
16482 by typing the &quot;!&quot; command.
16483 It should end up looking like
16485 <PRE>
16486  ! Charset pattern = GB2312
16487 </PRE>
16489 A technicality: Since comma is the character used to separate multiple
16490 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16491 you want to include a literal comma in the field.
16492 In other words, if you type a backslash followed by a comma it will
16493 be interpreted as a comma by Alpine, instead of as a separator between
16494 pattern values.
16495 All other backslashes are literal backslashes and should not be escaped.
16497 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16498 for more information on Patterns.
16500 Look <A HREF="h_edit_nav_cmds">here</A>
16501 to see the available Editing and Navigation commands.
16503 &lt;End of help on this topic&gt;
16504 </BODY>
16505 </HTML>
16506 ======= h_config_role_keywordpat =======
16507 <HTML>
16508 <HEAD>
16509 <TITLE>Keyword Pattern Explained</TITLE>
16510 </HEAD>
16511 <BODY>
16512 <H1>Keyword Pattern Explained</H1>
16514 A folder may have user-defined keywords.
16515 These are similar to the Important flag, which the user may set using the
16516 Flag command.
16517 The difference is that the Important flag is always present for each folder.
16518 User-defined keywords are picked by the user.
16519 You may add new keywords by defining them in the
16520 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16521 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16522 the Flag command may be used to set or clear the keyword on individual messages.
16523 If you have given a keyword a nickname when configuring it,
16524 that nickname may be used instead of the actual keyword.
16527 When filling in a value for this field, it may be easiest to use
16528 the &quot;T&quot; command, which presents you with a list of the keywords
16529 you have defined to choose from.
16532 This part of the Pattern matches messages with certain keywords set.
16533 It will be considered a match if a message has any of the keywords in the
16534 list set.
16535 A keyword that you have not defined using the
16536 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16537 will not be a match.
16540 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16541 &quot;!&quot; &quot;toggle NOT&quot; command.
16542 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16543 It will be considered a match if none of the keywords in the list are set
16544 for a message.
16545 A keyword that you have not defined using the
16546 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16547 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16549 Don't make the mistake of putting the &quot;!&quot; in the data field for
16550 the pattern.
16551 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16552 pattern, the pattern will look like:
16554 <PRE>
16555  Keyword pattern = !frizzle
16556 </PRE>
16558 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16559 In order to match messages that do not have the keyword &quot;frizzle&quot;
16560 set, first type the characters &quot;frizzle&quot; followed
16561 by carriage return for the value of the Keyword pattern, then negate it
16562 by typing the &quot;!&quot; command.
16563 It should end up looking like
16565 <PRE>
16566  ! Keyword pattern = frizzle
16567 </PRE>
16569 A technicality: Since comma is the character used to separate multiple
16570 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16571 you want to include a literal comma in the field.
16572 In other words, if you type a backslash followed by a comma it will
16573 be interpreted as a comma by Alpine, instead of as a separator between
16574 pattern values.
16575 All other backslashes are literal backslashes and should not be escaped.
16577 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16578 for more information on Patterns.
16580 Look <A HREF="h_edit_nav_cmds">here</A>
16581 to see the available Editing and Navigation commands.
16583 &lt;End of help on this topic&gt;
16584 </BODY>
16585 </HTML>
16586 ======= h_config_role_arbpat =======
16587 <HTML>
16588 <HEAD>
16589 <TITLE>Extra Header Patterns Explained</TITLE>
16590 </HEAD>
16591 <BODY>
16592 <H1>Extra Header Patterns Explained</H1>
16594 The header patterns that come after the Participant pattern but before the 
16595 AllText pattern are extra header patterns that you have added to a rule's
16596 Pattern. These are just like the other header patterns except that
16597 the contents of the particular header listed on the left hand side will
16598 be used for comparisons.
16600 The &quot;eXtraHdr&quot; command may be used to add more of these
16601 header patterns to the rule you are editing.
16603 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16604 extra header pattern from the rule you are editing.
16606 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16607 &quot;!&quot; &quot;toggle NOT&quot; command.
16608 This changes the meaning of the pattern so that it has the opposite meaning.
16609 It will be considered a match if there are no matches between the
16610 text in the header line and the list of patterns.
16612 Don't make the mistake of putting the &quot;!&quot; in the data field for
16613 the pattern.
16614 For example, if you type the characters &quot;!frizzle&quot; into the
16615 pattern, the pattern will look like:
16617 <PRE>
16618  Xyz pattern = !frizzle
16619 </PRE>
16621 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16622 In order to match messages that do not have &quot;frizzle&quot; in
16623 their Xyz field, first type the characters &quot;frizzle&quot; followed
16624 by carriage return for the value of the pattern, then negate it
16625 by typing the &quot;!&quot; command.
16626 It should end up looking like
16628 <PRE>
16629  ! Xyz pattern = frizzle
16630 </PRE>
16633 A technicality: Since comma is the character used to separate multiple
16634 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16635 you want to include a literal comma in the field.
16636 In other words, if you type a backslash followed by a comma it will
16637 be interpreted as a comma by Alpine, instead of as a separator between
16638 pattern values.
16639 All other backslashes are literal backslashes and should not be escaped.
16641 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16642 for more information on Patterns.
16644 Look <A HREF="h_edit_nav_cmds">here</A>
16645 to see the available Editing and Navigation commands.
16647 &lt;End of help on this topic&gt;
16648 </BODY>
16649 </HTML>
16650 ======= h_config_role_cat_cmd =======
16651 <HTML>
16652 <HEAD>
16653 <TITLE>Categorizer Command Explained</TITLE>
16654 </HEAD>
16655 <BODY>
16656 <H1>Categorizer Command Explained</H1>
16658 This is a command that is run with its standard input set to the message
16659 being checked and its standard output discarded.
16660 The full directory path should be specified.
16661 The command will be run and then its exit status will be checked against
16662 the Exit Status Interval, which defaults to just the value zero.
16663 If the exit status of the command falls in the interval, it is considered
16664 a match, otherwise it is not a match.
16667 This option may actually be a list of commands.
16668 The first one that exists and is executable is used.
16669 That makes it possible to use the same configuration with Unix Alpine and
16670 PC-Alpine.
16673 If none of the commands in the list exists and is executable then the rule
16674 is <EM>not</EM> a match.
16675 If it is possible that the command may not exist, you should be careful
16676 to structure your rules so that nothing destructive
16677 happens when the command does not exist.
16678 For example, you might have a filter that filters away spam when there is
16679 a match but does nothing when there is not a match.
16680 That would cause no harm if the command didn't exist.
16681 However, if you have a filter that filters away spam when there is not
16682 a match and keeps it when there is a match, that would filter everything
16683 if the categorizer command didn't exist.
16685 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16686 setup for the bogofilter filter.
16689 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16690 for more information on Patterns.
16692 Look <A HREF="h_edit_nav_cmds">here</A>
16693 to see the available Editing and Navigation commands.
16695 &lt;End of help on this topic&gt;
16696 </BODY>
16697 </HTML>
16698 ======= h_config_role_cat_cmd_example =======
16699 <HTML>
16700 <HEAD>
16701 <TITLE>Categorizer Command Example</TITLE>
16702 </HEAD>
16703 <BODY>
16704 <H1>Categorizer Command Example</H1>
16706 Bogofilter
16707 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16708 is a mail filter that attempts to classify mail as spam or
16709 non-spam using statistical analysis of the message content.
16710 When run with no arguments and a message as standard input, it exits with
16711 exit status 0 if it thinks a message is spam and 1 if it thinks
16712 it is not spam.
16713 To use bogofilter as your Categorizer Command you would simply set Command to
16714 the pathname of the bogofilter program.
16715 For example,
16717 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16719 Exit status of zero is what you are interested in, so you'd set the
16720 Exit Status Interval to
16722 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16725 In order to prevent downloading an entire huge message to check for spam, you
16726 might want to set the Character Limit to a few thousand characters (the
16727 assumption being that the spam will reveal itself in those characters)
16729 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16732 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16733 be to move the message to a spam folder.
16734 It would usually be wise to also check the &quot;Message is Recent&quot;
16735 part of the rule so that messages are only checked when they first arrive,
16736 and to restrict the Current Folder Type to just your INBOX.
16737 The reason for checking only Recent messages is to save the time it takes
16738 to run bogofilter on each message.
16739 As an experiment, you might start out by using this in an Indexcolor Rule
16740 instead of a Filter Rule.
16741 In that case, you probably wouldn't check the Recent checkbox.
16743 The use described above assumes that you are somehow maintaining bogofilter's
16744 database of words associated with spam and non-spam messages.
16745 One way to start your database would be to select a bunch of spam messages
16746 in Alpine (you might Save spam messages to a special folder or use Alpine's
16747 Select command to select several) and then Apply
16748 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16749 a pipe command to the spam messages.
16750 For example, you could have a shell script or an alias
16751 called <EM>this_is_spam</EM>, which would simply be the command
16753 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16756 It is probably best to use the pipe command's Raw Text, With Delimiter,
16757 and Free Output options,
16758 which are at the bottom of the screen when you type the pipe command.
16759 That's because bogofilter expects the raw message as input, and uses
16760 the Delimiters to tell when a new message starts.
16761 You would not need to use a separate pipe for each message, because
16762 bogofilter can handle multiple messages at once.
16764 Similarly, you would select a group of non-spam messages
16765 and run them through a <EM>this_is_nonspam</EM> script
16766 that was something like
16768 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16771 For the more adventurous, the next step might be to automate the upkeep of
16772 the bogofilter database.
16773 It might make more sense to have bogofilter be part of the delivery process,
16774 but it is also possible to do it entirely from within Alpine.
16775 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16776 the &quot;-u&quot; argument will cause bogofilter to update the database.
16778 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16780 You'd want a couple more aliases or shell scripts called something like
16781 <EM>change_to_spam</EM>
16783 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16786 <EM>change_to_nonspam</EM>
16788 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16790 When you run across a message in your INBOX that should have been
16791 classified as spam you would pipe it to the change_to_spam script, and
16792 when you run across a message in your spam folder that should have been
16793 left in your INBOX you would pipe it through change_to_nonspam.
16796 There is a technical problem with this approach.
16797 Alpine may check your filters more than once.
16798 In particular, every time you start Alpine the filters will be checked for
16799 each message.
16800 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16801 then Alpine will recheck for matches in messages that have changed state
16802 at the time you close the folder and before expunging.
16803 This is usually ok.
16804 However, in this case it is a problem because the command
16806 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16808 has the side effect of updating the database.
16809 So you run the risk of updating the database multiple times for a single
16810 message instead of updating it just once per message.
16811 There are some ways to work around this problem.
16812 What you need is a way to mark the message after you have run the filter.
16813 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16814 Besides having the filter move the message to a spam folder, also have it
16815 set the Bogo keyword.
16816 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16817 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16818 This rule can only set the Bogo keyword for the messages that it matches.
16819 You will also need to add a second rule right after this one that
16820 matches all the messages that don't have the Bogo keyword set
16821 (put the keyword in the Keyword pattern and toggle
16822 the Not with the ! command)
16823 and takes the action of setting it.
16824 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16825 (and so it won't re-run the bogofilter command) if the keyword is already
16826 set.
16828 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16829 on all messages that don't have the Bogo keyword set.
16830 This will have the side effect of inserting that message in the bogofilter
16831 database, match or not.
16832 If this rule matches (it is spam), the Bogo keyword will be set and
16833 the message will be moved to a spam folder.
16834 If it does not match, the
16835 following rule will mark the message by turning on the keyword.
16836 This second rule should be a non-terminating
16837 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16838 rule so that it doesn't stop the filtering process before the rest of
16839 your rules are consulted.
16842 In summary, the first rule is something like
16843 <PRE>
16844   Nickname          = bogofilter -u rule
16845   Current Folder Type =
16846                (*) Specific
16847                    Folder = INBOX
16849   ! Keyword pattern = Bogo
16851   External Categorizer Commands =
16852        Command              = /usr/local/bin/bogofilter -u
16853        Exit Status Interval = (0,0)
16854        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16856   Filter Action =
16857        (*) Move
16858            Folder = spam
16859   
16860   Set These Keywords   = Bogo
16861 </PRE>
16863 and the following rule is
16864 <PRE>
16865   Nickname          = Set Bogo Keyword
16866   Current Folder Type =
16867                (*) Specific
16868                    Folder = INBOX
16870   ! Keyword pattern = Bogo
16872   Filter Action =
16873        (*) Just Set Message Status
16875   Set These Keywords   = Bogo
16877   Features =
16878       [X]  dont-stop-even-if-rule-matches
16879 </PRE>
16881 If it is possible for you to insert bogofilter in the delivery process instead
16882 of having it called from Alpine you could prevent having to wait
16883 for the bogofilter processing while you read your mail.
16884 You would have bogofilter add a header to the message at the time of delivery
16885 that identified it as spam or nonspam.
16886 With this method, you could avoid using a Categorizer Command while running Alpine,
16887 and just match on the header instead.
16888 You might still want to use the scripts mentioned above to initialize the
16889 database or to re-classify wrongly classified messages.
16892 Finally, it isn't for the faint-hearted,
16893 but it is also possible to run bogofilter from PC-Alpine.
16894 You can install Cygwin from
16895 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
16896 then compile bogofilter in the cygwin environment, and run it from
16897 within PC-Alpine.
16898 You would end up with a Categorizer command that looked something like
16900 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
16902 Note that the &quot;.exe&quot; extension is explicit,
16903 and that the bogofilter.exe executable should be in the same directory
16904 as cygwin1.dll.
16907 &lt;End of help on this topic&gt;
16908 </BODY>
16909 </HTML>
16910 ======= h_config_role_cat_status =======
16911 <HTML>
16912 <HEAD>
16913 <TITLE>Exit Status Interval Explained</TITLE>
16914 </HEAD>
16915 <BODY>
16916 <H1>Exit Status Interval Explained</H1>
16918 The categorizer command is run and the result is the exit status of
16919 that command.
16920 If that exit status falls in the Exit Status Interval
16921 then it is considered a match, otherwise it is not a match.
16922 Of course for the entire rule to match, it must also be checked against
16923 the other defined parts of the Pattern.
16925 The Exit Status Interval defaults to the single value 0 (zero).
16926 If you define it, it should be set to something like:
16928 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
16930 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
16931 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
16932 positive and negative integers.
16934 Actually, a list of intervals may be used if you wish.
16935 A list would look like
16937 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
16939 When there is an Exit Status Interval defined, it is a match if the exit status
16940 of the categorizer command is contained in any of the intervals.
16941 The intervals include both endpoints.
16943 The default interval is
16945 <CENTER><SAMP>(0,0)</SAMP></CENTER>
16947 and it matches only if the command exits with exit status equal to zero.
16950 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16951 for more information on Patterns.
16953 Look <A HREF="h_edit_nav_cmds">here</A>
16954 to see the available Editing and Navigation commands.
16956 &lt;End of help on this topic&gt;
16957 </BODY>
16958 </HTML>
16959 ======= h_config_role_cat_limit =======
16960 <HTML>
16961 <HEAD>
16962 <TITLE>Character Limit Explained</TITLE>
16963 </HEAD>
16964 <BODY>
16965 <H1>Character Limit Explained</H1>
16967 Setting this option makes it possible to limit how much of the message
16968 is made available to the categorizer command as input.
16969 The default value (-1) means that the entire message is fed to the
16970 command.
16971 A value of 0 (zero) means that only the headers of the message are
16972 made available.
16973 A positive integer means that the headers plus that many characters from
16974 the body of the message are passed to the categorizer.
16977 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16978 for more information on Patterns.
16980 Look <A HREF="h_edit_nav_cmds">here</A>
16981 to see the available Editing and Navigation commands.
16983 &lt;End of help on this topic&gt;
16984 </BODY>
16985 </HTML>
16986 ======= h_config_role_age =======
16987 <HTML>
16988 <HEAD>
16989 <TITLE>Age Interval Explained</TITLE>
16990 </HEAD>
16991 <BODY>
16992 <H1>Age Interval Explained</H1>
16994 The Age Interval, if defined, is part of the Pattern.
16995 If you use this, it should be set to something like:
16997 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
16999 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17000 The special value &quot;INF&quot; may be used for the max value.
17001 It represents infinity.
17003 In rare cases it may be useful to use the more general form of the value,
17004 which is a comma-separated list of intervals.
17005 It would look something like:
17007 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17009 When there is an Age Interval defined, it is a match if the age, in days, of
17010 the message is contained in the interval.
17011 The interval includes both endpoints.
17012 If the option is set to a list of intervals then it is a match if the
17013 age of the message is contained in any of the intervals.
17015 Even though this option is called Age, it isn't actually
17016 the <EM>age</EM> of the message.
17017 Instead, it is how many days ago the message arrived in one of your folders.
17018 If the current time is a little past midnight, then a message that arrived
17019 just before midnight arrived yesterday, even though the message is only
17020 a few minutes old.
17021 By default, the date being used is not the date in the Date
17022 header of the message.
17023 It is the date that the message arrived in one of your folders.
17024 When you Save a message from one folder to another that arrival date
17025 is preserved.
17026 If you would like to use the date in the Date header that is possible.
17027 Turn on the option
17028 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17029 near the bottom of the rule definition.
17031 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17032 The age interval
17034 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17036 matches all messages that arrived on the day before yesterday.
17037 The interval
17039 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17041 matches all messages that arrived at least 180 days before today.
17042 The interval
17044 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17046 matches all messages that arrived today or yesterday.
17049 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17050 for more information on Patterns.
17052 Look <A HREF="h_edit_nav_cmds">here</A>
17053 to see the available Editing and Navigation commands.
17055 &lt;End of help on this topic&gt;
17056 </BODY>
17057 </HTML>
17058 ======= h_config_role_size =======
17059 <HTML>
17060 <HEAD>
17061 <TITLE>Size Interval Explained</TITLE>
17062 </HEAD>
17063 <BODY>
17064 <H1>Size Interval Explained</H1>
17066 The Size Interval, if defined, is part of the Pattern.
17067 If you use this, it should be set to something like:
17069 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17071 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17072 The special value &quot;INF&quot; may be used for the max value.
17073 It represents infinity.
17075 In rare cases it may be useful to use the more general form of the value,
17076 which is a comma-separated list of intervals.
17077 It would look something like:
17079 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17081 When there is a Size Interval defined, it is a match if the size of
17082 the message is contained in the interval.
17083 The interval includes both endpoints.
17084 If the option is set to a list of intervals then it is a match if the
17085 size of the message is contained in any of the intervals.
17087 The size interval
17089 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17091 matches all messages with sizes greater than or equal to 10000, and less
17092 than or equal to 50000.
17093 The interval
17095 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17097 matches all messages with sizes greater than or equal to 100000.
17100 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17101 for more information on Patterns.
17103 Look <A HREF="h_edit_nav_cmds">here</A>
17104 to see the available Editing and Navigation commands.
17106 &lt;End of help on this topic&gt;
17107 </BODY>
17108 </HTML>
17109 ======= h_config_role_scorei =======
17110 <HTML>
17111 <HEAD>
17112 <TITLE>Score Interval Explained</TITLE>
17113 </HEAD>
17114 <BODY>
17115 <H1>Score Interval Explained</H1>
17117 The Score Interval, if defined, is part of the Pattern.
17118 If you use this, it should be set to something like:
17120 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17122 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17123 -32000 and 32000.
17124 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17125 the min and max values.
17126 These represent negative and positive infinity.
17128 Actually, the value may be a list of intervals rather than just a
17129 single interval if that is useful.
17130 The elements of the list are separated by commas like:
17132 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17134 When there is a Score Interval defined, it is a match if the score for
17135 the message is contained in any of the intervals.
17136 The intervals include both endpoints.
17137 The score for a message is calculated by looking at every scoring rule
17138 defined and adding up the Score Values for the rules that match the message.
17139 Scoring rules are created using the
17140 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17143 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17144 for more information on Patterns.
17146 Look <A HREF="h_edit_nav_cmds">here</A>
17147 to see the available Editing and Navigation commands.
17149 &lt;End of help on this topic&gt;
17150 </BODY>
17151 </HTML>
17152 ======= h_config_role_fldr_type =======
17153 <HTML>
17154 <HEAD>
17155 <TITLE>Current Folder Type Explained</TITLE>
17156 </HEAD>
17157 <BODY>
17158 <H1>Current Folder Type Explained</H1>
17160 The Current Folder Type is part of the role's Pattern.
17161 It refers to the type of the currently open folder, which is the folder
17162 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17163 In order for a role to be considered a match, the current folder must
17164 be of the type you set here.
17165 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17166 all what you might think.
17168 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17169 example, then
17170 that role will only be a match if the current folder is a newsgroup and
17171 the rest of the Pattern matches.
17172 The value &quot;Specific&quot; may be used when you want to limit the match
17173 to a specific folder (not just a specific type of folder), or to a list of
17174 specific folders.
17176 In order to match a specific folder you Select the &quot;Specific&quot;
17177 button <EM>AND</EM> fill in
17178 the name (or list of names) of
17179 the folder in the &quot;Folder List&quot; field.
17180 If the current folder is any of the folders in the list, that is considered
17181 a match.
17182 The name of each folder in the list may be either &quot;INBOX&quot;,
17183 the technical specification
17184 of the folder (like what appears in your configuration file) or, if the
17185 folder is one of your incoming folders, it may be the nickname you've given
17186 the folder.
17187 Here are a couple samples of specific folder names:
17189 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17191 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17193 The easiest way to fill in the &quot;Folder List&quot; field is to use
17194 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17195 highlighted, or to use the &quot;Take&quot; command with the configuration
17196 feature
17197 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17198 turned on.
17199 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17200 Current Folder Type is set to &quot;Specific&quot;, and any value that
17201 &quot;Folder List&quot; has is ignored unless the type
17202 is set to &quot;Specific&quot;.
17204 When reading a newsgroup, there may be a performance penalty
17205 incurred when collecting the information necessary to check a Pattern.
17206 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17208 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17209 for more information on Patterns.
17211 Look <A HREF="h_edit_nav_cmds">here</A>
17212 to see the available Editing and Navigation commands.
17214 &lt;End of help on this topic&gt;
17215 </BODY>
17216 </HTML>
17217 ======= h_config_filt_rule_type =======
17218 <HTML>
17219 <HEAD>
17220 <TITLE>Filter Action Explained</TITLE>
17221 </HEAD>
17222 <BODY>
17223 <H1>Filter Action Explained</H1>
17225 The Filter Action specifies the action to be taken when the Pattern is a
17226 match.
17227 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17228 &quot;Just Set Message Status&quot;.
17230 If it is set to &quot;Delete&quot;, then the message that matches the
17231 Pattern will be deleted from the open folder.
17233 If it is set to &quot;Move&quot;, then the name of the folder to which
17234 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17235 next line of the screen.
17236 A list of folders separated by commas may be given, in which case the
17237 message will be copied to all of the folders in the list before it is
17238 deleted.
17240 If it is set to neither of those two values (it is set to the value
17241 labeled &quot;Just Set Message Status&quot;) then the message status
17242 setting will happen
17243 but the message will not be deleted or moved.
17245 If you are Moving a message you may also set Message Status if you wish.
17247 The easiest way to fill in the &quot;Folder List&quot; field is to use
17248 the T command that is available when the &quot;Folder List&quot; line is
17249 highlighted.
17250 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17251 Filter Action is set to &quot;Move&quot;, and any value that
17252 &quot;Folder List&quot; has is ignored unless the type
17253 is set to &quot;Move&quot;.
17255 There are a few tokens that may be used in the names in the Folder List.
17256 They are all related to the date on which the filtering is taking place.
17257 The tokens are words surrounded by underscores.
17258 For example, if you want your filter to move messages to a folder named
17259 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17260 you could specify the folder as
17261 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17262 which would result in a file named something like
17263 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17265 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17266 which would result in a file named something like
17267 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17268 The available tokens are listed
17269 <A HREF="h_index_tokens">here</A>.
17271 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17272 for more information on Patterns.
17274 Look <A HREF="h_edit_nav_cmds">here</A>
17275 to see the available Editing and Navigation commands.
17277 &lt;End of help on this topic&gt;
17278 </BODY>
17279 </HTML>
17280 ======= h_config_score_fldr_type =======
17281 <HTML>
17282 <HEAD>
17283 <TITLE>Current Folder Type Explained</TITLE>
17284 </HEAD>
17285 <BODY>
17286 <H1>Current Folder Type Explained</H1>
17288 The Current Folder Type is part of the scoring rule's Pattern.
17289 It refers to the type of the folder that
17290 the message being scored is in.
17291 In order for a rule to be considered a match, the current folder must
17292 be of the type you set here.
17293 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17294 all what you might think.
17296 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17297 example, then
17298 that Pattern will only match if the current folder is a newsgroup and
17299 the rest of the Pattern matches.
17300 The value &quot;Specific&quot; may be used when you want to limit the match
17301 to a specific folder (not just a specific type of folder), or to a list of
17302 specific folders.
17304 In order to match a specific folder you Select the &quot;Specific&quot;
17305 button <EM>AND</EM> fill in
17306 the name (or list of names) of
17307 the folder in the &quot;Folder List&quot; field.
17308 If the current folder is any of the folders in the list, that is considered
17309 a match.
17310 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17311 of the folder (like what appears in your configuration file) or, if the
17312 folder is one of your incoming folders, it may be the nickname you've given
17313 the folder.
17314 Here are a couple samples of specific folder names:
17316 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17318 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17320 The easiest way to fill in the &quot;Folder List&quot; field is to use
17321 the T command that is available when the &quot;Folder List&quot; line is
17322 highlighted.
17323 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17324 Current Folder Type is set to &quot;Specific&quot;, and any value that
17325 &quot;Folder List&quot; has is ignored unless the type
17326 is set to &quot;Specific&quot;.
17328 When reading a newsgroup, there may be a performance penalty
17329 incurred when collecting the information necessary to check a Pattern.
17330 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17331 For example, if you have Index Line Coloring rules that have Score Intervals
17332 defined then the scores for all the visible messages will need to be calculated.
17333 If some of your Scoring rules have 
17334 a Current Folder Type of
17335 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17336 screen to draw more slowly when in a newsgroup.
17338 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17339 for more information on Patterns.
17341 Look <A HREF="h_edit_nav_cmds">here</A>
17342 to see the available Editing and Navigation commands.
17344 &lt;End of help on this topic&gt;
17345 </BODY>
17346 </HTML>
17347 ======= h_config_other_fldr_type =======
17348 <HTML>
17349 <HEAD>
17350 <TITLE>Current Folder Type Explained</TITLE>
17351 </HEAD>
17352 <BODY>
17353 <H1>Current Folder Type Explained</H1>
17355 The Current Folder Type is part of the rule's Pattern.
17356 It refers to the type of the folder being viewed.
17357 In order for a rule to be considered a match, the current folder must
17358 be of the type you set here.
17359 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17360 all what you might think.
17362 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17363 example, then
17364 that Pattern will only match if the current folder is a newsgroup.
17365 The value &quot;Specific&quot; may be used when you want to limit the match
17366 to a specific folder (not just a specific type of folder), or to a list of
17367 specific folders.
17369 In order to match a specific folder you Select the &quot;Specific&quot;
17370 button <EM>AND</EM> fill in
17371 the name (or list of names) of
17372 the folder in the &quot;Folder List&quot; field.
17373 If the current folder is any of the folders in the list, that is considered
17374 a match.
17375 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17376 of the folder (like what appears in your configuration file) or, if the
17377 folder is one of your incoming folders, it may be the nickname you've given
17378 the folder.
17379 Here are a couple samples of specific folder names:
17381 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17383 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17385 The easiest way to fill in the &quot;Folder List&quot; field is to use
17386 the T command that is available when the &quot;Folder List&quot; line is
17387 highlighted.
17388 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17389 Current Folder Type is set to &quot;Specific&quot;, and any value that
17390 &quot;Folder List&quot; has is ignored unless the type
17391 is set to &quot;Specific&quot;.
17393 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17394 for more information on Patterns.
17396 Look <A HREF="h_edit_nav_cmds">here</A>
17397 to see the available Editing and Navigation commands.
17399 &lt;End of help on this topic&gt;
17400 </BODY>
17401 </HTML>
17402 ======= h_config_incol_fldr_type =======
17403 <HTML>
17404 <HEAD>
17405 <TITLE>Current Folder Type Explained</TITLE>
17406 </HEAD>
17407 <BODY>
17408 <H1>Current Folder Type Explained</H1>
17410 The Current Folder Type is part of the Line Coloring rule's Pattern.
17411 It refers to the type of the folder for which the MESSAGE INDEX is
17412 being viewed.
17413 In order for a rule to be considered a match, the current folder must
17414 be of the type you set here.
17415 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17416 all what you might think.
17418 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17419 example, then
17420 that Pattern will only match if the current folder is a newsgroup and
17421 the rest of the Pattern matches.
17422 The value &quot;Specific&quot; may be used when you want to limit the match
17423 to a specific folder (not just a specific type of folder), or to a list of
17424 specific folders.
17426 In order to match a specific folder you Select the &quot;Specific&quot;
17427 button <EM>AND</EM> fill in
17428 the name (or list of names) of
17429 the folder in the &quot;Folder List&quot; field.
17430 If the current folder is any of the folders in the list, that is considered
17431 a match.
17432 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17433 of the folder (like what appears in your configuration file) or, if the
17434 folder is one of your incoming folders, it may be the nickname you've given
17435 the folder.
17436 Here are a couple samples of specific folder names:
17438 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17440 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17442 The easiest way to fill in the &quot;Folder List&quot; field is to use
17443 the T command that is available when the &quot;Folder List&quot; line is
17444 highlighted.
17445 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17446 Current Folder Type is set to &quot;Specific&quot;, and any value that
17447 &quot;Folder List&quot; has is ignored unless the type
17448 is set to &quot;Specific&quot;.
17450 When reading a newsgroup, there may be a performance penalty
17451 incurred when collecting the information necessary to check a Pattern.
17452 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17453 For example, a rule with a non-Normal Index Line Color
17454 and a Current Folder Type of
17455 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17456 screen to draw more slowly when in a newsgroup.
17458 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17459 for more information on Patterns.
17461 Look <A HREF="h_edit_nav_cmds">here</A>
17462 to see the available Editing and Navigation commands.
17464 &lt;End of help on this topic&gt;
17465 </BODY>
17466 </HTML>
17467 ======= h_config_filt_fldr_type =======
17468 <HTML>
17469 <HEAD>
17470 <TITLE>Current Folder Type Explained</TITLE>
17471 </HEAD>
17472 <BODY>
17473 <H1>Current Folder Type Explained</H1>
17475 The Current Folder Type is part of the Filtering rule's Pattern.
17476 It refers to the type of the folder for which the filtering is being done.
17477 In order for a rule to be considered a match, the current folder must
17478 be of the type you set here.
17479 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17480 all what you might think.
17482 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17483 example, then
17484 that Pattern will only match if the current folder is a newsgroup and
17485 the rest of the Pattern matches.
17486 The value &quot;Specific&quot; may be used when you want to limit the match
17487 to a specific folder (not just a specific type of folder), or to a list of
17488 specific folders.
17490 In order to match a specific folder you Select the &quot;Specific&quot;
17491 button <EM>AND</EM> fill in
17492 the name (or list of names) of
17493 the folder in the &quot;Folder List&quot; field.
17494 If the current folder is any of the folders in the list, that is considered
17495 a match.
17496 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17497 of the folder (like what appears in your configuration file) or, if the
17498 folder is one of your incoming folders, it may be the nickname you've given
17499 the folder.
17500 Here are a couple samples of specific folder names:
17502 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17504 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17506 The easiest way to fill in the &quot;Folder List&quot; field is to use
17507 the T command that is available when the &quot;Folder List&quot; line is
17508 highlighted.
17509 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17510 Current Folder Type is set to &quot;Specific&quot;, and any value that
17511 &quot;Folder List&quot; has is ignored unless the type
17512 is set to &quot;Specific&quot;.
17514 When reading a newsgroup, there may be a performance penalty
17515 incurred when collecting the information necessary to check a Pattern.
17516 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17517 For example, a rule with a Current Folder Type of either
17518 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17519 more slowly when opening a newsgroup.
17521 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17522 for more information on Patterns.
17524 Look <A HREF="h_edit_nav_cmds">here</A>
17525 to see the available Editing and Navigation commands.
17527 &lt;End of help on this topic&gt;
17528 </BODY>
17529 </HTML>
17530 ======= h_config_role_stat_imp =======
17531 <HTML>
17532 <HEAD>
17533 <TITLE>Message Important Status Explained</TITLE>
17534 </HEAD>
17535 <BODY>
17536 <H1>Message Important Status Explained</H1>
17538 This part of the Pattern may have one of three possible values.
17539 The default value is &quot;Don't care&quot;, which matches any message.
17540 The other two values are &quot;Yes&quot;, which means the message must be
17541 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17542 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17543 to be a match.
17545 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17546 for more information on Patterns.
17548 Look <A HREF="h_edit_nav_cmds">here</A>
17549 to see the available Editing and Navigation commands.
17551 &lt;End of help on this topic&gt;
17552 </BODY>
17553 </HTML>
17554 ======= h_config_role_stat_new =======
17555 <HTML>
17556 <HEAD>
17557 <TITLE>Message New Status Explained</TITLE>
17558 </HEAD>
17559 <BODY>
17560 <H1>Message New Status Explained</H1>
17562 This part of the Pattern may have one of three possible values.
17563 The default value is &quot;Don't care&quot;, which matches any message.
17564 The other two values are &quot;Yes&quot;, which means the message must be
17565 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17566 means the message must <EM>not</EM> be &quot;New&quot; in order
17567 to be a match.
17568 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17569 same as <EM>Seen</EM>.
17571 The nomenclature for New and Recent is a bit confusing:
17573 New means that the message is Unseen.
17574 It could have been in your mailbox for a long time but if you haven't looked
17575 at it, it is still considered New.
17576 That matches the default Alpine index display that shows an N for such a
17577 message.
17579 Recent means that the message was added to this folder since the last time
17580 you opened the folder.
17581 Alpine also shows an N by default for these types of messages.
17582 If you were to run two copies of Alpine that opened a folder one right after
17583 the other, a message would only show up as Recent in (at most) the first
17584 Alpine session.
17586 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17587 for more information on Patterns.
17589 Look <A HREF="h_edit_nav_cmds">here</A>
17590 to see the available Editing and Navigation commands.
17592 &lt;End of help on this topic&gt;
17593 </BODY>
17594 </HTML>
17595 ======= h_config_role_stat_recent =======
17596 <HTML>
17597 <HEAD>
17598 <TITLE>Message Recent Status Explained</TITLE>
17599 </HEAD>
17600 <BODY>
17601 <H1>Message Recent Status Explained</H1>
17603 This part of the Pattern may have one of three possible values.
17604 The default value is &quot;Don't care&quot;, which matches any message.
17605 The other two values are &quot;Yes&quot;, which means the message must be
17606 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17607 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17608 to be a match.
17609 &quot;Recent&quot; means that the message was added to the folder since
17610 the last time the folder was opened.
17611 If more than one mail client has the folder opened, the message will
17612 appear to be &quot;Recent&quot; to only one of the clients.
17614 The nomenclature for New and Recent is a bit confusing:
17616 New means that the message is Unseen.
17617 It could have been in your mailbox for a long time but if you haven't looked
17618 at it, it is still considered New.
17619 That matches the default Alpine index display that shows an N for such a
17620 message.
17622 Recent means that the message was added to this folder since the last time
17623 you opened the folder.
17624 Alpine also shows an N by default for these types of messages.
17625 If you were to run two copies of Alpine that opened a folder one right after
17626 the other, a message would only show up as Recent in (at most) the first
17627 Alpine session.
17629 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17630 for more information on Patterns.
17632 Look <A HREF="h_edit_nav_cmds">here</A>
17633 to see the available Editing and Navigation commands.
17635 &lt;End of help on this topic&gt;
17636 </BODY>
17637 </HTML>
17638 ======= h_config_role_stat_del =======
17639 <HTML>
17640 <HEAD>
17641 <TITLE>Message Deleted Status Explained</TITLE>
17642 </HEAD>
17643 <BODY>
17644 <H1>Message Deleted Status Explained</H1>
17646 This part of the Pattern may have one of three possible values.
17647 The default value is &quot;Don't care&quot;, which matches any message.
17648 The other two values are &quot;Yes&quot;, which means the message must be
17649 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17650 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17651 to be a match.
17653 If you are thinking of using this part of the Pattern as a way to prevent
17654 messages from being filtered more than once in a Filter Pattern,
17655 take a look at the Filter Option
17656 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17657 instead.
17658 It should work better than using this field since it will hide the filtered
17659 messages even if they are already Deleted.
17660 That option is at the bottom of the Filter configuration screen.
17662 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17663 for more information on Patterns.
17665 Look <A HREF="h_edit_nav_cmds">here</A>
17666 to see the available Editing and Navigation commands.
17668 &lt;End of help on this topic&gt;
17669 </BODY>
17670 </HTML>
17671 ======= h_config_role_stat_ans =======
17672 <HTML>
17673 <HEAD>
17674 <TITLE>Message Answered Status Explained</TITLE>
17675 </HEAD>
17676 <BODY>
17677 <H1>Message Answered Status Explained</H1>
17679 This part of the Pattern may have one of three possible values.
17680 The default value is &quot;Don't care&quot;, which matches any message.
17681 The other two values are &quot;Yes&quot;, which means the message must be
17682 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17683 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17684 to be a match.
17686 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17687 for more information on Patterns.
17689 Look <A HREF="h_edit_nav_cmds">here</A>
17690 to see the available Editing and Navigation commands.
17692 &lt;End of help on this topic&gt;
17693 </BODY>
17694 </HTML>
17695 ======= h_config_role_abookfrom =======
17696 <HTML>
17697 <HEAD>
17698 <TITLE>Address in Address Book Explained</TITLE>
17699 </HEAD>
17700 <BODY>
17701 <H1>Address in Address Book Explained</H1>
17703 This option gives you a way to match messages that contain an address
17704 that is in one of your address books.
17705 Only the simple entries in your address books are searched.
17706 Address book distribution lists are ignored!
17708 This part of the Pattern may have one of five possible values.
17709 The default value is &quot;Don't care&quot;, which matches any message.
17710 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17711 from the message must be in at least one of your
17712 address books in order to be a match.
17713 The value &quot;No, not in any address book&quot;
17714 means none of the addresses may
17715 be in any of your address books in order to be a match.
17717 The values &quot;Yes, in specific address books&quot; and
17718 &quot;No, not in any of specific address books&quot; are similar but instead
17719 of depending on all address books you are allowed to give a list of address
17720 books to look in.
17721 Usually this would be a single address book but it may be a
17722 list of address books as well.
17723 For each of these &quot;specific&quot; address book options you Select which
17724 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17725 name (or list of names) of the address book in the
17726 &quot;Abook List&quot; field.
17727 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17728 The easiest way to fill in the Abook List field it to use
17729 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17730 line is highlighted.
17731 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17732 option is set to one of the two &quot;Specific&quot;, values.
17734 The addresses from the message that are checked for are determined by the
17735 setting you have for &quot;Types of addresses to check for in address book&quot;.
17736 If you set this to &quot;From&quot; the From address from the message will
17737 be looked up in the address book.
17738 If you set it to &quot;To&quot; instead then the To addresses will be used.
17739 If any of the To addresses are in the address book then it is considered
17740 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17741 You could set it to both From and To, in which case all of the From and To
17742 addresses are used.
17743 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17744 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17745 exists or the From address if there is no Reply-To address.
17746 Same for the Sender address.
17748 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17749 for more information on Patterns.
17751 Look <A HREF="h_edit_nav_cmds">here</A>
17752 to see the available Editing and Navigation commands.
17754 &lt;End of help on this topic&gt;
17755 </BODY>
17756 </HTML>
17757 ======= h_config_inabook_from =======
17758 <HTML>
17759 <HEAD>
17760 <TITLE>From</TITLE>
17761 </HEAD>
17762 <BODY>
17763 <H1>From</H1>
17765 Setting the From line will cause the address from the From header line
17766 of the message to be checked for in the address book.
17768 &lt;End of help on this topic&gt;
17769 </BODY>
17770 </HTML>
17771 ======= h_config_inabook_replyto =======
17772 <HTML>
17773 <HEAD>
17774 <TITLE>Reply-To</TITLE>
17775 </HEAD>
17776 <BODY>
17777 <H1>Reply-To</H1>
17779 Setting the Reply-To line will cause the address from the Reply-To header line
17780 of the message to be checked for in the address book.
17781 However, if there is no Reply-To header line in the message the From header
17782 line will be used instead.
17783 We understand this is dumb but we don't have an easy way around it.
17785 &lt;End of help on this topic&gt;
17786 </BODY>
17787 </HTML>
17788 ======= h_config_inabook_sender =======
17789 <HTML>
17790 <HEAD>
17791 <TITLE>Sender</TITLE>
17792 </HEAD>
17793 <BODY>
17794 <H1>Sender</H1>
17796 Setting the Sender line will cause the address from the Sender header line
17797 of the message to be checked for in the address book.
17798 However, if there is no Sender header line in the message the From header
17799 line will be used instead.
17800 We understand this is dumb but we don't have an easy way around it.
17802 &lt;End of help on this topic&gt;
17803 </BODY>
17804 </HTML>
17805 ======= h_config_inabook_to =======
17806 <HTML>
17807 <HEAD>
17808 <TITLE>To</TITLE>
17809 </HEAD>
17810 <BODY>
17811 <H1>To</H1>
17813 Setting the To line will cause the address from the To header line
17814 of the message to be checked for in the address book.
17816 &lt;End of help on this topic&gt;
17817 </BODY>
17818 </HTML>
17819 ======= h_config_inabook_cc =======
17820 <HTML>
17821 <HEAD>
17822 <TITLE>CC</TITLE>
17823 </HEAD>
17824 <BODY>
17825 <H1>CC</H1>
17827 Setting the CC line will cause the address from the CC header line
17828 of the message to be checked for in the address book.
17830 &lt;End of help on this topic&gt;
17831 </BODY>
17832 </HTML>
17833 ======= h_config_role_stat_8bitsubj =======
17834 <HTML>
17835 <HEAD>
17836 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17837 </HEAD>
17838 <BODY>
17839 <H1>Raw 8-bit in Subject Explained</H1>
17841 It seems that lots of unwanted email contains unencoded 8-bit characters
17842 in the Subject.
17843 Normally, characters with the 8th bit set are not allowed in the Subject
17844 header unless they are MIME-encoded.
17845 This option gives you a way to match messages that have Subjects that
17846 contain unencoded 8-bit characters.
17848 This part of the Pattern may have one of three possible values.
17849 The default value is &quot;Don't care&quot;, which matches any message.
17850 The other two values are &quot;Yes&quot;, which means the Subject of
17851 the message must contain unencoded 8-bit characters (characters with the
17852 most significant bit set)
17853 in order to be a match; or &quot;No&quot;, which
17854 means the Subject must <EM>not</EM>
17855 contain unencoded 8-bit characters in order to be a match.
17857 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17858 for more information on Patterns.
17860 Look <A HREF="h_edit_nav_cmds">here</A>
17861 to see the available Editing and Navigation commands.
17863 &lt;End of help on this topic&gt;
17864 </BODY>
17865 </HTML>
17866 ======= h_config_role_bom =======
17867 <HTML>
17868 <HEAD>
17869 <TITLE>Beginning of Month</TITLE>
17870 </HEAD>
17871 <BODY>
17872 <H1>Beginning of Month</H1>
17874 This option gives you a limited ability to take different actions depending on whether
17875 this is the first time Alpine has been run this month or not.
17876 Though it would be nice to have such an option available, this is not the
17877 same as whether or not this is the first time a paricular folder has been
17878 opened this month.
17879 If you want some action (probably Filtering) to take place in a folder each
17880 month, then you will need to be sure that the folder is opened during the
17881 first Alpine session of the month in order for this option to be helpful.
17883 This part of the Pattern may have one of three possible values.
17884 The default value is &quot;Don't care&quot;, which matches any message.
17885 The other two values are &quot;Yes&quot;, which means this is the first
17886 time Alpine has been run this month;
17887 or &quot;No&quot;, which
17888 means this is not the first time Alpine has been run this month.
17890 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17891 for more information on Patterns.
17893 Here are some technical details.
17894 The way that Alpine decides if it is the beginning of the month or not is
17895 to compare today's date with the date stored in the
17896 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17897 variable in the config file.
17898 If the month of today's date is later than the month stored in the variable,
17899 then this is considered to be the first time you have run Alpine this month, and
17900 that turns the Beginning of the Month option on.
17902 Look <A HREF="h_edit_nav_cmds">here</A>
17903 to see the available Editing and Navigation commands.
17905 &lt;End of help on this topic&gt;
17906 </BODY>
17907 </HTML>
17908 ======= h_config_role_boy =======
17909 <HTML>
17910 <HEAD>
17911 <TITLE>Beginning of Year</TITLE>
17912 </HEAD>
17913 <BODY>
17914 <H1>Beginning of Year</H1>
17916 This option gives you a limited ability to take different actions depending on whether
17917 this is the first time Alpine has been run this year or not.
17918 Though it would be nice to have such an option available, this is not the
17919 same as whether or not this is the first time a paricular folder has been
17920 opened this year.
17921 If you want some action (probably Filtering) to take place in a folder each
17922 year, then you will need to be sure that the folder is opened during the
17923 first Alpine session of the year in order for this option to be helpful.
17925 This part of the Pattern may have one of three possible values.
17926 The default value is &quot;Don't care&quot;, which matches any message.
17927 The other two values are &quot;Yes&quot;, which means this is the first
17928 time Alpine has been run this year;
17929 or &quot;No&quot;, which
17930 means this is not the first time Alpine has been run this year.
17932 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17933 for more information on Patterns.
17935 Here are some technical details.
17936 The way that Alpine decides if it is the beginning of the year or not is
17937 to compare today's date with the date stored in the
17938 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17939 variable in the config file.
17940 If the year of today's date is later than the year stored in the variable,
17941 then this is considered to be the first time you have run Alpine this year, and
17942 that turns the Beginning of the Year option on.
17944 Look <A HREF="h_edit_nav_cmds">here</A>
17945 to see the available Editing and Navigation commands.
17947 &lt;End of help on this topic&gt;
17948 </BODY>
17949 </HTML>
17950 ======= h_config_role_inick =======
17951 <HTML>
17952 <HEAD>
17953 <TITLE>Initialize Values From Role Explained</TITLE>
17954 </HEAD>
17955 <BODY>
17956 <H1>Initialize Values From Role Explained</H1>
17958 This is a power user feature.
17959 You will usually want to leave this field empty.
17960 The value of this field is the nickname of another one of your roles.
17961 The Action values from that other role
17962 are used as the initial values of the Action items for this role.
17963 If you put something in any of the action fields for this role, that will
17964 override whatever was in the corresponding field of the initializer role.
17966 You might use this field if the &quot;Action&quot; part of one of your roles
17967 is something you want to use in more than one role.
17968 Instead of filling in those action values again for each role, you
17969 may give the nickname of the role where the values are filled in.
17970 It's just a shortcut way to define Role Actions.
17972 Here's an example to help explain how this works.
17973 Suppose you have a role with nickname &quot;role1&quot; and role1 has
17974 (among other things)
17976 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
17978 set.
17979 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
17980 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
17981 from role1 by default (and any of the other inheritable action values
17982 that are set).
17983 So if role2 had
17985 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
17987 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
17988 However, if role2 had
17990 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
17992 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
17994 If you wish,
17995 you may choose a nickname from your list of roles by using the
17996 &quot;T&quot; command.
17997 If the role you are using to initialize also has a role it initializes from,
17998 then that initialization happens first.
17999 That is, inheritance works as expected with the grandparent and
18000 great-grandparent (and so on) roles having the expected effect.
18002 Look <A HREF="h_edit_nav_cmds">here</A>
18003 to see the available Editing and Navigation commands.
18005 &lt;End of help on this topic&gt;
18006 </BODY>
18007 </HTML>
18008 ======= h_config_role_setfrom =======
18009 <HTML>
18010 <HEAD>
18011 <TITLE>Set From Explained</TITLE>
18012 </HEAD>
18013 <BODY>
18014 <H1>Set From Explained</H1>
18016 This describes part of the action to be taken if the Pattern for this
18017 role is a match.
18018 This field consists of a single address that will be used as the From
18019 address on the message you are sending.
18020 This should be a fully-qualified address like
18022 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18024 or just
18026 <CENTER><SAMP>user@domain</SAMP></CENTER>
18028 If you wish,
18029 you may choose an address from your address book with the
18030 &quot;T&quot; command.
18032 If this is left blank, then your normal From address will be used.
18034 You may also find it useful to add the changed From address to the
18035 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18036 configuration option.
18038 Look <A HREF="h_edit_nav_cmds">here</A>
18039 to see the available Editing and Navigation commands.
18041 &lt;End of help on this topic&gt;
18042 </BODY>
18043 </HTML>
18044 ======= h_config_role_setreplyto =======
18045 <HTML>
18046 <HEAD>
18047 <TITLE>Set Reply-To Explained</TITLE>
18048 </HEAD>
18049 <BODY>
18050 <H1>Set Reply-To Explained</H1>
18052 This describes part of the action to be taken if the Pattern for this
18053 role is a match.
18054 This field consists of a single address that will be used as the Reply-To
18055 address on the message you are sending.
18056 This may be a fully-qualified address like
18058 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18060 or just
18062 <CENTER><SAMP>user@domain</SAMP></CENTER>
18064 If you wish,
18065 you may choose an address from your address book with the
18066 &quot;T&quot; command.
18068 If this is left blank, then there won't be a Reply-To address unless
18069 you have configured one specially with the
18070 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18071 configuration option.
18073 Look <A HREF="h_edit_nav_cmds">here</A>
18074 to see the available Editing and Navigation commands.
18076 &lt;End of help on this topic&gt;
18077 </BODY>
18078 </HTML>
18079 ======= h_config_role_setfcc =======
18080 <HTML>
18081 <HEAD>
18082 <TITLE>Set Fcc Explained</TITLE>
18083 </HEAD>
18084 <BODY>
18085 <H1>Set Fcc Explained</H1>
18087 This describes part of the action to be taken if the Pattern for this
18088 role is a match.
18089 This field consists of a single folder name that will be used in
18090 the Fcc field of the message you are sending.
18091 You may put anything here that you would normally type into the Fcc
18092 field from the composer.
18094 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18095 no Fcc.
18097 A blank field here means that Alpine will use its normal rules for deciding
18098 the default value of the Fcc field.
18099 For many roles, perhaps most, it may make more sense for you to use the
18100 other Alpine facilities for setting the Fcc.
18101 In particular, if you want the Fcc to depend on who you are sending the
18102 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18103 is probably more useful.
18104 In that case, you would want to leave the Fcc field here blank.
18105 However, if you have a role that depends on who the message you are replying
18106 to was From, or what address that message was sent to;
18107 then it might make sense to set the Fcc for that role here.
18109 If you wish,
18110 you may choose a folder from your folder collections by using the
18111 &quot;T&quot; command.
18113 Look <A HREF="h_edit_nav_cmds">here</A>
18114 to see the available Editing and Navigation commands.
18116 &lt;End of help on this topic&gt;
18117 </BODY>
18118 </HTML>
18119 ======= h_config_role_usesmtp =======
18120 <HTML>
18121 <HEAD>
18122 <TITLE>Use SMTP Server Explained</TITLE>
18123 </HEAD>
18124 <BODY>
18125 <H1>Use SMTP Server Explained</H1>
18127 This describes part of the action to be taken if the Pattern for this
18128 role is a match.
18129 If this field has a value, then it will be used as the SMTP server
18130 to send mail when this role is being used (unless the SMTP server variable
18131 is set in the system-wide fixed configuration file).
18132 It has the same semantics as the
18133 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18134 variable in the Setup/Config screen.
18136 If you are using this to post from home when you are at home and from
18137 work when you are at work you need to be careful about postponing messages.
18138 When you postpone a composition that was using a role with this variable
18139 set, the SMTP server list will be saved
18140 with the postponed composition.
18141 It cannot be changed later.
18142 Because of this, you may want to make this a list of SMTP servers
18143 with the preferred server at the front of the list and alternate servers
18144 later in the list.
18145 In your &quot;Home&quot; role you would put the home SMTP server first and
18146 the work SMTP server last.
18147 In your &quot;Work&quot; role you would put the work SMTP server first and
18148 the home SMTP server last.
18149 Then if you start a composition as &quot;Work&quot;, postpone
18150 it, and then later resume it from home the work SMTP server will fail but
18151 the home SMTP server later in the list will succeed.
18153 You may be able to simplify things by making the regular
18154 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18155 variable in the Setup/Config screen a list instead of using roles
18156 to set the SMTP server.
18159 Look <A HREF="h_edit_nav_cmds">here</A>
18160 to see the available Editing and Navigation commands.
18162 &lt;End of help on this topic&gt;
18163 </BODY>
18164 </HTML>
18165 ======= h_config_role_usenntp =======
18166 <HTML>
18167 <HEAD>
18168 <TITLE>Use NNTP Server Explained</TITLE>
18169 </HEAD>
18170 <BODY>
18171 <H1>Use NNTP Server Explained</H1>
18173 This describes part of the action to be taken if the Pattern for this
18174 role is a match.
18175 If this field has a value, then it will be used as the NNTP server
18176 to post to newsgroups when this role is being used (unless the NNTP server
18177 variable
18178 is set in the system-wide fixed configuration file).
18179 It has the same semantics as the
18180 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18181 variable in the Setup/Config screen.
18183 This role setting can facilitate posting to the right nntp server for someone
18184 who reads news from various news sources.  The feature
18185 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18186 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18187 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18188 nntp servers for roles may be more desirable for some people.
18190 If you are using this to post from home when you are at home and from
18191 work when you are at work you need to be careful about postponing messages.
18192 When you postpone a composition that was using a role with this variable
18193 set, the NNTP server list will be saved
18194 with the postponed composition.
18195 It cannot be changed later.
18196 Because of this, you may want to make this a list of NNTP servers
18197 with the preferred server at the front of the list and alternate servers
18198 later in the list.
18199 In your &quot;Home&quot; role you would put the home NNTP server first and
18200 the work NNTP server last.
18201 In your &quot;Work&quot; role you would put the work NNTP server first and
18202 the home NNTP server last.
18203 Then if you start a composition as &quot;Work&quot;, postpone
18204 it, and then later resume it from home the work NNTP server will fail but
18205 the home NNTP server later in the list will succeed.
18207 You may be able to simplify things by making the regular
18208 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18209 variable in the Setup/Config screen a list instead of using roles
18210 to set the NNTP server.
18213 Look <A HREF="h_edit_nav_cmds">here</A>
18214 to see the available Editing and Navigation commands.
18216 &lt;End of help on this topic&gt;
18217 </BODY>
18218 </HTML>
18219 ======= h_config_role_setotherhdr =======
18220 <HTML>
18221 <HEAD>
18222 <TITLE>Set Other Headers Explained</TITLE>
18223 </HEAD>
18224 <BODY>
18225 <H1>Set Other Headers Explained</H1>
18227 This describes part of the action to be taken if the Pattern for this
18228 role is a match.
18229 This field gives you a way to set values for headers besides
18230 &quot;From&quot; and &quot;Reply-To&quot;.
18231 If you want to set either of those, use the specific
18232 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18234 This field is similar to the
18235 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18236 Each header you specify here must include the header tag 
18237 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18238 and may optionally include a value for that header.
18239 In order to see these headers when you compose using this role you 
18240 must use the rich header
18241 <!--chtml if pinemode="function_key"-->(F5)
18242 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18243 Here's an example that shows how you might set the To address.
18245 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18247 Headers set in this way are different from headers set with the
18248 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18249 will replace any value that already exists.
18250 For example, if you are Replying to a message there will already be at
18251 least one address in the To header (the address you are Replying to).
18252 However, if you Reply using a role that sets the To header, that role's
18253 To header value will be used instead.
18255 Limitation: Because commas are used to separate the list of
18256 Other Headers, it is not possible to have the value of a
18257 header contain a comma;
18258 nor is there currently an &quot;escape&quot; mechanism provided
18259 to make this work.
18261 Look <A HREF="h_edit_nav_cmds">here</A>
18262 to see the available Editing and Navigation commands.
18264 &lt;End of help on this topic&gt;
18265 </BODY>
18266 </HTML>
18267 ======= h_config_role_setlitsig =======
18268 <HTML>
18269 <HEAD>
18270 <TITLE>Set Literal Signature Explained</TITLE>
18271 </HEAD>
18272 <BODY>
18273 <H1>Set Literal Signature Explained</H1>
18275 This describes part of the action to be taken if the Pattern for this
18276 role is a match.
18277 This field contains the actual text for your signature, as opposed to
18278 the name of a file containing your signature.
18279 If this is defined it takes precedence over any value set in the
18280 &quot;Set Signature&quot; field.
18282 This is simply a different way to store the signature.
18283 The signature is stored inside your Alpine configuration file instead of in
18284 a separate file.
18285 Tokens work the same way they do with
18286 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18287 help text there for more information.
18290 The two character sequence &#92;n (backslash followed by
18291 the character n) will be used to signify a line-break in your signature.
18292 You don't have to enter the &#92;n, but it will be visible in the
18293 CHANGE THIS ROLE RULE window after you are done editing the signature.
18295 Look <A HREF="h_edit_nav_cmds">here</A>
18296 to see the available Editing and Navigation commands.
18298 &lt;End of help on this topic&gt;
18299 </BODY>
18300 </HTML>
18301 ======= h_config_role_setsig =======
18302 <HTML>
18303 <HEAD>
18304 <TITLE>Set Signature Explained</TITLE>
18305 </HEAD>
18306 <BODY>
18307 <H1>Set Signature Explained</H1>
18309 This describes part of the action to be taken if the Pattern for this
18310 role is a match.
18312 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18313 option from Setup/Config
18314 or the &quot;Set LiteralSig&quot; option for this role are defined,
18315 then this option will be ignored.
18316 You can tell that that is the case because the value of this
18317 option will show up as
18319 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18321 You may either use all Literal Signatures (signatures stored in your
18322 configuration file) throughout Alpine, or all signature files.
18323 You can't mix the two.
18325 This field consists of a filename that will be used as the signature
18326 file when using this role.
18328 If the filename is followed by a vertical bar (|) then instead
18329 of reading the contents of the file the file is assumed to be a
18330 program that will produce the text to be used on its standard output.
18331 The program can't have any arguments and doesn't receive any input from Alpine,
18332 but the rest of the processing works as if the contents came from a file.
18334 Instead of storing the data in a local file, the
18335 signature data may be stored remotely in an IMAP folder.
18336 In order to do this, 
18337 you must use a remote name for the signature.
18338 A remote signature name might look like:
18340 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18343 The syntax used here is the same as the syntax used for a remote
18344 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18345 Note that you may not access an existing signature file remotely,
18346 you have to create a new <EM>folder</EM> that contains the signature data.
18347 If the name you use here for the signature data is a remote name, then when
18348 you edit the file using the &quot;F&quot; command the data will
18349 be saved remotely in the folder.
18350 You aren't required to do anything special to create the folder, it
18351 gets created if you use a remote name.
18354 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18355 the name of the file) you have specified.
18356 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18358 Besides containing regular text, a signature file may also
18359 contain (or a signature program may produce) tokens that are replaced with text
18360 that depends on the message you are replying to or forwarding.
18361 The tokens all look like _word_ (a word surrounded by underscores).
18362 For example, if the token
18364 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18366 is included in the text of the signature file, then when you reply to
18367 or forward a message, the token will be replaced with the actual date
18368 the message you are replying to or forwarding was sent.
18370 If you use a role that has a signature file for a plain composition
18371 (that is, not a reply or forward) then there is no original message, so
18372 any tokens that depend on the message will be replaced with nothing.
18373 So if you want a signature file to be useful for new compositions it
18374 shouldn't include any of the tokens that depend on the message being
18375 replied to or forwarded.
18377 The list of available tokens is
18378 <A HREF="h_index_tokens">here</A>.
18380 Actually, for the adventurous, there is a way to conditionally include text based
18381 on whether or not a token would result in specific replacement text.
18382 For example, you could include some text based on whether or not
18383 the _NEWS_ token would result in any newsgroups if it was used.
18384 It's explained in detail
18385 <A HREF="h_reply_token_conditionals">here</A>.
18387 In the very unlikely event that you want to include a literal token in
18388 a signature file, you must precede it with a backslash character.
18389 For example, to include the literal text _DATE_ you must actually use
18390 &#92;_DATE_.
18391 It is not possible to have a literal backslash followed by an expanded token.
18393 A blank field here means that Alpine will use its normal rules for deciding
18394 which file (if any) to use for the signature file.
18396 An alternate method for storing the signature is available in
18397 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18399 Look <A HREF="h_edit_nav_cmds">here</A>
18400 to see the available Editing and Navigation commands.
18402 &lt;End of help on this topic&gt;
18403 </BODY>
18404 </HTML>
18405 ======= h_config_role_settempl =======
18406 <HTML>
18407 <HEAD>
18408 <TITLE>Set Template Explained</TITLE>
18409 </HEAD>
18410 <BODY>
18411 <H1>Set Template Explained</H1>
18413 This describes part of the action to be taken if the Pattern for this
18414 role is a match.
18415 This field consists of a filename that will be used as the template
18416 file when using this role.
18417 The template file is a file that is included at the top of the message you
18418 are composing.
18420 If the filename is followed by a vertical bar (|) then instead
18421 of reading the contents of the file the file is assumed to be a
18422 program that will produce the text to be used on its standard output.
18423 The program can't have any arguments and doesn't receive any input from Alpine,
18424 but the rest of the processing works as if the contents came from a file.
18426 Instead of storing the data in a local file, the
18427 template may be stored remotely in an IMAP folder.
18428 In order to do this, 
18429 you must use a remote name for the template.
18430 A remote template name might look like:
18432 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18435 The syntax used here is the same as the syntax used for a remote
18436 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18437 Note that you may not access an existing template file remotely,
18438 you have to create a new <EM>folder</EM> that contains the template data.
18439 If the name you use here for the template is a remote name, then when
18440 you edit the file using the &quot;F&quot; command the data will
18441 be saved remotely in the folder.
18442 You aren't required to do anything special to create the folder, it
18443 gets created if you use a remote name.
18445 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18446 the name of the file) you have specified.
18447 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18449 Besides containing regular text, the template file may also
18450 contain (or a template file program may produce) tokens that are replaced with text
18451 that depends on the message you are replying to or forwarding.
18452 The tokens all look like _word_ (a word surrounded by underscores).
18453 For example, if the token
18455 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18457 is included in the text of the template file, then when you reply to
18458 or forward a message, the token will be replaced with the actual date
18459 the message you are replying to or forwarding was sent.
18461 If you use a role that has a template file for a plain composition
18462 (that is, not a reply or forward) then there is no original message, so
18463 any tokens that depend on the message will be replaced with nothing.
18464 So if you want a template file to be useful for new compositions it
18465 shouldn't include any of the tokens that depend on the message being
18466 replied to or forwarded.
18468 The list of available tokens is
18469 <A HREF="h_index_tokens">here</A>.
18471 Actually, for the adventurous, there is a way to conditionally include text based
18472 on whether or not a token would result in specific replacement text.
18473 For example, you could include some text based on whether or not
18474 the _NEWS_ token would result in any newsgroups if it was used.
18475 It's explained in detail
18476 <A HREF="h_reply_token_conditionals">here</A>.
18478 In the very unlikely event that you want to include a literal token in
18479 a template file, you must precede it with a backslash character.
18480 For example, to include the literal text _DATE_ you must actually use
18481 &#92;_DATE_.
18482 It is not possible to have a literal backslash followed by an expanded token.
18484 A blank template field means that Alpine will not use a template file when
18485 this role is being used.
18487 Look <A HREF="h_edit_nav_cmds">here</A>
18488 to see the available Editing and Navigation commands.
18490 &lt;End of help on this topic&gt;
18491 </BODY>
18492 </HTML>
18493 ======= h_config_filt_stat_imp =======
18494 <HTML>
18495 <HEAD>
18496 <TITLE>Set Important Status Explained</TITLE>
18497 </HEAD>
18498 <BODY>
18499 <H1>Set Important Status Explained</H1>
18501 This describes part of the action to be taken if the Pattern for this
18502 filter is a match.
18503 If set to &quot;Don't change it&quot; then this does nothing.
18504 If set to &quot;Set this state&quot; then the Important flag is set
18505 for the matching message.
18506 If set to &quot;Clear this state&quot; then the Important flag is cleared
18507 for the matching message.
18508 The important flag usually causes an asterisk to show up in the MESSAGE
18509 INDEX.
18510 It may also be useful when selecting a set of messages
18511 with the Select command.
18513 Look <A HREF="h_edit_nav_cmds">here</A>
18514 to see the available Editing and Navigation commands.
18516 &lt;End of help on this topic&gt;
18517 </BODY>
18518 </HTML>
18519 ======= h_config_filt_stat_new =======
18520 <HTML>
18521 <HEAD>
18522 <TITLE>Set New Status Explained</TITLE>
18523 </HEAD>
18524 <BODY>
18525 <H1>Set New Status Explained</H1>
18527 This describes part of the action to be taken if the Pattern for this
18528 filter is a match.
18529 If set to &quot;Don't change it&quot; then this does nothing.
18530 If set to &quot;Set this state&quot; then the
18531 matching message is marked New.
18532 If set to &quot;Clear this state&quot; then the
18533 matching message is marked Seen.
18535 Look <A HREF="h_edit_nav_cmds">here</A>
18536 to see the available Editing and Navigation commands.
18538 &lt;End of help on this topic&gt;
18539 </BODY>
18540 </HTML>
18541 ======= h_config_filt_stat_ans =======
18542 <HTML>
18543 <HEAD>
18544 <TITLE>Set Answered Status Explained</TITLE>
18545 </HEAD>
18546 <BODY>
18547 <H1>Set Answered Status Explained</H1>
18549 This describes part of the action to be taken if the Pattern for this
18550 filter is a match.
18551 If set to &quot;Don't change it&quot; then this does nothing.
18552 If set to &quot;Set this state&quot; then the Answered flag is set
18553 for the matching message.
18554 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18555 for the matching message.
18557 Look <A HREF="h_edit_nav_cmds">here</A>
18558 to see the available Editing and Navigation commands.
18560 &lt;End of help on this topic&gt;
18561 </BODY>
18562 </HTML>
18563 ======= h_config_filt_stat_del =======
18564 <HTML>
18565 <HEAD>
18566 <TITLE>Set Deleted Status Explained</TITLE>
18567 </HEAD>
18568 <BODY>
18569 <H1>Set Deleted Status Explained</H1>
18571 This describes part of the action to be taken if the Pattern for this
18572 filter is a match.
18573 If set to &quot;Don't change it&quot; then this does nothing.
18574 If set to &quot;Set this state&quot; then the
18575 matching message is marked Deleted.
18576 If set to &quot;Clear this state&quot; then the
18577 matching message is marked UnDeleted.
18579 You should not use this option unless you are prepared to have matching
18580 messages expunged from the folder permanently.
18581 For example, if you type the Expunge command, this filter is applied
18582 before the expunge, so matching messages will be marked Deleted and then
18583 will be permanently expunged from the folder.
18584 However, since the index isn't redrawn in between the time that the message
18585 is marked Deleted and the time that you are asked to expunge, the only
18586 indication that you are expunging the message comes in the number of messages
18587 being expunged.
18588 The same thing may happen when you close a folder.
18589 It is also possible that an expunge not initiated by you will
18590 delete matching messages.
18592 Look <A HREF="h_edit_nav_cmds">here</A>
18593 to see the available Editing and Navigation commands.
18595 &lt;End of help on this topic&gt;
18596 </BODY>
18597 </HTML>
18598 ======= h_config_role_scoreval =======
18599 <HTML>
18600 <HEAD>
18601 <TITLE>Score Value Explained</TITLE>
18602 </HEAD>
18603 <BODY>
18604 <H1>Score Value Explained</H1>
18606 A message's score is the sum of the Score Values from all of the Scoring rules
18607 with Patterns that match the message.
18608 The value you give here is the Score Value associated with this rule.
18609 A Score Value is an integer between -100 and 100, with the default
18610 value of zero.
18612 Alternatively, if the
18613 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18614 field is defined
18615 (on the line right below the &quot;Score Value&quot; field)
18616 then the &quot;Score Value&quot; is ignored and
18617 the &quot;Score From Header&quot; field is used instead.
18619 Look <A HREF="h_edit_nav_cmds">here</A>
18620 to see the available Editing and Navigation commands.
18622 &lt;End of help on this topic&gt;
18623 </BODY>
18624 </HTML>
18625 ======= h_config_role_scorehdrtok =======
18626 <HTML>
18627 <HEAD>
18628 <TITLE>Score Value From Header Explained</TITLE>
18629 </HEAD>
18630 <BODY>
18631 <H1>Score Value From Header Explained</H1>
18633 This option provides a way to use a number that appears in the headers of your
18634 messages as the message's score, or as a component of that score.
18635 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18636 The idea behind this option is that there may be a score embedded in the
18637 headers of messages that has already been calculated outside of Alpine.
18638 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18639 somewhere in that header there is a score.
18641 The value for this option is the name of the header followed by parentheses
18642 with two arguments inside:
18644 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18646 No space is allowed between the comma and the start of the field_separators.
18647 It would be interpreted as the first separator if it was there.
18648 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18649 starts after that and goes to the second separator, and so on.
18650 It's easier to explain with examples.
18652 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18654 In the above example the header that is used is the &quot;X-Spam&quot; header.
18655 The value of that header (the part after the colon and the space) is split
18656 into fields separated by spaces.
18658 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18660 The second field is selected and converted to an integer. It only makes sense
18661 if Field2 really is an integer.
18663 Here's an example of a SpamAssassin header.
18664 The exact look of the header will vary, but if your incoming mail
18665 contains headers that look like the following
18667 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18669 you might want to use the hits value as a score.
18670 Since the score is an integer value you can't make use of the decimal part of
18671 the number, but
18672 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18673 and &quot;.&quot; as your separators.
18675 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18677 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18678 hits.
18679 The second field is &quot;10&quot; so the score value would be 10.
18681 Another example we've seen has headers that look like
18683 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18685 Because there are two equals before the 7% the value
18687 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18689 should capture the probability as the score.
18691 The Score From Header scoring value actually works just like the
18692 regular Score Value in that the rest of the pattern has to match before
18693 it is used and the scores from all the different scoring rules that
18694 match for a particular message are added together.
18695 When using the Score From Header method it may (or may not) make sense to
18696 use only a single scoring rule with a pattern that matches every message.
18698 Look <A HREF="h_edit_nav_cmds">here</A>
18699 to see the available Editing and Navigation commands.
18701 &lt;End of help on this topic&gt;
18702 </BODY>
18703 </HTML>
18704 ======= h_config_role_replyuse =======
18705 <HTML>
18706 <HEAD>
18707 <TITLE>Reply Use Explained</TITLE>
18708 </HEAD>
18709 <BODY>
18710 <H1>Reply Use Explained</H1>
18712 This option determines how this particular role will be used when Replying
18713 to a message.
18714 There are three possible values for this option.
18715 The value &quot;Never&quot;
18716 means that this role will not be a candidate for use when Replying.
18717 The role's Pattern will not be checked for a match, however the role will
18718 be available to be manually switched to if there is a confirmation prompt.
18721 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18722 mean that you do want to consider this role when Replying.
18723 For either of these settings, the role's Pattern will be compared with
18724 the message being replied to.
18725 If there is a match then this role will either be used without confirmation
18726 or will be the default when confirmation is asked for, depending on
18727 which of the two options is selected.
18728 If confirmation is requested, you will also have a chance to
18729 manually change the role to any one of your other roles.
18732 You won't be prompted for confirmation if none of your role Patterns
18733 match the message being replied to.
18734 This is independent of the value of the current option.
18735 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18736 feature may be used to change this behavior.
18738 &lt;End of help on this topic&gt;
18739 </BODY>
18740 </HTML>
18741 ======= h_config_role_forwarduse =======
18742 <HTML>
18743 <HEAD>
18744 <TITLE>Forward Use Explained</TITLE>
18745 </HEAD>
18746 <BODY>
18747 <H1>Forward Use Explained</H1>
18749 This option determines how this particular role will be used when Forwarding
18750 a message.
18751 There are three possible values for this option.
18752 The value &quot;Never&quot;
18753 means that this role will not be a candidate for use when Forwarding.
18754 The role's Pattern will not be checked for a match, however the role will
18755 be available to be manually switched to if there is a confirmation prompt.
18758 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18759 mean that you do want to consider this role when Forwarding.
18760 For either of these settings, the role's Pattern will be compared with
18761 the message being forwarded.
18762 If there is a match then this role will either be used without confirmation
18763 or will be the default when confirmation is asked for, depending on
18764 which of the two options is selected.
18765 If confirmation is requested, you will also have a chance to
18766 manually change the role to any one of your other roles.
18769 You won't be prompted for confirmation if none of your role Patterns
18770 match the message being forwarded.
18771 This is independent of the value of the current option.
18772 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18773 feature may be used to change this behavior.
18775 &lt;End of help on this topic&gt;
18776 </BODY>
18777 </HTML>
18778 ======= h_config_role_composeuse =======
18779 <HTML>
18780 <HEAD>
18781 <TITLE>Compose Use Explained</TITLE>
18782 </HEAD>
18783 <BODY>
18784 <H1>Compose Use Explained</H1>
18786 This option determines how this particular role will be used when Composing
18787 a new message using the &quot;Compose&quot; command.
18788 This does not affect what happens when using the &quot;Role&quot; command
18789 to compose a new message.
18790 The &quot;Role&quot; command allows you to select a role from all of the
18791 roles you have defined, regardless of what Uses you've assigned to those
18792 roles.
18795 There are three possible values for this option.
18796 The value &quot;Never&quot;
18797 means that this role will not be a candidate for use when Composing.
18798 The role's Current Folder Type will not be checked for a match, however the role
18799 will be available to be manually switched to if there is a confirmation prompt.
18802 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18803 mean that you do want to consider this role when Composing.
18804 For either of these settings,
18805 the role's Current Folder Type will be checked (since there is no message
18806 to compare with, the rest of the Pattern is considered a match).
18807 If there is a match then this role will either be used without confirmation
18808 or will be the default when confirmation is asked for, depending on
18809 which of the two options is selected.
18810 If confirmation is requested, you will also have a chance to
18811 manually change the role to any one of your other roles.
18814 When using the Compose command the role checking is a little different
18815 because there is no message being replied to or forwarded.
18816 Because of this the Current Folder Type is checked but the header pattern
18817 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18818 A role is considered to be a match if it is a candidate for Compose Use and
18819 its Current Folder Type matches the currently open folder.
18820 This could be useful if you want to set a role based on the folder you
18821 are reading, or the type of folder you are reading.
18824 You won't be prompted for confirmation if none of your role Patterns
18825 are a match.
18826 This is independent of the value of the current option.
18827 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18828 feature may be used to change this behavior.
18830 &lt;End of help on this topic&gt;
18831 </BODY>
18832 </HTML>
18833 ======= h_config_filter_folder =======
18834 <HTML>
18835 <HEAD>
18836 <TITLE>Filter Folder Explained</TITLE>
18837 </HEAD>
18838 <BODY>
18839 <H1>Filter Folder Explained</H1>
18841 When the Filter Action is set to &quot;Move&quot;,
18842 the folder or folders specified here will be used to store messages matching
18843 the provided pattern.
18846 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18847 here.
18850 If you wish,
18851 you may choose a folder from your folder collections by using the
18852 &quot;T&quot; command.
18854 Besides regular text, the folder name may also contain
18855 tokens that are replaced with text representing the current date
18856 when you run Alpine.
18857 For example, if the folder name you use is
18859 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18861 that is replaced with something like
18863 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18867 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
18869 becomes
18871 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
18873 The token names must be surrounded by underscores in order to be recognized
18874 as tokens.
18875 The tokens that may be used are those that are derived from the current date.
18876 They're listed near the bottom of the list of tokens give
18877 <A HREF="h_index_tokens">here</A>.
18879 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18880 for more information on Patterns.
18882 Look <A HREF="h_edit_nav_cmds">here</A>
18883 to see the available Editing and Navigation commands.
18885 &lt;End of help on this topic&gt;
18886 </BODY>
18887 </HTML>
18888 ======= h_config_filter_kw_set =======
18889 <HTML>
18890 <HEAD>
18891 <TITLE>Set These Keywords Explained</TITLE>
18892 </HEAD>
18893 <BODY>
18894 <H1>Set These Keywords Explained</H1>
18896 This describes part of the action to be taken if the Pattern for this
18897 filter is a match.
18898 Read a little about keywords in the help text for the
18899 <A HREF="h_common_flag">Flag</A> command.
18900 This option is a list of keywords that will be Set when there is a match.
18901 If you wish, you may choose keywords from the list of keywords you have
18902 defined with the &quot;T&quot; command.
18903 You may add new keywords by defining them in the
18904 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18905 If you have given a keyword a nickname when configuring it,
18906 that nickname may be used instead of the actual keyword.
18909 Look <A HREF="h_edit_nav_cmds">here</A>
18910 to see the available Editing and Navigation commands.
18912 &lt;End of help on this topic&gt;
18913 </BODY>
18914 </HTML>
18915 ======= h_config_filter_kw_clr =======
18916 <HTML>
18917 <HEAD>
18918 <TITLE>Clear These Keywords Explained</TITLE>
18919 </HEAD>
18920 <BODY>
18921 <H1>Clear These Keywords Explained</H1>
18923 This describes part of the action to be taken if the Pattern for this
18924 filter is a match.
18925 Read a little about keywords in the help text for the
18926 <A HREF="h_common_flag">Flag</A> command.
18927 This option is a list of keywords that will be Cleared when there is a match.
18928 If you wish, you may choose keywords from the list of keywords you have
18929 defined with the &quot;T&quot; command.
18930 You may add new keywords by defining them in the
18931 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18932 If you have given a keyword a nickname when configuring it,
18933 that nickname may be used instead of the actual keyword.
18936 Look <A HREF="h_edit_nav_cmds">here</A>
18937 to see the available Editing and Navigation commands.
18939 &lt;End of help on this topic&gt;
18940 </BODY>
18941 </HTML>
18942 ======= h_index_tokens =======
18943 <HTML>
18944 <HEAD>
18945 <TITLE>Tokens for Index and Replying</TITLE>
18946 </HEAD>
18947 <BODY>
18949 This set of special tokens may be used in the
18950 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
18951 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
18952 in signature files,
18953 in template files used in
18954 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
18955 that is the target of a Filter Rule.
18956 Some of them aren't available in all situations.
18958 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
18959 option, but they must be surrounded by underscores for the
18960 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
18961 and in the target of Filter Rules.
18965 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
18967 <DL>
18968 <DT>SUBJECT</DT>
18969 <DD>
18970 This token represents the Subject the sender gave the message.
18971 Alternatives for use in the index screen are
18972 SUBJKEY, SUBJKEYINIT, SUBJECTTEXT, SUBJKEYTEXT, and SUBJKEYINITTEXT.
18973 You may color the subject text in the MESSAGE INDEX screen differently by using the
18974 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
18975 <A HREF="h_config_index_opening_color">Index Opening Color</A>
18976 options available from
18977 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18978 </DD>
18980 <DT>FROM</DT>
18981 <DD>
18982 This token represents the personal name (or email address if the name
18983 is unavailable) of the person specified in the message's &quot;From:&quot;
18984 header field.
18985 You may color the from text in the MESSAGE INDEX screen differently by using the
18986 <A HREF="h_config_index_from_color">Index From Color</A>
18987 option available from
18988 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18989 </DD>
18991 <DT>ADDRESS</DT>
18992 <DD>
18993 This is similar to the &quot;FROM&quot; token, only it is always the
18994 email address, never the personal name.
18995 For example, &quot;mailbox@domain&quot;.
18996 </DD>
18998 <DT>MAILBOX</DT>
18999 <DD>
19000 This is the same as the &quot;ADDRESS&quot; except that the 
19001 domain part of the address is left off.
19002 For example, &quot;mailbox&quot;.
19003 </DD>
19005 <DT>SENDER</DT>
19006 <DD>
19007 This token represents the personal name (or email address) of the person
19008 listed in the message's &quot;Sender:&quot; header field.
19009 </DD>
19011 <DT>TO</DT>
19012 <DD>
19013 This token represents the personal names (or email addresses if the names
19014 are unavailable) of the persons specified in the
19015 message's &quot;To:&quot; header field.
19016 </DD>
19018 <DT>NEWSANDTO</DT>
19019 <DD>
19020 This token represents the newsgroups from the
19021 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19022 the personal names (or email addresses if the names
19023 are unavailable) of the persons specified in the
19024 message's &quot;To:&quot; header field.
19025 </DD>
19027 <DT>TOANDNEWS</DT>
19028 <DD>
19029 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19030 </DD>
19032 <DT>NEWS</DT>
19033 <DD>
19034 This token represents the newsgroups from the
19035 message's &quot;Newsgroups:&quot; header field.
19036 </DD>
19038 <DT>CC</DT>
19039 <DD>
19040 This token represents the personal names (or email addresses if the names
19041 are unavailable) of the persons specified in the
19042 message's &quot;Cc:&quot; header field.
19043 </DD>
19045 <DT>RECIPS</DT>
19046 <DD>
19047 This token represents the personal names (or email addresses if the names
19048 are unavailable) of the persons specified in both the
19049 message's &quot;To:&quot; header field and
19050 the message's &quot;Cc:&quot; header field.
19051 </DD>
19053 <DT>NEWSANDRECIPS</DT>
19054 <DD>
19055 This token represents the newsgroups from the
19056 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19057 the personal names (or email addresses if the names
19058 are unavailable) of the persons specified in the
19059 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19060 </DD>
19062 <DT>RECIPSANDNEWS</DT>
19063 <DD>
19064 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19065 </DD>
19067 <DT>INIT</DT>
19068 <DD>
19069 This token represents the initials from the personal name
19070 of the person specified in the message's &quot;From:&quot;
19071 header field.
19072 If there is no personal name, it is blank.
19073 </DD>
19075 <DT>DATE</DT>
19076 <DD>
19077 This token represents the date on which the message was sent, according
19078 to the &quot;Date&quot; header field.
19079 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19080 The feature
19081 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19082 which adjusts for the timezone the message was sent from,
19083 may have an effect on the value of this token as well as the values of
19084 all of the other DATE or TIME tokens.
19085 Some of the DATE and TIME tokens are displayed in a locale-specific
19086 way unless the option
19087 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19088 </DD>
19090 <DT>SMARTDATE</DT>
19091 <DD>
19092 This token represents the date on which the message was sent, according
19093 to the &quot;Date&quot; header field.
19094 It is &quot;Today&quot; if the message was sent today,
19095 &quot;Yesterday&quot; for yesterday,
19096 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19097 message is from last year and is more than six months old it includes the year, as well.
19098 See the SMARTDATE alternatives below, as well.
19099 </DD>
19101 <DT>SMARTTIME</DT>
19102 <DD>
19103 This token represents the most relevant elements of the date on which
19104 the message was sent (according to the &quot;Date&quot; header field),
19105 in a compact form. If the message was sent today, only the time is used
19106 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19107 the past week, the day of the week and the hour are used
19108 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19109 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19110 &quot;9Apr98&quot;).
19111 </DD>
19113 <DT>SMARTDATETIME</DT>
19114 <DD>
19115 This is a combination of SMARTDATE and SMARTTIME.
19116 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19117 case it is SMARTTIME.
19118 See the SMARTDATETIME alternatives below, as well.
19119 </DD>
19121 <DT>DATEISO</DT>
19122 <DD>
19123 This token represents the date on which the message was sent, according
19124 to the &quot;Date&quot; header field.
19125 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19126 </DD>
19128 <DT>SHORTDATEISO</DT>
19129 <DD>
19130 This token represents the date on which the message was sent, according
19131 to the &quot;Date&quot; header field.
19132 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19133 </DD>
19135 <DT>SHORTDATE1</DT>
19136 <DD>
19137 This token represents the date on which the message was sent, according
19138 to the &quot;Date&quot; header field.
19139 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19140 </DD>
19142 <DT>SHORTDATE2</DT>
19143 <DD>
19144 This token represents the date on which the message was sent, according
19145 to the &quot;Date&quot; header field.
19146 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19147 </DD>
19149 <DT>SHORTDATE3</DT>
19150 <DD>
19151 This token represents the date on which the message was sent, according
19152 to the &quot;Date&quot; header field.
19153 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19154 </DD>
19156 <DT>SHORTDATE4</DT>
19157 <DD>
19158 This token represents the date on which the message was sent, according
19159 to the &quot;Date&quot; header field.
19160 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19161 </DD>
19163 <DT>LONGDATE</DT>
19164 <DD>
19165 This token represents the date on which the message was sent, according
19166 to the &quot;Date&quot; header field.
19167 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19168 </DD>
19170 <DT>SMARTDATE alternatives</DT>
19171 <DD>
19172 There are several versions of SMARTDATE that are all the same except
19173 for the way they format dates far in the past.
19174 SMARTDATE formats the date using the information from your locale settings
19175 to format the date string. It may end up formatting dates so that they look
19176 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19177 The feature
19178 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19179 may have an affect on the values of these tokens.
19180 If you want more control you may use one of the following.
19181   <DL>
19182   <DT>SMARTDATE</DT> <DD>If the option
19183 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19184 then this will be locale specific. Control this with the
19185 LC_TIME locale setting on a UNIX system. On Windows
19186 the Regional Options control panel may be used to set the Short date
19187 format. At the programming level, the strftime routine is what Alpine
19188 uses to print the date.
19189 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19190 to SMARTDATES1.</DD>
19191   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19192   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19193   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19194   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19195   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19196   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19197   </DL>
19198 </DD>
19200 <DT>SMARTDATETIME alternatives</DT>
19201 <DD>
19202 There are several versions of SMARTDATETIME that are all very similar.
19203 The ones that end in 24 use a 24-hour clock for Today's messages instead
19204 of a 12-hour clock.
19205 The other variation is
19206 for the way they format dates far in the past.
19207 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19208 to format the date string. It may end up formatting dates so that they look
19209 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19210 The feature
19211 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19212 may have an affect on the values of these tokens.
19213 The possible choices are:
19214   <DL>
19215   <DT>SMARTDATETIME</DT> <DD>If the option
19216 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19217 then this will be locale specific. Control this with the
19218 LC_TIME locale setting on a UNIX system. On Windows
19219 the Regional Options control panel may be used to set the Short date
19220 format. At the programming level, the strftime routine is what Alpine
19221 uses to print the date.
19222 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19223 to SMARTDATETIMES1.</DD>
19224   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19225   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19226   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19227   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19228   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19229   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19230   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19231   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19232   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19233   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19234   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19235   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19236   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19237   </DL>
19238 </DD>
19240 <DT>DAYDATE</DT>
19241 <DD>
19242 This token represents the date on which the message was sent, according
19243 to the &quot;Date&quot; header field.
19244 It looks like &quot;Sat, 23 Oct 1998&quot;.
19245 This token is never converted in any locale-specific way.
19246 </DD>
19248 <DT>PREFDATE</DT>
19249 <DD>
19250 This token represents the date on which the message was sent, according
19251 to the &quot;Date&quot; header field.
19252 It is your operating system's idea of the preferred date representation for the current locale.
19253 Internally it uses the %x version of the date from the strftime routine.
19254 </DD>
19256 <DT>PREFTIME</DT>
19257 <DD>
19258 This token represents the time at which the message was sent, according
19259 to the &quot;Date&quot; header field.
19260 It is the preferred time representation for the current locale.
19261 Internally it uses the %X version of the time from the strftime routine.
19262 </DD>
19264 <DT>PREFDATETIME</DT>
19265 <DD>
19266 This token represents the date and time at which the message was sent, according
19267 to the &quot;Date&quot; header field.
19268 It is the preferred date and time representation for the current locale.
19269 Internally it uses the %c version of the time from the strftime routine.
19270 </DD>
19272 <DT>DAY</DT>
19273 <DD>
19274 This token represents the day of the month on which the message was sent,
19275 according to the &quot;Date&quot; header field.
19276 For example, &quot;23&quot; or &quot;9&quot;.
19277 </DD>
19279 <DT>DAY2DIGIT</DT>
19280 <DD>
19281 This token represents the day of the month on which the message was sent,
19282 according to the &quot;Date&quot; header field.
19283 For example, &quot;23&quot; or &quot;09&quot;.
19284 It is always 2 digits.
19285 </DD>
19287 <DT>DAYORDINAL</DT>
19288 <DD>
19289 This token represents the ordinal number that is the day of
19290 the month on which the message was sent,
19291 according to the &quot;Date&quot; header field.
19292 For example, &quot;23rd&quot; or &quot;9th&quot;.
19293 </DD>
19295 <DT>DAYOFWEEK</DT>
19296 <DD>
19297 This token represents the day of the week on which the message was sent,
19298 according to the &quot;Date&quot; header field.
19299 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19300 </DD>
19302 <DT>DAYOFWEEKABBREV</DT>
19303 <DD>
19304 This token represents the day of the week on which the message was sent,
19305 according to the &quot;Date&quot; header field.
19306 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19307 </DD>
19309 <DT>MONTHABBREV</DT>
19310 <DD>
19311 This token represents the month the message was sent, according
19312 to the &quot;Date&quot; header field.
19313 For example, &quot;Oct&quot;.
19314 </DD>
19316 <DT>MONTHLONG</DT>
19317 <DD>
19318 This token represents the month in which the message was sent, according
19319 to the &quot;Date&quot; header field.
19320 For example, &quot;October&quot;.
19321 </DD>
19323 <DT>MONTH</DT>
19324 <DD>
19325 This token represents the month in which the message was sent, according
19326 to the &quot;Date&quot; header field.
19327 For example, &quot;10&quot; or &quot;9&quot;.
19328 </DD>
19330 <DT>MONTH2DIGIT</DT>
19331 <DD>
19332 This token represents the month in which the message was sent, according
19333 to the &quot;Date&quot; header field.
19334 For example, &quot;10&quot; or &quot;09&quot;.
19335 It is always 2 digits.
19336 </DD>
19338 <DT>YEAR</DT>
19339 <DD>
19340 This token represents the year the message was sent, according
19341 to the &quot;Date&quot; header field.
19342 For example, &quot;1998&quot; or &quot;2001&quot;.
19343 </DD>
19345 <DT>YEAR2DIGIT</DT>
19346 <DD>
19347 This token represents the year the message was sent, according
19348 to the &quot;Date&quot; header field.
19349 For example, &quot;98&quot; or &quot;01&quot;.
19350 It is always 2 digits.
19351 </DD>
19353 <DT>TIME24</DT>
19354 <DD>
19355 This token represents the time at which the message was sent, according
19356 to the &quot;Date&quot; header field.
19357 There is no adjustment made for different time zones, so you'll get
19358 the time the message was sent according to the time zone the sender
19359 was in.
19360 It has the format HH:MM. For example, &quot;17:28&quot;.
19361 </DD>
19363 <DT>TIME12</DT>
19364 <DD>
19365 This token represents the time at which the message was sent, according
19366 to the &quot;Date&quot; header field.
19367 This time is for a 12 hour clock.
19368 It has the format HH:MMpm.
19369 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19370 </DD>
19372 <DT>TIMEZONE</DT>
19373 <DD>
19374 This token represents the numeric timezone from
19375 the &quot;Date&quot; header field.
19376 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19377 </DD>
19379 </DL>
19382 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19384 <DL>
19385 <DT>MSGNO</DT>
19386 <DD>
19387 This token represents the message's current position in the folder that,
19388 of course, may change as the folder is sorted or new mail arrives.
19389 </DD>
19391 <DT>STATUS</DT>
19392 <DD>
19393 This token represents a three character wide field displaying various
19394 aspects of the message's state.
19395 The first character is either blank,
19396 a '*' for message marked Important, or a '+' indicating a message
19397 addressed directly to you (as opposed to your having received it via a
19398 mailing list, for example).
19399 When the feature
19400 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19401 is set, if the first character would have been
19402 blank then it will instead be a '-' if the message is cc'd to you.
19403 The second character is typically blank,
19404 though the arrow cursor may occupy it if either the 
19405 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19406 or the
19407 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19408 is set (or you actually are on a slow link).
19409 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19410 '<A HREF="h_flag_answered">A</A>' (Answered),
19411 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19412 '<A HREF="h_flag_new">N</A>' (New), or blank.
19414 If you are using a threaded view of the index and this message is at the
19415 top of a collapsed portion of a thread,
19416 then this token refers to all of the messages in the collapsed portion of
19417 the thread instead of just the top message.
19418 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19419 are marked Important, else a '+' if any of the messages are addressed
19420 to you, else a '-' if any of the messages are cc'd to you.
19421 The third character will be a 'D' if <EM>all</EM> of the messages
19422 in the collapsed thread are marked deleted,
19423 an 'A' if <EM>all</EM> of the messages
19424 in the collapsed thread are marked answered,
19425 it will be an 'N' if any of
19426 the messages are undeleted and unseen, and it will be blank otherwise.
19427 </DD>
19429 <DT>FULLSTATUS</DT>
19430 <DD>
19431 This token represents a less abbreviated alternative
19432 to the &quot;STATUS&quot; token.
19433 It is six characters wide.
19434 The first character is '+', '-', or blank, the
19435 second blank, the third either '*' or blank, the fourth
19436 '<A HREF="h_flag_new">N</A>' or blank,
19437 the fifth '<A HREF="h_flag_answered">A</A>'
19438 or blank, and the sixth character is
19439 either '<A HREF="h_flag_deleted">D</A>' or
19440 blank.
19442 If you are using a threaded view of the index and this message is at the
19443 top of a collapsed portion of a thread,
19444 then this token refers to all of the messages in the collapsed portion of
19445 the thread instead of just the top message.
19446 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19447 of the messages in the collapsed thread are addressed to you or cc'd to you.
19448 The third character will be '*' if any of the messages are marked
19449 Important.
19450 The fourth character will be 'N' if all of the messages in the thread
19451 are New, else 'n' if some of the messages in the thread are New, else blank.
19452 The fifth character will be 'A' or 'a' or blank, and the sixth character
19453 will be 'D' or 'd' or blank.
19454 </DD>
19456 <DT>IMAPSTATUS</DT>
19457 <DD>
19458 This token represents an even less abbreviated alternative to the
19459 &quot;STATUS&quot; token.
19460 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19461 an 'N' if the message is new to this folder since the last time
19462 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19463 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19464 new to the folder since it was last opened <EM>but</EM> has not been
19465 viewed, or a blank if the message has been in the folder since it was
19466 last opened and has been viewed.
19468 If you are using a threaded view of the index and this message is at the
19469 top of a collapsed portion of a thread,
19470 then the fourth character will be
19471 'N' if all of the messages in the thread are unseen and recent;
19472 else 'n' if some of the messages in the thread are unseen and recent;
19473 else 'U' if all of the messages in the thread are unseen and not recent;
19474 else 'u' if some of the messages in the thread are unseen and not recent;
19475 else 'R' if all of the messages in the thread are seen and recent;
19476 else 'r' if some of the messages in the thread are seen and recent;
19477 else blank.
19478 </DD>
19480 <DT>SHORTIMAPSTATUS</DT>
19481 <DD>
19482 This is the same as the last four of the six characters of IMAPSTATUS,
19483 so the '+' To Me information will be missing.
19484 </DD>
19486 <DT>SIZE</DT>
19487 <DD>
19488 This token represents the total size, in bytes, of the message.
19489 If a &quot;K&quot; (Kilobyte)
19490 follows the number, the size is approximately 1,000
19491 times that many bytes (rounded to the nearest 1,000).
19492 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19493 1,000,000 times that many bytes.
19494 Commas are not used in this field.
19495 This field is seven characters wide, including the enclosing parentheses.
19496 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19497 The progression of sizes used looks like:
19500 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19502 </DD>
19504 <DT>SIZECOMMA</DT>
19505 <DD>
19506 This token represents the total size, in bytes, of the message.
19507 If a &quot;K&quot; (Kilobyte)
19508 follows the number, the size is approximately 1,000
19509 times that many bytes (rounded to the nearest 1,000).
19510 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19511 1,000,000 times that many bytes.
19512 Commas are used if the number shown is 1,000 or greater.
19513 The SIZECOMMA field is one character wider than the SIZE field.
19514 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19515 The progression of sizes used looks like:
19518 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19520 </DD>
19522 <DT>KSIZE</DT>
19523 <DD>
19524 This token represents the total size of the message, expressed in
19525 kilobytes or megabytes, as most appropriate.
19526 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19527 The progression of sizes used looks like:
19530 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19532 </DD>
19534 <DT>SIZENARROW</DT>
19535 <DD>
19536 This token represents the total size, in bytes, of the message.
19537 If a &quot;K&quot; (Kilobyte)
19538 follows the number, the size is approximately 1,000
19539 times that many bytes.
19540 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19541 1,000,000 times that many bytes.
19542 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19543 1,000,000,000 times that many bytes.
19544 This field uses only five characters of screen width, including the enclosing
19545 parentheses.
19546 The progression of sizes used looks like:
19549 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19551 </DD>
19553 <DT>DESCRIPSIZE</DT>
19554 <DD>
19555 This token is intended to represent a more useful description of the
19556 message than just its size, but it isn't very useful at this point.
19557 The plus sign in this view means there are attachments.
19558 Note that including this token in
19559 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19560 display a little while Alpine collects the necessary information.
19561 </DD>
19563 <DT>SUBJKEY</DT>
19564 <DD>
19565 This token is the same as the SUBJECT token unless keywords are set for
19566 the message.
19567 In that case, a list of keywords enclosed in braces will be prepended to
19568 the subject of the message.
19569 Only those keywords that you have defined in your
19570 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19571 in Setup/Config are considered in the list.
19572 In other words, keywords that have been set by some other means, perhaps
19573 by another email program, won't show up unless included in
19574 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19575 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19576 prepended to the subject in the MESSAGE TEXT screen.
19577 If you have given a keyword a nickname
19578 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19579 instead of the actual keyword.
19580 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19581 option may be used to modify this token slightly.
19582 It is also possible to color keywords in the index using the
19583 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19584 </DD>
19586 <DT>SUBJKEYINIT</DT>
19587 <DD>
19588 This token is the same as the SUBJKEY token except that instead of
19589 prepending a list of keywords to the subject, a list of first initials
19590 of keywords will be prepended instead.
19591 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19592 set (or Work and Now are the Alpine nicknames of keywords that are set)
19593 then the SUBJKEY token would cause a result like
19595 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19597 whereas the SUBJKEYINIT token would give
19599 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19601 Only those keywords that you have defined in your
19602 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19603 in Setup/Config are considered in the list.
19604 In other words, keywords that have been set by some other means, perhaps
19605 by another email program, won't show up unless included in
19606 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19607 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19608 option may be used to modify this token slightly.
19609 It is also possible to color keywords in the index using the
19610 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19611 </DD>
19613 <DT>SUBJECTTEXT</DT>
19614 <DD>
19615 Same as SUBJECT but if there is room in the Subject field for more text,
19616 the opening part of the text of the message is displayed after the subject.
19617 The time needed to fetch the text may cause a performance problem
19618 which can, of course, be avoided by using the SUBJECT version of
19619 the Subject instead.
19620 You may color this opening text differently by using the
19621 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19622 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19623 You may adjust the characters that are displayed between the Subject and the
19624 opening text with the option
19625 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19626 </DD>
19628 <DT>SUBJKEYTEXT</DT>
19629 <DD>
19630 Same as SUBJKEY but with the opening message text.
19631 </DD>
19633 <DT>OPENINGTEXT</DT>
19634 <DD>
19635 This is similar to SUBJECTTEXT.
19636 Instead of combining the Subject and the opening text in a single
19637 field in the index screen this token allows you to allocate a
19638 separate column just for the opening text of the message.
19639 The time needed to fetch this text may cause a performance problem.
19640 You may color this opening text differently by using the
19641 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19642 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19643 </DD>
19645 <DT>OPENINGTEXTNQ</DT>
19646 <DD>
19647 This is very similar to OPENINGTEXT.
19648 The NQ stands for No Quotes.
19649 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19650 For some messages this may be confusing.
19651 For example, a message might have a line preceding some quoted
19652 text that reads something like &quot;On May 8th person A said.&quot;
19653 That no longer makes sense after the quoted text is deleted and it
19654 will appear that person A said whatever the text after the quote
19655 is, even though that is really person B talking.
19656 </DD>
19658 <DT>SUBJKEYINITTEXT</DT>
19659 <DD>
19660 Same as SUBJKEYINIT but with the opening message text.
19661 </DD>
19663 <DT>KEY</DT>
19664 <DD>
19665 This is a space-delimited list of keywords that are set for the message.
19666 Only those keywords that you have defined in your
19667 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19668 in Setup/Config are considered in the list.
19669 In other words, keywords that have been set by some other means, perhaps
19670 by another email program, won't show up unless included in
19671 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19672 If you have given a keyword a nickname
19673 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19674 instead of the actual keyword.
19675 It is also possible to color keywords in the index using the
19676 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19677 This token defaults to an arbitrary width of 5.
19678 You should set it to whatever width suits you using something
19679 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19680 </DD>
19682 <DT>KEYINIT</DT>
19683 <DD>
19684 This is a list of keyword initials that are set for the message.
19685 If you have given a keyword a nickname
19686 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19687 is displayed instead of the initial of the actual keyword.
19688 It is also possible to color keyword initials in the index using the
19689 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19690 This token defaults to an arbitrary width of 2.
19691 You should set it to whatever width suits you using something
19692 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19693 </DD>
19695 <DT>PRIORITY</DT>
19696 <DD>
19697 The X-Priority header is a non-standard header that is used in a
19698 somewhat standard way by many mail programs.
19699 Alpine expects the value of this header to be a digit with a value
19700 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19701 Since this priority is something that the sender sets it is only an indication
19702 of the priority that the sender attaches to the mail and it is therefore almost
19703 totally unreliable for use as a filtering criterion.
19704 This token will display the numeric value of the priority if it is between
19705 1 and 5.
19706 It will be suppressed (blank) if the value is 3, which is normal priority.
19707 This token may be colored with the
19708 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19709 </DD>
19711 <DT>PRIORITYALPHA</DT>
19712 <DD>
19713 This is a more verbose interpretation of the X-Priority field.
19714 Once again nothing is displayed unless the value of the field
19715 is 1, 2, 4, or 5.
19716 The values displayed for those values are:
19718 <TABLE>
19719 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19720 <TR> <TD>2</TD> <TD>High</TD> </TR>
19721 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19722 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19723 </TABLE>
19725 This token may be colored with the
19726 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19727 </DD>
19729 <DT>PRIORITY!</DT>
19730 <DD>
19731 This is a one character, non-numeric version of the X-Priority field.
19732 If the value of the X-Priority header is 1 or 2 an exclamation
19733 point is displayed.
19734 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19735 This token may be colored with the
19736 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19737 </DD>
19739 <DT>ATT</DT>
19740 <DD>
19741 This is a one column wide field that represents the number of attachments
19742 a message has. It will be blank if there are no attachments, a single
19743 digit for one to nine attachments, or an asterisk for more than nine.
19744 Note that including this token in
19745 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19746 display a little while Alpine collects the necessary information.
19747 </DD>
19749 <DT>FROMORTO</DT>
19750 <DD>
19751 This token represents <EM>either</EM> the personal name (or email address) of
19752 the person listed in the message's &quot;From:&quot; header
19753 field, <EM>or</EM>, if that address is yours or one of your
19754 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19755 the first person specified in the
19756 message's &quot;To:&quot; header field
19757 with the prefix &quot;To: &quot; prepended.
19758 If the from address is yours and there is also no &quot;To&quot; address,
19759 Alpine will use the address on the &quot;Cc&quot; line.
19760 If there is no address there, either, Alpine will look for a newsgroup name
19761 from the &quot;Newsgroups&quot; header field and put
19762 that after the &quot;To: &quot; prefix.
19763 </DD>
19765 <DT>FROMORTONOTNEWS</DT>
19766 <DD>
19767 This is almost the same as <EM>FROMORTO</EM>.
19768 The difference is that newsgroups aren't considered.
19769 When a message is from you, doesn't have a To or Cc, and does have
19770 a Newsgroups header; this token will be your name instead of the name
19771 of the newsgroup (like it would be with FROMORTO).
19772 </DD>
19774 <DT>TEXT</DT>
19775 <DD>
19776 This is a different sort of token.
19777 It allows you to display a label within each index line.
19778 It will be the same fixed text for each line.
19779 It is different from all the other tokens in that there is no space column
19780 displayed after this token.
19781 Instead, it is butted up against the following field.
19782 It also has a different syntax.
19783 The text to display is given following a colon after the
19784 word &quot;TEXT&quot;.
19785 For example,
19787 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19789 would insert the literal text &quot;abc=&quot; (without the quotes)
19790 into the index display line.
19791 You must quote the text if it includes space characters, like
19793 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19795 </DD>
19797 <DT>HEADER</DT>
19798 <DD>
19799 This allows you to display the text from a particular header line in the
19800 message.
19801 The syntax for this token is substantially different from all the others
19802 in order that you might be able to display a portion of the text following
19803 a particular header.
19804 The header name you are interested in is given following a colon
19805 after the word &quot;HEADER&quot;.
19806 For example,
19808 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19810 would display the text of the X-Spam header, if any.
19811 Like for other index tokens a width field may (and probably should)
19812 follow this.
19814 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19816 displays the first ten characters of the X-Spam header.
19817 Unlike other index tokens, the syntax for HEADER is more flexible.
19818 An optional second argument comes after a comma inside the parentheses.
19819 It specifies the &quot;field&quot; number.
19820 By default, the field separator is a space character.
19821 No extra space characters are allowed in the argument list.
19823 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19825 would display the second field, left-justified, in a 10 character
19826 wide field.
19827 The second field would consist of all the text after the first space
19828 up to the next space or the end of the header.
19829 The default field number is zero, which stands for the entire line.
19830 There is also an optional third argument that is a list of field
19831 separators. It defaults to a space character.
19832 The example
19834 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19836 would cause the field separators to be any of colon, percent,
19837 or space (there is a space character between the percent and the
19838 right parenthesis).
19839 The first field runs from the start of the header value up to the first
19840 colon, percent, or space; the second goes from there to the next; and so on.
19841 In order to use a comma character as a field separator you must escape
19842 it by preceding it with a backslash (&#92;).
19843 The same is true of the backslash character itself.
19844 There is one further optional argument.
19845 It is an R or an L to specify right or left adjustment of the text
19846 within the field.
19847 The default is to left justify, however if you are displaying numbers
19848 you might prefer to right justify.
19850 Here's an example of a SpamAssassin header.
19851 The exact look of the header will vary, but if your incoming mail
19852 contains headers that look like the following
19854 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19856 you might want to display the hits value.
19857 The first field starts with the Y in Yes.
19858 To get what you're interested in you might use &quot;=&quot; and
19859 space as the field separators and display the third field, like
19861 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
19863 or maybe you would break at the dot instead
19865 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
19867 Another example we've seen has headers that look like
19869 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19871 Because there are two equals and a comma before the 7% and a comma
19872 after it, the token
19874 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
19876 should display the probability (for example 7% or 83%) right justified
19877 in a 3-wide field.
19878 </DD>
19880 <DT>ARROW</DT>
19881 <DD>
19882 This gives an alternative way to display the current message in the
19883 MESSAGE INDEX screen.
19884 Usually the current message is indicated by the line being shown in
19885 reverse video.
19886 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
19887 the current line will include an &quot;arrow&quot; that
19888 looks like
19890 <CENTER><SAMP>-&gt;</SAMP></CENTER>
19892 in the ARROW token's field.
19893 For all of the non-current messages, the ARROW field will be filled
19894 with blanks.
19895 If you use the fixed-field width feature the length of the &quot;arrow&quot;
19896 may be adjusted.
19897 The arrow will be drawn as width-1 dashes followed by a greater than sign.
19898 For example, if you use ARROW(3) you will get
19900 <CENTER><SAMP>--&gt;</SAMP></CENTER>
19902 and ARROW(1) will give you just
19904 <CENTER><SAMP>&gt;</SAMP></CENTER>
19906 It is also possible to set the color of the ARROW field.
19907 By default (and for non-current messages) the arrow is colored the same
19908 as the index line it is part of.
19909 You may set it to be another color with the 
19910 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
19911 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19912 </DD>
19914 <DT>SCORE</DT>
19915 <DD>
19916 This gives the
19917 <a href="h_rules_score">score</a>
19918 of each message.
19919 This will be six columns wide to accomodate the widest possible score.
19920 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
19921 to limit the width of the field to the widest score that
19922 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
19923 If you have not defined any score rules the scores will all be zero.
19924 If any of your score rules contain AllText or BodyText patterns
19925 then including SCORE in the <!--#echo var="VAR_index-format"-->
19926 may slow down the display of the MESSAGE INDEX screen.
19927 </DD>
19928 </DL>
19931 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
19933 <DL>
19934 <DT>CURNEWS</DT>
19935 <DD>
19936 This token represents the current newsgroup if there is one.
19937 For example, &quot;comp.mail.pine&quot;.
19938 </DD>
19940 <DT>MSGID</DT>
19941 <DD>
19942 This token represents the message ID of the message.
19943 This token does not work with Filter Rule folder names.
19944 </DD>
19946 <DT>CURDATE</DT>
19947 <DD>
19948 This token represents the current date.
19949 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19950 </DD>
19952 <DT>CURDATEISO</DT>
19953 <DD>
19954 This token represents the current date.
19955 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19956 </DD>
19958 <DT>CURDATEISOS</DT>
19959 <DD>
19960 This token represents the current date.
19961 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19962 </DD>
19964 <DT>CURPREFDATE</DT>
19965 <DD>
19966 This token represents the current date.
19967 It is your operating system's idea of the preferred date representation for the current locale.
19968 Internally it uses the %x version of the date from the strftime routine.
19969 </DD>
19971 <DT>CURPREFTIME</DT>
19972 <DD>
19973 This token represents the current time.
19974 It is the preferred time representation for the current locale.
19975 Internally it uses the %X version of the time from the strftime routine.
19976 </DD>
19978 <DT>CURPREFDATETIME</DT>
19979 <DD>
19980 This token represents the current date and time.
19981 It is the preferred date and time representation for the current locale.
19982 Internally it uses the %c version of the time from the strftime routine.
19983 </DD>
19985 <DT>CURTIME24</DT>
19986 <DD>
19987 This token represents the current time.
19988 It has the format HH:MM. For example, &quot;17:28&quot;.
19989 </DD>
19991 <DT>CURTIME12</DT>
19992 <DD>
19993 This token represents the current time.
19994 This time is for a 12 hour clock.
19995 It has the format HH:MMpm.
19996 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19997 </DD>
19999 <DT>CURDAY</DT>
20000 <DD>
20001 This token represents the current day of the month.
20002 For example, &quot;23&quot; or &quot;9&quot;.
20003 </DD>
20005 <DT>CURDAY2DIGIT</DT>
20006 <DD>
20007 This token represents the current day of the month.
20008 For example, &quot;23&quot; or &quot;09&quot;.
20009 It is always 2 digits.
20010 </DD>
20012 <DT>CURDAYOFWEEK</DT>
20013 <DD>
20014 This token represents the current day of the week.
20015 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20016 </DD>
20018 <DT>CURDAYOFWEEKABBREV</DT>
20019 <DD>
20020 This token represents the current day of the week.
20021 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20022 </DD>
20024 <DT>CURMONTH</DT>
20025 <DD>
20026 This token represents the current month.
20027 For example, &quot;10&quot; or &quot;9&quot;.
20028 </DD>
20030 <DT>CURMONTH2DIGIT</DT>
20031 <DD>
20032 This token represents the current month.
20033 For example, &quot;10&quot; or &quot;09&quot;.
20034 It is always 2 digits.
20035 </DD>
20037 <DT>CURMONTHLONG</DT>
20038 <DD>
20039 This token represents the current month.
20040 For example, &quot;October&quot;.
20041 </DD>
20043 <DT>CURMONTHABBREV</DT>
20044 <DD>
20045 This token represents the current month.
20046 For example, &quot;Oct&quot;.
20047 </DD>
20049 <DT>CURYEAR</DT>
20050 <DD>
20051 This token represents the current year.
20052 For example, &quot;1998&quot; or &quot;2001&quot;.
20053 </DD>
20055 <DT>CURYEAR2DIGIT</DT>
20056 <DD>
20057 This token represents the current year.
20058 For example, &quot;98&quot; or &quot;01&quot;.
20059 It is always 2 digits.
20060 </DD>
20062 <DT>LASTMONTH</DT>
20063 <DD>
20064 This token represents last month.
20065 For example, if this is November (the 11th month),
20066 it is equal to &quot;10&quot; or if this is October (the 10th month),
20067 it is &quot;9&quot;.
20068 It is possible that this and the other tokens beginning with LASTMONTH
20069 below could be useful when used with a Filtering Rule that
20070 has the &quot;Beginning of Month&quot; option set.
20071 </DD>
20073 <DT>LASTMONTH2DIGIT</DT>
20074 <DD>
20075 This token represents last month.
20076 For example, if this is November (the 11th month),
20077 it is equal to &quot;10&quot; or if this is October (the 10th month),
20078 it is &quot;09&quot;.
20079 It is always 2 digits.
20080 </DD>
20082 <DT>LASTMONTHLONG</DT>
20083 <DD>
20084 This token represents last month.
20085 For example, if this is November the value is &quot;October&quot;.
20086 </DD>
20088 <DT>LASTMONTHABBREV</DT>
20089 <DD>
20090 This token represents last month.
20091 For example, if this is November the value is &quot;Oct&quot;.
20092 </DD>
20094 <DT>LASTMONTHYEAR</DT>
20095 <DD>
20096 This token represents what the year was a month ago.
20097 For example, if this is October, 1998, it is &quot;1998&quot;.
20098 If this is January, 1998, it is &quot;1997&quot;.
20099 </DD>
20101 <DT>LASTMONTHYEAR2DIGIT</DT>
20102 <DD>
20103 This token represents what the year was a month ago.
20104 For example, if this is October, 1998, it is &quot;98&quot;.
20105 If this is January, 1998, it is &quot;97&quot;.
20106 </DD>
20108 <DT>LASTYEAR</DT>
20109 <DD>
20110 This token represents last year.
20111 For example, if this is 1998, it equals &quot;1997&quot;.
20112 It is possible that this
20113 could be useful when used with a Filtering Rule that
20114 has the &quot;Beginning of Year&quot; option set.
20115 </DD>
20117 <DT>LASTYEAR2DIGIT</DT>
20118 <DD>
20119 This token represents last year.
20120 For example, if this is 1998, it equals &quot;97&quot;.
20121 It is always 2 digits.
20122 </DD>
20124 <DT>ROLENICK</DT>
20125 <DD>
20126 This token represents the nickname of the
20127 role currently being used.  If no role is being used,
20128 then no text will be printed for this token.
20129 This token does not work with Filter Rule folder names.
20130 </DD>
20131 </DL>
20134 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20135 See the help for the
20136 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20137 to see why you might want to use this.
20138 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20139 must be surrounded by underscores when used.
20141 <DL>
20142 <DT>NEWLINE</DT>
20143 <DD>
20144 This is an end of line marker.
20145 </DD>
20146 </DL>
20149 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20151 <DL>
20152 <DT>CURSORPOS</DT>
20153 <DD>
20154 This token is different from the others.
20155 When it is replaced it is replaced with nothing, but it sets an Alpine
20156 internal variable that tells the composer to start with the cursor
20157 positioned at the position where this token was.
20158 If both the template file and the signature file contain
20159 a &quot;CURSORPOS&quot; token, then the position in the template file
20160 is used.
20161 If there is a template file and neither it nor the signature file contains
20162 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20163 after the end of the contents of the
20164 template file when the composer starts up.
20165 </DD>
20166 </DL>
20169 &lt;End of help on this topic&gt;
20170 </BODY>
20171 </HTML>
20172 ======= h_reply_token_conditionals =======
20173 <HTML>
20174 <HEAD>
20175 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20176 </HEAD>
20177 <BODY>
20178 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20180 Conditional text inclusion may be used with
20181 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20182 in signature files, and in template files used in
20183 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20184 It may <EM>not</EM> be used with the
20185 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20188 There is a limited if-else capability for including text.
20189 The if-else condition is based
20190 on whether or not a given token would result in replacement text you
20191 specify.
20192 The syntax of this conditional inclusion is
20194 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20196 The left parenthesis must follow the underscore immediately, with no
20197 intervening space.
20198 It means the token is expanded and the results of that expansion are
20199 compared against the &quot;match_this&quot; argument.
20200 If there is an exact match, then the &quot;if_matched&quot; text is used
20201 as the replacement text.
20202 Otherwise, the &quot;if_not_matched&quot; text is used.
20203 One of the most useful values for the &quot;match_this&quot; argument is
20204 the empty string, &quot;&quot;.
20205 In that case the expansion is compared against the empty string.
20207 Here's an example to make it clearer.
20208 This text could be included in one of your template files:
20210 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20212 If that is included in a template file that you are using while replying
20213 to a message (because you chose to use the role it was part of),
20214 and that message has a newsgroup header and a newsgroup in that header,
20215 then the text
20217 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20219 will be included in the message you are about to compose.
20220 On the other hand, if the message you are replying to does not have
20221 a newsgroup, then the text
20223 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20225 would be included instead.
20226 This would also work in signature files and in
20227 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20228 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20229 or &quot;if_not_matched&quot; arguments contain
20230 spaces, parentheses, or commas;
20231 they have to be quoted with double quotation marks (like in the example
20232 above).
20233 If you want to include a literal quote (&quot;) in the text you must escape the
20234 quote by preceding it with a backslash (&#92;) character.
20235 If you want to include a literal backslash character you must escape it
20236 by preceding it with another backslash.
20238 The comma followed by &quot;if_not_matched&quot; is optional.
20239 If there is no &quot;if_not_matched&quot;
20240 present then no text is included if the not_matched case is true.
20241 Here's another example:
20243 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20245 Here you can see that tokens may appear in the arguments.
20246 The same is true for tokens with the conditional parentheses.
20247 They may appear in arguments,
20248 though you do have to be careful to get the quoting and escaping of
20249 nested double quotes correct.
20250 If this was in the signature file being used and you were replying to a message
20251 sent to comp.mail.pine the resulting text would be:
20253 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20255 If you were replying to a message that wasn't sent to any newsgroup the
20256 resulting text would be a single blank line.
20257 The reason you'd get a blank line is because the end of the line is
20258 outside of the conditional, so is always included.
20259 If you wanted to get rid of that blank line you could do so by moving
20260 the end of line inside the conditional.
20261 In other words, it's ok to have multi-line
20262 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20263 template file.
20264 The text just continues until the next double quotation, even if it's not
20265 on the same line.
20267 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20269 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20271 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20272 while reading the newsgroup comp.mail.pine the resulting text would be:
20274 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20276 If you were replying to a message while reading an email folder instead
20277 of a newsgroup the resulting leadin text would be
20279 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20281 Here's one more (contrived) example illustrating a matching argument
20282 that is not the empty string.
20284 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20286 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20287 were replying to
20288 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20289 would be
20291 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20293 But if you were replying to a message sent on Oct. 27 (and that wasn't
20294 today) you would get
20296 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20299 &lt;End of help on this topic&gt;
20300 </BODY>
20301 </HTML>
20302 ======= h_composer_cntxt_nick =======
20303 <HTML>
20304 <HEAD>
20305 <TITLE>Collection Nickname Explained</TITLE>
20306 </HEAD>
20307 <BODY>
20308 <H1>Collection Edit Help -- Nickname Field</H1>
20310 This field is provided so you can add a short nickname to use when
20311 referring to this collection within Alpine.  Spaces are allowed, and
20312 you don't need to use double-quotes.  However, the double-quote
20313 character is not allowed.
20315 Look <A HREF="h_edit_nav_cmds">here</A>
20316 to see the available Editing and Navigation commands.
20318 &lt;End of help on this topic&gt;
20319 </BODY>
20320 </HTML>
20321 ======= h_folder_server_syntax =======
20322 <HTML>
20323 <HEAD>
20324 <TITLE>Server Name Syntax</TITLE>
20325 </HEAD>
20326 <BODY>
20327 <H1>Server Name Syntax</H1>
20329 This help describes the syntax that may be used for server names
20330 that may be associated with remote folders or SMTP servers.
20333 A server name is the hostname of the server.
20334 It's a good idea to use the host's fully-qualified network name.
20337 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20340 However, IP addresses are allowed if surrounded
20341 with square-brackets.
20344 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20347 An optional network port number may be supplied by appending
20348 a colon (:) followed by the port number
20349 to the server name.
20350 By default, the IMAP port number, 143, is used.
20353 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20356 Besides server name and optional port number, various other optional
20357 parameters may be supplied that alter Alpine's interaction with the server.
20358 A parameter is supplied by appending a slash (/) character followed by
20359 the parameter's name and,
20360 depending on the particular parameter, the value assigned to that
20361 name, to the server name (and optional port number).
20362 Parameter names are <EM>not</EM> case sensitive.
20363 Currently supported parameters include:
20365 <DL>
20367 <DT>User</DT>
20368 <DD>This parameter requires an associated value, and is intended to
20369 provide the username identifier with which to establish the server
20370 connection.
20371 If your SMTP server offers SMTP AUTH authentication, adding this 
20372 parameter to the
20373 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20374 option will cause Alpine to attempt to authenticate to the server using the
20375 supplied username.
20376 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20377 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20378 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20379 option (or to the server name for any folder collection using NNTP)
20380 will cause Alpine to attempt
20381 to authenticate to the server using the supplied username.
20382 An example might be:
20385 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20388 </DD>
20390 <DT>TLS</DT>
20391 <DD>
20392 Normally, when a new connection is made an attempt is made to 
20393 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20394 If that fails then a non-encrypted connection will be attempted instead.
20395 This is a unary parameter indicating communication with the server must 
20396 take place over a TLS connection. If the attempt to use TLS fails then
20397 this parameter will cause the connection to fail instead of falling
20398 back to an unsecure connection.
20401 <CENTER><SAMP>/tls</SAMP></CENTER>
20404 </DD>
20406 <DT>SSL</DT>
20407 <DD>
20408 This is a unary parameter indicating communication with the server should 
20409 take place over a Secure Socket Layer connection.  The server must support
20410 this method, and be prepared to accept connections on the appropriate
20411 port (993 by default).
20412 Alpine must be linked with an SSL library for this option to be operational.
20415 <CENTER><SAMP>/ssl</SAMP></CENTER>
20418 </DD>
20420 <DT>TLS1</DT>
20421 <DD>
20422 This parameter indicates that the connection to the server will be made
20423 over the SSL port, but using the TLSv1 protocol, instead of the usual
20424 SSLv3 or SSLv2 protocols.
20425 Alpine must be linked with an SSL library for this option to be operational.
20428 <CENTER><SAMP>/tls1</SAMP></CENTER>
20431 </DD>
20433 <DT>DTLS1</DT>
20434 <DD>
20435 This parameter indicates that the connection to the server will be made
20436 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20437 SSLv3 or SSLv2 protocols.
20438 Alpine must be linked with an SSL library for this option to be operational.
20441 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20444 </DD>
20446 <DT>TLS1_1</DT>
20447 <DD>
20448 This parameter indicates that the connection to the server will be made
20449 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20450 SSLv3 or SSLv2 protocols.
20451 Alpine must be linked with an SSL library for this option to be operational.
20454 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20457 </DD>
20459 <DT>TLS1_2</DT>
20460 <DD>
20461 This parameter indicates that the connection to the server will be made
20462 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20463 SSLv3 or SSLv2 protocols.
20464 Alpine must be linked with an SSL library for this option to be operational.
20467 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20470 </DD>
20473 <DT>NoValidate-Cert</DT>
20474 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20475 This is needed if the server uses self-signed certificates or if Alpine
20476 cannot validate the certificate for some other known reason.
20478 </DD>
20480 <DT>Anonymous</DT>
20481 <DD>This is a unary parameter (that means it does not have a value)
20482 indicating that the connection be logged in as
20483 &quot;anonymous&quot; rather than a specific user.
20484 Not all servers offer anonymous
20485 access; those which do generally only offer read-only access to certain
20486 &quot;public&quot; folders.
20489 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20492 </DD>
20494 <DT>Secure</DT>
20495 <DD>This is a unary parameter indicating that the connection use the
20496 most secure authentication method mutually supported by Alpine and the
20497 server.
20498 Alpine is capable of authenticating connections to 
20499 the server using several methods.
20500 By default, Alpine will attempt each
20501 method until either a connection is established or the
20502 list of methods is exhausted.
20503 This parameter causes Alpine to instead fail 
20504 the connection if the first (generally most &quot;secure&quot;) method fails.
20507 <CENTER><SAMP>/secure</SAMP></CENTER>
20510 </DD>
20512 <DT>Submit</DT>
20513 <DD>This is a unary parameter for use with the
20514 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20515 It indicates that the connection should be made to the Submit server
20516 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20517 (port 587) instead of the SMTP port (25).
20518 At the time this help was written the submit option was equivalent to
20519 specifying port 587.
20522 <CENTER><SAMP>/submit</SAMP></CENTER>
20526 <CENTER><SAMP>host:587</SAMP></CENTER>
20529 </DD>
20531 <DT>Debug</DT>
20532 <DD>This is a unary parameter indicating that the connection be established
20533 in a verbose mode.  Basically, it causes Alpine to log the communication with
20534 the server in Alpine's debug file.
20535 Normally, the pine -d command-line flag would be used instead.
20537 </DD>
20539 <DT>NoRsh</DT>
20540 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20541 the UNIX remote shell program.
20542 Including &quot;NoRsh&quot; will cause connections to this server to skip
20543 the &quot;rsh&quot; attempt.
20544 This might be useful to avoid long timeouts caused by rsh firewalls, for
20545 example.
20547 </DD>
20549 <DT>Loser</DT>
20550 <DD>This option makes sense only for IMAP servers that do not perform
20551 a SEARCH command correctly. If your filtering rules
20552 fail to filter some messages, that should have been filtered, then this
20553 option will make Alpine download all data necessary data to perform that 
20554 search. There is a performance penalty when using this option. Downloading 
20555 the data to perfom the search will take longer than requesting the IMAP
20556 server to perform the filtering, but the filtering will be done correctly.
20558 </DD>
20561 <DT>Service</DT>
20562 <DD>This parameter requires an associated value.  The default value is
20563 &quot;IMAP&quot; which indicates communication with the server based
20564 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20565 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20567 Other service values include:
20568  <DL>
20569  <DT>NNTP</DT>
20570  <DD>This value indicates communication with the server takes place via
20571 the Network News Transfer Protocol.  Use this to define a collection
20572 of newsgroups on a remote news server.  So
20575 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20577 or just
20579 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20582 is the way to specify NNTP access.
20584  </DD>
20586  <DT>POP3</DT>
20587  <DD>This value indicates communication with the server takes place via the
20588 Post Office Protocol 3 protocol.
20591 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20593 or just
20595 <CENTER><SAMP>/POP3</SAMP></CENTER>
20598 Note that there are several important issues
20599 to consider when selecting this option:
20600 <OL>
20601  <LI> POP3 provides access to only your INBOX.  In other words,
20602 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20603  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20604 model and will leave your mail on the server. Refer to the
20605 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20606  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20607 </OL>
20608 </DD>
20609 </DL>
20610 </DL>
20613 Note that it is possible to include more than one parameter in a server
20614 specification by concatenating the parameters. For example:
20617 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20621 &lt;End of help on this topic&gt;
20622 </BODY>
20623 </HTML>
20624 ======= h_composer_cntxt_server =======
20625 <HTML>
20626 <HEAD>
20627 <TITLE>Collection Server: Explained</TITLE>
20628 </HEAD>
20629 <BODY>
20630 <H1>Collection Edit Help -- Server Field</H1>
20632 This collection's &quot;Server:&quot; definition indicates the
20633 hostname of the server providing access to the folders in this
20634 collection.
20635 The syntax of this server name is the same as for other server names used
20636 in remote folder names in
20637 Alpine and is described
20638 <A HREF="h_folder_server_syntax">here</A>.
20641 &lt;End of help on this topic&gt;
20642 </BODY>
20643 </HTML>
20644 ======= h_composer_cntxt_path =======
20645 <HTML>
20646 <HEAD>
20647 <TITLE>Collection Path: Explained</TITLE>
20648 </HEAD>
20649 <BODY>
20650 <H1>Collection Edit Help -- Path Field</H1>
20652 The collection's &quot;Path:&quot; definition indicates the location
20653 of the folders in this collection.  If the path or any of its components
20654 do not exist, Alpine will prompt you for their creation when exiting the
20655 Add/Change screen.
20657 <P> 
20658 By default the path is interpreted as defining a section of your personal
20659 folder area.  This area and how you specify it are defined by the
20660 server, if one is specified in the collection, or, typically, the home
20661 directory if no server is defined.
20664 To define a collection outside the default &quot;area&quot;, prefix
20665 the path with the &quot;namespace&quot; to use when interpreting the
20666 given path.  If a namespace is specified, the Path begins with the
20667 sharp, &quot;#&quot;, character followed by the name of the namespace
20668 and then the namespace's path-element-delimiter.  Aside from the
20669 path's format, namespaces can also imply access rights, content
20670 policy, audience, location, and, occasionally, access methods.
20673 Each server exports its own set (possibly of size one) of 
20674 namespaces.  Hence, it's likely communication with your server's
20675 administrator will be required for specific configurations.  Some of
20676 the more common namespaces, however, include:
20678 <DL>
20679 <DT>#news.</DT>
20680 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20681 names are hierarchically defined with each level delimited by a period.
20682 </DD>
20683 <DT>#public/</DT>
20684 <DD>This specifies a folder area that the server may export to the general
20685 public.
20686 </DD>
20687 <DT>#shared/</DT>
20688 <DD>This specifies a folder area that the folder may export to groups
20689 of users.
20690 </DD>
20691 <DT>#ftp/</DT>
20692 <DD>This specifies a folder area that is the same as that it may have 
20693 exported via the &quot;File Transfer Protocol&quot;.
20694 </DD>
20695 <DT>#mh/</DT>
20696 <DD>This specifies the personal folder area associated with folders
20697 and directories that were created using the MH message handling system.
20698 </DD>
20699 </DL>
20702 In addition, the server may support access to other user's folders,
20703 provided you have suitable permissions.  Common methods use a prefix
20704 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20705 indicate the root of the other user's folder area.
20708 No, nothing's simple.
20711 &lt;End of help on this topic&gt;
20712 </BODY>
20713 </HTML>
20714 ======= h_composer_cntxt_view =======
20715 <HTML>
20716 <HEAD>
20717 <TITLE>Collection View: Explained</TITLE>
20718 </HEAD>
20719 <BODY>
20720 <H1>Collection Edit Help -- View Field</H1>
20722 The collection's &quot;View:&quot; definition provides a way to limit
20723 the displayed list of folders within a collection.  By default, only
20724 folders that contain the specified characters anywhere in their name
20725 are shown in the collection's folder list.
20728 Additionally, you can use a wildcard character to better control
20729 the list of folders selected for display.  The wildcard specifier is
20730 the star, &quot;*&quot;, character.
20733 So, for example, to define a collection of all folders ending with
20734 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20735 quote characters!).  Or, similarly, to define a collection of folders
20736 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20737 specify a view of &quot;a*z&quot;.
20740 &lt;End of help on this topic&gt;
20741 </BODY>
20742 </HTML>
20743 ======= h_composer_abook_add_server =======
20744 <HTML>
20745 <HEAD>
20746 <TITLE>Addressbook Server Name Field Explained</TITLE>
20747 </HEAD>
20748 <BODY>
20749 This field should be left blank if the address book is stored in a regular
20750 file on this system.  If it is a remote address book stored on an IMAP
20751 server then this is the name of that IMAP server.
20753 Look <A HREF="h_edit_nav_cmds">here</A>
20754 to see the available Editing and Navigation commands.
20756 &lt;End of help on this topic&gt;
20757 </BODY>
20758 </HTML>
20759 ======= h_composer_abook_add_folder =======
20760 <HTML>
20761 <HEAD>
20762 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20763 </HEAD>
20764 <BODY>
20765 For a remote address book (one for which the Server Name is filled in)
20766 this is the name of a folder on the remote server. The address book data
20767 will be stored in this folder. This folder should be used only for
20768 storing this single address book, not for other address books or for
20769 other messages.
20771 For a local address book (one for which the Server Name is not filled in)
20772 this is the name of a file in which the address book will be stored.
20773 The file is in the same directory as the Alpine configuration file if the
20774 configuration file is local.
20775 If the configuration file is remote, then this will be in the home directory
20776 for Unix Alpine and in the directory specified by the
20777 &quot;-aux local_directory&quot; command line argument.
20779 Look <A HREF="h_edit_nav_cmds">here</A>
20780 to see the available Editing and Navigation commands.
20782 &lt;End of help on this topic&gt;
20783 </BODY>
20784 </HTML>
20785 ======= h_composer_abook_add_nick =======
20786 <HTML>
20787 <HEAD>
20788 <TITLE>Addressbook NickName Field Explained</TITLE>
20789 </HEAD>
20790 <BODY>
20791 This is just an optional nickname for this address book. If present, it
20792 is used in some of the displays and error messages in the address book
20793 maintenance screens. It is for your convenience only and serves no
20794 other purpose.
20796 Look <A HREF="h_edit_nav_cmds">here</A>
20797 to see the available Editing and Navigation commands.
20799 &lt;End of help on this topic&gt;
20800 </BODY>
20801 </HTML>
20802 ======= h_composer_qserv_cn =======
20803 <HTML>
20804 <HEAD>
20805 <TITLE>Directory Query Form Explained</TITLE>
20806 </HEAD>
20807 <BODY>
20809 Fill in as many of these fields as you wish to narrow down your
20810 search. All the fields you fill in must match in order for an entry
20811 to be returned. You may use the wildcard character &quot;*&quot; in
20812 any of the fields, it matches any zero or more characters at that
20813 point in the string. There are no implicit wildcards, so the match is
20814 exact unless you include wildcards.
20817 Note that if an attribute isn't present at all, then the match will fail.
20818 For example, if a server doesn't support the Locality attribute, then no
20819 matter what you put in the Locality field (other than leaving it empty)
20820 the search will fail.
20823 This field, the Common Name field, is typically a person's full name.
20826 <H1>EDITING and NAVIGATION COMMANDS</H1>
20827 <!--chtml if pinemode="function_key"-->
20828 <PRE>
20829 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20830 ^B (Left Arrow)    Back character       | ^D       Delete current character
20831 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20832 ^P (Up Arrow)      Previous line        |
20833 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20834 ^A                 Beginning of line    |            delete current line
20835 ^E                 End of line          | F10      Undelete line(s)
20836 F7                 Previous page        |
20837 F8                 Next page            |-------------------------------------
20838 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20839 ----------------------------------------|
20840 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
20841 F2   Cancel      |   F1    Get help     |
20842 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
20843 </PRE>
20844 <!--chtml else-->
20845 <PRE>
20846 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20847 ^B (Left Arrow)    Back character       | ^D       Delete current character
20848 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20849 ^P (Up Arrow)      Previous line        |
20850 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
20851 ^A                 Beginning of line    |            delete current line
20852 ^E                 End of line          | ^U       Undelete line(s)
20853 ^Y                 Previous page        |
20854 ^V                 Next page            |-------------------------------------
20855 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20856 ----------------------------------------|
20857 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
20858 ^C   Cancel      |   ^G    Get help     |
20859 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
20860 </PRE>
20861 <!--chtml endif-->
20862 <P><UL>
20863 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20864 </UL><P>
20865 &lt;End of help on this topic&gt;
20866 </BODY>
20867 </HTML>
20868 ======= h_composer_qserv_sn =======
20870 The Surname is usually the family name of a person.
20872 <End of help on this topic>
20873 ======= h_composer_qserv_gn =======
20875 This is the part of a person's name that isn't the surname or initials.
20877 <End of help on this topic>
20878 ======= h_composer_qserv_mail =======
20880 This is the email address of a person.
20882 <End of help on this topic>
20883 ======= h_composer_qserv_org =======
20885 This is the organization a person belongs to.
20887 <End of help on this topic>
20888 ======= h_composer_qserv_unit =======
20890 This is the organizational unit a person belongs to.
20892 <End of help on this topic>
20893 ======= h_composer_qserv_country =======
20895 This is the country a person belongs to.
20897 <End of help on this topic>
20898 ======= h_composer_qserv_state =======
20900 This is the state a person belongs to.
20902 <End of help on this topic>
20903 ======= h_composer_qserv_locality =======
20905 This is the locality a person belongs to.
20907 <End of help on this topic>
20908 ======= h_composer_qserv_custom =======
20910 This one is for advanced users only! If you put something in this field,
20911 then the rest of the fields are ignored.
20913 This field may be set to the string representation of an LDAP search
20914 filter (see RFC1960). Here are some examples:
20916 To search for an entry with a surname equal to "clinton" you could set
20917 the custom filter to:
20919      (sn=clinton)
20920     
20921 This is equivalent to putting "clinton" in the SurName field.
20922 To search for an entry that has a surname that begins with "clint" and
20923 has a givenname equal to "william" you could use:
20925      (&(sn=clint*)(givenname=william))
20926     
20927 This is equivalent to setting the SurName field to "clint*" and the
20928 GivenName field to "william".
20929 To search for an entry where either the common name OR the email address
20930 contains "abcde" you could use:
20932      (|(cn=*abcde*)(mail=*abcde*))
20934 That isn't equivalent to anything you can do by setting the other fields
20935 because of the OR.
20937 <End of help on this topic>
20938 ======= h_composer_qserv_qq =======
20940 This one is a little different from the rest of the categories.  It causes
20941 a search to be formed from the configured search filter that you filled
20942 in when you added the directory server to your configuration. It can also
20943 be combined with the other fields if you'd like.
20945 <End of help on this topic>
20946 ======= h_address_format =======
20947 <HTML>
20948 <HEAD>
20949 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
20950 </HEAD>
20951 <BODY>
20952 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
20954 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
20955 and then a domain, with no spaces.  
20956 For example, jsmith@art.example.com might be the email address
20957 of a person  
20958 with the username &quot;jsmith&quot; who has an account in the domain
20959 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
20960 right of the &quot;@&quot; sign can vary - a shorter example would be 
20961 isabelle@elsewhere.edu (the shortest possible form: here, only the 
20962 organization's domain is specified after the &quot;@&quot; sign); a longer 
20963 example would be 
20964  jsingh@shakti.edutech.example.com
20965 (here, the name of the host &quot;shakti&quot; in the domain 
20966 edutech.example.com is also specified).  
20967 <P>  
20968 If you do not know the exact email address of someone you want to write 
20969 to, ask them what it is using other means of communication than email; or 
20970 use the tools for 
20971 finding people's addresses that are available on the Internet.
20973 If you are sending to someone on the same system as you are, you can leave
20974 the &quot;@&quot; sign and all the information to its right off of the 
20975 address, and Alpine will fill it in automatically, 
20976 unless the feature 
20977 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
20980 When an email address you send a message to is not reachable -- either because 
20981 it is simply an incorrect address, or because email can temporarily not be 
20982 delivered to it due to a technical problem on the way to or at the recipient's 
20983 end -- you will almost always get an error notification email message back.
20985 If you encounter problems with, or have questions about, email delivery or
20986 email address syntax, contact your local network computing consultants.
20987 <P><UL>
20988 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20989 </UL>
20991 &lt;End of help on this topic&gt;
20992 </BODY>
20993 </HTML>
20994 ======= h_flag_user_flag =======
20995 <HTML>
20996 <HEAD>
20997 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
20998 </HEAD>
20999 <BODY>
21000 <H1>STATUS FLAG: User Defined Keyword</h1>
21002 This is a keyword that is defined for this folder.
21003 It was most likely defined by the owner of the folder.
21004 Alpine will not set or clear this flag on its own.
21006 <P><UL>
21007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21008 </UL><P>
21009 &lt;End of help on this topic&gt;
21010 </BODY>
21011 </HTML>
21012 ======= h_flag_important =======
21013 <html>
21014 <title>STATUS FLAG: Important</title>
21015 <body>
21016 <h1>STATUS FLAG: Important</h1>
21019 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21020 MESSAGE&nbsp;INDEX
21021 screen, can only be set by the user, and is intended to be used in
21022 whatever fashion makes sense to you.  You are the only one that can set or
21023 clear it. 
21026 &lt;End of help on this topic&gt;
21027 </BODY>
21028 </HTML>
21029 ======= h_flag_new =======
21030 <html>
21031 <title>STATUS FLAG: New</title>
21032 <body>
21033 <h1>STATUS FLAG: New</h1>
21036 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21037 MESSAGE&nbsp;INDEX screen,
21038 is automatically set when messages are delivered to your Inbox (or other
21039 folder specified outside of Alpine).  Likewise, it is cleared automatically
21040 the first time you read the message it is associated with.
21043 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21044 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21045 you'd like to be reminded of it next time you read mail.  This can be done
21046 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21050 &lt;End of help on this topic&gt;
21051 </BODY>
21052 </HTML>
21053 ======= h_flag_answered =======
21054 <html>
21055 <title>STATUS FLAG: Answered</title>
21056 <body>
21057 <h1>STATUS FLAG: Answered</h1>
21059 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21060 MESSAGE&nbsp;INDEX
21061 screen, is automatically set when you reply to a message.  This flag is not
21062 automatically cleared.
21065 &lt;End of help on this topic&gt;
21066 </BODY>
21067 </HTML>
21068 ======= h_flag_forwarded =======
21069 <html>
21070 <title>STATUS FLAG: Forwarded</title>
21071 <body>
21072 <h1>STATUS FLAG: Forwarded</h1>
21074 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21075 MESSAGE&nbsp;INDEX
21076 screen, is automatically set when you forward a message.  This flag is not
21077 automatically cleared.
21080 &lt;End of help on this topic&gt;
21081 </BODY>
21082 </HTML>
21083 ======= h_flag_deleted =======
21084 <html>
21085 <title>STATUS FLAG: Deleted</title>
21086 <body>
21087 <h1>STATUS FLAG: Deleted</h1>
21089 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21090 MESSAGE&nbsp;INDEX
21091 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21092 It is cleared
21093 when you use the &quot;U&nbsp;Undelete&quot; command.
21096 Messages marked with this flag will be permanently removed from
21097 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21098 command, or
21099 when you indicate acceptance of their removal upon leaving the folder.
21102 Note, there can be other actions implicit in the
21103 &quot;D&nbsp;Delete&quot; command,
21104 such as advancing to the next message, that may be momentarily undesirable.
21105 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21106 flag <A HREF="h_common_flag">explicitly</A>.
21109 &lt;End of help on this topic&gt;
21110 </BODY>
21111 </HTML>
21112 ====== h_config_incoming_timeo ======
21113 <HTML>
21114 <HEAD>
21115 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21116 </HEAD>
21117 <BODY>
21118 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21120 This option has no effect unless the feature
21121 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21122 is set, which in turn has no effect unless
21123 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21124 is set.
21126 Sets the time in seconds that Alpine will
21127 attempt to open a network connection used for monitoring for Unseen
21128 messages in Incoming Folders. The default is 5.
21129 If a connection has not completed within this many seconds Alpine will
21130 give up and consider it a failed connection.
21132 <UL>   
21133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21134 </UL><P>
21135 &lt;End of help on this topic&gt;
21136 </BODY>
21137 </HTML>
21138 ====== h_config_psleep ======
21139 <HTML>
21140 <HEAD>
21141 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21142 </HEAD>
21143 <BODY>
21144 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21147 In the good old days a mailcap viewer was used to examine an 
21148 attachment before saving it, and after viewing the attachment control 
21149 would return to the operating system when the viewer was closed. Therefore, 
21150 when the mailcap viewer returned control to the operating system, it 
21151 could be assumed that the user who opened the attachment was done
21152 examining it, and the copy of the attachment that was used, could be removed.
21155 However, today this assumption is not longer valid. Some viewers return 
21156 control to the operating system before they actually read the attachment
21157 to be examined. This causes Alpine to delete the attachment before it 
21158 is read by the viewer, causing the viewer to fail opening the attachment.
21161 In order to work around this problem, Alpine checks, after the viewer has 
21162 returned control to the operating system, if there is any process that is 
21163 using the attachment. This variable controls the number of seconds that 
21164 must elapse between checks. Once it is found that no process is using the 
21165 attachment, this is removed.
21168 The minimum value for this variable is 60 (checks will be made once per 
21169 minute), and the maximum value is 600 (checks will be made once every 10 
21170 minutes). The default value is 60.
21173 <UL>   
21174 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21175 </UL><P>
21176 &lt;End of help on this topic&gt;
21177 </BODY>
21178 </HTML>
21179 ====== h_config_incoming_interv ======
21180 <HTML>
21181 <HEAD>
21182 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21183 </HEAD>
21184 <BODY>
21185 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21187 This option has no effect unless the feature
21188 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21189 is set, which in turn has no effect unless
21190 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21191 is set.
21193 This option specifies, in seconds, how often Alpine will check
21194 for new mail and state changes in Incoming Folders when Incoming Folders
21195 Checking is turned on.
21196 The default is 3 minutes (180).
21197 This value applies only to folders that are local to the system that
21198 Alpine is running on or that are accessed using the IMAP protocol.
21199 The similar option
21200 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21201 applies to all other monitored folders.
21203 <UL>   
21204 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21205 </UL><P>
21206 &lt;End of help on this topic&gt;
21207 </BODY>
21208 </HTML>
21209 ====== h_config_incoming_second_interv ======
21210 <HTML>
21211 <HEAD>
21212 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21213 </HEAD>
21214 <BODY>
21215 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21217 This option has no effect unless the feature
21218 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21219 is set, which in turn has no effect unless
21220 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21221 is set.
21223 This option together with the option
21224 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21225 specifies, in seconds, how often Alpine will check
21226 for new mail and state changes in Incoming Folders when Incoming Folders
21227 Checking is turned on.
21228 The default for this option is 3 minutes (180).
21229 For folders that are local to this system or
21230 that are accessed using the IMAP protocol
21231 the value of the option
21232 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21233 is used.
21234 For all other monitored folders, the value of this option is used.
21236 The reason there are two separate options is because it is usually
21237 less expensive to check local and IMAP folders than it is to check
21238 other types, like POP or NNTP folders.
21239 You may want to set this secondary value to a higher number than
21240 the primary check interval.
21242 <UL>   
21243 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21244 </UL><P>
21245 &lt;End of help on this topic&gt;
21246 </BODY>
21247 </HTML>
21248 ====== h_config_incoming_list ======
21249 <HTML>
21250 <HEAD>
21251 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21252 </HEAD>
21253 <BODY>
21254 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21256 This option has no effect unless the feature
21257 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21258 is set, which in turn has no effect unless
21259 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21260 is set.
21262 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21263 normally monitor all Incoming Folders.
21264 You may use this option to restrict the list of monitored folders to a
21265 subset of all Incoming Folders.
21267 <UL>   
21268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21269 </UL><P>
21270 &lt;End of help on this topic&gt;
21271 </BODY>
21272 </HTML>
21273 ====== h_config_pers_name ======
21274 <HTML>
21275 <HEAD>
21276 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21277 </HEAD>
21278 <BODY>
21279 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21281 This value is used to determine the full name part of the "From" address
21282 on messages you send.
21283 <!--chtml if pinemode="os_windows"-->
21284  PC-Alpine requires that this be set in order to properly construct the "From" address.
21285 <!--chtml else-->
21286  If unset, Unix Alpine will obtain your full name from
21287  the system password file. PC-Alpine, on the other hand, requires that this be set.
21288 <!--chtml endif-->
21290 If you want to change the value of what gets included in the From header
21291 in messages you send (other than just the Personal Name)
21292 look <A HREF="h_config_change_your_from">here</A> for a description.
21293 <P><UL>
21294 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21295 </UL><P>
21296 &lt;End of help on this topic&gt;
21297 </BODY>
21298 </HTML>
21299 ====== h_config_pruned_folders ======
21300 <html>
21301 <header>
21302 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21303 </header>
21304 <body>
21305 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21307 This variable allows you to define a list of one or more folders that
21308 Alpine will offer to prune for you in the same way it automatically offers
21309 to prune your "sent-mail" folder each month.
21310 Each folder in this list must be a folder in your default folder collection
21311 (the first folder collection if you have more than one), and it is just
21312 the relative name of the folder in the collection, not the fully-qualified name.
21313 It is similar to sent-mail.
21314 Instead of something like
21316 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21318 the correct value to use would be
21320 <CENTER><SAMP>folder</SAMP></CENTER>
21322 There is an assumption here that your first collection is the folders in
21324 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21327 Once a month, for each folder listed, Alpine will offer to move
21328 the contents of the folder to a new folder of the same name but with
21329 the previous month's date appended.  Alpine will then look for any such
21330 date-appended folder names created for a previous month, and offer each
21331 one it finds for deletion.
21334 If you decline the first offer, no mail is moved and no new folder is
21335 created.
21338 The new folders will be created
21339 in your default folder collection.
21342 <UL>   
21343 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21344 </UL><P>
21345 &lt;End of help on this topic&gt;
21346 </body>
21347 </html>
21348 ====== h_config_upload_cmd ======
21349 <HTML>
21350 <HEAD>
21351 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21352 </HEAD>
21353 <BODY>
21354 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21356 This option affects the behavior of the Composer's &quot;Read File&quot; 
21357 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21358 commands.  It specifies
21359 a Unix program name, and any necessary command line arguments, that Alpine can
21360 use to transfer files from your personal computer into messages that you are
21361 composing.<P>
21363 <B>Note:</B> this facility is intended for use with serial line transfer 
21364 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21365 to work with TCP/IP file transfer programs such as ftp.<P>
21367 If a program is specified, the commands listed above are modified to offer a
21368 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21369 specified here must match the transfer program or protocol available on the
21370 personal computer.<P>
21372 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21373 the specified upload program finishes, Alpine expects the uploaded data to be
21374 contained in this file.<P>
21376 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21377 generates a
21378 temporary file name that it will pass to the specified Unix program.  Alpine
21379 will read the resulting uploaded text from this file and then delete it when
21380 the upload command is finished.<P>
21382 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21383 prompt
21384 you for the name of the file that is to contain the uploaded information that
21385 it is to attach.  Alpine will attach this file to the composition, but will
21386 <B>not</B> delete this file after the upload command is finished.<P>
21388 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21389 command
21390 line arguments.  Alpine will replace this symbol with the name of the file
21391 being used to exchange the uploaded information.  This token allows you to
21392 position the file name where it is required in the Unix program's command
21393 line arguments.<P>
21395 If the &quot;_FILE_&quot; token is not present in the specified command, the
21396 temporary file's name is automatically appended to the specified Unix
21397 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21398 <B>last</B> command line argument.
21399 <P><UL>
21400 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21401 </UL><P>
21402 &lt;End of help on this topic&gt;
21403 </BODY>
21404 </HTML>
21405 ====== h_config_upload_prefix ======
21406 <HTML>
21407 <HEAD>
21408 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21409 </HEAD>
21410 <BODY>
21411 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21413 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21414 It defines text to be written to the terminal emulator (via standard output)
21415 immediately prior to starting upload command.  This is useful for
21416 integrated serial line file transfer agents that permit command passing
21417 (e.g., Kermit's APC method).<P>
21419 The special token &quot;_FILE_&quot; may be included in the string specification.
21420 That symbol will be replaced with the (Alpine-created) name of the temporary
21421 file in which Alpine will expect to find the uploaded file.
21422 <P><UL>
21423 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21424 </UL><P>
21425 &lt;End of help on this topic&gt;
21426 </BODY>
21427 </HTML>
21428 ====== h_config_download_cmd ======
21429 <HTML>
21430 <HEAD>
21431 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21432 </HEAD>
21433 <BODY>
21434 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21436 This option affects the behavior of the Export command.  It specifies a Unix
21437 program name, and any necessary command line arguments, that Alpine can use to
21438 transfer the exported message to your personal computer's disk.<P>
21439 Note: this facility is intended for use with serial line transfer 
21440 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21441 to work with TCP/IP file transfer programs such as ftp.<P>
21442 If a program is specified, the Export command is modified to offer a
21443 subcommand (^V) to activate the transfer (in lieu of saving it to
21444  the machine where Alpine is running).  Obviously, the Unix program
21445 specified here must match the transfer program or protocol available on the
21446 personal computer.<P>
21448 When this subcommand is selected and before Alpine invokes the specified Unix
21449 program, Alpine will create a temporary file containing the text of the
21450 exported message.  Alpine uses this file to pass the exported message text to
21451 the specified Unix program.<P>
21453 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21454 line arguments.  Alpine will replace this symbol with the temporary file's name
21455 before executing the Unix program.  This token allows you to position the
21456 file name where it is required in the Unix program's command line arguments.
21458 If the &quot;_FILE_&quot; token is not present in the specified command, the
21459 temporary file's name is automatically appended to the specified Unix
21460 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21461 <B>last</B> command line argument.
21462 <P><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_download_prefix ======
21469 <HTML>
21470 <HEAD>
21471 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21472 </HEAD>
21473 <BODY>
21474 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21476 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21477 It defines text to be written to the terminal emulator (via standard output)
21478 immediately prior to starting the download command.  This is useful for
21479 integrated serial line file transfer agents that permit command passing
21480 (e.g., Kermit's APC method).
21482 The special token &quot;_FILE_&quot; may be included in the string 
21483 specification.
21484 That symbol will be replaced with the (Alpine-created) name of the temporary
21485 file into which Alpine will place the message to be downloaded.
21486 <P><UL>
21487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21488 </UL><P>
21489 &lt;End of help on this topic&gt;
21490 </BODY>
21491 </HTML>
21492 ====== h_config_mailcap_path ======
21493 <HTML>
21494 <HEAD>
21495 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21496 </HEAD>
21497 <BODY>
21498 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21499 This variable is used to replace Alpine's default mailcap file search path.
21500 It takes one or more file names (full paths must be specified) in which to
21501 look for mail capability data.  The default search path can be found in this
21502 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21503 If there is more than one file name listed, list members should be delimited
21504 by 
21505 <!--chtml if pinemode="os_windows"-->
21506 a semi-colon (;) under Windows; for example:<PRE>
21507         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21508 </PRE>
21509 <!--chtml else-->
21510 a colon (:) under UNIX; for example:<PRE>
21511         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21512 </PRE>
21513 <!--chtml endif-->
21514 <P><UL>
21515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21516 </UL>
21518 &lt;End of help on this topic&gt;
21519 </BODY>
21520 </HTML>
21521 ====== h_config_mimetype_path ======
21522 <HTML>
21523 <HEAD>
21524 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21525 </HEAD>
21526 <BODY>
21527 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21529 This variable is used to replace Alpine's default mime.types file search path.
21530 It takes one or more file names (full paths must be specified) in which to
21531 look for file-name-extension to MIME type mapping data.  The default search
21532 path can be found in this
21533 <A HREF="h_news_config">Alpine Configuration</A> help.
21537 If there is more than one file name listed, list members should be delimited
21538 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21540 &lt;End of help on this topic&gt;
21541 </BODY></HTML>
21542 ====== h_config_set_att_ansi ======
21543 <HTML><HEAD>
21544 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21545 </HEAD>
21546 <BODY>
21547 <H1>OPTION: Set printer to attached ansi printer</H1>
21549 Type "S" to set your printer to "attached-to-ansi".<BR>
21550 It is OK to include "attached-to-ansi" in your personal list below.
21552 &lt;End of help on this topic&gt;
21553 </BODY></HTML>
21554 ====== h_config_set_att_ansi2 ======
21555 <HTML><HEAD>
21556 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21557 </HEAD>
21558 <BODY>
21559 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21561 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21562 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21563 list below.
21567 This is the same as the "attached-to-ansi" option except that a
21568 formfeed character will not be appended to the end of the print job.
21569 If your printer already ejects the paper by itself at the end of the
21570 job, you may prefer the "no-formfeed" form of this printer so that you
21571 don't get an extra blank page between print jobs.
21574 &lt;End of help on this topic&gt;
21575 </BODY></HTML>
21576 ====== h_config_set_att_wyse ======
21577 <HTML><HEAD>
21578 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21579 </HEAD>
21580 <BODY>
21581 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21583 Type "S" to set your printer to "attached-to-wyse".<BR>
21584 It is OK to include "attached-to-wyse" in your personal list below.
21586 This is very similar to "attached-to-ansi".
21587 The only difference is in the control characters sent to turn the printer
21588 on and off.
21589 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21590 to turn on the printer and ESC LEFT_BRACKET 4 i
21591 to turn it off.
21592 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21593 &lt;End of help on this topic&gt;
21594 </BODY></HTML>
21595 ====== h_config_set_att_wyse2 ======
21596 <HTML><HEAD>
21597 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21598 </HEAD>
21599 <BODY>
21600 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21602 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21603 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21604 list below.
21608 This is the same as the "attached-to-wyse" option except that a
21609 formfeed character will not be appended to the end of the print job.
21610 If your printer already ejects the paper by itself at the end of the
21611 job, you may prefer the "no-formfeed" form of this printer so that you
21612 don't get an extra blank page between print jobs.
21615 &lt;End of help on this topic&gt;
21616 </BODY></HTML>
21617 ====== h_config_set_stand_print ======
21618 <HTML>
21619 <HEAD>
21620 <TITLE>OPTION: Set default printer</TITLE>
21621 </HEAD>
21622 <H1>OPTION: Set default printer</H1>
21623 <BODY>
21624 Move to the printer you want and type "S" to set it to be your
21625 default printer.  This list is not modifiable by you and has been
21626 set up by the system administrators.  If there is more than one printer
21627 listed in the Command List, you will be able to cycle through that
21628 whole list at the time you print, starting with your default.
21629 It is OK to include entries from this Standard list in your personal
21630 list below.
21632 &lt;End of help on this topic&gt;
21633 </BODY>
21634 </HTML>
21635 ====== h_config_set_custom_print ======
21636 <HTML>
21637 <HEAD>
21638 <TITLE>OPTION: Set default printer</TITLE>
21639 </HEAD>
21640 <H1>OPTION: Set default printer</H1>
21641 <BODY>
21642 You may add as many print commands as you want to your personal list.
21643 Specify one of them as your default printer by moving to the printer
21644 you want and typing "S".  If there is more than one printer listed
21645 in the Command List, you will be able to cycle through that list at
21646 the time you print, starting with your default.  It is OK to include
21647 entries from the Standard list above or to include the command
21648 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21649 "attached-to-wyse-no-formfeed" as one of the entries here.
21651 &lt;End of help on this topic&gt;
21652 </BODY>
21653 </HTML>
21654 ====== h_config_user_id =====
21655 <HTML>
21656 <HEAD>
21657 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21658 </HEAD>
21659 <BODY>
21660 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21662 This value is used as part of the "From" address on messages you send.
21663 It is also the default login name for remote IMAP server access.  Set this
21664 to the username part you want to appear on outgoing email.
21666 If you want to change the value of what gets included in the From header
21667 in messages you send (other than just the User ID)
21668 look <A HREF="h_config_change_your_from">here</A> for a description.
21670 <P><UL>   
21671 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21672 </UL><P>
21673 &lt;End of help on this topic&gt;
21674 </BODY>
21675 </HTML>
21676 ====== h_config_user_dom =====
21677 <HTML>
21678 <HEAD>
21679 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21680 </HEAD>
21681 <BODY>
21682 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21684 This value specifies the domain part (right-hand side) of your return
21685 address on outgoing email and is also used as the default domain for email
21686 composed to a local user.
21687 <!--chtml if pinemode="os_windows"-->
21688  This value is required for PC-Alpine. If you are unsure as to what this should be,
21689  contact your local help desk, system administrator, or Internet Service Provider.
21690 <!--chtml else-->
21691  If unset, Unix Alpine will obtain the domain from
21692  the system.  Often this value will be set for your whole site by the
21693  system administrator.<P>
21694 <!--chtml endif-->
21695 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21696 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21698 If you want to change the value of what gets included in the From header
21699 in messages you send (other than just the User Domain)
21700 look <A HREF="h_config_change_your_from">here</A> for a description.
21701 <P><UL>
21702 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21703 </UL><P>
21704 &lt;End of help on this topic&gt;
21705 </BODY>
21706 </HTML>
21707 ====== h_config_smtp_server =====
21708 <HTML>
21709 <HEAD>
21710 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21711 </HEAD>
21712 <BODY>
21713 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21714 This value specifies the name of one or more SMTP 
21715 (Simple Mail Transfer Protocol) servers for sending mail. 
21716 <!--chtml if pinemode="os_windows"-->
21717 You must have an SMTP server for use with PC-Alpine.
21718 SMTP servers are
21719 normally set up by a system administrator for use by all members of a given
21720 campus or department.
21721 Contact your local help desk to ask what SMTP
21722 servers you should use.  
21723 <!--chtml else-->
21724 Unix Alpine users may not need to set an SMTP server.
21725 Alpine will attempt to execute the program (usually sendmail) that is used
21726 to insert mail into the mail system.
21727 If this works for you, you may leave this option blank.
21728 If there is an SMTP server running on the Unix host you may be able to
21729 improve sending performance slightly by setting the SMTP server option
21730 to &quot;localhost&quot; or to the actual name of the Unix host.
21732 If the Unix host doesn't work the way Alpine was expecting you will need to
21733 set the value of this option.
21734 SMTP servers are
21735 normally set up by a system administrator for use by all members of a given
21736 campus or department.
21737 Contact your local help desk to ask what SMTP
21738 servers you should use.  
21739 <!--chtml endif-->
21741 Your SMTP server may offer SMTP AUTH authentication.
21742 It may even require it.
21743 If your SMTP server offers SMTP AUTH authentication you may specify a
21744 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21745 This parameter requires an associated value,
21746 the username identifier with which to establish the server
21747 connection.
21748 An example might be:
21751 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21754 If AUTH authentication is offered by the server, this will cause Alpine to
21755 attempt to use it.
21756 If AUTH authentication is not offered by the server, this will cause Alpine
21757 to fail sending with an error similar to:
21760 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21763 Another type of authentication that is used by some ISPs is called
21764 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21765 which means that you have to authenticate
21766 yourself to the POP or IMAP server by opening a mailbox before you
21767 can send mail.
21768 To do this, you usually only have to open your INBOX.
21771 You may tell Alpine to use the
21772 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21773 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21774 parameter
21775 in this option.
21776 At this time &quot;/submit&quot; is simply equivalent to specifying
21777 port 587, though it may imply more than that at some point in the future.
21778 Some ISPs are blocking port 25 in order to reduce the amount of spam
21779 being sent to their users.
21780 You may find that the submit option allows you to get around such a block.
21783 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21786 To specify any non-standard port number on the SMTP server you may follow
21787 the hostname with a colon followed by the portnumber.
21790 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21793 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21794 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21795 If that fails then a non-encrypted connection will be attempted instead.
21796 You may specify that a TLS connection is required if you wish.
21797 If you append &quot;/tls&quot; to the name then the connection will fail
21798 instead of falling back to a non-secure connection.
21801 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21805 For more details about server name possibilities see
21806 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21809 <UL>
21810 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21811 </UL>
21813 &lt;End of help on this topic&gt;
21814 </BODY>
21815 </HTML>
21816 ====== h_config_nntp_server =====
21817 <HTML>
21818 <HEAD>
21819 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21820 <BODY>
21821 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21823 This value specifies the name of one or more NNTP
21824 (Network News Transfer Protocol)
21825 servers for reading and posting USENET news.
21826 NNTP servers are normally
21827 set up by a system administrator for use by all members of a given campus
21828 or department.
21829 Contact your local help desk to ask what NNTP servers you should use.  
21830 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21831 Often Unix Alpine users will find that this variable has been
21832 set for the whole system (and they don't have to worry about it).  
21833 <!--chtml endif-->
21834 When you define an NNTP server here, Alpine implicitly defines a news
21835 collection for you, assuming that server as the news server and assuming
21836 that you will use the NNTP protocol and a local newsrc configuration file
21837 for reading news.
21838 For more about reading news with Alpine, see
21839 <A HREF="h_reading_news">how to use Alpine to read news</A>.
21841 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
21842 or &quot;AUTHINFO USER&quot; authentication.
21843 It may even require it.
21844 If your NNTP server does offer such authentication you may specify a user name
21845 parameter to cause Alpine to attempt to authenticate.
21846 The same is true for the server name in a folder collection that uses NNTP.
21847 This parameter requires an associated value,
21848 the username identifier with which to establish the server connection.
21849 An example might be:
21852 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
21855 If authentication is offered by the server, this will cause Alpine to
21856 attempt to use it.
21857 If authentication is not offered by the server, this will cause Alpine
21858 to fail with an error similar to:
21861 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
21863 For more details about the server name possibilities see
21864 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21865 <P><UL>
21866 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21867 </UL><P>
21868 &lt;End of help on this topic&gt;
21869 </BODY>
21870 </HTML>
21871 ====== h_config_inbox_path =====
21872 <HTML>
21873 <HEAD>
21874 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
21875 </HEAD>
21876 <BODY>
21877 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
21879 This value overrides the default value of your INBOX name/path/location.
21880 <!--chtml if pinemode="os_windows"-->
21881 PC-Alpine users must specify an inbox path and it must be a folder on an
21882 IMAP server.  
21883 <!--chtml else-->
21884 Unix and VMS Alpine users will often find that this variable
21885 has been pre-configured by your system administrator.  
21886 <!--chtml endif-->
21887 You may be able to specify an alternate INBOX that is either a local folder 
21888 or a folder on an IMAP server.
21890 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
21891 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
21892 mail server.
21894 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21895 details on the syntax of folder definitions.
21897 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
21898 mail is disappearing.
21899 <P><UL>
21900 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21901 </UL><P>
21902 &lt;End of help on this topic&gt;
21903 </BODY>
21904 </HTML>
21905 ====== h_config_change_your_from =====
21906 <HTML>
21907 <HEAD>
21908 <TITLE>How to Change your From Address</TITLE>
21909 </HEAD>
21910 <BODY>
21911 <H1>How to Change your From Address</H1>
21913 If the From address that Alpine includes in mail that you send is not correct,
21914 you may want to configure a different default value for the From address.
21915 You may follow these directions to change the default:
21918 <UL>
21919   <LI> Go to the Main Alpine Menu
21920   <LI> From there type the Setup Command
21921   <LI> From there type the Config Command
21922 </UL>
21925 You've probably already seen this SETUP CONFIGURATION screen.
21926 If not, there are many options you may want to set here.
21927 To set the value of the From header you may use the
21928 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
21929 Find it by scrolling down a few pages or use the WhereIs command to
21930 search for &quot;customized&quot;.
21931 You may want to read the help text associated with the option.
21933 To add a custom From header, type the Add command and enter the
21934 full header line, including the leading &quot;From:&nbsp;&quot;.
21935 For example:
21937 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21939 Now exit the Setup command and try sending mail to yourself to see
21940 what the From line looks like.
21942 When you are in the composer you may edit the custom From line by typing
21943 Ctrl-R while your cursor is in the headers of the message and then moving
21944 to the From line and editing.
21945 If you want to leave the default value the same but add the possibility
21946 of being able to edit the header when you compose, add just the header
21947 name without a value.
21948 For example:
21950 <CENTER><SAMP>From:</SAMP></CENTER>
21952 If you change your From address you may also find it useful to add the
21953 changed From address to the
21954 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21955 configuration option.
21957 <UL>   
21958 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21959 </UL><P>
21960 &lt;End of help on this topic&gt;
21961 </BODY>
21962 </HTML>
21963 ====== h_config_default_fcc =====
21964 <HTML>
21965 <HEAD>
21966 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
21967 </HEAD>
21968 <BODY>
21969 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
21971 This value specifies where a copy of outgoing mail should be saved.  If
21972 this is not a path name, it will be in the default collection for saves.
21973 Any valid folder specification, local or IMAP, is allowed.  This default
21974 folder carbon copy only applies when the 
21975 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
21976 is set to use the default folder.  
21977 <!--chtml if pinemode="os_windows"-->
21978 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
21979 <!--chtml else-->
21980 Unix Alpine default
21981 is normally &quot;sent-mail&quot; in the default folder collection. 
21982 <!--chtml endif-->
21984 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
21985 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
21986 IMAP server (remember that in order to later access this remote folder through Alpine, it
21987 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21988 for more information). An example:<p>
21989 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
21991 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
21993 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21994 details on the syntax of folder definitions.
21996 <UL>   
21997 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21998 </UL><P>
21999 &lt;End of help on this topic&gt;
22000 </BODY>
22001 </HTML>
22002 ====== h_config_def_save_folder =====
22003 <HTML>
22004 <HEAD>
22005 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22006 </HEAD>
22007 <BODY>
22008 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22010 This option determines the default folder name for save-message operations 
22011 (&quot;saves&quot;).
22013 If this is not a path name, it will be in the default collection for saves.
22014 Any valid folder specification, local or IMAP, is allowed.  This default
22015 folder only applies when the
22016 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22017 doesn't override it.  
22018 <!--chtml if pinemode="os_windows"-->
22019 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22020 <!--chtml else-->
22021 Unix Alpine default
22022 is normally &quot;saved-messages&quot; in the default folder collection.
22023 <!--chtml endif-->
22024 If you access your email through an IMAP server, especially if you often switch between Unix
22025 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22026 IMAP server (remember that in order to later access this remote folder through Alpine, it
22027 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22028 for more information). An example:<p>
22029 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22031 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22032 details on the syntax of folder definitions.
22034 <UL>   
22035 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22036 </UL><P>
22037 &lt;End of help on this topic&gt;
22038 </BODY>
22039 </HTML>
22040 ====== h_config_postponed_folder =====
22041 <HTML>
22042 <HEAD>
22043 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22044 </HEAD>
22045 <BODY>
22046 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22048 This value overrides the default name for the folder where postponed
22049 messages are saved.  If this is not a path name, it will be in the default
22050 collection for message Saves.  Any valid folder specification, local or
22051 remote, is allowed. 
22052 PC-Alpine default
22053 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22054 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22055 in the default collection. 
22057 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22058 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22059 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22060 in all Alpine copies you use. 
22061 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22062 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22063 for more information). An
22064 example:<p> 
22065 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22067 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22068 details on the syntax of folder definitions.
22070 <UL>   
22071 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22072 </UL><P>
22073 &lt;End of help on this topic&gt;
22074 </BODY>
22075 </HTML>
22076 ====== h_config_read_message_folder =====
22077 <HTML>
22078 <HEAD>
22079 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22080 </HEAD>
22081 <BODY>
22082 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22084 By virtue of specifying a folder name here, Alpine will be configured to
22085 save all messages that you have read during a session into the designated
22086 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22087 between your really new email (in your INBOX) and those that you have
22088 already read.  Depending on how you define the 
22089 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22090 setting, you may or may not be asked when you quit
22091 Alpine if you want read messages to be moved to this folder.  In either
22092 case, moving the messages means they will be deleted from your INBOX.
22094 If this is not a path name, it will be in the default collection for
22095 saves.  Any valid folder specification, local or remote (via IMAP), is
22096 allowed.  There is no default for the name of the read message folder.
22098 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22099 details on the syntax of folder definitions.
22101 <UL>   
22102 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22103 </UL><P>
22104 &lt;End of help on this topic&gt;
22105 </BODY>
22106 </HTML>
22107 ====== h_config_form_folder =====
22108 <HTML>
22109 <HEAD>
22110 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22111 </HEAD>
22112 <BODY>
22113 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22115 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22116 contain messages that you have composed and that are intended to be
22117 sent in their original form repeatedly.
22120 Setting this variable will alter Alpine's usual behavior when you
22121 execute the Compose command.  Normally, Alpine offers a chance to
22122 continue a postponed or interrupted message should one or the other
22123 exist.  When this variable is set to a folder name that exists, Alpine
22124 will also offer the chance to select a message from the folder to
22125 insert into the composer (much like when continuing a postponed message).
22126 The difference, however, is that Alpine will not automatically delete
22127 the selected message from the Form Letter Folder.
22129 Setting this variable will also affect Alpine's behavior when you
22130 Postpone a message from the composer.  Normally, Alpine simply stashes
22131 the message away in your
22132 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22133 Regardless of the specified folder's existence, Alpine will ask which
22134 folder you intend the message to be stored in.  Choose the
22135 &quot;F&quot; option to store the message in your Form Letter Folder.
22136 This is the most common way to add a message to the folder.
22139 Another method of adding messages to the folder is via the Alpine
22140 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22141 you expect to send in the same form again, you can enter the Form
22142 Letter Folder's name in this field.  Alpine, as usual, will copy the
22143 message as it's sent.  Note, when you later select this message from 
22144 your Form Letter Folder, it will have the same recipients as the original
22145 message.
22148 To delete a message from the Form Letter Folder, you can either select
22149 the folder from a suitable FOLDER LIST screen, or use the Delete
22150 command in the MESSAGE INDEX offered when selecting from the folder as
22151 part of the Compose command.  You can delete a Form Letter Folder just
22152 as any other folder from a suitable FOLDER LIST screen.
22155 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22156 facility can be used
22157 to replace the Form Letter Folder.
22160 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22161 details on the syntax of folder definitions.
22164 <UL>   
22165 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22166 </UL><P>
22167 &lt;End of help on this topic&gt;
22168 </BODY>
22169 </HTML>
22170 ====== h_config_archived_folders =====
22171 <HTML>
22172 <HEAD>
22173 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22174 </HEAD>
22175 <BODY>
22176 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22178 This is like
22179 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22180 only more general.  You may archive
22181 any of the folders in your incoming collection.  This is a list of folder
22182 pairs, with the first separated from the second in the pair by a space.
22183 The first folder in a pair is the folder you want to archive, and the
22184 second folder is the folder that read messages from the first should be
22185 moved to.  Depending on how you define the
22186 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22187 setting, you may or may not be asked when you
22188 leave the first folder if you want read messages to be moved to the
22189 second folder.  In either case, moving the messages means they will be
22190 deleted from the first folder.
22192 The name of the first folder in each pair can be either the technical
22193 specification of the folder (like what appears in your configuration file)
22194 or (much easier) the nickname that you gave the folder when you made it
22195 an incoming folder.
22197 For example:<p>
22198 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22199 <p>or, using nicknames:<p>
22200 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22202 If these are not path names, they will be in the default collection for
22203 saves. Any valid folder specification, local or remote (via IMAP), is
22204 allowed. There is no default.
22206 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22207 details on the syntax of folder definitions.
22209 <UL>   
22210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22211 </UL><P>
22212 &lt;End of help on this topic&gt;
22213 </BODY>
22214 </HTML>
22215 ====== h_config_newsrc_path ======
22216 <HTML>
22217 <HEAD>
22218 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22219 </HEAD>
22220 <BODY>
22221 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22223 This option overrides the default name Alpine uses for your "newsrc" news
22224 status and subscription file.  If set, Alpine will take this value as the
22225 full pathname for the desired newsrc file.<P>
22227 If this option is <B>not</B> set, 
22228 <!--chtml if pinemode="os_windows"-->
22229 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22230 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22231 directory as your pinerc file for NEWSRC.
22232 <!--chtml else-->
22233 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22234 your account's home directory).
22235 <!--chtml endif-->
22236 <P><UL>
22237 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22238 </UL>
22240 &lt;End of help on this topic&gt;
22241 </BODY>
22242 </HTML>
22243 ====== h_config_literal_sig =====
22244 <HTML>
22245 <HEAD>
22246 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22247 </HEAD>
22248 <BODY>
22249 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22251 With this option your actual signature, as opposed to
22252 the name of a file containing your signature,
22253 is stored in the Alpine configuration file.
22254 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22257 This is simply a different way to store the signature.
22258 The signature is stored inside your Alpine configuration file instead of in
22259 a separate file.
22260 Tokens work the same way they do with the
22261 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22262 help.
22265 The Setup/Signature command on Alpine's MAIN MENU will edit
22266 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22267 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22268 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22269 instead.
22272 The two character sequence &#92;n (backslash followed by
22273 the character n) will be used to signify a line-break in your signature.
22274 You don't have to enter the &#92;n, but it will be visible in the
22275 SETUP CONFIGURATION window after you are done editing the signature.
22278 <UL>   
22279 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22280 </UL><P>
22281 &lt;End of help on this topic&gt;
22282 </BODY>
22283 </HTML>
22284 ====== h_config_signature_file =====
22285 <HTML>
22286 <HEAD>
22287 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22288 </HEAD>
22289 <BODY>
22290 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22292 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22293 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22294 You can tell that that is the case because the value of the
22295 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22297 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22299 You may either use all Literal Signatures (signatures stored in your
22300 configuration file) throughout Alpine, or all signature files.
22301 You can't mix the two.
22303 This is the name of a file that will be automatically inserted into
22304 outgoing messages.
22305 It typically contains information such as your
22306 name, email address and organizational affiliation.
22307 Alpine adds the
22308 signature into the message as soon as you enter the composer so you
22309 can choose to remove it or edit it on a message by message basis.
22310 Signature file placement in message replies is controlled by the
22311 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22312 setting in the feature list.
22315 The default file name is
22316 <!--chtml if pinemode="os_windows"-->
22317 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22318 PINERC file is a local file.
22319 If your PINERC file is remote, then it will be in the directory specified
22320 by the &quot;-aux local_directory&quot; command line option.
22321 <!--chtml else-->
22322 &quot;.signature&quot;.
22323 <!--chtml endif-->
22326 To create or edit your signature file choose Setup from the MAIN MENU
22327 and then select S for Signature (Main/Setup/Signature).  This puts you
22328 into the Signature Editor where you can enter a <EM>few</EM> lines of
22329 text containing your identity and affiliation.
22332 If the filename is followed by a vertical bar (|) then instead
22333 of reading the contents of the file the file is assumed to be a
22334 program that will produce the text to be used on its standard output.
22335 The program can't have any arguments and doesn't receive any input from Alpine,
22336 but the rest of the processing works as if the contents came from a file.
22339 Instead of storing the data in a local file, the
22340 signature data may be stored remotely in an IMAP folder.
22341 In order to do this, 
22342 you must use a remote name for the file.
22343 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22345 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22348 The syntax used here is the same as the syntax used for remote configuration
22349 files from the command line.
22350 Note that you may not access an existing signature file remotely,
22351 you have to create a new <EM>folder</EM> that contains the signature data.
22352 If the name you use here for the signature file is a remote name, then when
22353 you edit the file from the Setup/Signature command the data will be stored
22354 remotely in the folder.
22355 You aren't required to do anything special to create the folder, it
22356 gets created automatically if you use a remote name.
22359 Besides regular text, the signature file may also contain
22360 (or a signature program may produce) tokens that
22361 are replaced with text that usually depends on the message you are replying
22362 to or forwarding.
22363 For example, if the signature file contains the token
22365 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22367 anywhere in the text, then that token is replaced by the date
22368 the message you are replying to or forwarding was sent.
22369 If it contains
22371 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22373 that is replaced with the current date.
22374 The first is an example of a token that depends on the message you
22375 are replying to (or forwarding) and the second is an example which
22376 doesn't depend on anything other than the current date.
22377 You have to be a little careful with this facility since tokens that
22378 depend on the message you are replying to or forwarding will be replaced
22379 by nothing in the case where you are composing a new message from scratch.
22380 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22381 in this respect.
22382 It allows you to use different signature files in different cases.
22385 The list of tokens available for use in the signature file is
22386 <A HREF="h_index_tokens">here</A>.
22389 Instead of, or along with the use of &quot;roles&quot; to give you
22390 different signature files in different situations, there is also
22391 a way to conditionally include text based
22392 on whether or not a token would result in specific replacement text.
22393 For example, you could include some text based on whether or not
22394 the _NEWS_ token would result in any newsgroups if it was used.
22395 This is explained in detail
22396 <A HREF="h_reply_token_conditionals">here</A>.
22397 This isn't for the faint of heart.
22399 In the very unlikely event that you want to include a literal token
22400 in the signature you must precede it with a backslash character.
22401 For example,
22403 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22405 would produce something like
22407 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22409 It is not possible to have a literal backslash followed by an expanded token.
22411 An alternate method for storing the signature data is available by using the
22412 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22413 This variable will be used by default.
22415 <UL>   
22416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22417 </UL><P>
22418 &lt;End of help on this topic&gt;
22419 </BODY>
22420 </HTML>
22421 ====== h_config_init_cmd_list =====
22422 <HTML>
22423 <HEAD>
22424 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22425 </HEAD>
22426 <BODY>
22427 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22429 The initial keystroke--or command--list option lets you start Alpine at
22430 any place you like.
22431 Whatever keystrokes you specify here will be executed
22432 by Alpine upon startup as a macro.
22433 The words SPACE, TAB, DOWN, UP, LEFT, and
22434 RIGHT indicate the pressing of those keys.
22435 CR indicates the pressing of the RETURN key.
22436 F1 through F12 represent the function keys, and ^ followed
22437 by a character indicates that key pressed along with the control key (in
22438 other words, ^P means Ctrl-P).
22439 As a shortcut notation, an element of the list may be several characters
22440 surrounded by double-quotes (").
22441 That will be expanded into the individual keystrokes
22442 (excluding the double-quote characters).
22443 For example, the quoted-string
22445 <P><CENTER>"ABC"</CENTER>
22448 is interpreted the same as the three separate list members
22450 <P><CENTER>A and B and C</CENTER>
22453 which is also the same as
22455 <P><CENTER>A,B,C</CENTER>
22458 An example: To view message 1 on startup,
22459 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22461 <P><CENTER>I,J,1,CR,V</CENTER>
22464 An equivalent version of this is
22466 <P><CENTER>"IJ1",CR,V</CENTER>
22469 Restrictions: You cannot pre-type into the composer with the initial
22470 keystroke list, and you cannot mix function key commands with letter
22471 commands.
22473 <P><UL>   
22474 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22475 </UL>
22477 &lt;End of help on this topic&gt;
22478 </BODY>
22479 </HTML>
22480 ====== h_config_comp_hdrs =====
22481 <html>
22482 <header>
22483 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22484 </header>
22485 <body>
22486 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22488 You can control which headers you want visible when composing outgoing
22489 email using this option.
22490 You can specify any of the regular set, any
22491 <A HREF="h_compose_richhdr">Rich Header</A>,
22492 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22493 that you have already defined.
22494 If you use this setting at all, you must specify all the
22495 headers you want to see, you can't just add to the regular header set.
22496 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22498 Note that the "Newsgroups:" header will be abbreviated in the Composer
22499 display, but should be spelled out in full here.<p>
22500 <UL>   
22501 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22502 </UL><P>
22503 &lt;End of help on this topic&gt;
22504 </body>
22505 </html>
22506 ====== h_config_custom_hdrs =====
22507 <HTML>
22508 <HEAD>
22509 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22510 </HEAD>
22511 <BODY>
22512 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22514 You may add your own custom headers to outgoing messages.
22515 Each header you specify here must include the header tag 
22516 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22517 and may optionally include a value for that header.
22518 If you want to see these custom headers each time you compose a message,
22519 you must add them to your
22520 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22521 otherwise they become part
22522 of the rich header set that you only see when you press the
22523 <A HREF="h_compose_richhdr">Rich Header</A>
22524 <!--chtml if pinemode="function_key"-->(F5)
22525 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22526 (If you are looking for a way to change which headers are <EM>displayed</EM>
22527 when you view a message, take a look at the
22528 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22529 option instead.)
22530 Here's an example that shows how you might set your From address
22532 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22534 and another showing how you might set a Reply-To address
22536 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22538 You may also set non-standard header values here.
22539 For example, you could add
22541 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22543 or even
22545 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22547 If you include a value after the colon then that header will be included
22548 in your outgoing messages unless you delete it before sending.
22549 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22550 it will not be included in outgoing messages unless you edit a value
22551 in manually.
22552 For example, if
22554 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22556 is in the list, then the Reply-To header will be available for editing
22557 but won't be included unless a value is added while in the composer.
22559 It's actually a little more complicated than that.
22560 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22561 defaults.
22562 If the message you are about to compose already has a value for a header,
22563 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22564 For example, if you are Replying to a message the Subject field
22565 will already be filled in.
22566 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22567 custom subject will <EM>NOT</EM> be used.
22568 The subject derived from the subject of the message you are Replying
22569 to will be used instead.
22571 It is also possible to make header setting even more complicated and more
22572 automatic by using
22573 <A HREF="h_rules_roles">Roles</A>,
22574 but if all you want to do is set a default value for a header, you don't
22575 need to think about Roles.
22577 If you change your From address you may also find it useful to add the
22578 changed From address to the
22579 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22580 configuration option.
22582 Limitation: Because commas are used to separate the list of
22583 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22584 header contain a comma.
22585 Nor is there currently an &quot;escape&quot; mechanism provided
22586 to make this work.
22587 <P><UL>
22588 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22589 </UL>
22591 &lt;End of help on this topic&gt;
22592 </BODY>
22593 </HTML>
22594 ====== h_config_viewer_headers =====
22595 <HTML>
22596 <HEAD>
22597 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22598 </HEAD>
22599 <BODY>
22600 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22602 You may change the default list of headers that are viewed by listing
22603 the headers you want to view here.  If the headers in your
22604 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22605 will be shown.  The order of the headers you list will be honored.  If
22606 the special value &quot;all-except&quot; is included as the first
22607 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22608 message except those in the list will be shown.  The values are all
22609 case insensitive.
22612 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22613 then the original default headers are ignored.  So, if you just wanted
22614 to add the header Organization to the list, you would have to list
22615 Organization plus all of the other headers originally in the default
22616 list.  If you just included Organization and nothing else, then you
22617 would see only the Organization header, nothing else.
22620 The default list of headers includes:
22621 <UL>
22622   <LI>From
22623   <LI>Resent-From
22624   <LI>To
22625   <LI>Resent-To
22626   <LI>Cc
22627   <LI>Resent-cc
22628   <LI>Bcc
22629   <LI>Newsgroups
22630   <LI>Followup-To
22631   <LI>Date
22632   <LI>Resent-Date
22633   <LI>Subject
22634   <LI>Resent-Subject
22635   <LI>Reply-To
22636 </UL>
22639 If you are looking for a way to control which headers are included in
22640 outgoing mail and are visible or not in the composer, take a look at the
22641 options
22642 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22643 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22644 this option.
22646 <UL>   
22647 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22648 </UL><P>
22649 &lt;End of help on this topic&gt;
22650 </BODY>
22651 </HTML>
22652 ====== h_config_viewer_margin_left =====
22653 <HTML>
22654 <HEAD>
22655 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22656 </HEAD>
22657 <BODY>
22658 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22660 This variable controls the left-hand vertical margin's width in
22661 Alpine's Message Viewing screen.
22662 Its value is the number of space characters preceding each displayed line.
22663 For consistency with
22664 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22665 you may specify the column number to start in
22666 (column numbering begins with number 1)
22667 instead of the width of the margin by appending a lower case letter
22668 &quot;c&quot; to the number.
22669 For example, a value of &quot;2c&quot; means to start the text in column two,
22670 which is entirely equivalent to a value of &quot;1&quot;, which means to
22671 leave a margin of 1 space.
22673 The default is a left margin of 0 (zero).
22674 Misconfigurations (for example, negative values or values with starting
22675 left columns greater than the ending right column)
22676 are silently ignored.
22677 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22678 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22679 instead.
22682 &lt;End of help on this topic&gt;
22683 </BODY>
22684 </HTML>
22685 ====== h_config_viewer_margin_right =====
22686 <HTML>
22687 <HEAD>
22688 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22689 </HEAD>
22690 <BODY>
22691 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22693 This variable controls the right-hand vertical margin's width in
22694 Alpine's Message Viewing screen.
22695 Its value is the number of space characters following each displayed line.
22696 You may specify the column number to end the text in
22697 (column numbering begins with number 1)
22698 instead of the width of the margin by appending a lower case letter
22699 &quot;c&quot; to the number.
22700 For example, a value of &quot;76c&quot; means to end the text in column 76.
22701 If the screen is 80 characters wide, this is equivalent to a value
22702 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22703 However, if you use different size screens at different times, then these
22704 two values are not equivalent.
22706 The default right margin is 4.
22707 Misconfigurations (for example, negative values or values with starting
22708 left columns greater than the ending right column)
22709 are silently ignored.
22710 If the number of columns for text between the
22711 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22712 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22713 instead.
22716 &lt;End of help on this topic&gt;
22717 </BODY>
22718 </HTML>
22719 ====== h_config_quote_suppression =====
22720 <HTML>
22721 <HEAD>
22722 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22723 </HEAD>
22724 <BODY>
22725 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22727 This option should be used with care.
22728 It will cause some of the quoted text to be eliminated from the
22729 display when viewing a message in the MESSAGE TEXT screen.
22730 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22731 value &quot;5&quot;,
22732 this will cause quoted text that is longer than five lines to be truncated.
22733 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22734 Quoted text of more than six lines will have the first five lines displayed
22735 followed by a line that looks something like
22737 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22739 As a special case, if exactly one line of quoted text would be hidden, the
22740 entire quote will be shown instead.
22741 So for the above example, quoted text that is exactly six lines long will
22742 will be shown in its entirety.
22743 (In other words, instead of hiding a single line and adding a line
22744 that announces that one line was hidden, the line is just shown.)
22746 If the sender of a message has carefully chosen the quotes that he or she
22747 includes, hiding those quotes may change the meaning of the message.
22748 For that reason, Alpine requires that when you want to set the value of this
22749 variable to something less than four lines, you actually have to set it
22750 to the negative of that number.
22751 So if you want to set this option to &quot;3&quot;, you actually have to
22752 set it to &quot;-3&quot;.
22753 The only purpose of this is to get you to think about whether or not you
22754 really want to do this!
22755 If you want to delete all quoted text you set the value of this option
22756 to the special value &quot;-10&quot;.
22758 The legal values for this option are
22760 <TABLE>   
22761 <TR>
22762   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22763   <TD> Default, don't hide anything </TD>
22764 </TR>
22765 <TR>
22766   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22767   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22768 </TR>
22769 <TR>
22770   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22771   <TD> Suppress if more than that many lines </TD>
22772 </TR>
22773 <TR>
22774   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22775   <TD> Suppress all quoted lines </TD>
22776 </TR>
22777 </TABLE>
22779 If you set this option to a non-default value you may sometimes wish to
22780 view the quoted text that is not shown.
22781 When this is the case, the
22782 <A HREF="h_common_hdrmode">HdrMode Command</A>
22783 may be used to show the hidden text.
22784 Typing the &quot;H&quot; command once will show the hidden text.
22785 Typing a second &quot;H&quot; will also turn on Full Header mode.
22786 The presence or absence of the HdrMode command is determined by the
22787 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22788 Feature-List option in your Alpine configuration, so you will want to
22789 be sure that is turned on if you use quote suppression.
22791 For the purposes of this option, a quote is a line that begins with the
22792 character &quot;&gt;&quot;.
22794 Quotes are only suppressed when displaying a message on the screen.
22795 The entire quote will be left intact when printing or forwarding or something
22796 similar.
22798 &lt;End of help on this topic&gt;
22799 </BODY>
22800 </HTML>
22801 ====== h_config_saved_msg_name_rule =====
22802 <HTML>
22803 <HEAD>
22804 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22805 </HEAD>
22806 <BODY>
22807 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22809 This option determines the default folder name when saving
22810 a message.
22813 The default option is &quot;default-folder&quot;, which is the folder
22814 called &quot;saved-messages&quot; in Unix Alpine and
22815 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22816 the Alpine option called
22817 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22820 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22821 get the chosen option's value for the message being saved (or for the
22822 first message being saved if using an aggregrate save).
22823 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22824 value of who the message came from (i.e. the from address).
22825 Alpine then attempts to save the message to a folder matching that value.
22826 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22827 &quot;by-sender&quot;.
22828 The opposite is also true.
22829 If &quot;by-recipient&quot; is chosen and the message was posted to a
22830 newsgroup, Alpine will use the newsgroup name.
22831 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22832 &quot;by-from&quot;.
22835 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22836 to use the personal name part of the address instead of the mailbox part.
22837 If any of the &quot;by-nick&quot; options are chosen, the
22838 address is looked up in your address book and if found, the
22839 nickname for that entry is used.
22840 Only simple address book entries are checked, not distribution lists.
22841 Similarly, if any of the
22842 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
22843 address book entry is used.
22844 If by-realname, or the by-nick or by-fcc lookups result in no value,
22845 then if the chosen option ends with the &quot;then-from&quot;,
22846 &quot;then-sender&quot;, &quot;then-replyto&quot;,
22847 or &quot;then-recip&quot; suffix, Alpine
22848 reverts to the same behavior as &quot;by-from&quot;,
22849 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
22850 depending on which option was specified.
22851 If the chosen option doesn't end with one of
22852 the &quot;then-&quot; suffixes, then Alpine reverts to the default
22853 folder when no match is found in the address book.
22856 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
22857 to save to the folder that you saved to the last time you saved a
22858 message.  The first time you save a message in an Alpine session, Alpine
22859 attempts to save the message to the default folder.
22862 Here is an example to make some of the options clearer.
22863 If the message is From
22865 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
22867 and this rule is set to &quot;by-from&quot;, then the default folder offered
22868 in the save dialog would be &quot;flint&quot;.
22870 If this rule is set to &quot;by-realname-of-from&quot; then the default would
22871 be &quot;Fred Flintstone&quot;.
22873 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
22874 for the address &quot;flint@bedrock.org&quot; in your address book.
22875 If an entry is found and it has a nickname associated with it, that nickname
22876 will be offered as the default folder.
22877 If not, the default saved message folder will be offered as the default.
22879 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
22880 for the address &quot;flint@bedrock.org&quot; in your address book.
22881 If an entry is found and it has an Fcc associated with it, that Fcc
22882 will be offered as the default folder.
22883 If not, the default saved message folder will be offered as the default.
22885 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
22886 for the address &quot;flint@bedrock.org&quot; in your address book.
22887 If an entry is found and it has a nickname associated with it, that nickname
22888 will be offered as the default folder.
22889 If it is not found (or has no nickname) then the default offered will be
22890 the same as it would be for the &quot;by-from&quot; rule.
22891 That is, it would be &quot;flint&quot;
22893 <UL>   
22894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22895 </UL><P>
22896 &lt;End of help on this topic&gt;
22897 </BODY>
22898 </HTML>
22899 ====== h_config_fcc_rule =====
22900 <HTML>
22901 <HEAD>
22902 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
22903 </HEAD>
22904 <BODY>
22905 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
22907 This option determines the default name for folder carbon copy. Choose
22908 one:
22910 <DL>
22911 <DT>default-fcc</DT>
22912 <DD>This is the normal default, the value of which is set in the
22913 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
22914 configuration.
22915 </DD>
22917 <DT>last-fcc-used</DT>
22918 <DD> Causes Alpine to use the folder that was last
22919 used in the fcc field
22920 </DD>
22922 <DT>by-nickname</DT>
22923 <DD>Means that Alpine will use the nickname
22924 from your address book that matches the first address in the To line.
22925 If there is no match, it will use the value of the
22926 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
22927 </DD>
22929 <DT>by-recipient</DT>
22930 <DD>Means Alpine will form a folder name
22931 based on the left hand side of the first address in the To line.
22932 </DD>
22934 <DT>by-nick-then-recip</DT>
22935 <DD>Means that it will use the
22936 matching nickname from your address book if there is one, otherwise it
22937 will extract the recipient name from the address and use that (like
22938 by-recipient).
22939 </DD>
22941 <DT>current-folder</DT>
22942 <DD>Causes a copy to be written to
22943 the currently open folder, unless that is the INBOX.  In the case
22944 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
22945 used instead.
22946 </DD>
22947 </DL>
22950 Note: Whatever the fcc specified by the rule here, it will be
22951 over-ridden by any fcc entries you have in your address book.
22954 <UL>   
22955 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22956 </UL><P>
22957 &lt;End of help on this topic&gt;
22958 </BODY>
22959 </HTML>
22960 ====== h_config_sort_key =====
22961 <HTML>
22962 <HEAD>
22963 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
22964 </HEAD>
22965 <BODY>
22966 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
22968 This option determines the order in which messages will be displayed in
22969 the MESSAGE INDEX screen.  Choose from:
22971 <UL>
22972  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22973  <LI> <A HREF="h_index_sort_date">Date</A>
22974  <LI> <A HREF="h_index_sort_subj">Subject</A>
22975  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22976  <LI> <A HREF="h_index_sort_thread">Thread</A>
22977  <LI> <A HREF="h_index_sort_from">From</A>
22978  <LI> <A HREF="h_index_sort_size">Size</A>
22979  <LI> <A HREF="h_index_sort_score">Score</A>
22980  <LI> <A HREF="h_index_sort_to">To</A>
22981  <LI> <A HREF="h_index_sort_cc">Cc</A>
22982 </UL>
22985 Each type of sort may also be reversed.
22986 Normal default is by &quot;Arrival&quot;.
22989 A possible point of confusion arises when you change the configuration
22990 of the <!--#echo var="VAR_sort-key"-->.
22991 The folder will normally be re-sorted when you go back to viewing the
22992 index.
22993 However, if you have manually sorted the folder with the
22994 Sort
22995 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22996 command, then it will not be re-sorted until the next time it is opened.
22999 <UL>   
23000 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23001 </UL><P>
23002 &lt;End of help on this topic&gt;
23003 </BODY>
23004 </HTML>
23005 ====== h_config_other_startup =====
23006 <HTML>
23007 <HEAD>
23008 <TITLE>OPTION: Set Startup Rule</TITLE>
23009 </HEAD>
23010 <BODY>
23011 <H1>OPTION: Set Startup Rule</H1>
23013 This option determines which message will be the <EM>current message</EM> when
23014 the folder is first opened.
23015 It works the same way that the option
23016 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23017 works, so look there for help.
23018 It may be used for any folder, not just incoming folders.
23021 <UL>   
23022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23023 </UL><P>
23024 &lt;End of help on this topic&gt;
23025 </BODY>
23026 </HTML>
23027 ====== h_config_perfolder_sort =====
23028 <HTML>
23029 <HEAD>
23030 <TITLE>Set Sort Order</TITLE>
23031 </HEAD>
23032 <BODY>
23033 <H1>Set Sort Order</H1>
23035 This option determines the order in which messages will be displayed in
23036 the MESSAGE INDEX screen when the Current Folder Type set in the
23037 Pattern is a match. Choose from:
23039 <UL>
23040  <LI> <A HREF="h_index_sort_default">Default</A>
23041  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23042  <LI> <A HREF="h_index_sort_date">Date</A>
23043  <LI> <A HREF="h_index_sort_subj">Subject</A>
23044  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23045  <LI> <A HREF="h_index_sort_thread">Thread</A>
23046  <LI> <A HREF="h_index_sort_from">From</A>
23047  <LI> <A HREF="h_index_sort_size">Size</A>
23048  <LI> <A HREF="h_index_sort_score">Score</A>
23049  <LI> <A HREF="h_index_sort_to">To</A>
23050  <LI> <A HREF="h_index_sort_cc">Cc</A>
23051 </UL>
23054 Each type of sort may also be reversed.
23055 Normal default is by &quot;Arrival&quot;.
23058 A possible point of confusion arises when you change the configuration
23059 of the Sort Order for the currently open folder.
23060 The folder will normally be re-sorted when you go back to viewing the
23061 index.
23062 However, if you have manually sorted the folder with the
23063 Sort
23064 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23065 command, then it will not be re-sorted until the next time it is opened.
23068 <UL>   
23069 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23070 </UL><P>
23071 &lt;End of help on this topic&gt;
23072 </BODY>
23073 </HTML>
23074 ====== h_config_fld_sort_rule =====
23075 <HTML>
23076 <HEAD>
23077 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23078 </HEAD>
23079 <BODY>
23080 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23082 This option controls the order in which folder list entries will be
23083 presented in the FOLDER LIST screen.  Choose one of the following:
23085 <DL>
23086 <DT>Alphabetical</DT>
23087 <DD>sort by alphabetical name independent of type
23088 </DD>
23090 <DT>Alpha-with-dirs-last</DT>
23091 <DD>sort by alphabetical name grouping directory entries
23092 to the end of the list
23093 </DD>
23095 <DT>Alpha-with-dirs-first</DT>
23096 <DD>sort by alphabetical name grouping directory entries
23097 to the start of the list
23098 </DD>
23099 </DL>
23101 The normal default is &quot;Alphabetical&quot;.
23104 <UL>   
23105 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23106 </UL><P>
23107 &lt;End of help on this topic&gt;
23108 </BODY>
23109 </HTML>
23110 ====== h_config_ab_sort_rule =====
23111 <HTML>
23112 <HEAD>
23113 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23114 </HEAD>
23115 <BODY>
23116 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23118 This option controls the order in which address book entries will be
23119 presented.  Choose one of the following:
23121 <DL>
23122 <DT>fullname</DT>
23123 <DD>use fullname field, lists mixed in
23124 </DD>
23126 <DT>fullname-with-lists-last</DT>
23127 <DD>use fullname field, but put lists at end
23128 </DD>
23130 <DT>nickname</DT>
23131 <DD>use nickname field, lists mixed in
23132 </DD>
23134 <DT>nickname-with-lists-last</DT>
23135 <DD>use nickname field, but put lists at end
23136 </DD>
23138 <DT>dont-sort</DT>
23139 <DD>don't change order of file
23140 </DD>
23141 </DL>
23144 The normal default is &quot;fullname-with-lists-last&quot;.
23145 If you use an address book from more than one computer and those
23146 computers sort the address book differently then the sort order
23147 will be the order where the last change to the address book was
23148 made.
23149 There are two reasons the sorting might be different on different
23150 systems.
23151 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23152 places.
23153 Second, the collation rules on the two computers may be different.
23154 For example, one system might ignore special characters while the other
23155 doesn't or one may sort upper and lower case letters together while
23156 the other doesn't.
23157 In any case, the order you see is the order on the system where the
23158 last change was made, for example by an address book edit or a
23159 Take Address command.
23162 <UL>   
23163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23164 </UL><P>
23165 &lt;End of help on this topic&gt;
23166 </BODY>
23167 </HTML>
23168 ====== h_config_post_char_set =====
23169 <HTML>
23170 <HEAD>
23171 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23172 </HEAD>
23173 <BODY>
23174 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23176 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23177 when sending messages.
23181 When sending a message the text typed in the composer is
23182 labeled with the character set specified by this option.
23183 If the composed text is not fully representable in the 
23184 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23185 instead;
23188 Attachments are labeled with your
23189 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23192 Generally, there should be little need to set this option.
23193 If left unset, the
23194 default behavior is to label composed text as specifically as
23195 possible.  That is, if the composed text has no non-ASCII characters,
23196 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23197 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23198 attempt to automatically detect a number of character sets including ISO-8859-15,
23199 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23200 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23201 If the message contains a mix of character sets,
23202 it is labeled as &quot;UTF-8.&quot;
23206 This setting is provided to allow you to force a particular character set that
23207 Alpine does not automatically detect. For example, if a message is representable
23208 in more than one character set then Alpine may choose a different default
23209 than you want.
23210 Lastly, by setting this option explicitly to
23211 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23212 &quot;UTF-8&quot; instead of something more specific.
23215 In the Setup/Config screen you may choose from a list of all the
23216 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23219 The options
23220 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23221 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23222 are closely related.
23223 Setting the feature
23224 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23225 should cause this option to be ignored.
23228 <UL>   
23229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23230 </UL><P>
23231 &lt;End of help on this topic&gt;
23232 </BODY>
23233 </HTML>
23234 ====== h_config_unk_char_set =====
23235 <HTML>
23236 <HEAD>
23237 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23238 </HEAD>
23239 <BODY>
23240 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23242 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23243 when reading or replying to messages.
23247 A text message should either be made up of all US-ASCII characters
23248 or it should contain a charset label which tells the software which
23249 character set encoding to use to interpret the message.
23250 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23251 This message is outside of the standards so any attempt to read it could fail.
23252 When Alpine attempts to read such a message it will try to interpret the
23253 text in the character set you specify here.
23254 For example, if you have correspondents who send you unlabeled messages that
23255 are usually made up of characters from the WINDOWS-1251 character set, setting
23256 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23257 allow you to read those messages.
23258 Of course, if the unlabeled message is actually in some other character set,
23259 then you may see garbage on your screen.
23261 Instead of just unlabeled text, this option also affects text which is labeled
23262 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23263 or &quot;US-ASCII&quot;.
23266 In the Setup/Config screen you may choose from a list of all the
23267 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23270 <UL>   
23271 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23272 </UL><P>
23273 &lt;End of help on this topic&gt;
23274 </BODY>
23275 </HTML>
23276 ====== h_config_char_set =====
23277 <HTML>
23278 <HEAD>
23279 <TITLE>OPTION: Display Character Set</TITLE>
23280 </HEAD>
23281 <BODY>
23282 <H1>OPTION: Display Character Set</H1>
23284 The Display Character Set configuration option is used when viewing messages.
23286 Alpine uses Unicode characters internally and 
23287 it is a goal for Alpine to handle email in many different languages.
23288 Alpine will properly display only left-to-right character sets
23289 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23290 font is in use, in the sense that
23291 characters are assumed to take up zero, one, or two character cell
23292 widths from left to right on the screen. This is true even in PC-Alpine.
23295 Alpine recognizes some local character sets that are right-to-left
23296 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23297 (Arabic) and properly converts texts in these character sets to/from
23298 Unicode; however, there are known display bugs with these character
23299 sets.
23302 There are three possible configuration character settings and some
23303 environment variable settings that can affect how Alpine
23304 handles international characters.
23305 The first two of these are only available in UNIX Alpine.
23306 The three configuration options are
23307 Display Character Set,
23308 Keyboard Character Set, and
23309 <!--#echo var="VAR_posting-character-set"-->.
23310 The Keyboard Character Set defaults to being the same value
23311 as the Display Character Set, and that is usually correct, because
23312 the keyboard almost always produces characters in the same character set
23313 as the display displays.
23314 The Display Character Set is the character set that Alpine
23315 will attempt to use when sending characters to the display.
23318 By default, the Display Character Set variable is not set and UNIX Alpine
23319 will attempt to get this information from the environment.
23320 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23321 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23322 An explicit configuration setting for Display Character Set will,
23323 of course, override any default setting.
23325 For PC-Alpine the Display Character Set
23326 and the Keyboard Character Set
23327 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23330 It is probably best to use UNIX Alpine in a terminal emulator
23331 capable of displaying UTF-8 characters, since that will allow you to
23332 view just about any received text that is correctly formatted (note,
23333 however, the above comments about known index display bugs with certain
23334 character sets). You'll need to have an emulator that uses a UTF-8 font
23335 and you'll need to set up your environment to use a UTF-8 charmap. For
23336 example, on a Linux system you might include
23338 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23341 or something similar in your UNIX startup files.
23342 You'd also have to select a UTF-8 font in your terminal emulator.
23345 The types of values that the character set variables may be set to are
23346 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23347 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23348 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23349 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23350 In the Setup/Config screen you may choose from a list of all the
23351 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23352 Here is a list of many of the possible character sets:
23355 <TABLE>
23356 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23357 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23358 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23359 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23360 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23361 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23362 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23363 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23364 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23365 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23366 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23367 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23368 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23369 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23370 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23371 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23372 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23373 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23374 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23375 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23376 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23377 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23378 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23379 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23380 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23381 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23382 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23383 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23384 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23385 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23386 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23387 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23388 </TABLE>
23391 When reading incoming email, Alpine understands many different
23392 character sets and is able to convert the incoming mail into Unicode.
23393 The Unicode will be converted to the Display Character Set
23394 for display on your terminal.
23395 Characters typed at the keyboard will be converted from the
23396 Keyboard Character Set to Unicode for Alpine's internal
23397 use.
23398 You may find that you can read some malformed messages that do not
23399 contain a character set label by setting the option
23400 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23403 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23404 The default behavior obtained by leaving this variable unset is usually
23405 what is wanted. In that default case, Alpine will attempt
23406 to label the message with the most specific character set from the
23407 rather arbitrary set
23409 US-ASCII, ISO-8859-15,
23410 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23411 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23414 For example, if the message is made up of only US-ASCII characters, it
23415 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23416 that will be the label. If that doesn't work the same is tried for the
23417 remaining members of the list.
23420 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23421 explicit value instead.
23422 For example, if you usually send messages in Greek, setting this
23423 option to ISO-8859-7 will result in messages being labeled as
23424 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23425 are only Greek characters, or UTF-8 if there are some characters
23426 that aren't representable in ISO-8859-7.
23427 Another possibility is to set this option explicitly to UTF-8.
23428 In that case
23429 Alpine labels only ascii messages as US-ASCII and all other
23430 messages as UTF-8.
23433 The options
23434 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23435 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23436 are closely related to this option.
23437 Setting the feature
23438 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23439 should cause this option to be ignored.
23442 When displaying a message, Alpine compares this setting to the character
23443 set specified in the message.  If not all of the
23444 characters in the message can be displayed using the Display Character Set
23445 then Alpine places an editorial
23446 comment in the displayed text (enclosed in square-brackets) indicating
23447 that some characters may not be displayed correctly.
23448 This comment may be eliminated by turning on the option
23449 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23452 <UL>   
23453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23454 </UL><P>
23455 &lt;End of help on this topic&gt;
23456 </BODY>
23457 </HTML>
23458 ====== h_config_key_char_set =====
23459 <HTML>
23460 <HEAD>
23461 <TITLE>OPTION: Keyboard Character Set</TITLE>
23462 </HEAD>
23463 <BODY>
23464 <H1>OPTION: Keyboard Character Set</H1>
23466 UNIX Alpine only.
23468 The Keyboard Character Set identifies the character set of the characters
23469 coming from your keyboard.
23470 It defaults to having the same value as your
23471 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23472 which in turn defaults to a value obtained from your environment.
23473 It is unlikely that you will need to use this option, because the keyboard
23474 almost always produces the same kind of characters as the display displays.
23477 This character set is also used when accessing files in your local
23478 file system.
23479 The names of the files are assumed to be in the same character set as
23480 what the keyboard produces, as well as the contents of the files.
23483 In the Setup/Config screen you may choose from a list of all the
23484 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23487 The options
23488 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23489 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23490 are closely related.
23491 Setting the feature
23492 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23493 should cause this option to be ignored.
23496 <UL>   
23497 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23498 </UL><P>
23499 &lt;End of help on this topic&gt;
23500 </BODY>
23501 </HTML>
23502 ====== h_config_editor =====
23503 <HTML>
23504 <HEAD>
23505 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23506 </HEAD>
23507 <BODY>
23508 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23510 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23511 normally an alternative to Alpine's internal composer (Pico).  You could use
23512 this setting to specify an alternate editor to use occasionally or if you
23513 have a favorite editor and want to use it all the time (see the 
23514 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23515 If you specify multiple editors for this option, ^_ will invoke the first one 
23516 of those specified that exists and is executable.  When specifying a program 
23517 for use here, make sure that the format of the text it saves -- which, when 
23518 you exit it, will become the message body in Alpine -- is appropriate 
23519 for the body of an email message; avoid proprietary formats that may result in 
23520 a message body that the recipient of your message will be unable to decipher.
23522 <!--chtml if pinemode="os_windows"-->
23523 <!--chtml else-->
23524 If you are in doubt about what editors are available on your system, or which 
23525 of them may be appropriate for specification here, ask your local computing 
23526 support staff.  
23527 <!--chtml endif-->
23529 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23530 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23531 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23532 use that.
23534 <P><UL>
23535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23536 </UL>
23538 &lt;End of help on this topic&gt;
23539 </BODY>
23540 </HTML>
23541 ====== h_config_speller =====
23542 <HTML>
23543 <HEAD>
23544 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23545 </HEAD>
23546 <BODY>
23547 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23549 UNIX Alpine only.
23551 For PC-Alpine, you must install the aspell library code that you
23552 may get from
23553 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23555 This option affects the behavior of the ^T (spell check) command in the
23556 Composer.  It specifies the program invoked by ^T in the Composer.
23557 By default, Alpine uses
23559 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23561 if it knows where to find &quot;aspell&quot;.
23562 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23563 then the command used is
23565 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23567 Otherwise, the ancient &quot;spell&quot; command is used.
23569 If you specify a value for this command (with full pathname) then that is what
23570 will be used instead of any of the defaults.
23571 When invoking this
23572 spell-checking program, Alpine appends a tempfile name (where the message is
23573 passed) to the command line. Alpine expects the speller to correct the
23574 spelling in that file. When you exit from that program Alpine will read the
23575 tempfile back into the composer.
23577 Don't set this speller option to the standard Unix spell command.
23578 That won't work because spell works in a different way.
23581 <UL>   
23582 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23583 </UL><P>
23584 &lt;End of help on this topic&gt;
23585 </BODY>
23586 </HTML>
23587 ====== h_config_aspell_dictionary =====
23588 <HTML>
23589 <HEAD>
23590 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23591 </HEAD>
23592 <BODY>
23593 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23595 PC Alpine only.
23597 This option specifies a list of dictionaries you will use with
23598 aspell. A sample entry is &quot;en_US&quot; for american english, or
23599 &quot;en_GB&quot; for brittish english.
23602 <UL>   
23603 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23604 </UL><P>
23605 &lt;End of help on this topic&gt;
23606 </BODY>
23607 </HTML>
23608 ====== h_config_display_filters =====
23609 <HTML>
23610 <HEAD>
23611 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23612 </HEAD>
23613 <BODY>
23614 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23616 This option defines a list of text-filtering commands (programs or
23617 scripts) that may be used to filter text portions of received messages
23618 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23619 display screen, exporting to a text file).  
23620 For security reasons, the full path name of the
23621 filter command must be specified.
23624 The command is executed and the message is piped into its standard input. 
23625 The standard output of the command is read back by Alpine.  The
23626 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23628 <P> 
23629 The filter's use is based on the configured &quot;trigger&quot; string.  The
23630 format of a filter definition is:
23632 <P>   
23633 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23636 You can specify as many filters as you wish, separating them with a comma.  
23637 Each filter can have only one trigger and command.  Thus, two trigger 
23638 strings that invoke the same command require separate filter 
23639 specifications. 
23641 <P> 
23642 The &quot;trigger&quot; is simply text that, if found in the message,
23643 will invoke the associated command.  If the trigger contains any space
23644 characters, it must be placed within quotes.  Likewise, should you
23645 wish a filter to be invoked unconditionally, define the trigger as the
23646 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23647 trigger string is found anywhere in the text of the message the filter
23648 is invoked.  Placing the trigger text within the tokens defined below
23649 changes where within the text the trigger must be before considering
23650 it a match.
23652 <P>  
23653 Trigger Modifying Tokens:
23654 <DL>
23655 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23656 <DD>This token tells Alpine to invoke the supplied command
23657 if the text is in a character set matching <VAR>string</VAR>
23658 (e.g., ISO-8859-2 or ISO-2022-JP).
23659 </DD>
23662 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23663 <DD>This token tells Alpine to invoke the supplied command
23664 if the enclosed <VAR>string</VAR> is found to be the first
23665 non-whitespace text.
23666 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23667 the space character.
23668 </DD>
23670 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23671 <DD>This token tells Alpine to invoke the supplied command
23672 if the enclosed <VAR>string</VAR> is found at the beginning
23673 of any line in the text.
23674 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23675 the space character.
23676 </DD>
23677 </DL>
23680 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23681 the command line to be invoked if the trigger string is found.  Below
23682 are tokens that Alpine will recognize and replace with special values
23683 when the command is actually invoked.
23686 Command Modifying Tokens:
23688 <DL>
23689 <DT>_TMPFILE_</DT>
23690 <DD>When the command is executed, this token is 
23691 replaced with the path and name of the temporary 
23692 file containing the text to be filtered.  Alpine 
23693 expects the filter to replace this data with the 
23694 filter's result.
23697 NOTE: Use of this token implies that the text to 
23698 be filtered is not piped into standard input of the 
23699 executed command and its standard output is ignored. 
23700 Alpine restores the tty modes before invoking the
23701 filter in case the filter interacts with the user
23702 via its own standard input and output.  
23703 </DD>
23704                         
23705 <DT>_RESULTFILE_</DT>
23706 <DD>When the command is executed, this token is 
23707 replaced with the path and name of a temporary 
23708 file intended to contain a status message from the 
23709 filter.  Alpine displays this in the message status 
23710 field. 
23711 </DD>
23713 <DT>_DATAFILE_</DT>
23714 <DD>When the command is executed, this token is 
23715 replaced with the path and name of a temporary 
23716 file that Alpine creates once per session and deletes 
23717 upon exit.  The file is intended to be used by the 
23718 filter to store state information between instances 
23719 of the filter.
23720 </DD>
23721    
23722 <DT>_PREPENDKEY_</DT>
23723 <DD>When the command is executed, this token indicates that a random
23724 number will be passed down the input stream before the message text.
23725 This number could be used as a session key.  It is sent in this way to
23726 improve security.  The number is unique to the current Alpine session
23727 and is only generated once per session.
23728 </DD>
23730 <DT>_SILENT_</DT>
23731 <DD>When the filter is executed, this token tells Alpine not to repaint
23732 the screen while the command is being executed. This can be used with 
23733 filters that do not interact with the user, and therefore repainting 
23734 the screen is not necessary. 
23735 </DD>
23736 </DL>
23739 The feature
23740 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23742 Performance caveat/considerations:
23743 <BR>
23744 Testing for the trigger and invoking the filter doesn't come for free.
23745 There is overhead associated with searching for the trigger string, testing
23746 for the filter's existence and actually piping the text through the filter.
23747 The impact can be reduced if the Trigger Modifying Tokens above are 
23748 employed.
23750 &lt;End of help on this topic&gt;
23751 </BODY>
23752 </HTML>
23753 ====== h_config_sending_filter =====
23754 <HTML>
23755 <HEAD>
23756 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23757 </HEAD>
23758 <BODY>
23759 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23760       
23761 This option defines a list of text-filtering commands (programs and
23762 scripts) that may be selectively invoked to process a message just before
23763 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23764 select which filter (or none) to apply to the message before it is sent. 
23765 For security reasons, the full path of the filter program must be
23766 specified.
23769 Command Modifying Tokens:
23771 <DL>
23772 <DT>_RECIPIENTS_</DT>
23773 <DD>When the command is executed, this token is replaced 
23774 with the space delimited list of recipients of the 
23775 message being sent. 
23776 </DD>
23777         
23778 <DT>_TMPFILE_</DT>
23779 <DD>
23780 When the command is executed, this token is 
23781 replaced with the path and name of the temporary 
23782 file containing the text to be filtered.  Alpine 
23783 expects the filter to replace this data with the 
23784 filter's result.
23787 NOTE: Use of this token implies that the text to 
23788 be filtered is not piped into standard input of the 
23789 executed command and its standard output is ignored. 
23790 Alpine restores the tty modes before invoking the
23791 filter in case the filter interacts with the user
23792 via its own standard input and output.  
23793 </DD>
23794                         
23795 <DT>_RESULTFILE_</DT>
23796 <DD>When the command is executed, this token is 
23797 replaced with the path and name of a temporary 
23798 file intended to contain a status message from the 
23799 filter.  Alpine displays this in the message status 
23800 field. 
23801 </DD>
23803 <DT>_DATAFILE_</DT>
23804 <DD>When the command is executed, this token is replaced 
23805 in the command line with the path and name of a 
23806 temporary file that Alpine creates once per session 
23807 and deletes upon exit.  The file is intended to be 
23808 used by the filter to store state information between 
23809 instances of the filter.
23810 </DD>
23811    
23812 <DT>_PREPENDKEY_</DT>
23813 <DD>When the command is executed, this token indicates 
23814 that a random number will be passed down the input 
23815 stream before the message text.  This number could 
23816 be used as a session key.  It is sent in this way 
23817 to improve security.  The number is unique to the 
23818 current Alpine session and is only generated once per 
23819 session. 
23820 </DD>
23822 <DT>_INCLUDEALLHDRS_</DT>
23823 <DD>When the command is executed, this token indicates 
23824 that the headers of the message will be passed down the input stream
23825 before the message text.
23826 </DD>
23828 <DT>_MIMETYPE_</DT>
23829 <DD>When the command is executed, this token is replaced in the
23830 command name with a temporary file name used to accept any new MIME
23831 Content-Type information necessitated by the output of the filter.
23832 Upon the filter's exit, if the file contains new MIME type
23833 information, Alpine verifies its format and replaces the outgoing
23834 message's MIME type information with that contained in the file. This
23835 is basically a cheap way of sending something other than Text/Plain.
23836 </DD>
23837 </DL>
23839 <P>   
23840 NOTE: Only the body text, which is visible in the Composer, is piped
23841 through this filter.  Attachments are not sent to the filter.
23842 <P>   
23843 Sending filters are not used if the feature
23844 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
23846 <UL>   
23847 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23848 </UL><P>
23849 &lt;End of help on this topic&gt;
23850 </BODY>
23851 </HTML>
23852 ====== h_config_keywords =====
23853 <HTML>
23854 <HEAD>
23855 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
23856 </HEAD>
23857 <BODY>
23858 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
23860 You may define your own set of keywords and optionally set them on a
23861 message by message basis.
23862 These are similar to the &quot;Important&quot; flag which the user
23863 may set using the Flag command.
23864 The difference is that the Important flag is always present for each folder.
23865 User-defined keywords are chosen by the user.
23866 You may set up the list of possible keywords here, or you may add keywords
23867 from the Flag Details screen that you
23868 can get to after typing the
23869 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
23870 command.
23871 After the keywords have been defined,
23872 then you use the <A HREF="h_common_flag">Flag command</A>
23873 to set or clear the keywords in each message.
23874 The behavior of the flag command may be modified by using the
23875 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
23876 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
23879 Keywords may be used when Selecting messages (Select Keyword).
23880 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
23881 Filter Rules may be used to set keywords automatically.
23882 Keywords may be displayed as part of the Subject of a message by using
23883 the SUBJKEY or SUBJKEYINIT tokens in the
23884 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
23885 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
23886 option may be used to modify the display of keywords using
23887 SUBJKEY and SUBJKEYINIT slightly.
23888 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
23889 screen by using the KEY or KEYINIT tokens.
23890 It is also possible to color keywords in the index using the
23891 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
23892 Keywords are not supported by all mail servers.
23895 You may give keywords nicknames if you wish.
23896 If the keyword definition you type in contains a SPACE character, then the
23897 actual value of the keyword is everything after the last SPACE and the
23898 nickname for that keyword is everything before the last SPACE.
23899 For example, suppose you are trying to interoperate with another email program
23900 that uses a particular keyword with an unpleasant name.
23901 Maybe it uses a keyword called
23903 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
23905 but for you that keyword means that the message is work-related.
23906 You could define a keyword to have the value
23908 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
23910 and then you would use the name &quot;Work&quot; when dealing with
23911 that keyword in Alpine.
23912 If you defined it as
23914 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
23916 the nickname would be everything before the last SPACE, that is the nickname
23917 would be &quot;My Work&quot;.
23919 Some commonly used keywords begin with dollar signs.
23920 This presents a slight complication, because the dollar sign is normally used
23921 to signify
23922 <A HREF="h_news_config">environment variable expansion</A>
23923 in the Alpine configuration.
23924 In order to specify a keyword that begins with a dollar sign you must
23925 precede the dollar sign with a second dollar sign to escape its special
23926 meaning.
23927 For example, if you want to include the keyword
23929 <CENTER><SAMP>$Label1</SAMP></CENTER>
23931 as one of your possible keywords, you must enter the text
23933 <CENTER><SAMP>$$Label1</SAMP></CENTER>
23936 instead.
23938 There are a couple limitations.
23939 First, not all servers support keywords.
23940 Second, some servers (including the IMAP server included with Alpine)
23941 have a per folder limit on the number of keywords that may be defined.
23942 This count commonly includes every keyword you have ever used in the
23943 folder, even if it is no longer being used.
23944 In other words, you can add keywords but you cannot remove them easily.
23945 If you have changed keywords over the life of a folder and find that
23946 you have reached such a limit, one possible solution might be to copy
23947 all of the messages to a newly created folder (using Alpine) and then
23948 delete the original and rename the new folder.
23949 The reason this might work is that only the keywords currently set in
23950 any of the messages will be used in the new folder, hopefully putting you
23951 under the limit.
23954 <UL>   
23955 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23956 </UL><P>
23957 &lt;End of help on this topic&gt;
23958 </BODY>
23959 </HTML>
23960 ====== h_config_alt_addresses =====
23961 <HTML>
23962 <HEAD>
23963 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
23964 </HEAD>
23965 <BODY>
23966 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
23968 This option provides a place for you to list alternate email addresses
23969 you may have.
23970 Each address in the list should be the actual email address part of an
23971 address, without the full name field or the angle brackets.
23972 For example:
23975 <CENTER><SAMP>user@example.com</SAMP></CENTER>
23978 The matching is case-insensitive, so this would match any of
23979 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
23980 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
23983 If set, the option affects the behavior of the Reply
23984 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
23985 a message has been addressed specifically to you.
23988 In the default INDEX display
23989 the personal name (or email address) of
23990 the person listed in the message's &quot;From:&quot; header
23991 field is usually displayed except when that address is yours or one of your
23992 alternate addresses.
23993 In that case you will usually see the name of
23994 the first person specified in the
23995 message's &quot;To:&quot; header field
23996 with the prefix &quot;To: &quot; prepended.
23999 With respect to Reply, the reply-to-all option will exclude addresses
24000 listed here.
24003 The feature
24004 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24005 is somewhat related to this option.
24008 In addition to a list of actual addresses,
24009 you may use regular expressions (as used with egrep with the ignore case flag)
24010 to describe the addresses you want to match.
24011 Alpine will somewhat arbitrarily interpret your entry as a regular
24012 expression if it contains any of the characters
24013 *, |, +, ?, {, [, ^, $, or &#92;.
24014 Otherwise, it will be treated literally.
24015 The feature
24016 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24017 may be used to turn off regular expression processing regardless of whether or not
24018 special characters appear in the entry.
24021 A description of how regular expressions work is beyond the
24022 scope of this help text, but some examples follow.
24025 The entry
24028 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24031 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24032 address with a domain name of <SAMP>example.com</SAMP> (such as
24033 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24034 one of your alternate addresses.
24035 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24036 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24037 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24038 Complicating things further, the dollar sign
24039 is special in the Alpine configuration (it signifies environment variable expansion)
24040 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24041 Quotes around the whole expression will not escape the dollar sign successfully.
24042 So this example should look like
24045 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24049 The entry
24052 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24055 would match
24056 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24057 as <SAMP>fred@example.com</SAMP>.
24060 You could match all addresses that look like
24061 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24062 entry
24065 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24068 Notice that you have to escape the plus sign with a backslash because plus
24069 is a special character in regular expressions.
24070 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24071 the expression
24074 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24077 would do it, but it would be easier to just add fred@example.com as a
24078 separate entry.
24081 One more example, a match of all first-level subdomains, is given by
24084 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24088 Because the regular expression matching is based on an old library
24089 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24090 but they should be close.
24093 <UL>   
24094 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24095 </UL><P>
24096 &lt;End of help on this topic&gt;
24097 </BODY>
24098 </HTML>
24099 ====== h_config_abook_formats =====
24100 <HTML>
24101 <HEAD>
24102 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24103 </HEAD>
24104 <BODY>
24105 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24107 This option specifies the format that address books are displayed in.
24108 Normally, address books are displayed with the nicknames in the first
24109 column, the fullnames in the second column, and addresses in the third
24110 column.  The system figures out reasonable defaults for the widths of
24111 the columns.  An address book may be given a different format by
24112 listing special tokens in the order you want them to display.  The
24113 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24114 So, for example, to get the default behavior you could list
24117 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24120 (You can also use the token DEFAULT to get the default behavior for
24121 an address book format.)
24124 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24125 is a list, so if you have more than one address book you may have a
24126 separate format for each by putting its format at the corresponding
24127 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24131 Listed first are the personal address books, then the global address
24132 books.  So, if you have two personal address books and one global
24133 address book, you may have up to three formats in the
24134 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24135 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24136 are address books, the last element is used repeatedly.
24140 Each of the tokens may also be optionally followed by parentheses with
24141 either a number or a percentage inside the parentheses.  For example,
24142 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24143 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24144 of the available space (the screen width minus the space for
24145 inter-column spaces) to the fullnames column, while plain
24146 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24147 reasonable number of columns.
24150 There are always 2 spaces between every column, so if you use
24151 fixed column widths (like 13) you should remember to take that into
24152 account.
24155 <UL>   
24156 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24157 </UL><P>
24158 &lt;End of help on this topic&gt;
24159 </BODY>
24160 </HTML>
24161 ====== h_config_set_index_format =====
24162 <HTML>
24163 <HEAD>
24164 <TITLE>Set Index Format</TITLE>
24165 </HEAD>
24166 <BODY>
24167 <H1>Set Index Format</H1>
24169 This option is used to customize the content of lines in the
24170 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24171 This action works exactly like the regular
24172 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24173 except that you can have a folder-specific value for it if you specify it here.
24174 Consult the help for
24175 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24176 for more information.
24179 <UL>   
24180 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24181 </UL><P>
24182 &lt;End of help on this topic&gt;
24183 </BODY>
24184 </HTML>
24185 ====== h_config_index_format =====
24186 <HTML>
24187 <HEAD>
24188 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24189 </HEAD>
24190 <BODY>
24191 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24193 This option is used to customize the content of lines in the
24194 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24195 to convey some amount of immediately relevant information about each 
24196 message in the current folder.
24199 Alpine provides a pre-defined set of informational fields with
24200 reasonable column widths automatically computed.  You can, however,
24201 replace this default set by listing special tokens in the order you
24202 want them displayed.
24205 The list of available tokens is
24206 <A HREF="h_index_tokens">here</A>.
24209 Spaces are used to separate listed tokens.  Additionally, you can
24210 specify how much of the screen's width the token's associated data
24211 should occupy on the index line by appending to the token a pair of
24212 parentheses enclosing either a number or percentage.  For example,
24213 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24214 column, and &quot;SUBJECT(20%)&quot; means to
24215 allocate 20% of the available space
24216 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24217 attempt to figure out a reasonable amount of space.
24220 There is always one space between every pair of columns, so if you use fixed
24221 column widths (like 13) you should remember to take that into account.
24222 Several of the fields are virtually fixed-width, so it doesn't make
24223 much sense to specify the width for them.  The fields STATUS,
24224 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24225 and DESCRIPSIZE all fall into that category.
24226 You <EM>may</EM> specify widths for those if you wish, but
24227 you're probably better off letting the system pick those widths.  <P>
24230 The default is equivalent to:
24233 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24236 This means that the four fields without percentages will be allocated
24237 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24238 the from and subject fields.  If one of those two fields is specified
24239 as a percentage and the other is left for the system to choose, then
24240 the percentage is taken as an absolute percentage of the screen, not
24241 of the space remaining after allocating the first four columns.  It
24242 doesn't usually make sense to do it that way.  If you leave off all
24243 the widths, then the subject and from fields (if both are present) are
24244 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24245 the default.
24248 What you are most likely to do with this configuration option is to
24249 specify which fields appear at all, which order they appear in, and the
24250 percentage of screen that is used for the from and subject fields if you
24251 don't like the 2 to 1 default.
24254 If you want to retain the default format that Pine 4.64 had, use
24257 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24259 <EM>and</EM> set the feature
24260 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24261 <UL>   
24262 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24263 </UL><P>
24264 &lt;End of help on this topic&gt;
24265 </BODY>
24266 </HTML>
24267 ====== h_config_reply_intro =====
24268 <HTML>
24269 <HEAD>
24270 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24271 </HEAD>
24272 <BODY>
24273 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24275 This option is used to customize the content of the introduction line
24276 that is included when replying to a message and including the original
24277 message in the reply.
24278 The normal default (what you will get if you delete this variable) looks
24279 something like:
24281 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24283 where the day of the week is only included if it is available in the
24284 original message.
24285 You can replace this default with text of your own.
24286 The text may contain tokens that are replaced with text
24287 that depends on the message you are replying to.
24288 For example, the default is equivalent to:
24290 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24293 Since this variable includes regular text mixed with special tokens
24294 the tokens have to be surrounded by underscore characters.
24295 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24296 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24297 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24299 The list of available tokens is
24300 <A HREF="h_index_tokens">here</A>.
24303 By default, the text is all on a single line and is followed by a blank line.
24304 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24305 than 80 characters when replying to a particular message, it is shortened.
24306 However, if you use the token
24308 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24311 anywhere in the value, no end of line or blank line is appended, and no
24312 shortening is done.
24313 The _NEWLINE_ token may be used to get rid of the blank line following
24314 the text, to add more blank lines, or to form a multi-line
24315 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24316 To clarify how _NEWLINE_ works recall that the default value is:
24318 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24321 That is equivalent to
24323 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24326 In the former case, two newlines are added automatically because
24327 no _NEWLINE_ token appears in the value of the option (for backwards
24328 compatibility). In the latter case, the newlines are explicit.
24329 If you want to remove the blank line that follows the
24330 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24331 _NEWLINE_ token like
24333 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24336 Because of the backwards compatibility problem, it is not possible to
24337 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24338 and that will cause the automatic adding of two newlines!
24339 If you want, you may embed newlines in the middle of the text, as well,
24340 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24343 By default, no attempt is made to localize the date.
24344 If you prefer a localized form you may find that one of the tokens
24345 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24346 If you want more control one of the many other date tokens, such as _DATEISO_,
24347 might be better.
24350 For the adventurous, there is a way to conditionally include text based
24351 on whether or not a token would result in specific replacement text.
24352 For example, you could include some text based on whether or not
24353 the _NEWS_ token would result in any newsgroups if it was used.
24354 It's explained in detail
24355 <A HREF="h_reply_token_conditionals">here</A>.
24358 In the very unlikely event that you want to include a literal token
24359 in the introduction line you must precede it with a backslash character.
24360 For example,
24362 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24364 would produce something like
24366 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24368 It is not possible to have a literal backslash followed by an expanded token.
24370 <UL>   
24371 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24372 </UL><P>
24373 &lt;End of help on this topic&gt;
24374 </BODY>
24375 </HTML>
24376 ====== h_config_remote_abook_history =====
24377 <HTML>
24378 <HEAD>
24379 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24380 </HEAD>
24381 <BODY>
24382 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24384 Sets how many extra copies of
24385 remote address book
24386 data will be kept in each remote address book folder.
24387 The default is three.
24388 These extra copies are simply old versions of the data. Each time a change
24389 is made a new copy of the address book data is appended to the folder. Old
24390 copies are trimmed, if possible, when Alpine exits.
24391 An old copy can be put back into use by
24392 deleting and expunging newer versions of the data from the folder.
24393 Don't delete the first message from the folder. It is a special header
24394 message for the remote address book and it must be there.
24395 This is to prevent regular folders from being used as remote address book
24396 folders and having their data destroyed.
24398 This option is also used to determine how many extra copies of remote
24399 Alpine configuration files are kept.
24401 <UL>   
24402 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24403 </UL><P>
24404 &lt;End of help on this topic&gt;
24405 </BODY>
24406 </HTML>
24407 ====== h_config_remote_abook_validity =====
24408 <HTML>
24409 <HEAD>
24410 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24411 </HEAD>
24412 <BODY>
24413 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24415 Sets the minimum number of minutes that a
24416 remote address book will be considered up to date.
24417 Whenever an entry contained in a remote address book is used,
24418 if more than this many minutes have
24419 passed since the last check the remote server will be queried to see if the
24420 address book has changed.
24421 If it has changed, the local copy is updated.
24422 The default value is five minutes.
24423 The special value of -1 means never check.
24424 The special value of zero means only check when the address book is first
24425 opened.
24427 No matter what the value, the validity check is always done when the
24428 address book is about to be changed by the user.
24429 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24430 while in the address book maintenance screen for the remote address book.
24432 <UL>   
24433 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24434 </UL><P>
24435 &lt;End of help on this topic&gt;
24436 </BODY>
24437 </HTML>
24438 ====== h_config_user_input_timeo =====
24439 <HTML>
24440 <HEAD>
24441 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24442 </HEAD>
24443 <BODY>
24444 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24446 If this is set to an integer greater than zero, then this is the number
24447 of <EM>hours</EM> to wait for user input before Alpine times out.
24448 If Alpine is
24449 in the midst of composing a message or is waiting for user response to
24450 a question, then it will not timeout.
24451 However, if Alpine is sitting idle waiting for
24452 the user to tell it what to do next and the user does not give any
24453 input for this many hours, Alpine will exit.
24454 No expunging or moving of read
24455 messages will take place.
24456 It will exit similarly to the way it would exit
24457 if it received a hangup signal.
24458 This may be useful for cleaning up unused Alpine sessions that have been
24459 forgotten by their owners.
24460 The Alpine developers envision system administrators
24461 setting this to a value of several hours (24?) so that it won't surprise
24462 a user who didn't want to be disconnected.
24464 <UL>   
24465 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24466 </UL><P>
24467 &lt;End of help on this topic&gt;
24468 </BODY>
24469 </HTML>
24470 ====== h_config_ssh_open_timeo =====
24471 <HTML>
24472 <HEAD>
24473 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24474 </HEAD>
24475 <BODY>
24476 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24478 Sets the time in seconds that Alpine will
24479 attempt to open a UNIX secure shell connection.
24480 The default is 15, the minimum non-zero value is 5,
24481 and the maximum is unlimited. If this is set to zero ssh connections
24482 will be completely disabled.
24484 <UL>   
24485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24486 </UL><P>
24487 &lt;End of help on this topic&gt;
24488 </BODY>
24489 </HTML>
24490 ====== h_config_rsh_open_timeo =====
24491 <HTML>
24492 <HEAD>
24493 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24494 </HEAD>
24495 <BODY>
24496 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24498 Sets the time in seconds that Alpine will
24499 attempt to open a UNIX remote shell connection.
24500 The default is 15, the minimum non-zero value is 5,
24501 and the maximum is unlimited. If this is set to zero rsh connections
24502 will be completely disabled.
24503 This might be useful if rsh connections will never work in your environment
24504 but are causing delays due to firewalls or some other reason.
24506 <UL>   
24507 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24508 </UL><P>
24509 &lt;End of help on this topic&gt;
24510 </BODY>
24511 </HTML>
24512 ====== h_config_tcp_open_timeo =====
24513 <HTML>
24514 <HEAD>
24515 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24516 </HEAD>
24517 <BODY>
24518 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24520 Sets the time in seconds that Alpine will
24521 attempt to open a network connection. The default is 30, the minimum is 5,
24522 and the maximum is system defined (typically 75). If a connection has not
24523 completed within this many seconds Alpine will give up and consider it a
24524 failed connection.
24526 <UL>   
24527 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24528 </UL><P>
24529 &lt;End of help on this topic&gt;
24530 </BODY>
24531 </HTML>
24532 ====== h_config_tcp_readwarn_timeo =====
24533 <HTML>
24534 <HEAD>
24535 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24536 </HEAD>
24537 <BODY>
24538 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24540 Sets the time in seconds that Alpine will
24541 wait for a network read before warning you that things are moving slowly
24542 and possibly giving you the option to break the connection.
24543 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24544 1000 seconds.
24546 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24548 <UL>   
24549 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24550 </UL><P>
24551 &lt;End of help on this topic&gt;
24552 </BODY>
24553 </HTML>
24554 ====== h_config_tcp_writewarn_timeo =====
24555 <HTML>
24556 <HEAD>
24557 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24558 </HEAD>
24559 <BODY>
24560 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24562 Sets the time in seconds that Alpine will
24563 wait for a network write before warning you that things are moving slowly
24564 and possibly giving you the option to break the connection.
24565 The default is 0 which means it is unset. If set to a non-zero value, the
24566 minimum is 5 and the maximum is 1000.
24568 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24570 <UL>   
24571 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24572 </UL><P>
24573 &lt;End of help on this topic&gt;
24574 </BODY>
24575 </HTML>
24576 ====== h_config_tcp_query_timeo =====
24577 <HTML>
24578 <HEAD>
24579 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24580 </HEAD>
24581 <BODY>
24582 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24584 When Alpine times out a network read or write it will normally just display
24585 a message saying &quot;Still waiting&quot;.
24586 However, if enough time has elapsed since it started waiting it will offer
24587 to let you break the connection.
24588 That amount of time is set by this option, which defaults to 60 seconds,
24589 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24591 <UL>   
24592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24593 </UL><P>
24594 &lt;End of help on this topic&gt;
24595 </BODY>
24596 </HTML>
24597 ====== h_config_incoming_folders =====
24598 <HTML>
24599 <HEAD>
24600 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24601 </HEAD>
24602 <BODY>
24603 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24605 This is a list of one or more folders other than <EM>INBOX</EM> that
24606 may receive new messages.
24607 It is related to the
24608 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24609 feature.
24610 This variable is normally manipulated with the Add, Delete, and Rename
24611 commands in the FOLDER LIST for the Incoming Message Folders collection.
24613 <UL>   
24614 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24615 </UL><P>
24616 &lt;End of help on this topic&gt;
24617 </BODY>
24618 </HTML>
24619 ====== h_config_folder_spec =====
24620 <HTML>
24621 <HEAD>
24622 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24623 </HEAD>
24624 <BODY>
24625 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24627 This is a list of one or more collections where saved mail is stored. 
24628 The first collection in this list is the default
24629 collection for <EM>Save</EM>s,
24630 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24632 This variable is normally manipulated using the Setup/collectionList screen.
24634 <UL>   
24635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24636 </UL><P>
24637 &lt;End of help on this topic&gt;
24638 </BODY>
24639 </HTML>
24640 ====== h_config_news_spec =====
24641 <HTML>
24642 <HEAD>
24643 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24644 </HEAD>
24645 <BODY>
24646 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24648 This is a list of collections where news folders are located.
24650 This variable is normally manipulated using the Setup/collectionList screen.
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_address_book =====
24659 <HTML>
24660 <HEAD>
24661 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24662 </HEAD>
24663 <BODY>
24664 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24666 A list of personal address books.
24667 Each entry in the list is an
24668 optional nickname followed by a pathname or file name relative to the home
24669 directory.
24670 The nickname is separated from the rest of the line with whitespace.
24671 Instead of a local pathname or file name, a remote folder name can be given.
24672 This causes the address book to
24673 be a Remote address book.
24675 Use the Setup/AddressBook screen to modify this variable.
24677 <UL>   
24678 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24679 </UL><P>
24680 &lt;End of help on this topic&gt;
24681 </BODY>
24682 </HTML>
24683 ====== h_config_glob_addrbook =====
24684 <HTML>
24685 <HEAD>
24686 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24687 </HEAD>
24688 <BODY>
24689 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24691 A list of shared address books.  Each entry in the list is an
24692 optional nickname followed by a pathname or file name relative to the home
24693 directory.
24694 A SPACE character separates the nickname from the rest of the line.
24695 Instead of a local pathname or file name, a remote folder name can be given.
24696 This causes the address book to
24697 be a Remote address book.
24698 Global address books are
24699 defined to be ReadOnly.
24701 Use the Setup/AddressBook screen to modify this variable.
24703 <UL>   
24704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24705 </UL><P>
24706 &lt;End of help on this topic&gt;
24707 </BODY>
24708 </HTML>
24709 ====== h_config_last_vers =====
24710 <HTML>
24711 <HEAD>
24712 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24713 </HEAD>
24714 <BODY>
24715 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24717 This is set automatically by Alpine. 
24718 It is used to keep track of the last version of Alpine that
24719 was run by the user.
24720 Whenever the version number increases, a new version message is printed out.
24721 This may not be set in the system-wide configuration files.
24723 <UL>   
24724 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24725 </UL><P>
24726 &lt;End of help on this topic&gt;
24727 </BODY>
24728 </HTML>
24729 ====== h_config_printer =====
24730 <HTML>
24731 <HEAD>
24732 <TITLE>OPTION: Printer</TITLE>
24733 </HEAD>
24734 <BODY>
24735 <H1>OPTION: Printer</H1>
24737 Your default printer selection.
24739 Use the Setup/Printer screen to modify this variable.
24741 <UL>   
24742 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24743 </UL><P>
24744 &lt;End of help on this topic&gt;
24745 </BODY>
24746 </HTML>
24747 ====== h_config_print_cat =====
24748 <HTML>
24749 <HEAD>
24750 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24751 </HEAD>
24752 <BODY>
24753 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24755 This is an internal Alpine variable.
24756 It will be equal to 1, 2, or 3 depending on whether the default printer is
24757 attached, standard, or a personal print command.
24759 Use the Setup/Printer screen to modify this variable.
24761 <UL>   
24762 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24763 </UL><P>
24764 &lt;End of help on this topic&gt;
24765 </BODY>
24766 </HTML>
24767 ====== h_config_print_command =====
24768 <HTML>
24769 <HEAD>
24770 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24771 </HEAD>
24772 <BODY>
24773 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24775 List of personal print commands.
24777 Use the Setup/Printer screen to modify this variable.
24779 <UL>   
24780 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24781 </UL><P>
24782 &lt;End of help on this topic&gt;
24783 </BODY>
24784 </HTML>
24785 ====== h_config_pat_old =====
24786 <HTML>
24787 <HEAD>
24788 <TITLE>OPTION: Patterns</TITLE>
24789 </HEAD>
24790 <BODY>
24791 <H1>OPTION: Patterns</H1>
24793 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24794 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24795 and Patterns-Other.
24796 Patterns-Scores and Patterns-Filters have been replaced since then by
24797 Patterns-Scores2 and Patterns-Filters2.
24799 Use the Setup/Rules screens to modify these variable.
24801 <UL>   
24802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24803 </UL><P>
24804 &lt;End of help on this topic&gt;
24805 </BODY>
24806 </HTML>
24807 ====== h_config_pat_roles =====
24808 <HTML>
24809 <HEAD>
24810 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24811 </HEAD>
24812 <BODY>
24813 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24815 List of rules used for roles.
24816 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24817 other options.
24819 Use the Setup/Rules/Roles screen to modify this variable.
24821 <UL>   
24822 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24823 </UL><P>
24824 &lt;End of help on this topic&gt;
24825 </BODY>
24826 </HTML>
24827 ====== h_config_pat_filts =====
24828 <HTML>
24829 <HEAD>
24830 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24831 </HEAD>
24832 <BODY>
24833 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24835 List of rules used for filters.
24837 Use the Setup/Rules/Filters screen to modify this variable.
24839 <UL>   
24840 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24841 </UL><P>
24842 &lt;End of help on this topic&gt;
24843 </BODY>
24844 </HTML>
24845 ====== h_config_pat_scores =====
24846 <HTML>
24847 <HEAD>
24848 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
24849 </HEAD>
24850 <BODY>
24851 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
24853 List of rules used for scoring.
24855 Use the Setup/Rules/SetScores screen to modify this variable.
24857 <UL>   
24858 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24859 </UL><P>
24860 &lt;End of help on this topic&gt;
24861 </BODY>
24862 </HTML>
24863 ====== h_config_pat_other =====
24864 <HTML>
24865 <HEAD>
24866 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
24867 </HEAD>
24868 <BODY>
24869 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
24871 List of rules used for miscellaneous configuration.
24873 Use the Setup/Rules/Other screen to modify this variable.
24875 <UL>   
24876 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24877 </UL><P>
24878 &lt;End of help on this topic&gt;
24879 </BODY>
24880 </HTML>
24881 ====== h_config_pat_incols =====
24882 <HTML>
24883 <HEAD>
24884 <TITLE>OPTION: patterns-indexcolors</TITLE>
24885 </HEAD>
24886 <BODY>
24887 <H1>OPTION: patterns-indexcolors</H1>
24889 List of rules used for coloring lines in the index.
24891 Use the Setup/Rules/Indexcolor screen to modify this variable.
24893 <UL>   
24894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24895 </UL><P>
24896 &lt;End of help on this topic&gt;
24897 </BODY>
24898 </HTML>
24899 ====== h_config_pat_srch =====
24900 <HTML>
24901 <HEAD>
24902 <TITLE>OPTION: patterns-search</TITLE>
24903 </HEAD>
24904 <BODY>
24905 <H1>OPTION: patterns-search</H1>
24907 List of rules used only for searching with the Select command in the MESSAGE INDEX.
24909 Use the Setup/Rules/searCh screen to modify this variable.
24911 <UL>   
24912 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24913 </UL><P>
24914 &lt;End of help on this topic&gt;
24915 </BODY>
24916 </HTML>
24917 ====== h_config_font_name =====
24918 <HTML>
24919 <HEAD>
24920 <TITLE>OPTION: Font Name</TITLE>
24921 </HEAD>
24922 <BODY>
24923 <H1>OPTION: Font Name</H1>
24925 PC-Alpine only.
24927 Name of normal font.
24929 Use the pulldown Config menu to modify this variable.
24931 <UL>   
24932 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24933 </UL><P>
24934 &lt;End of help on this topic&gt;
24935 </BODY>
24936 </HTML>
24937 ====== h_config_font_size =====
24938 <HTML>
24939 <HEAD>
24940 <TITLE>OPTION: Font Size</TITLE>
24941 </HEAD>
24942 <BODY>
24943 <H1>OPTION: Font Size</H1>
24945 PC-Alpine only.
24947 Size of normal font.
24949 Use the pulldown Config menu to modify this variable.
24951 <UL>   
24952 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24953 </UL><P>
24954 &lt;End of help on this topic&gt;
24955 </BODY>
24956 </HTML>
24957 ====== h_config_font_style =====
24958 <HTML>
24959 <HEAD>
24960 <TITLE>OPTION: Font Style</TITLE>
24961 </HEAD>
24962 <BODY>
24963 <H1>OPTION: Font Style</H1>
24965 PC-Alpine only.
24967 Style of normal font.
24969 Use the pulldown Config menu to modify this variable.
24971 <UL>   
24972 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24973 </UL><P>
24974 &lt;End of help on this topic&gt;
24975 </BODY>
24976 </HTML>
24977 ====== h_config_font_char_set =====
24978 <HTML>
24979 <HEAD>
24980 <TITLE>OPTION: Font Character Set</TITLE>
24981 </HEAD>
24982 <BODY>
24983 <H1>OPTION: Font Character Set</H1>
24985 PC-Alpine only.
24987 Character set of normal font.
24989 Use the pulldown Config menu to modify this variable.
24991 <UL>   
24992 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24993 </UL><P>
24994 &lt;End of help on this topic&gt;
24995 </BODY>
24996 </HTML>
24997 ====== h_config_print_font_name =====
24998 <HTML>
24999 <HEAD>
25000 <TITLE>OPTION: Print-Font-Name</TITLE>
25001 </HEAD>
25002 <BODY>
25003 <H1>OPTION: Print-Font-Name</H1>
25005 PC-Alpine only.
25007 Name of printer font.
25009 Use the pulldown Config menu to modify this variable.
25011 <UL>   
25012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25013 </UL><P>
25014 &lt;End of help on this topic&gt;
25015 </BODY>
25016 </HTML>
25017 ====== h_config_print_font_size =====
25018 <HTML>
25019 <HEAD>
25020 <TITLE>OPTION: Print-Font-Size</TITLE>
25021 </HEAD>
25022 <BODY>
25023 <H1>OPTION: Print-Font-Size</H1>
25025 PC-Alpine only.
25027 Size of printer font.
25029 Use the pulldown Config menu to modify this variable.
25031 <UL>   
25032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25033 </UL><P>
25034 &lt;End of help on this topic&gt;
25035 </BODY>
25036 </HTML>
25037 ====== h_config_print_font_style =====
25038 <HTML>
25039 <HEAD>
25040 <TITLE>OPTION: Print-Font-Style</TITLE>
25041 </HEAD>
25042 <BODY>
25043 <H1>OPTION: Print-Font-Style</H1>
25045 PC-Alpine only.
25047 Style of printer font.
25049 Use the pulldown Config menu to modify this variable.
25051 <UL>   
25052 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25053 </UL><P>
25054 &lt;End of help on this topic&gt;
25055 </BODY>
25056 </HTML>
25057 ====== h_config_print_font_char_set =====
25058 <HTML>
25059 <HEAD>
25060 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25061 </HEAD>
25062 <BODY>
25063 <H1>OPTION: Print-Font-Char-Set</H1>
25065 PC-Alpine only.
25067 Character set of printer font.
25069 Use the pulldown Config menu to modify this variable.
25071 <UL>   
25072 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25073 </UL><P>
25074 &lt;End of help on this topic&gt;
25075 </BODY>
25076 </HTML>
25077 ====== h_config_window_position =====
25078 <HTML>
25079 <HEAD>
25080 <TITLE>OPTION: Window-Position</TITLE>
25081 </HEAD>
25082 <BODY>
25083 <H1>OPTION: Window-Position</H1>
25085 PC-Alpine only.
25087 Position on the screen of the Alpine window.
25089 Alpine normally maintains this variable itself, and it is set automatically. 
25090 This variable is provided to those who wish to use the same window position 
25091 across different machines from the same configuration.
25092 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25093 must also be set for this setting to be used.
25095 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25096 C is the number of columns, R is the number of rows, and X and Y specify the
25097 top left corner of the window.
25099 <UL>   
25100 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25101 </UL><P>
25102 &lt;End of help on this topic&gt;
25103 </BODY>
25104 </HTML>
25105 ====== h_config_cursor_style =====
25106 <HTML>
25107 <HEAD>
25108 <TITLE>OPTION: Cursor Style</TITLE>
25109 </HEAD>
25110 <BODY>
25111 <H1>OPTION: Cursor Style</H1>
25113 PC-Alpine only.
25115 Cursor style.
25117 Use the pulldown Config menu to modify this variable.
25119 <UL>   
25120 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25121 </UL><P>
25122 &lt;End of help on this topic&gt;
25123 </BODY>
25124 </HTML>
25125 ====== h_config_ldap_servers =====
25126 <HTML>
25127 <HEAD>
25128 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25129 </HEAD>
25130 <BODY>
25131 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25133 List of LDAP servers and associated data.
25135 Use the Setup/Directory screen to modify this variable.
25137 <UL>   
25138 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25139 </UL><P>
25140 &lt;End of help on this topic&gt;
25141 </BODY>
25142 </HTML>
25143 ====== h_config_sendmail_path =====
25144 <HTML>
25145 <HEAD>
25146 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25147 </HEAD>
25148 <BODY>
25149 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25151 This names the path to an
25152 alternative program, and any necessary arguments, to be used in posting
25153 mail messages. See the Technical notes for more information.
25155 <UL>   
25156 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25157 </UL><P>
25158 &lt;End of help on this topic&gt;
25159 </BODY>
25160 </HTML>
25161 ====== h_config_oper_dir =====
25162 <HTML>
25163 <HEAD>
25164 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25165 </HEAD>
25166 <BODY>
25167 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25169 This names the root of the
25170 tree to which you are restricted when reading and writing folders and
25171 files. It is usually used in the system-wide,
25172 <EM>fixed</EM> configuration file.
25174 <UL>   
25175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25176 </UL><P>
25177 &lt;End of help on this topic&gt;
25178 </BODY>
25179 </HTML>
25180 ====== h_config_rshpath =====
25181 <HTML>
25182 <HEAD>
25183 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25184 </HEAD>
25185 <BODY>
25186 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25188 Sets the name of the command used to open a UNIX remote shell
25189 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
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_rshcmd =====
25198 <HTML>
25199 <HEAD>
25200 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25201 </HEAD>
25202 <BODY>
25203 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25205 Sets the format of the command used to
25206 open a UNIX remote shell connection. The default is
25207 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25208 provided command. The first is for the command's pathname, the second is
25209 for the host to connnect to, the third is for the user to connect as, and
25210 the fourth is for the connection method (typically <CODE>imap</CODE>).
25212 <UL>   
25213 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25214 </UL><P>
25215 &lt;End of help on this topic&gt;
25216 </BODY>
25217 </HTML>
25218 ====== h_config_sshpath =====
25219 <HTML>
25220 <HEAD>
25221 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25222 </HEAD>
25223 <BODY>
25224 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25226 Sets the name of the command used to open a UNIX secure shell
25227 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25229 <UL>   
25230 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25231 </UL><P>
25232 &lt;End of help on this topic&gt;
25233 </BODY>
25234 </HTML>
25235 ====== h_config_sshcmd =====
25236 <HTML>
25237 <HEAD>
25238 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25239 </HEAD>
25240 <BODY>
25241 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25243 Sets the format of the command used to
25244 open a UNIX secure shell connection. The default is
25245 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25246 provided command. The first is for the command's pathname, the second is
25247 for the host to connnect to, the third is for the user to connect as, and
25248 the fourth is for the connection method (typically <CODE>imap</CODE>).
25250 <UL>   
25251 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25252 </UL><P>
25253 &lt;End of help on this topic&gt;
25254 </BODY>
25255 </HTML>
25256 ====== h_config_new_ver_quell =====
25257 <HTML>
25258 <HEAD>
25259 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25260 </HEAD>
25261 <BODY>
25262 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25264 When a new version of Alpine is run for the first time it offers a
25265 special explanatory screen to the user upon startup.  This option
25266 helps control when and if that special screen appears for users that
25267 have previously run Alpine.  It takes as its value an Alpine version
25268 number.  Alpine versions less than the specified value will supress this
25269 special screen while versions equal to or greater than that specified
25270 will behave normally.
25272 <UL>   
25273 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25274 </UL><P>
25275 &lt;End of help on this topic&gt;
25276 </BODY>
25277 </HTML>
25278 ====== h_config_disable_drivers =====
25279 <HTML>
25280 <HEAD>
25281 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25282 </HEAD>
25283 <BODY>
25284 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25286 This variable is a list of mail drivers that will be disabled.
25287 The candidates for disabling are listed below.
25288 There may be more in the future if you compile Alpine with
25289 a newer version of the c-client library.
25292 <UL>
25293 <LI> mbox
25294 <LI> mbx
25295 <LI> mh
25296 <LI> mmdf
25297 <LI> mtx
25298 <LI> mx
25299 <LI> news
25300 <LI> phile
25301 <LI> tenex
25302 <LI> unix
25303 </UL>
25306 The <EM>mbox</EM> driver enables the following behavior: if there is a
25307 file called <CODE>mbox</CODE>
25308 in your home directory, and if that file is either empty or in Unix mailbox
25309 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25310 will automatically transfer mail from the system mail spool directory into the
25311 <CODE>mbox</CODE> file and
25312 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25313 this will not happen.
25316 It is not recommended to disable the driver that supports the system default
25317 mailbox format. On most non-SCO systems, that driver is the
25318 <EM>unix</EM> driver.
25319 On most SCO systems, it is the <EM>mmdf</EM> driver.
25320 The system default driver may be
25321 configured to something else on your system; check with your system manager
25322 for additional information.
25325 It is most likely not very useful for you to disable any of the drivers other
25326 than possibly <EM>mbox</EM>.
25327 You could disable some of the others if you know for
25328 certain that you don't need them but the performance gain in doing so
25329 is very modest.
25331 <UL>   
25332 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25333 </UL><P>
25334 &lt;End of help on this topic&gt;
25335 </BODY>
25336 </HTML>
25337 ====== h_config_disable_auths =====
25338 <HTML>
25339 <HEAD>
25340 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25341 </HEAD>
25342 <BODY>
25343 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25345 This variable is a list of SASL (Simple Authentication and Security
25346 Layer) authenticators that will be disabled.
25347 SASL is a mechanism for
25348 authenticating to IMAP, POP3, SMTP, and other network servers.
25351 Alpine matches its list of supported authenticators with the server to
25352 determine the most secure authenticator that is supported by both.
25353 If no matching authenticators are found, Alpine will revert to plaintext
25354 login (or, in the case of SMTP, will be unable to authenticate at all).
25356 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25359 Normally, you will not disable any authenticators.
25360 There are two exceptions:
25362 <OL>
25363 <LI> You use a broken server that advertises an authenticator,
25364 but does not actually implement it.
25365 <LI> You have a Kerberos-capable version of Alpine and the server is
25366 also Kerberos-capable, but you can not obtain Kerberos
25367 credentials on the server machine, thus you desire to disable
25368 GSSAPI (which in turn disables Alpine's Kerberos support).
25369 </OL>
25371 It is never necessary to disable authenticators, since Alpine will try
25372 other authenticators before giving up.
25373 However, disabling the relevant authenticator avoids annoying error messages.
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_abook_metafile =====
25382 <HTML>
25383 <HEAD>
25384 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25385 </HEAD>
25386 <BODY>
25387 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25389 This is usually set by Alpine and is the name of a file
25390 that contains data about
25391 remote address books and remote configuration files.
25393 <UL>   
25394 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25395 </UL><P>
25396 &lt;End of help on this topic&gt;
25397 </BODY>
25398 </HTML>
25399 ====== h_config_composer_wrap_column =====
25400 <HTML>
25401 <HEAD>
25402 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25403 </HEAD>
25404 <BODY>
25405 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25408 This option specifies an aspect of Alpine's Composer.  This gives the
25409 maximum width that auto-wrapped lines will have.  It's also the maximum
25410 width of lines justified using the <A HREF="h_compose_justify">^J
25411 Justify</A> command.  The normal default
25412 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25413 in order to
25414 prevent very long lines from being sent in outgoing mail.  When the mail
25415 is actually sent, trailing spaces will be stripped off of each line.
25418 <UL>   
25419 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25420 </UL><P>
25421 &lt;End of help on this topic&gt;
25422 </BODY>
25423 </HTML>
25424 ====== h_config_deadlets =====
25425 <HTML>
25426 <HEAD>
25427 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25428 </HEAD>
25429 <BODY>
25430 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25433 This option affects Alpine's behavior when you cancel a message being
25434 composed.  Alpine's usual behavior is to write the canceled message to
25435 a file named 
25436 <!--chtml if pinemode="os_windows"-->
25437 &quot;DEADLETR&quot;,
25438 <!--chtml else-->
25439 &quot;dead.letter&quot; in your home directory,
25440 <!--chtml endif-->
25441 overwriting any previous message.
25443 If you set this option to a value higher than one, then that many copies
25444 of dead letter files will be saved.
25445 For example, if you set this option to &quot;3&quot; then you may have
25446 files named
25447 <!--chtml if pinemode="os_windows"-->
25448 &quot;DEADLETR&quot;,
25449 &quot;DEADLETR2&quot;, and
25450 &quot;DEADLETR3&quot;.
25451 <!--chtml else-->
25452 &quot;dead.letter&quot;,
25453 &quot;dead.letter2&quot;, and
25454 &quot;dead.letter3&quot; in your home directory.
25455 <!--chtml endif-->
25456 In this example, the most recently cancelled message will be in
25457 <!--chtml if pinemode="os_windows"-->
25458 &quot;DEADLETR&quot;,
25459 <!--chtml else-->
25460 &quot;dead.letter&quot;,
25461 <!--chtml endif-->
25462 and the third most recently cancelled message will be in
25463 <!--chtml if pinemode="os_windows"-->
25464 &quot;DEADLETR3&quot;.
25465 <!--chtml else-->
25466 &quot;dead.letter3&quot;.
25467 <!--chtml endif-->
25468 The fourth most recently cancelled message will no longer be saved.
25471 If you set this option to zero, then NO record of canceled messages is
25472 maintained.
25474 If the feature
25475 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25476 is set, that overrides whatever you set for this option.
25477 If this option had existed at the time, then the Quell feature would not
25478 have been added, but it is still there for backwards compatibility.
25479 So, in order for this option to have the desired effect, make sure the
25480 Quell feature is turned off.
25483 <UL>   
25484 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25485 </UL><P>
25486 &lt;End of help on this topic&gt;
25487 </BODY>
25488 </HTML>
25489 ====== h_config_maxremstream =====
25490 <HTML>
25491 <HEAD>
25492 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25493 </HEAD>
25494 <BODY>
25495 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25497 This option affects low-level behavior of Alpine.
25498 The default value for this option is <EM>3</EM>.
25499 If your INBOX is accessed using the IMAP protocol
25500 from an IMAP server, that connection is kept open throughout the
25501 duration of your Alpine session, independent of the value of this option.
25502 The same is true of any 
25503 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25504 you have defined.
25505 This option controls Alpine's behavior when connecting to remote IMAP folders
25506 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25507 It specifies the maximum number of remote IMAP connections (other than
25508 those mentioned above) that Alpine will use for accessing the rest of your
25509 folders.
25510 If you set this option to zero, you will turn off most remote connection
25511 re-use.
25512 It's difficult to understand exactly what this option does, and it is usually
25513 fine to leave it set to its default value.
25514 It is probably more likely that you will be interested in setting the
25515 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25516 instead of changing the value of this option.
25517 A slightly longer explanation of what is going on with this option
25518 is given in the next paragraphs.
25521 There are some time costs involved in opening and closing remote IMAP 
25522 folders, the main costs being the time you have to wait for the connection
25523 to the server and the time for the folder to open.
25524 Opening a folder may involve not only the time the server takes to do its
25525 processing but time that Alpine uses to do filtering.
25526 These times can vary widely.
25527 They depend on how loaded the server is, how large
25528 the folder being opened is, and how you set up filtering, among other things.
25529 Once Alpine has opened a connection to a particular folder, it will attempt
25530 to keep that connection open in case you use it again.
25531 In order to do this,
25532 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25533 this option) IMAP connections you have alloted for this purpose.
25535 For example, suppose the value of this option is set to &quot;2&quot;.
25536 If your INBOX is accessed on a remote server using the IMAP protocol, that
25537 doesn't count as one of the remote connections but it is always kept open.
25538 If you then open another IMAP folder, that would be your first
25539 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25540 If you open a third folder the second will be left open, in case you
25541 return to it.
25542 You won't be able to tell it has been left open.
25543 It will appear to be closed when you leave the folder but the connection
25544 will remain in the background.
25545 Now suppose you go back to the second folder (the first folder after the
25546 INBOX).
25547 A connection to that folder is still open so you won't have to wait
25548 for the startup time to open it.
25549 Meanwhile, the connection to the third folder will be left behind.
25550 Now, if you open a fourth folder, you will bump into the
25551 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25552 than INBOX and you have the option set to &quot;2&quot;.
25553 The connection that is being used for
25554 the third folder will be re-used for this new fourth folder.
25555 If you go back to the third folder after this, it is no longer already
25556 connected when you get there.
25557 You'll still save some time since Alpine will re-use the connection to the
25558 fourth folder and you have already logged in on that connection,
25559 but the folder will have to be re-opened from scratch.
25561 If a folder is large and the startup cost is dominated by the time it takes
25562 to open that folder or to run filters on it, then it will pay to make the
25563 value of this option large enough to keep it open.
25564 On the other hand, if you only revisit a handful of folders or if
25565 the folders are small, then it might
25566 make more sense to keep this number small so that the reconnect
25567 time (the time to start up a new connection and authenticate)
25568 is eliminated instead.
25570 You may also need to consider the impact on the server.
25571 On the surface, a larger number here may cause a larger impact on the
25572 server, since you will have more connections open to the server.
25573 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25574 associated with reopening a folder, but the <EM>server</EM> will be
25575 avoiding those costs as well.
25577 When twenty five minutes pass without any active use of an IMAP connection
25578 being saved for possible re-use, that connection will be shut down,
25581 <UL>   
25582 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25583 </UL><P>
25584 &lt;End of help on this topic&gt;
25585 </BODY>
25586 </HTML>
25587 ====== h_config_permlocked =====
25588 <HTML>
25589 <HEAD>
25590 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25591 </HEAD>
25592 <BODY>
25593 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25595 This option affects low-level behavior of Alpine.
25596 There is no default value for this option.
25597 It is related to the options
25598 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25599 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25600 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25603 Note: changes made to this list take effect the next time you open a
25604 folder in the list.
25607 This is a list of folders that will be permanently kept open once they
25608 are first opened.
25609 The names in this list may be either the nickname of an Incoming folder
25610 or the full technical specification of a folder.
25611 The folders in this list need not be remote IMAP folders, they could usefully
25612 be local folders, as well.
25613 If a folder in the list is a newsgroup or is not accessed either locally
25614 or via IMAP, then the entry will be ignored.
25615 For example, folders accessed via NNTP or POP3 will not be kept open, since
25616 the way that new mail is found with those protocols involves closing and
25617 reopening the connection.
25619 Once a Stay Open folder has been opened, new-mail checking will continue
25620 to happen on that folder for the rest of the Alpine session.
25621 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25622 need to be added explicitly.
25624 Another difference that you may notice between a Stay Open folder and a
25625 non-Stay Open folder is which message is selected as the current message
25626 when you enter the folder index.
25627 Normally, the starting position for an incoming folder (which most Stay Open
25628 folders will likely be) is controlled by the
25629 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25630 However, if a folder is a Stay Open folder, when you re-enter the folder
25631 after the first time the current message will be the same as it was when
25632 you left the folder.
25633 An exception is made if you use the TAB command to get to the folder.
25634 In that case, the message number will be incremented by one from what it
25635 was when you left the folder.
25637 The above special behavior is thought to be useful.
25638 However, it is special and different from what you might at first expect.
25639 The feature
25640 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25641 may be used to turn off this special treatment.
25643 If the message that was current when you left the folder no longer exists,
25644 then the regular startup rule will be used instead.
25647 <UL>   
25648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25649 </UL><P>
25650 &lt;End of help on this topic&gt;
25651 </BODY>
25652 </HTML>
25653 ====== h_config_viewer_overlap =====
25654 <html>
25655 <header>
25656 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25657 </header>
25658 <body>
25659 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25661 This option specifies an aspect of Alpine's Message Viewing screen.  When
25662 the space bar is used to page forward in a message, the number of lines
25663 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25664 bottom of the screen.  That is, if this was set to two lines, then the
25665 bottom two lines of the screen would be repeated on the top of the next
25666 screen.  The normal default value is "2".<p>
25667 <UL>   
25668 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25669 </UL><P>
25670 &lt;End of help on this topic&gt;
25671 </body>
25672 </html>
25673 ====== h_config_scroll_margin =====
25674 <HTML>
25675 <HEAD>
25676 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25677 </HEAD>
25678 <BODY>
25679 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25681 This option controls when Alpine's line-by-line scrolling occurs.
25682 Typically, when a selected item is at the top or bottom screen edge
25683 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25684 displayed items are scrolled down or up by a single line.
25687 This option allows you to tell Alpine the number of lines from the top and
25688 bottom screen edge that line-by-line paging should occcur.  For example,
25689 setting this value to one (1) will cause Alpine to scroll the display
25690 vertically when you move to select an item on the display's top or
25691 bottom edge.
25694 By default, this variable is zero, indicating that scrolling happens
25695 when you move up or down to select an item immediately off the display's
25696 top or bottom edge.
25699 <UL>   
25700 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25701 </UL><P>
25702 &lt;End of help on this topic&gt;
25703 </BODY>
25704 </HTML>
25705 ====== h_config_wordseps =====
25706 <HTML>
25707 <HEAD>
25708 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25709 </HEAD>
25710 <BODY>
25711 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25713 This option affects how a &quot;word&quot; is defined in the composer.
25714 The definition of a word is used when using the Forward Word and Backward
25715 Word commands in the composer, as well as when using the spell checker.
25716 Whitespace is always considered a word separator.
25717 Punctuation (like question marks, periods, commas, and so on) is always
25718 a word separator if it comes at the end of a word.
25719 By default, a punctuation character that is in the middle of a word does
25720 not break up that word as long as the character before and the character
25721 after it are both alphanumeric.
25722 If you add a character to this option it will be considered a
25723 word separator even when it occurs in the middle of an alphanumeric word.
25724 For example, if you want to skip through each part of an address instead
25725 of skipping the whole address at once you might want to include &quot;@&quot;
25726 and &quot;.&quot; in this list.
25727 If you want the word-skipper to stop on each part of a UNIX filename you
25728 could add &quot;/&quot; to the list.
25729 The equal sign and dash are other possibilities you might find helpful.
25731 <UL>   
25732 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25733 </UL><P>
25734 &lt;End of help on this topic&gt;
25735 </BODY>
25736 </HTML>
25737 ====== h_config_reply_indent_string =====
25738 <HTML>
25739 <HEAD>
25740 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25741 </HEAD>
25742 <BODY>
25743 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25745 This option specifies an aspect of Alpine's Reply command.
25746 When a message is replied to and the text of the message is included, the
25747 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25748 to each line indicating it is quoted text.
25749 (In case you haven't seen this before, &quot;string&quot; is a technical term
25750 that means chunk of text.)
25753 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25754 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25755 use one of the standard values,
25756 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25759 This option specifies a different value for that string.
25760 If you wish to use a string that begins or ends with a space,
25761 enclose the string in double quotes.
25764 Besides simple text, the prepended string can be based
25765 on the message being replied to.
25766 The following tokens are substituted for the message's corresponding value:
25768 <DL>
25769 <DT>_FROM_</DT>
25770 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25771 If the name is longer than six characters, only the first six characters are
25772 used.
25773 </DD>
25775 <DT>_NICK_</DT>
25776 <DD>This token gets replaced with the nickname of the message sender's
25777 address as found in your addressbook.
25778 If no addressbook entry is found,
25779 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25780 If the nickname is longer than six characters, only the first six characters are
25781 used.
25782 </DD>
25784 <DT>_INIT_</DT>
25785 <DD>This token gets replaced with the initials of the sender of the message.
25786 </DD>
25788 </DL>
25790 NOTE: When the
25791 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25792 feature is enabled, you are given the opportunity to edit the string, whether 
25793 it is the default or one automatically generated using the above tokens.
25795 If you change your <!--#echo var="VAR_reply-indent-string"-->
25796 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25797 quoted text will not be flowed
25798 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25799 when you reply.
25800 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25801 set to the default value.
25803 <UL>   
25804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25805 </UL><P>
25806 &lt;End of help on this topic&gt;
25807 </BODY>
25808 </HTML>
25809 ====== h_config_quote_replace_string =====
25810 <HTML>
25811 <HEAD>
25812 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25813 </HEAD>
25814 <BODY>
25815 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25817 This option specifies what string to use as a quote when <b>viewing</b> a
25818 message.  The standard way of quoting messages when replying is the string
25819 &quot;&gt;&nbsp;&quot; (quote space).
25820 With this variable set, viewing a message will
25821 replace occurrences of 
25822 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25823 This setting works best when
25824 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25825 or the equivalent setting in your correspondents' mail programs
25826 is set to the default
25827 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25828 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25830 By default, this setting will only work on messages that are flowed, which is
25831 the default way of sending messages for many mail clients including
25832 Alpine.  Enable the feature
25833 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25834 to also have quote-replacement performed on non-flowed messages.
25837 Setting this option will replace  &quot;&gt;&quot; and 
25838 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25839 spaces. To preserve those spaces enclose the full string in double quotes.
25841 No padding to separate the text of the message from the quote string is
25842 added. This means that if you do not add trailing spaces to the value of
25843 this variable, text will be displayed right next to the quote string,
25844 which may be undesirable. This can be avoided by adding a new string
25845 separated by a space from your selection of quote string replacement. This
25846 last string will be used for padding. For example, setting this variable to 
25847 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
25848 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
25849 a space from the last quote string to make it more readable.
25851 One possible setting for this variable could be
25852 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
25853 would have the effect of indenting each level of quoting four spaces and
25854 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
25855 more discernible by setting colors for quoted text.
25857 Replying to or forwarding the viewed message will preserve the original
25858 formatting of the message, so quote-replacement will not be performed on
25859 messages that are being composed.
25861 <UL>   
25862 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25863 </UL><P>
25864 &lt;End of help on this topic&gt;
25865 </BODY>
25866 </HTML>
25867 ====== h_config_empty_hdr_msg =====
25868 <HTML>
25869 <HEAD>
25870 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
25871 </HEAD>
25872 <BODY>
25873 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
25875 When sending, if both the To and Cc fields are empty and you
25876 are sending the message to a Bcc,
25877 Alpine will put a special address in the To line.  The default value is:
25880 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
25883 The reason for this is to avoid embarrassment caused by some Internet
25884 mail transfer software that interprets a &quot;missing&quot;
25885 <SAMP>To:</SAMP> header as an error and replaces it with an
25886 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
25887 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
25888 Bcc.  You may change the part of this message that comes before the
25889 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
25890 variable to something else.
25893 The normal default is &quot;undisclosed-recipients&quot;.
25896 <UL>   
25897 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25898 </UL><P>
25899 &lt;End of help on this topic&gt;
25900 </BODY>
25901 </HTML>
25902 ====== h_config_status_msg_delay =====
25903 <HTML>
25904 <HEAD>
25905 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
25906 </HEAD>
25907 <BODY>
25908 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
25910 This option has evolved over time, causing the possible values to be
25911 counter-intuitive.
25912 Read carefully before you set this option.
25913 First we explain what the option does, then there is a longer discussion
25914 following that.
25916 If this is set to zero, the default value, it has <EM>no</EM> effect.
25917 Positive and negative values serve two similar, but different purposes.
25919 If it is set to a positive number, it causes the cursor to move to the
25920 status line whenever a status message is printed and pause there for this
25921 many seconds.
25922 It will probably only be useful if the 
25923 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
25924 also turned on.
25925 Setting this option to a positive number can only be used to
25926 <EM>increase</EM> the status message delay.
25927 This may be useful for Braille displays, or other non-traditional displays.
25929 If it is set to a negative number the interpretation is a bit complicated.
25930 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
25931 allow you to read important status messages.
25932 Of course, this may cause you to miss some important messages.
25933 If you see a message flash by but miss what it says you can use the
25934 Journal command from the MAIN MENU to read it.
25935 If you set this option to a negative value, the delay will be
25936 no more than one second less than the absolute value
25937 of the value you set.
25938 So if you set it to -1, the delay will be no more than zero seconds, no
25939 delay at all.
25940 If you set it to -2, the delay will be no more than 1 second.
25941 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
25942 If the delay that Alpine would have used by default is less than this delay,
25943 then the smaller delay set by Alpine will be used.
25944 Setting this option to a negative value can only reduce the amount of
25945 delay, never increase it.
25947 Here is a more detailed explanation.
25948 Status messages are the messages that show up spontaneously in the
25949 status message line, usually the third line from the bottom of the screen.
25950 By default, Alpine assigns each status message it produces a minimum
25951 display time.
25952 Some status messages have a minimum display time of zero.
25953 You can see an example of such a message by paging up in this help text
25954 until you reach the top of the screen.
25955 If you try to page past the top you will see the message
25957 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
25959 in the status line.
25960 If there is another more important use of the status message line this message
25961 might be replaced quickly, or it even might not be shown at all.
25962 However, if there is no reason to get rid of the message, it might stay
25963 there for several seconds while you read the help.
25964 An example where it is replaced immediately happens when you page up in
25965 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
25966 command right after paging up.
25967 The message will disappear immediately without causing a delay (unless you
25968 have set this option to a positive value) to allow you to type input for
25969 the &quot;WhereIs&quot; command.
25970 Since it isn't a very important message, Alpine has set its minimum display
25971 time to zero seconds.
25973 Other messages have minimum display times of three or more seconds.
25974 These are usually error messages that Alpine thinks you ought to see.
25975 For example, it might be a message about a failed Save or a failed folder open.
25976 It is often the case that this minimum display time won't delay you in
25977 any way because the status message line is not needed for another reason.
25978 However, there are times when Alpine has to delay what it is doing in
25979 order to display a status message for the minimum display time.
25980 This happens when a message is being displayed and Alpine wants to ask
25981 for input from the keyboard.
25982 For example, when you Save a message you use the status message line.
25983 You get a prompt there asking for the name of the folder to save to.
25984 If there is a status message being displayed that has not
25985 yet displayed for its minimum
25986 time Alpine will display that status message surrounded with the characters
25987 &gt; and &lt; to show you that it is delaying.
25988 That might happen, for example, if you tried to save to a folder that
25989 caused an error, then followed that immediately with another Save command.
25990 You might find yourself waiting for a status message like
25992 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
25994 to finish displaying for three seconds.
25995 If that is something you find happening to you frequently, you may use
25996 negative values of this option to decrease or eliminate that delay, at
25997 the risk of missing the message.
25999 <UL>   
26000 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26001 </UL><P>
26002 &lt;End of help on this topic&gt;
26003 </BODY>
26004 </HTML>
26005 ====== h_config_active_msg_interval =====
26006 <HTML>
26007 <HEAD>
26008 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26009 </HEAD>
26010 <BODY>
26011 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26013 When Alpine is delayed for some reason it usually shows that
26014 something is happening with a small animated display in the status
26015 message line near the bottom of the screen.
26016 This option sets how frequently the characters (for example, a spinning bar)
26017 in the active status message lines are updated.
26018 At most, it can be set to be udpated 20 times per second. 
26021 Setting this value to zero will prevent display of the animations
26022 altogether.
26025 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26026 can be used to remove the randomness from this animated display.
26029 <UL>   
26030 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26031 </UL><P>
26032 &lt;End of help on this topic&gt;
26033 </BODY>
26034 </HTML>
26035 ====== h_config_mailchecknoncurr =====
26036 <HTML>
26037 <HEADER>
26038 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26039 </HEADER>
26040 <BODY>
26041 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26043 This option is closely related to the
26044 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26045 option, as well as the
26046 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26047 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26048 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26049 new-mail checking is disabled and this option will have no effect.
26051 Normally this option is set to zero, which means that the value used will be
26052 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26053 If you set this option to a value different from zero
26054 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26055 then that is the check interval that will be used
26056 for folders that are not the currently open folder or the INBOX.
26057 You may not even have any folders that are noncurrent and not the INBOX.
26058 If you do, it is likely that they are due to
26059 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26060 you have configured.
26061 This option also affects the rate of mail checking done on cached
26062 connections to folders you previously had open but are no longer actively
26063 using.
26064 You aren't expected to understand that last sentence, but if you are interested
26065 take a look at
26066 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26067 and the related options.
26069 <UL>   
26070 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26071 </UL><P>
26072 &lt;End of help on this topic&gt;
26073 </BODY>
26074 </HTML>
26075 ====== h_config_fifopath =====
26076 <HTML>
26077 <HEADER>
26078 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26079 </HEADER>
26080 <BODY>
26081 <H1>OPTION: NewMail FIFO Path</H1>
26083 This option is only available in UNIX Alpine.
26084 However, there is a very similar feature built in to PC-Alpine.
26085 In PC-Alpine's Config menu at the top of the screen
26086 is an option called &quot;New Mail Window&quot;.
26088 You may have Alpine create a FIFO special file (also called a named pipe) where
26089 it will send a one-line message each time a new message is received in
26090 the current folder, the INBOX, or any open
26091 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26092 To protect against two different Alpines both writing to the same FIFO, Alpine
26093 will only create the FIFO and write to it if it doesn't already exist.
26095 A possible way to use this option would be to have a separate window
26096 on your screen running the command
26098 <CENTER><SAMP>cat filename</SAMP></CENTER>
26100 where &quot;filename&quot; is the name of the file given for this option.
26101 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26102 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26103 You may be tempted to use &quot;tail -f filename&quot; to view the new
26104 mail log.
26105 However, the common implementations of the tail command will not do what you
26106 are hoping.
26108 The width of the messages produced for the FIFO may be altered with the
26109 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26111 On some systems, fifos may only be created in a local filesystem.
26112 In other words, they may not be in NFS filesystems.
26113 This requirement is not universal.
26114 If the system you are using supports it, it should work.
26115 (It is often the case that your home directory is in an NFS filesystem.
26116 If that is the case, you might try using a file in the &quot;/tmp&quot;
26117 filesystem, which is usually a local filesytem.)
26118 Even when it is possible to use an NFS-mounted filesystem as a place to name
26119 the fifo (for example, your home directory), it will still be the case that
26120 the reader (probably the &quot;cat&quot; command) and the
26121 writer (Alpine) of the fifo must be running on the same system.
26123 <UL>   
26124 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26125 </UL><P>
26126 &lt;End of help on this topic&gt;
26127 </BODY>
26128 </HTML>
26129 ====== h_config_newmailwidth =====
26130 <HTML>
26131 <HEADER>
26132 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26133 </HEADER>
26134 <BODY>
26135 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26137 For UNIX Alpine, this option is only useful if you have turned on the
26138 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26139 That option causes new mail messages to be sent to a fifo file.
26140 Those messages will be 80 characters wide by default.
26141 You can change the width of those messages by changing this option.
26142 For example, if you are reading those messages in another window you might
26143 want to set this width to the width of that other window.
26145 If you are using PC-Alpine, it has an option in the Config menu to turn
26146 on the &quot;New Mail Window&quot;.
26147 This present option also controls the width of that window.
26149 <UL>   
26150 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26151 </UL><P>
26152 &lt;End of help on this topic&gt;
26153 </BODY>
26154 </HTML>
26155 ====== h_config_mailcheck =====
26156 <HTML>
26157 <HEADER>
26158 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26159 </HEADER>
26160 <BODY>
26161 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26163 This option specifies, in seconds,
26164 how often Alpine will check for new mail.
26165 If set to zero, new-mail checking is disabled.
26166 (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
26167 current message is the last message of the folder.)
26168 There is a minimum value for this option, normally 15 seconds.
26169 The default value is normally 150 seconds.
26170 The higher you set this option, the easier it is on the server.
26172 There are some situations where automatic new-mail checking does not work.
26173 See the discussion about new-mail checking in
26174 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26176 The new-mail checking will not happen exactly at the frequency that you specify.
26177 For example, Alpine may elect to defer a non-INBOX mail check if you
26178 are busy typing.
26179 Or, it may check more frequently than you have specified if that is
26180 thought to be necessary to keep the server from closing the connection
26181 to the folder due to inactivity.
26182 If Alpine checks for new mail as a side effect of another command, it will reset
26183 the timer, so that new-mail checking may seem to happen irregularly instead of
26184 every X seconds like clockwork.
26186 If you are anxious to know about new mail as soon as possible, set the check
26187 interval low, and you'll know about the new mail by approximately
26188 that amount of time after it arrives.
26189 If you aren't so worried about knowing right away, set this option to a
26190 higher value.
26191 That will save the server some processing time and may save you some of
26192 the time you spend waiting for new-mail checks to happen if you are
26193 dealing with a slow server or slow network connection.
26195 If you suspect that new-mail checking is causing slow downs for you,
26196 you may want to look into the options
26197 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26198 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26199 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26200 which refine when mail checking is done.
26202 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26203 there is a minimum time
26204 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26205 between new-mail checks.
26206 Because of this minimum you may notice that new mail does not
26207 appear promptly when you expect it.
26208 The reason for this is to protect the server from over-zealous opening and
26209 closing of the Mail Drop folder, since that is a costly operation.
26211 <UL>   
26212 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26213 </UL><P>
26214 &lt;End of help on this topic&gt;
26215 </BODY>
26216 </HTML>
26217 ====== h_config_quell_checks_comp =====
26218 <HTML>
26219 <HEAD>
26220 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26221 </HEAD>
26222 <BODY>
26223 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26225 This option is closely related to the
26226 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26227 option, the
26228 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26229 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26231 If this option is set, then the normal new-mail checking that happens
26232 while you are composing will not happen for folders other than your
26233 INBOX (which depends on the setting
26234 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26236 You might want to set this option if you are experiencing delays while
26237 composing that you think might be related to the speed of the new-mail
26238 checks.
26240 Even with this option turned on, an occasional new-mail check may be done
26241 in order to keep the server from killing the connection to the folder.
26242 For example, IMAP servers may remove a connection to a folder if there
26243 has been no activity on the connection for 30 minutes or more.
26244 Instead of letting that happen, Alpine will check for new mail before the
26245 30 minutes is up even though you have turned on this feature to quell
26246 those checks.
26248 Besides new-mail checks, checkpoint operations on the folders
26249 will also be quelled when you set this option.
26250 The purpose of checkpointing is to write the changes to a folder out to
26251 disk periodically in order to avoid losing those changes when system or
26252 software problems occur.
26253 New-mail checking and checkpointing while you are not composing are not
26254 affected by this option.
26257 &lt;End of help on this topic&gt;
26258 </BODY>
26259 </HTML>
26260 ====== h_config_quell_checks_comp_inbox =====
26261 <HTML>
26262 <HEAD>
26263 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26264 </HEAD>
26265 <BODY>
26266 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26268 This option is closely related to the
26269 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26270 option, the
26271 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26272 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26274 If this option is set, then the normal new-mail checking that happens
26275 while you are composing will not happen for your INBOX.
26276 Checking of other folders is controlled in a similar way with the
26277 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26279 You might want to set this option if you are experiencing delays while
26280 composing that you think might be related to the speed of the new-mail
26281 checks.
26283 Even with this option turned on, an occasional new-mail check may be done
26284 in order to keep the server from killing the connection to the folder.
26285 For example, IMAP servers may remove a connection to a folder if there
26286 has been no activity on the connection for 30 minutes or more.
26287 Instead of letting that happen, Alpine will check for new mail before the
26288 30 minutes is up even though you have turned on this feature to quell
26289 those checks.
26291 Besides new-mail checks, checkpoint operations on the INBOX
26292 will also be quelled when you set this option.
26293 The purpose of checkpointing is to write the changes to a folder out to
26294 disk periodically in order to avoid losing those changes when system or
26295 software problems occur.
26296 New-mail checking and checkpointing while you are not composing are not
26297 affected by this option.
26299 &lt;End of help on this topic&gt;
26300 </BODY>
26301 </HTML>
26302 ====== h_config_maildropcheck =====
26303 <HTML>
26304 <HEADER>
26305 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26306 </HEADER>
26307 <BODY>
26308 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26310 New-mail checking for a
26311 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26312 mail checking for a regular folder.
26313 One of the differences is that the connection to the Mail Drop is not
26314 kept open and so the cost of checking
26315 (delay for you and additional load for the server) may be significant.
26316 Because of this additional cost we set a minimum time that
26317 must pass between checks.
26318 This minimum only applies to the automatic checking done by Alpine.
26319 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26320 at the end of a folder index, then the check is done right away.
26322 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26323 new-mail checks.
26324 You may want to set this minimum high in order to avoid experiencing some
26325 of the delays associated with the checks.
26326 Note that the time between checks is still controlled by the regular
26327 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26328 When Alpine is about to do an automatic check for new mail (because
26329 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26330 new-mail check
26331 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26332 the Mail Drop is checked for new mail as well.
26333 Therefore, it is only useful to set this option to a value that is higher
26334 than the <!--#echo var="VAR_mail-check-interval"-->.
26336 If this option is set to zero, automatic Mail Drop new-mail
26337 checking is disabled.
26338 There is a minimum value, normally 60 seconds.
26339 The default value is normally 60 seconds as well.
26340 This applies to the INBOX and to the currently open folder if that is
26341 different from the INBOX.
26344 <UL>   
26345 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26346 </UL><P>
26347 &lt;End of help on this topic&gt;
26348 </BODY>
26349 </HTML>
26350 ====== h_config_nntprange =====
26351 <HTML>
26352 <HEADER>
26353 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26354 </HEADER>
26355 <BODY>
26356 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26358 This option applies only to newsgroups accessed using the NNTP protocol.
26359 It does not, for example,
26360 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26363 When you open a connection to a News server using the NNTP protocol, you
26364 normally have access to all of the articles in each newsgroup.
26365 If a server keeps a large backlog of messages it may speed performance
26366 some to restrict attention to only the newer messages in a group.
26367 This option allows you to set how many article numbers should be checked
26368 when opening a newsgroup.
26369 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26370 of messages you ever want to see.
26371 For example, if you only ever wanted to look at the last 500 messages in each
26372 newsgroup you could set this option to 500.
26373 In actuality, it isn't quite that.
26374 Instead, for performance reasons, it specifies the range of article
26375 numbers to be checked, beginning
26376 with the highest numbered article and going backwards from there.
26377 If there are messages that have been canceled or deleted
26378 their article numbers are still counted as part of the range.
26380 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26381 numbers
26382 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26384 to be considered when reading a newsgroup.
26385 The number of messages that show up in your index will be less than or equal
26386 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26389 The purpose of this option is simply to speed up access when reading news.
26390 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26391 numbers, and can avoid downloading any information about the ignored articles.
26392 There is a cost you pay for this speedup.
26393 That cost is that there is no way for you to see those ignored articles.
26394 The articles that come before the range you specify are invisible to you and
26395 to Alpine, as if they did not exist at all.
26396 There is no way to see those messages using, for example, an unexclude command
26397 or something similar.
26398 The only way to see those articles is to set this option high enough (or
26399 set it to zero) and then to reopen the newsgroup.
26402 If this option is set to 0 (which is also the default),
26403 then the range is unlimited.
26404 This option applies globally to all NNTP servers and to all newsgroups
26405 on those servers.
26406 There is no way to set different values for different newsgroups or servers.
26409 <UL>   
26410 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26411 </UL><P>
26412 &lt;End of help on this topic&gt;
26413 </BODY>
26414 </HTML>
26415 ====== h_config_news_active =====
26416 <html>
26417 <header>
26418 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26419 </header>
26420 <body>
26421 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26423 This option tells Alpine where to look for the "active file" for newsgroups
26424 when accessing news locally, rather than via NNTP.  The default path is
26425 usually "/usr/lib/news/active".<p>
26426 <UL>   
26427 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26428 </UL><P>
26429 &lt;End of help on this topic&gt;
26430 </body>
26431 </html>
26432 ====== h_config_news_spool =====
26433 <html>
26434 <header>
26435 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26436 </header>
26437 <body>
26438 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26440 This option tells Alpine where to look for the "news spool" for newsgroups
26441 when accessing news locally, rather than via NNTP.  The default path is
26442 usually "/var/spool/news".<p>
26443 <UL>   
26444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26445 </UL><P>
26446 &lt;End of help on this topic&gt;
26447 </body>
26448 </html>
26449 ====== h_config_image_viewer =====
26450 <html>
26451 <header>
26452 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26453 </header>
26454 <body>
26455 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26456 <body>
26457 This option specifies the program Alpine should call to view MIME
26458 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26459 no longer needed, but remains for backward compatibility.  The more
26460 general method for associating external printing and viewing programs with
26461 specific MIME data types is to use the system's (or your personal)
26462 "mailcap" configuration file.<p>
26463 <UL>   
26464 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26465 </UL><P>
26466 &lt;End of help on this topic&gt;
26467 </body>
26468 </html>
26469 ====== h_config_domain_name =====
26470 <HTML>
26471 <HEAD>
26472 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26473 </HEAD>
26474 <BODY>
26475 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26477 This option is used only if the 
26478 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26479 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26480 strips the hostname from your return (&quot;From&quot;) address and when 
26481 completing unqualified addresses that you enter into the composer.
26483 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26484 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26487 <!--chtml if pinemode="os_windows"-->
26488 <P>This option is not applicable to PC-Alpine.
26489 <!--chtml else-->
26491 <!--chtml endif-->
26492 <UL>
26493 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26494 </UL>
26496 &lt;End of help on this topic&gt;
26497 </BODY>
26498 </HTML>
26499 ====== h_config_prune_date =====
26500 <HTML>
26501 <HEAD>
26502 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26503 </HEAD>
26504 <BODY>
26505 <H1>OPTION: Last-Time-Prune Question</H1>
26507 This value records the last time you were asked about deleting old
26508 sent-mail.
26509 It is set automatically by Alpine at the beginning of each month.
26510 In the past, if you wished to suppress the monthly sent-mail
26511 pruning feature, you could set this to a date in the future.
26512 This value is relative to the year 1900, so 
26513 to set this, for example, to October 2005, use 105.10.
26515 You can still do that if you wish, or you can use the
26516 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26517 a little more convenient to use.
26519 <UL>   
26520 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26521 </UL><P>
26522 &lt;End of help on this topic&gt;
26523 </BODY>
26524 </HTML>
26525 ====== h_config_goto_default =====
26526 <HTML>
26527 <HEAD>
26528 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26529 </HEAD>
26530 <BODY>
26531 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26533 This value affects Alpine's behavior when you use the Goto command.
26534 Alpine's usual behavior has two parts.  If your current folder is
26535 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26536 default.  If the current folder is other than &quot;Inbox&quot;,
26537 &quot;Inbox&quot; is offered as the default.
26540 The available options include:
26542 <DL>
26544  <DT>folder-in-first-collection</DT>
26546  <DD> Alpine will offer the most recently visited folder in the default
26547 collection found in the &quot;Collection List&quot; screen as the default.
26548 </DD>
26550  <DT> inbox-or-folder-in-first-collection</DT>
26552  <DD> If the current folder is &quot;Inbox&quot;,
26553 Alpine will offer the most recently visited folder in the
26554 default collection found in the &quot;Collection List&quot; screen.
26555 If the current folder is other than &quot;Inbox&quot;,
26556 &quot;Inbox&quot; is offered as the default.
26557 </DD>
26559  <DT> inbox-or-folder-in-recent-collection</DT>
26561  <DD> This is Alpine's default behavior.
26562 If the current folder is &quot;Inbox&quot;,
26563 Alpine will offer the last open
26564 folder as the default.
26565 If the current folder is other than &quot;Inbox&quot;,
26566 &quot;Inbox&quot; is offered as the default.
26567 </DD>
26569  <DT> first-collection-with-inbox-default</DT>
26571  <DD> Instead of offering the most recently visited folder in the default
26572 collection, the default collection is offered but with &quot;Inbox&quot; as
26573 the default folder.
26574 If you type in a folder name it will be in the default collection.
26575 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26576 </DD>
26578  <DT> most-recent-folder</DT>
26580  <DD> The last accepted value simply causes the most recently opened
26581 folder to be offered as the default regardless of the currently opened
26582 folder.
26583 </DD>
26584 </DL>
26587 NOTE: The default while a newsgroup is open remains the same; the last
26588 open newsgroup.
26591 <UL>   
26592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26593 </UL><P>
26594 &lt;End of help on this topic&gt;
26595 </BODY>
26596 </HTML>
26597 ====== h_config_thread_lastreply_char =====
26598 <HTML>
26599 <HEAD>
26600 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26601 </HEAD>
26602 <BODY>
26603 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26605 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26606 INDEX display when using a
26607 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26608 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26609 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26610 The value of this option is a single character.
26611 This character is used instead of the vertical line character when there are
26612 no more replies directly to the parent of the current message.
26613 It can be used to &quot;round-off&quot; the bottom of the vertical line
26614 by setting it to a character such as a backslash (&#92;) or
26615 a backquote (&#96;).
26616 The default value of this option is the backslash character (&#92;).
26617 This option may not be set to the Empty Value.
26618 In that case, the default will be used instead.
26621 <UL>   
26622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26623 </UL><P>
26624 &lt;End of help on this topic&gt;
26625 </BODY>
26626 </HTML>
26627 ====== h_config_thread_indicator_char =====
26628 <HTML>
26629 <HEAD>
26630 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26631 </HEAD>
26632 <BODY>
26633 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26635 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26636 INDEX display when using a
26637 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26638 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26639 The value of this option is a single character.
26640 This character is used to indicate that part of a thread (a conversation) is
26641 hidden beneath a message.
26642 The message could be expanded
26643 if desired with the &quot;/&quot; Collapse/Expand command.
26644 By default, the value of this option is the greater than sign (&gt;).
26646 If this option is set to the Empty Value, then the column (and the following
26647 blank column) will be deleted from the display.
26650 This option is closely related to the
26651 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26652 Another similar option that affects the thread display is the
26653 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26656 <UL>   
26657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26658 </UL><P>
26659 &lt;End of help on this topic&gt;
26660 </BODY>
26661 </HTML>
26662 ====== h_config_thread_exp_char =====
26663 <HTML>
26664 <HEAD>
26665 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26666 </HEAD>
26667 <BODY>
26668 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26670 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26671 INDEX display when using a
26672 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26673 than &quot;none&quot;.
26674 The value of this option is a single character.
26675 This character is used to indicate that part of a thread has been expanded
26676 and could be collapsed if desired with
26677 the &quot;/&quot; Collapse/Expand command.
26678 By default, the value of this option is a dot (.).
26680 If this option is set to the Empty Value, then the column (and the following
26681 blank column) will be deleted from the display.
26684 This option is closely related to the
26685 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26686 Another similar option that affects the thread display is the
26687 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26690 <UL>   
26691 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26692 </UL><P>
26693 &lt;End of help on this topic&gt;
26694 </BODY>
26695 </HTML>
26696 ====== h_config_thread_index_style =====
26697 <HTML>
26698 <HEAD>
26699 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26700 </HEAD>
26701 <BODY>
26702 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26704 When a folder is sorted by Threads or OrderedSubject,
26705 this option will affect the INDEX displays.
26708 The possible values for this option are:
26710 <DL>
26711 <DT>regular-index-with-expanded-threads</DT>
26712 <DD>This is the default display.
26713 If the configuration option
26714 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26715 is set to something other than &quot;none&quot;, then this setting
26716 will cause Alpine to start off with a MESSAGE INDEX with all of
26717 the threads expanded.
26718 That is, each message will have a line in the MESSAGE INDEX display.
26719 The Collapse/Expand command (/) may be used to manually collapse or
26720 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26722 This setting affects the display when the folder is first threaded.
26723 The collapsed state may also be re-initialized by re-sorting the folder manually
26724 using the SortIndex command ($).
26725 After re-sorting the threads will once again all be expanded, even if you
26726 have previously collapsed some of them.
26728 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26729 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26730 in a different order.
26731 </DD>
26733 <DT>regular-index-with-collapsed-threads</DT>
26734 <DD>If the configuration option
26735 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26736 is set to something other than &quot;none&quot;, then this setting
26737 will cause Alpine to start out with all of the threads collapsed instead of
26738 starting out with all of the threads expanded.
26739 The Collapse/Expand command (/) may be used to manually collapse or
26740 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26742 This setting affects the display when the folder is first threaded.
26743 The collapsed state may also be re-initialized by re-sorting the folder manually
26744 using the SortIndex command ($).
26745 After re-sorting the threads will once again all be collapsed, even if you
26746 have previously expanded some of them.
26747 </DD>
26749 <DT>separate-index-screen-always</DT>
26750 <DD>With this setting and the next, you will see an index of threads
26751 instead of an
26752 index of messages, provided you have sorted by Threads or OrderedSubject.
26754 The THREAD INDEX contains a '*' in the first column if any message in the thread
26755 is marked Important.
26756 If not, it contains a '+' if any message in the thread is to you.
26757 The second column is blank. The third column contains a 'D' if all of the
26758 messages in the thread are deleted.
26759 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26761 When you view a particular thread from the THREAD INDEX you will be
26762 in the MESSAGE INDEX display
26763 but the index will only contain messages from the thread you are viewing.
26764 </DD>
26766 <DT>separate-index-screen-except-for-single-messages</DT>
26767 <DD>This is very similar to the option above.
26768 When you are in the THREAD INDEX, one of the available commands
26769 is &quot;ViewThd&quot;.
26770 With the setting &quot;separate-index-screen-always&quot; (the option above)
26771 when you view a particular thread you will be in the
26772 MESSAGE INDEX display and the index will only contain messages from
26773 the thread you are viewing.
26774 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26775 will be an index with only one message in it.
26776 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26777 setting instead, then that index that contains a single message
26778 will be skipped and you will go directly from the THREAD INDEX into the
26779 MESSAGE TEXT screen.
26780 </DD>
26782 </DL>
26785 <UL>   
26786 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26787 </UL><P>
26788 &lt;End of help on this topic&gt;
26789 </BODY>
26790 </HTML>
26791 ====== h_config_thread_disp_style =====
26792 <HTML>
26793 <HEAD>
26794 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26795 </HEAD>
26796 <BODY>
26797 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26799 When a folder is sorted by Threads or OrderedSubject,
26800 this option will affect the MESSAGE INDEX display.
26801 By default, Alpine will display the MESSAGE INDEX in the
26802 &quot;show-thread-structure&quot; style if a folder is sorted
26803 by Threads or OrderedSubject.
26806 The possible values for this option are:
26808 <DL>
26809 <DT>none</DT>
26810 <DD>Regular index display.
26811 The same index line as would be displayed without threading is used.
26812 The only difference will be in the order of the messages.
26813 </DD>
26815 <DT>show-thread-structure</DT>
26816 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26817 lines will be added to make it easier to see the relationships among
26818 the messages in a thread (a conversation).
26819 </DD>
26821 <DT>mutt-like</DT>
26822 <DD>This is the same as the option above except that the Subject
26823 is suppressed (is blank) if it matches the previous Subject in the thread.
26824 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26825 Here is an example of what a mutt-like index might look like.
26826 In this example, the first column represents the message number, the
26827 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26828 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26829 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26830 is set to a backslash:
26831 <PRE>
26832 &nbsp;&nbsp;&nbsp;1    Some topic
26833 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26834 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26835 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26836 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26837 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26838 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26839 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
26840 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
26841 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
26842 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
26843 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
26844 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
26845 &nbsp;&nbsp;&nbsp;14    Next topic
26846 </PRE>
26847 </DD>
26849 <DT>indent-subject-1</DT>
26850 <DD>Threaded Subjects will be indented one space per level of the conversation.
26851 The bars and lines that show up in the show-thread-structure display will
26852 not be there with this style.
26853 </DD>
26855 <DT>indent-subject-2</DT>
26856 <DD>Same as above but indent two spaces per level instead of one space.
26857 </DD>
26859 <DT>indent-from-1</DT>
26860 <DD>Similar to indent-subject-1, except that instead of indenting the
26861 Subject field one space the From field of a thread will be indented one
26862 space per level of the conversation.
26863 </DD>
26865 <DT>indent-from-2</DT>
26866 <DD>Same as above but indent two spaces per level instead of one space.
26867 </DD>
26869 <DT>show-structure-in-from</DT>
26870 <DD>The structure of the thread is illustrated with indenting, vertical bars,
26871 and horizontal lines just like with the show-thread-structure option, but
26872 the From field is used to show the relationships instead of the Subject field. 
26873 </DD>
26875 </DL>
26878 <UL>   
26879 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26880 </UL><P>
26881 &lt;End of help on this topic&gt;
26882 </BODY>
26883 </HTML>
26884 ====== h_config_pruning_rule =====
26885 <HTML>
26886 <HEAD>
26887 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
26888 </HEAD>
26889 <BODY>
26890 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
26892 By default, Alpine will ask at the beginning of each month whether or not
26893 you want to rename your sent-mail folder to a name like sent-mail-month-year.
26894 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
26895 change the format of the folder to sent-mail-yyyy-mm.)
26896 It will also ask whether you would like to delete old sent-mail folders.
26897 If you have defined
26898 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
26900 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
26901 Alpine will also ask about pruning those folders.
26904 With this option you may provide an automatic answer to these questions.
26905 The default value is to ask you what you'd like to do.
26908 The six possible values for this option are:
26910 <DL>
26911 <DT>ask about rename, ask about deleting</DT>
26912 <DD>This is the default.
26913 Alpine will ask whether you want to rename the folders and whether you
26914 want to delete each of the old folders.
26915 </DD>
26917 <DT>ask about rename, don't delete</DT>
26918 <DD>Alpine will ask whether you want to rename the folders, but won't
26919 ask about or delete old folders.
26920 </DD>
26922 <DT>always rename, ask about deleting</DT>
26923 <DD>This means you want to always answer yes and have Alpine automatically
26924 rename the folder if possible.
26925 You will also be asked about deleting old folders.
26926 </DD>
26928 <DT>always rename, don't delete</DT>
26929 <DD>This means you want to always answer yes and have Alpine automatically
26930 rename the folder if possible.
26931 There will be no deleting of old folders.
26932 </DD>
26934 <DT>don't rename, ask about deleting</DT>
26935 <DD>This means you want to always answer no.
26936 Alpine will not rename the folder.
26937 You will be asked about deleting old folders.
26938 </DD>
26940 <DT>don't rename, don't delete</DT>
26941 <DD>This means you want to always answer no.
26942 Alpine will not rename the folder.
26943 There will be no deleting of old folders, either.
26944 </DD>
26945 </DL>
26948 <UL>   
26949 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26950 </UL><P>
26951 &lt;End of help on this topic&gt;
26952 </BODY>
26953 </HTML>
26954 ====== h_config_reopen_rule =====
26955 <HTML>
26956 <HEAD>
26957 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
26958 </HEAD>
26959 <BODY>
26960 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
26962 Alpine normally checks for new mail in the currently open folder
26963 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
26966 There are some situations where automatic new-mail checking does not work.
26967 For example, if a mail folder is opened using the POP protocol or a newsgroup
26968 is being read using the NNTP protocol, then new-mail checking is disabled.
26971 It may be possible to check for new mail in these cases by reopening the
26972 folder.
26973 Alpine does not do this for you automatically, but you may do the commands
26974 manually to cause this to happen.
26975 You reopen by going back to the folder list screen from the message
26976 index screen with the &quot;&lt;&quot; command,
26977 and then going back into the message index screen with
26978 the &quot;&gt;&quot; command.
26979 (Actually, any method you would normally use to open a folder will work the
26980 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
26981 For example, the GoTo Folder command will work, or you may use L to go to the
26982 Folder List screen and Carriage Return to reopen the folder.)
26985 There are some cases where Alpine knows that reopening the folder should
26986 be useful as a way to discover new mail.
26987 At the time of this writing, connections made using the POP protocol,
26988 news reading using the NNTP protocol, local news reading, and local
26989 ReadOnly folders that are in the traditional UNIX or the MMDF format all
26990 fall into this category.
26991 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
26992 has no way of knowing, so it might also just be an exercise in futility.
26993 All remote, ReadOnly folders other than those listed just above fall into this
26994 category.
26995 The setting of this option together with the type of folder
26996 controls how Alpine will react to the apparent attempt to reopen a folder.
26999 If you don't reopen, then you will just be back in
27000 the message index with no change.
27001 You left the index and came back, but the folder remained &quot;open&quot;
27002 the whole time.
27003 However, if you do reopen the folder, the folder is closed and then reopened.
27004 In this case, the current state of the open folder is lost.
27005 The New status, Important and Answered flags,
27006 selected state, Zoom state, collapsed or expanded state of threads,
27007 current message number,
27008 and any other temporary state is all lost when the reopen happens.
27009 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27012 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27013 several places.
27014 That really implies the case where Alpine knows it is a good way to discover
27015 new mail, which is more than just POP and NNTP, but POP and NNTP are
27016 the cases of most interest.
27017 This option probably has more possible values than it deserves. They are:
27019 <DL>
27020 <DT>Always reopen</DT>
27021 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27022 whenever you type a command that implies a reopen, regardless of the
27023 access method.
27024 In other words, it is assumed you would always answer Yes if asked
27025 about reopening.
27026 </DD>
27028 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27029 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27030 will ask you whether to reopen other remote folders,
27031 with a default answer of Yes.
27032 </DD>
27034 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27035 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27036 will ask you whether to reopen other remote folders,
27037 with a default answer of No.
27038 </DD>
27040 <DT>Yes for POP/NNTP, No for other remote</DT>
27041 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27042 will assume a No answer for all other remote folders.
27043 </DD>
27045 <DT>Always ask [Yes]</DT>
27046 <DD>Alpine will not differentiate based on access method.
27047 It will always ask for all remote folders, with a default answer of Yes.
27048 </DD>
27050 <DT>Always ask [No]</DT>
27051 <DD>Alpine will not differentiate based on access method.
27052 It will always ask for all remote folders, with a default answer of No.
27053 </DD>
27055 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27056 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27057 of Yes.
27058 It will never attempt to reopen other remote folders.
27059 </DD>
27061 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27062 <DD>This is the default.
27063 Alpine will ask if the access method is POP or NNTP, with a default answer
27064 of No.
27065 It will never attempt to reopen other remote folders.
27066 </DD>
27068 <DT>Never reopen</DT>
27069 <DD>Alpine will never attempt to reopen already open folders.
27070 </DD>
27071 </DL>
27074 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27075 any of the other situations where it is likely that reopening is a good way
27076 to discover new mail.
27079 There is an alternative that may be of useful in some situations.
27080 Instead of manually checking for new mail you can set up a
27081 <A HREF="h_maildrop">Mail Drop</A>
27082 and automatically check for new mail.
27085 <UL>   
27086 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27087 </UL><P>
27088 &lt;End of help on this topic&gt;
27089 </BODY>
27090 </HTML>
27091 ====== h_config_inc_startup =====
27092 <HTML>
27093 <HEAD>
27094 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27095 </HEAD>
27096 <BODY>
27097 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27099 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27100 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27101 It determines which message will be the <EM>current message</EM> when
27102 the folder is first opened.
27103 The default value is &quot;first-unseen&quot;.
27106 The seven possible values for this option are:
27108 <DL>
27109 <DT>first-unseen</DT>
27110 <DD>The current message is set to the first
27111 unseen message that has not been marked deleted, or the last message if
27112 all of the messages have been seen previously.
27113 Messages which have not been seen or which have been seen but re-marked
27114 as New are considered unseen messages.
27115 See the note at the bottom of this help about newsgroups.
27116 </DD>
27118 <DT>first-recent</DT>
27119 <DD>Similar to the default, but rather than starting on the first
27120 unseen message Alpine starts on the first <EM>recent</EM> message.
27121 A message is recent if it arrived since the last time the folder was
27122 open.  This value causes the current message to be set to the first
27123 recent message if there is one, otherwise to the last
27124 message in the folder.
27125 </DD>
27127 <DT>first-important</DT>
27128 <DD>This will result in the current message being set to the first
27129 message marked Important (but not Deleted).
27130 If no messages are marked Important, then it will be the last message.
27131 Messages are marked Important by <EM>you</EM>, not by the sender, using
27133 <A HREF="h_common_flag">Flag command</A>.
27134 Or they may be marked Important by an Alpine
27135 <A HREF="h_mainhelp_filtering">Filter</A>
27136 that you have set up.
27137 </DD>
27139 <DT>first-important-or-unseen</DT>
27140 <DD>This selects the first of the first unseen and the first important
27141 messages.
27142 </DD>
27144 <DT>first-important-or-recent</DT>
27145 <DD>This selects the first of the first recent and the first important
27146 messages.
27147 </DD>
27149 <DT>first</DT>
27150 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27151 If all messages are deleted you start on the last message.
27152 </DD>
27154 <DT>last</DT>
27155 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27156 If all messages are deleted you start on the last message.
27157 </DD>
27158 </DL>
27161 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27162 &quot;first-recent&quot; are the same and are affected by whether or not the
27163 feature 
27164 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27165 is turned on. 
27166 Also, there is no permanent storage in news for an Important flag.
27167 This means that no messages will be marked Important when a newsgroup is
27168 first opened.
27171 <UL>   
27172 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27173 </UL><P>
27174 &lt;End of help on this topic&gt;
27175 </BODY>
27176 </HTML>
27177 ====== h_config_browser =====
27178 <HTML>
27179 <HEAD>
27180 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27181 </HEAD>
27182 <BODY>
27183 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27184 <!--chtml if pinemode="os_windows"-->
27185 PC-Alpine users do not need to enter anything here, unless:<UL>
27186 <LI> they want to override, for use with Alpine, the application defined
27187 in the Windows operating system for handling URLs; or
27188 <LI> they are (planning on) using the same configuration file with 
27189 Unix Alpine.
27190 </UL>
27192 Note that if using a viewer that has a space in its path, you should
27193 use the DOS name for that directory or file. Example:
27194 <PRE>
27195 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27196 </PRE>
27197 <HR><P>
27198 <!--chtml endif-->
27199 This option affects Alpine's handling of URLs that are found in 
27200 messages you read.  Normally, only URLs Alpine can handle directly
27201 are automatically offered for selection in the &quot;Message
27202 Text&quot; screen.  When one or more applications
27203 capable of deciphering URLs on their command line are added here, Alpine
27204 will choose the first available to display URLs it cannot handle directly.
27205 A viewer's availability is based on its being specified with a <B>full
27206 directory path</B> and the evaluation of any optionally supplied
27207 parameters described below.
27210 Additionally, to support various connection methods and applications, each
27211 entry in this list can optionally begin with one or more of
27212 the following special tokens.  The allowed tokens include:
27215 <DL>
27216 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27217 <DD>
27218 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27219 evaluate a viewer's availability.  The command specified by the test
27220 string is run and if its resulting exit status is non-zero, Alpine will
27221 not consider the associated viewer for use.
27222 </DD>
27224 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27225 <DD>
27226 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27227 URL schemes that are to be used with the associated viewer.  This is
27228 the way to configure Alpine to recognize URLs other than the built-in set.
27230 It can also be used to override Alpine's built-in handlers.
27231 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27232 and Alpine would use (provided it passed all other criteria) the associated
27233 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27235 </DD>
27236 </DL>
27239 By default, Alpine will simply append a space character followed by the
27240 selected URL prior to launching the command in your specified SHELL.  You can
27241 optionally specify where in the command the selected URL should appear
27242 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27243 will be replaced with the selected URL before the command is handed
27244 to the shell.  If such replacement occurs, the default appending of the
27245 selected URL does not take place.
27248 NOTE: If the viewer you specify has any command-line arguments,
27249 including the &quot;_URL_&quot; token, you will need to add a
27250 double-quote character before the command path and after the last
27251 argument (see the &quot;lynx&quot; example below).
27254 So, here are some example entries:
27255 <PRE>
27256 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27257               &quot;/usr/local/bin/lynx _URL_&quot;
27258               C:&#92;BIN&#92;NETSCAPE.BAT
27259 </PRE>
27261 This example shows that for the first viewer in the list to be used
27262 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27263 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27264 If neither condition is met,
27265 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27266 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27267 If the path to &quot;lynx&quot; is invalid,
27268 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27269 Note that the last
27270 entry is a DOS/Windows path.  This is one way to support Alpine running
27271 on more than one architecture with the same configuration file.<P>
27273 <!--chtml if pinemode="os_windows"-->
27274 <!--chtml else-->
27275 Note that depending on the type of browser used and the method of 
27276 its invocation (such as whether it will open in a separate window) from
27277 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27278 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27279 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27280 In other words, launching the browser from Alpine may make Alpine 
27281 &quot;disappear&quot; (although it is still &quot;running&quot;)
27282 until you close the browser again.<P>  
27283 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27284 environment: for advanced users and  systems administrators</A>
27285 </UL>
27286 <!--chtml endif-->
27287 <P>If you are unsure what browsers are available on your system or how to 
27288 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27289 local computing support staff.
27290 <P><UL>
27291 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27292 </UL>
27294 &lt;End of help on this topic&gt;
27295 </BODY>
27296 </HTML>
27297 ====== h_config_history =====
27298 <HTML>
27299 <HEAD>
27300 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
27301 </HEAD>
27302 <BODY>
27303 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
27305 This option allows you to input a list of directories that Alpine will offer 
27306 for you to use when you are saving or exporting attachments. This is useful
27307 when navigating to specific directories becomes too tedious, or when you 
27308 need to do this on a daily basis, and want Alpine to remember this on a 
27309 permanent basis.
27311 The list of directories saved here can be accessed using the ^Y and ^V commands
27312 in the save prompt for attachments, or the export command.
27314 <P><UL>
27315 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27316 </UL>
27318 &lt;End of help on this topic&gt;
27319 </BODY>
27320 </HTML>
27321 ====== h_config_browser_xterm =====
27322 <HTML>
27323 <HEAD>
27324 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27325 </HEAD>
27326 <BODY>
27327 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27328 environment: for advanced users and  systems administrators</H1>
27329 If you are using Alpine with an X-terminal (emulator) and want to define an 
27330 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27331 you may want to do so in a manner that causes any <B>already</B> 
27332 invoked viewer application to be used for viewing URLs you select from Alpine 
27333 messages, and a <B>new</B> URL-viewer process to be 
27334 started <B>only</B> if the same application has <B>not already</B> 
27335 been launched -- for one reason, to avoid file-locking contentions among 
27336 multiple invocations of the same URL-viewer application.  
27337 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27338 option does not do this.)  A method of doing that would be:<OL>
27339 <LI> use 
27340 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27341 check (using commands appropriate for your Unix shell
27342 in place of <VAR>test-string</VAR>) for the presence of a 
27343 lockfile created by the URL-viewer application -- which implies that the 
27344 application is already running, though this is not foolproof. 
27345 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27346 application with its appropriate command line option(s) to 
27347 show the URL selected from the Alpine message in an already open window of 
27348 that application, or perhaps in a new window of that application.  
27350 <LI> In the 
27351 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27352 application without those command line options, but this time using the 
27353 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27354 is defined.
27355 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27356 windows environment (for instance, using VT-100 terminal emulation), you 
27357 may wish to specify a non-X windows URL-viewer application such as Lynx
27358 as the last entry.
27359 </OL><BR>
27360 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27361 the command shell, the URL-viewer application(s), and possibly the specific 
27362 version of the latter, you are using.  
27364 Relevant command 
27365 line options for the Netscape browser for showing URLs (selected from Alpine) 
27366 when Netscape is already running are discussed in the document
27367 &quot;Remote Control of UNIX Netscape&quot; 
27368 found at the URL (as of 12 Aug. 1998):
27371 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27373 <P>(If the URL-viewer application is 
27374 <B>not</B> running on the same host as Alpine, but being launched from an 
27375 applications server, you may not be able to use the command line options for 
27376 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27378 <!--chtml if this-method="shown-to-work"-->
27379 An example using the Korn shell and the Netscape browser (first entry wrapped 
27380 because of its length, but should all appear on one line):
27382 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27384 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27385               &quot;/usr/local/bin/lynx '_URL_'&quot;
27387 <!--chtml endif-->
27389 <UL>   
27390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27391 </UL><P>
27392 &lt;End of help on this topic&gt;
27393 </BODY>
27394 </HTML>
27395 ====== h_config_enable_full_hdr =====
27396 <HTML>
27397 <HEAD>
27398 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27399 </HEAD>
27400 <BODY>
27401 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27403 This feature enables the &quot;H Full Headers&quot; command which toggles between
27404 the display of all headers in the message and the normal edited view of
27405 headers.  The Full Header command also controls which headers are included
27406 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27407 Full Header mode will respect the
27408 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27409 feature setting.)
27411 If Full Header mode is turned on and you Forward a message, you will
27412 be asked if you'd like to forward the message as an attachment, as opposed
27413 to including the text of the message in the body of your new message.
27415 If you have also turned on the
27416 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27417 option then the Full Headers command actually rotates through three states
27418 instead of just two.
27419 The first is the normal view with long quotes suppressed.
27420 The second is the normal view but with the long quotes included.
27421 The last enables the display of all headers in the message.
27422 When using Export, Pipe, Print, Forward, or Reply the quotes are
27423 never suppressed, so the first two states are identical.
27425 Normally, the Header Mode will reset
27426 to the default behavior when moving to a new message.
27427 The mode can be made to persist from message to message by setting the feature
27428 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27430 <UL>   
27431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27432 </UL><P>
27433 &lt;End of help on this topic&gt;
27434 </BODY>
27435 </HTML>
27436 ====== h_config_enable_full_hdr_and_text =====
27437 <HTML>
27438 <HEAD>
27439 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27440 </HEAD>
27441 <BODY>
27442 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27444 This feature affects how the &quot;H Full Headers&quot; command displays
27445 message text.  If set, the raw message text will be displayed.  This
27446 especially affects MIME formatted email, where the entire MIME format
27447 will be displayed.  This feature similarly affects how messages are
27448 included for the Export, Pipe, Print, Forward, and Reply functions.
27450 When viewing a raw message that has attachments with this feature set,
27451 you will not be able to view attachments without first leaving full 
27452 headers mode.  This is because MIME parsing is not done on the raw message.
27454 <UL>   
27455 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27456 </UL><P>
27457 &lt;End of help on this topic&gt;
27458 </BODY>
27459 </HTML>
27460 ====== h_config_enable_pipe =====
27461 <HTML>
27462 <HEAD>
27463 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27464 </HEAD>
27465 <BODY>
27466 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27468 This feature enables the "| Pipe" command that sends the current message
27469 to the specified command for external processing.
27472 A short description of how the pipe command works is given
27473 <A HREF="h_pipe_command">here</A>.
27476 <UL>   
27477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27478 </UL><P>
27479 &lt;End of help on this topic&gt;
27480 </BODY>
27481 </HTML>
27482 ====== h_config_quell_full_hdr_reset =====
27483 <HTML>
27484 <HEAD>
27485 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27486 </HEAD>
27487 <BODY>
27488 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27490 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27491 normally resets to the default state when switching to a new message.
27492 For example, if you've used the &quot;H&quot; command to turn on Full
27493 Headers for a message you are viewing, and then you type the Next command
27494 to look at the next message, the full headers will no longer be shown.
27495 Setting this feature disables that reset.
27496 Instead, the Header Mode remains the same from message to message.
27499 The presence or absence of the HdrMode command is determined by the
27500 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27501 Feature-List option.
27503 <UL>   
27504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27505 </UL><P>
27506 &lt;End of help on this topic&gt;
27507 </BODY>
27508 </HTML>
27509 ====== h_config_enable_tab_complete =====
27510 <HTML>
27511 <HEAD>
27512 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27513 </HEAD>
27514 <BODY>
27515 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27517 This feature enables the TAB key when at a prompt for a filename. In this
27518 case, TAB will cause the partial name already entered to be automatically
27519 completed, provided the partial name is unambiguous.
27520 This feature is on by default.
27522 Similarly, this feature also enables TAB completion of address book
27523 nicknames when at a prompt for a nickname,
27524 or when typing in an address field in the composer.
27526 &lt;End of help on this topic&gt;
27527 </BODY>
27528 </HTML>
27529 ====== h_config_quit_wo_confirm =====
27530 <HTML>
27531 <HEAD>
27532 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27533 </HEAD>
27534 <BODY>
27535 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27537 This feature controls whether or not Alpine will ask for confirmation when a
27538 Quit command is received.
27540 &lt;End of help on this topic&gt;
27541 </BODY>
27542 </HTML>
27543 ====== h_config_quote_replace_noflow =====
27544 <HTML>
27545 <HEAD>
27546 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27547 </HEAD>
27548 <BODY>
27549 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27551 This feature, which is only active when
27552 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27553 also set,
27554 enables quote-replacement on non-flowed messages.  It is off
27555 by default because a non-flowed message is more dependent on its format,
27556 and thus quote-replacement may cause less-than-pleasing results.
27557 Setting this feature will cause quote-replacement similar to that of flowed
27558 messages, but with the added possibility of long lines being wrapped
27559 into new lines if the Quote-Replacement-String is longer than the string
27560 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27562 &lt;End of help on this topic&gt;
27563 </BODY>
27564 </HTML>
27565 ====== h_config_enable_jump =====
27566 <HTML>
27567 <HEAD>
27568 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27569 </HEAD>
27570 <BODY>
27571 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27573 When this feature is set you may enter a number (followed by RETURN)
27574 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27575 screens.  In other words, it obviates the need for typing the "J" for the
27576 Jump command.
27578 &lt;End of help on this topic&gt;
27579 </BODY>
27580 </HTML>
27581 ====== h_config_enable_alt_ed =====
27582 <HTML>
27583 <HEAD>
27584 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27585 </HEAD>
27586 <BODY>
27587 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27589 If this feature is set (the default), and the 
27590 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27591 <B>is not</B> set, entering
27592 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27593 for the name of the editor you would like to use.
27595 If the environment variable $EDITOR is set, its value will be offered as
27596 a default.
27598 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27599 <B>is</B> set, the ^_ key will activate the specified
27600 editor without prompting, in which case it is not necessary to
27601 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27603 <UL>   
27604 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27605 </UL><P>
27606 &lt;End of help on this topic&gt;
27607 </BODY>
27608 </HTML>
27609 ====== h_config_alt_ed_now =====
27610 <HTML>
27611 <HEAD>
27612 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27613 </HEAD>
27614 <BODY>
27615 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27617 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27618 variable are both set, Alpine will
27619 automatically activate the specified editor when the cursor is moved from
27620 the header of the message being composed into the message text.  For
27621 replies, the alternate editor will be activated immediately.  If this
27622 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27623 automatically ask for the name of an alternate editor when the cursor
27624 is moved out of the header being composed, or if a reply is being done.
27626 <P><UL>
27627 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27628 </UL>
27630 &lt;End of help on this topic&gt;
27631 </BODY>
27632 </HTML>
27633 ====== h_config_enable_bounce =====
27634 <HTML>
27635 <HEAD>
27636 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27637 </HEAD>
27638 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27639 <BODY>
27641 Setting this feature enables the "B Bounce" command, which will prompt
27642 for an address and *remail* the message to the new recipient.  This command
27643 is used to re-direct messages that you have received in error, or need to
27644 be redirected for some other reason (e.g. list moderation).  The final
27645 recipient will see a header indicating that you have Resent the msg, but
27646 the message's From: header will show the original author of the message,
27647 and replies to it will go back to that author, and not to you.
27649 &lt;End of help on this topic&gt;
27650 </BODY>
27651 </HTML>
27652 ====== h_config_enable_agg_ops =====
27653 <HTML>
27654 <HEAD>
27655 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27656 </HEAD>
27657 <BODY>
27658 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27660 When this feature is set you may use the commands and subcommands that relate to
27661 performing operations on more than one message at a time.  We call these
27662 &quot;aggregate operations&quot;.  In particular, the 
27663 <!--chtml if pinemode="function_key"-->&quot;F5
27664 <!--chtml else-->&quot;;
27665 <!--chtml endif--> Select&quot;, 
27667 <!--chtml if pinemode="function_key"-->
27668 &quot;F6
27669 <!--chtml else-->
27670 &quot;A 
27671 <!--chtml endif-->
27672 Apply&quot;, and 
27673 <!--chtml if pinemode="function_key"-->
27674 &quot;F4
27675 <!--chtml else-->
27676 &quot;Z 
27677 <!--chtml endif-->
27678 Zoom&quot; commands are enabled by this feature.  Select is used to
27679 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27680 then be used to apply any message command to all of the selected/tagged
27681 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27682 view between just those Selected and all messages in the folder.
27684 This feature also enables the 
27685 <!--chtml if pinemode="function_key"-->
27686 &quot;F7&quot; 
27687 <!--chtml else-->
27688 &quot;^X&quot; 
27689 <!--chtml endif-->
27691 subcommand in the MESSAGE INDEX 
27692 WhereIs command that causes all messages matching the WhereIs argument to 
27693 become selected; and the Select, Select Current, and ZoomMode commands in the
27694 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27696 Some related help topics are
27697 <UL>
27698 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27699 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27700 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27701 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27702 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27703 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27704 </UL>
27706 <UL>   
27707 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27708 </UL><P>
27709 &lt;End of help on this topic&gt;
27710 </BODY>
27711 </HTML>
27713 ====== h_config_enable_flag =====
27714 <HTML>
27715 <HEAD>
27716 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27717 </HEAD>
27718 <BODY>
27719 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27721 Setting this feature enables the
27722 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27723 command that allows you to
27724 manipulate the status flags associated with a message.  By default, Flag
27725 will set the "Important" flag, which results in an asterisk being
27726 displayed in column one of the MESSAGE INDEX for such messages.
27728 &lt;End of help on this topic&gt;
27729 </BODY>
27730 </HTML>
27731 ====== h_config_flag_screen_default =====
27732 <HTML>
27733 <HEAD>
27734 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27735 </HEAD>
27736 <BODY>
27737 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27739 The feature modifies the behavior of the
27740 <a href="h_common_flag">Flag</a>
27741 command (provided it too is
27742 <A HREF="h_config_enable_flag">enabled</A>).
27743 By default, when the "* Flag" command is selected,
27744 Alpine offers a prompt to set one of several flags and also offers the
27745 option of entering the detailed flag manipulation screen via the "^T"
27746 key. Enabling this feature causes Alpine to immediately enter the detailed
27747 flag screen rather than first offer the simple prompt.
27749 <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.
27751 &lt;End of help on this topic&gt;
27752 </BODY>
27753 </HTML>
27754 ====== h_config_flag_screen_kw_shortcut =====
27755 <HTML>
27756 <HEAD>
27757 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27758 </HEAD>
27759 <BODY>
27760 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27762 This feature modifies the behavior of the
27763 <a href="h_common_flag">Flag</a> command
27764 and the <A HREF="h_index_cmd_select">Select</A> command.
27765 This feature is set by default.
27766 When this feature is not set, when the "* Flag" command is selected,
27767 Alpine offers a prompt to set one of several flags and also offers the
27768 option of entering the detailed flag manipulation screen via the "^T"
27769 key.
27770 If you have
27771 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27772 defined, then enabling this feature adds a shortcut way to set or unset
27773 keywords.
27774 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27775 a keyword if you've given it a nickname) and that will set the keyword.
27777 An example is easier to understand than the explanation.
27778 The flag command can always be used to set the system flags.
27779 For example, to set the Answered flag you would type
27781 <CENTER><SAMP>* A</SAMP></CENTER>
27783 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27784 option in the Config screen.
27785 By default, to set a keyword like &quot;Work&quot; you would usually
27786 have to go to the Flag Details screen using
27787 the &quot;^T To Flag Details&quot; command.
27788 Instead, if you have enabled this feature, you may type
27790 <CENTER><SAMP>* W</SAMP></CENTER>
27792 to set the Work flag, or
27794 <CENTER><SAMP>* ! W</SAMP></CENTER>
27796 to unset it.
27797 Just like for the other flag setting commands, the case of the letter does
27798 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27799 keyword.
27801 Notice that you can only use this trick for one keyword that begins
27802 with &quot;W&quot;.
27803 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27804 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27805 your list of keywords.
27806 Also, there are five letters that are reserved for system
27807 flags and the NOT command.
27808 If you type &quot;* A&quot; it will always set the Answered flag, not
27809 your &quot;Aardvark&quot; keyword.
27810 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27811 the Flag Details screen.
27813 Because enabling the
27814 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27815 option causes Alpine to skip directly to the Flag Details screen when the
27816 Flag command is used, 
27817 setting it will cause this feature to have no effect at all.
27819 Similarly, when Selecting by Keyword, setting this option will allow you
27820 to use Keyword initials instead of full keywords.
27822 &lt;End of help on this topic&gt;
27823 </BODY>
27824 </HTML>
27825 ====== h_config_can_suspend =====
27826 <HTML>
27827 <HEAD>
27828 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27829 </HEAD>
27830 <BODY>
27831 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27833 Setting this feature will allow you to type ^Z (Control Z) to 
27834 <!--chtml if pinemode="os_windows"-->
27835 minimize Alpine into its icon, bringing into focus whatever
27836 application is running behind the PC-Alpine window.
27837 <!--chtml else-->
27838 temporarily suspend Alpine.
27841 This does not exit Alpine, but puts it in the background to watch
27842 for new mail and such.  Normally, you type a command, such
27843 as &quot;fg&quot; at your system prompt to return to your Alpine session.
27846 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
27847 adjusts whether Alpine is placed into the background of the shell its 
27848 running in or starts a news shell.
27849 <!--chtml endif-->
27852 <UL>   
27853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27854 </UL><P>
27855 &lt;End of help on this topic&gt;
27856 </BODY>
27857 </HTML>
27858 ====== h_config_take_lastfirst ======
27859 <HTML>
27860 <HEAD>
27861 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
27862 </HEAD>
27863 <BODY>
27864 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
27866 Normally, when TakeAddr is used to copy an address from a message into
27867 an address book entry, Alpine will attempt to rewrite the full name of the
27868 address in the form
27871 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
27873 instead of<P>
27875 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
27878 It does this because many people find it useful to sort by Last name
27879 instead of First name.  If this feature is set, then the TakeAddr command
27880 will not attempt to reverse the name in this manner.
27882 &lt;End of help on this topic&gt;
27883 </BODY></HTML>
27884 ====== h_config_disable_regex ======
27885 <HTML>
27886 <HEAD>
27887 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
27888 </HEAD>
27889 <BODY>
27890 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
27892 Normally, the
27893 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
27894 option is interpreted as a regular expression.
27895 One type of address that might cause trouble is an address that
27896 contains a plus sign.
27897 If you want to have an address with a plus as one of your
27898 <!--#echo var="VAR_alt-addresses"-->
27899 and you don't want to use regular expressions, then setting this
27900 feature will cause Alpine to treat the addresses you list literally instead.
27902 &lt;End of help on this topic&gt;
27903 </BODY></HTML>
27904 ====== h_config_take_fullname ======
27905 <HTML>
27906 <HEAD>
27907 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
27908 </HEAD>
27909 <BODY>
27910 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
27912 Normally, when TakeAddr is used to copy an address or addresses
27913 from a message into an address book entry, Alpine will try to preserve
27914 the full name associated with each address in the list of addresses.
27915 The reason for this is so that if the entry is a list or later becomes a
27916 list, then information about the individual addresses in the list
27917 is preserved.
27918 If you would rather just have the simple addresses in the list of addresses,
27919 set this feature. For example, with the default setting you might
27920 see something like this in the ADDRESS BOOK editor after you type TakeAddr
27922 <PRE>
27923  Nickname  : nick
27924  Fullname  : Bedrock Elders
27925  Fcc       :
27926  Comment   :
27927  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
27928              Barney Rubble &lt;rubble@bedrock.org&gt;
27929 </PRE>
27931 but with this feature set it would look like
27933 <PRE>
27934  Nickname  : nick
27935  Fullname  : Bedrock Elders
27936  Fcc       :
27937  Comment   :
27938  Addresses : flint@bedrock.org,
27939              rubble@bedrock.org
27940 </PRE>
27942 instead. Note the difference in the Addresses field.
27944 &lt;End of help on this topic&gt;
27945 </BODY></HTML>
27946 ====== h_config_print_from ======
27947 <HTML>
27948 <HEAD>
27949 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
27950 </HEAD>
27951 <BODY>
27952 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
27954 If this feature is set, then the Berkeley-mail style From line is included
27955 at the start of each message that is printed.  This line looks something
27956 like the following, with the address replaced by the address from the
27957 From line of the message being printed:
27959 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
27960 14:11:06 1998
27962 &lt;End of help on this topic&gt;
27963 </BODY>
27964 </HTML>
27965 ====== h_config_expanded_distlists ======
27966 <HTML>
27967 <HEAD>
27968 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
27969 </HEAD>
27970 <BODY>
27971 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
27972 If this feature is set, then distribution lists in the address book
27973 screen will always be expanded automatically.
27975 &lt;End of help on this topic&gt;
27976 </BODY>
27977 </HTML>
27978 ====== h_config_compose_news_wo_conf ======
27979 <HTML>
27980 <HEAD>
27981 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
27982 </HEAD>
27983 <BODY>
27984 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
27985 This feature controls one aspect of Alpine's Composer.  If you enter the
27986 composer while reading a newsgroup, you will normally be prompted to
27987 determine whether you intend the new message to be posted to the current
27988 newsgroup or not.  If this feature is set, Alpine will not prompt you
27989 in this situation, and will assume that you do indeed wish to post
27990 to the newsgroup you are reading.
27992 &lt;End of help on this topic&gt;
27993 </BODY>
27994 </HTML>
27995 ====== h_config_compose_rejects_unqual ======
27996 <HTML>
27997 <HEAD>
27998 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
27999 </HEAD>
28000 <BODY>
28001 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28003 This feature controls one aspect of the message composer; in particular,
28004 what happens when an unqualified name is entered into an address header.
28005 If set, unqualified names entered as addresses will be treated as errors
28006 unless they match an addressbook nickname.  Alpine will not attempt to turn
28007 them into complete addresses by adding your local domain.<P>
28009 A complete (fully qualified) address is one containing a username followed
28010 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28011 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28012 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28014 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28018 When you enter a fully qualified address, Alpine does not interpret or
28019 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28020 your system.  Alpine conforms to the Internet standards governing message
28021 headers and will not send an unqualifed name to the MTA.  Therefore, when
28022 you enter an unqualified name, Alpine will normally attempt to turn it into
28023 a fully qualified address, first by checking to see if you have entered a
28024 matching nickname in your addressbook, or failing that, by simply adding
28025 your own domain to the name entered.  So if your address is
28026 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28027 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28028 that into &quot;fred@example.com&quot;.<P>
28030 There are situations where it is not desirable for Alpine to interpret such
28031 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28032 turned out to be a typo (intended to be an addressbook nickname), but
28033 there actually was a &quot;fred&quot; in your local domain, the message might 
28034 be mis-delivered without your realizing it.  In order to reduce the likelihood
28035 of such accidents, setting this feature will cause Alpine to treat such
28036 addresses as errors, and require that you explicitly enter the full local
28037 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28038 matches an address book nickname.<P>
28040 Consider this a safety feature against mis-directed mail.
28042 <UL>   
28043 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28044 </UL><P>
28045 &lt;End of help on this topic&gt;
28046 </BODY>
28047 </HTML>
28048 ====== h_config_quell_local_lookup ======
28049 <HTML>
28050 <HEAD>
28051 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28052 </HEAD>
28053 <BODY>
28054 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28056 This feature controls an aspect of Alpine's Composer, and if needed, will
28057 usually be set by your system manager in Alpine's system-wide configuration
28058 file. Specifically, if this feature is set, Alpine will not attempt to look
28059 in the system password file to find a Full Name for the entered address.
28061 Normally, names you enter into address fields (e.g. To: or Cc:) are
28062 checked against your address book(s) to see if they match an address book
28063 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28064 the Unix password file.  If the entered name matches a username in the
28065 system password file, Alpine extracts the corresponding Full Name information
28066 for that individual, and adds that to the address being entered.
28068 However, password file matching can have surprising (incorrect) results if
28069 other users of the system do not receive mail at the domain you are using.
28070 That is, if either the 
28071 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28072 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28073 option
28074 is set such that the administrative domain of other users on the system
28075 isn't accurately reflected, Alpine should be told that a passwd file match
28076 is coincidental, and Full Name info will be incorrect.  For example, a
28077 personal name from the password file could get falsely paired with the
28078 entered name as it is turned into an address in the configured domain.
28080 If you are seeing this behavior, enabling this feature will prevent Unix
28081 Alpine from looking up names in the password file to find the Full Name
28082 for incomplete addresses you enter.<P>
28083 <UL>
28084 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28085 </UL>
28087 &lt;End of help on this topic&gt;
28088 </BODY>
28089 </HTML>
28090 ====== h_config_tab_checks_recent ======
28091 <HTML>
28092 <HEAD>
28093 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28094 </HEAD>
28095 <BODY>
28096 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28098 In a FOLDER LIST screen, the TAB key usually just changes which
28099 folder is highlighted.
28100 If this feature is set, then the TAB key will cause the number of
28101 recent messages and the total number of messages in the highlighted folder
28102 to be displayed instead.
28105 &lt;End of help on this topic&gt;
28106 </BODY>
28107 </HTML>
28108 ====== h_config_maildrops_preserve_state ======
28109 <HTML>
28110 <HEAD>
28111 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28112 </HEAD>
28113 <BODY>
28114 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28116 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28117 Normally, when mail is moved from a Mail Drop folder to a destination
28118 folder, it is delivered as new mail.
28119 Any Seen/New, Answered, Important/Flagged state that has changed will be
28120 ignored.
28121 All of the mail will be considered unSeen, unAnswered, and unImportant after
28122 it is moved.
28124 If this feature is set, then the state changes that have been made
28125 to the messages in the Mail Drop folder will be preserved.
28127 In any case, messages that are already marked Deleted when the
28128 mail is to be moved from the Mail Drop will be ignored.
28130 &lt;End of help on this topic&gt;
28131 </BODY>
28132 </HTML>
28133 ====== h_config_preopen_stayopens ======
28134 <HTML>
28135 <HEAD>
28136 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28137 </HEAD>
28138 <BODY>
28139 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28141 This feature is related to the option
28142 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28143 Normally, Stay Open folders are only opened on demand, when the user
28144 asks to open them.
28145 From then on they are kept open for the duration of the session.
28146 However, if this feature is set, then the Stay Open folders will all be
28147 opened at startup, at the same time that the INBOX is opened.
28150 &lt;End of help on this topic&gt;
28151 </BODY>
28152 </HTML>
28153 ====== h_config_expunge_inbox ======
28154 <HTML>
28155 <HEAD>
28156 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28157 </HEAD>
28158 <BODY>
28159 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28161 The INBOX is normally treated differently from regular folders in several
28162 ways.
28163 One of the differences is that the normal &quot;close&quot; sequence of
28164 events is deferred until Alpine is exited, instead of happening when you
28165 leave the INBOX to view another folder.
28166 The &quot;close&quot; sequence normally includes the Expunging
28167 of deleted messages
28168 (either automatically or after a prompt, controlled by the features
28169 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28170 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28171 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28172 handling of the
28173 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28176 If this feature is set the &quot;close&quot; sequence handling will take
28177 place every time you leave the INBOX.
28178 The INBOX will still be kept open, but the offer to Expunge and the archiving
28179 to the <!--#echo var="VAR_read-message-folder"-->
28180 will take place each time you leave the INBOX instead of only once at the
28181 end of the session.
28184 &lt;End of help on this topic&gt;
28185 </BODY>
28186 </HTML>
28187 ====== h_config_expunge_stayopens ======
28188 <HTML>
28189 <HEAD>
28190 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28191 </HEAD>
28192 <BODY>
28193 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28195 This feature is related to the option
28196 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28197 Stay Open folders are treated differently from regular folders in several
28198 ways.
28199 One of the differences is that the normal &quot;close&quot; sequence of
28200 events is deferred until Alpine is exited, instead of happening when you
28201 leave the folder to view another folder.
28202 The &quot;close&quot; sequence normally includes the Expunging
28203 of deleted messages
28204 (either automatically or after a prompt, controlled by the features
28205 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28206 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28207 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28208 handling of
28209 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28212 If this feature is set the &quot;close&quot; sequence handling will take
28213 place when you leave the Stay Open folder.
28214 The folder will still be kept open, but the offer to Expunge and the archiving
28215 will take place each time you leave the folder instead of only once at the
28216 end of the session.
28217 This feature does not affect the INBOX, which will still only be processed
28218 when you exit Alpine.
28219 However, there is a similar feature that affects only the INBOX called
28220 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28223 &lt;End of help on this topic&gt;
28224 </BODY>
28225 </HTML>
28226 ====== h_config_preserve_start_stop ======
28227 <HTML>
28228 <HEAD>
28229 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28230 </HEAD>
28231 <BODY>
28232 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28234 This feature controls how special control key characters, typically
28235 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28236 are known as the "stop" and "start" characters and are sometimes used in
28237 communications paths to control data flow between devices that operate at
28238 different speeds.
28242 By default, Alpine turns the system's handling of these special characters
28243 off except during printing.  However, if you see Alpine reporting input errors
28244 such as:
28246 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28248 and, at the same time, see your display become garbled, then it is likely
28249 that setting this option will solve the problem.  Be aware, though, that
28250 enabling this feature will also cause Alpine to ostensibly "hang" 
28251 whenever the Ctrl-S key combination is entered as the system is now
28252 interpreting such input as a "stop output" command.  To "start
28253 output"  again, simply type Ctrl-Q. 
28255 &lt;End of help on this topic&gt;
28256 </BODY>
28257 </HTML>
28258 ====== h_config_enable_incoming ======
28259 <HTML>
28260 <HEAD>
28261 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28262 </HEAD>
28263 <BODY>
28264 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28266 Alpine's Incoming Message Folders collection
28267 provides a convenient way to access multiple incoming folders.
28268 It is also useful if you have accounts on multiple computers.
28271 If set, this feature defines a pseudo-folder collection called
28272 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28273 in this collection will be your INBOX, which will no longer show up in
28274 your Default folder collection.
28277 You may add more folders to the Incoming Message Folders collection by
28278 using the
28279 <!--chtml if pinemode="function_key"-->
28280 &quot;F10
28281 <!--chtml else-->
28282 &quot;A
28283 <!--chtml endif-->
28284 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28285 the host the folder is stored on (which defaults to the same host used
28286 for your INBOX), a nickname, and the actual folder name.  Once a set
28287 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28288 or MESSAGE TEXT screens) may be used to scan the folders for those
28289 with Recent messages.  If you add more folders to
28290 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28291 no effect.
28293 NOTE: Normally the software that actually delivers mail (the stuff that happens
28294 before Alpine is involved) is in a better position to do delivery filtering
28295 than is Alpine itself.
28296 If possible, you may want to look at programs such as
28297 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28298 filtering programs.
28299 If you'd prefer to have Alpine do the filtering for you, you may set that
28301 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28303 <UL>   
28304 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28305 </UL><P>
28306 &lt;End of help on this topic&gt;
28307 </BODY>
28308 </HTML>
28309 ====== h_config_enable_incoming_checking ======
28310 <HTML>
28311 <HEAD>
28312 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28313 </HEAD>
28314 <BODY>
28315 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28317 This feature is only operational if you have enabled the optional
28318 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28319 If you do have Incoming Message Folders and you also set this feature,
28320 then the number of Unseen messages in each folder will be displayed
28321 in the FOLDER LIST screen for the Incoming Message Folders.
28322 The number of Unseen messages in a folder will be displayed in parentheses
28323 to the right of the name of each folder.
28324 If there are no Unseen messages in a folder then only the name
28325 is displayed, not a set of parentheses with zero inside them.
28326 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28327 the Incoming Message Folders to cause an immediate update.
28329 If a check for Unseen messages fails for a particular folder then Alpine
28330 will no longer attempt to check that folder for the duration of the
28331 session and this will be indicated by a question mark inside the
28332 parentheses.
28334 The features
28335 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28336 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28337 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28338 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28339 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28340 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28341 all affect how this feature behaves.
28343 <UL>   
28344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28345 </UL><P>
28346 &lt;End of help on this topic&gt;
28347 </BODY>
28348 </HTML>
28349 ====== h_config_incoming_checking_total ======
28350 <HTML>
28351 <HEAD>
28352 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28353 </HEAD>
28354 <BODY>
28355 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28357 This option has no effect unless the feature
28358 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28359 is set, which in turn has no effect unless
28360 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28361 is set.
28363 When incoming folder checking is turned on the default is to display
28364 the number of unseen messages in each folder.
28365 More precisely, it is the number of undeleted unseen messages.
28366 Using this option you may also display the total number of messages
28367 in each folder.
28368 Instead of a single number representing the number of unseen messages
28369 you will get two numbers separated by a slash character.
28370 The first is the number of unseen messages and the second is the
28371 total number of messages.
28373 You may also use the recent message count instead of the unseen message
28374 count by turning on the feature
28375 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28377 <UL>   
28378 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28379 </UL><P>
28380 &lt;End of help on this topic&gt;
28381 </BODY>
28382 </HTML>
28383 ====== h_config_incoming_checking_recent ======
28384 <HTML>
28385 <HEAD>
28386 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28387 </HEAD>
28388 <BODY>
28389 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28391 This option has no effect unless the feature
28392 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28393 is set, which in turn has no effect unless
28394 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28395 is set.
28397 When incoming folder checking is turned on the default is to display
28398 the number of unseen messages in each folder.
28399 More precisely, it is the number of undeleted unseen messages.
28400 Using this option you may display the number of recent messages instead
28401 of the number of unseen messages.
28402 A message is only counted as recent if this is the first session to
28403 see it, so the recent count might be less than the unseen count.
28404 The difference between the two would be accounted for by the unseen messages
28405 in the folder which were there previously but have not been looked at yet.
28407 If you simultaneously run more than one email client at a time
28408 (for example, you run more than one Alpine in parallel) then turning
28409 this feature on can cause some confusion.
28410 The confusion stems from the fact that each message is only considered to be
28411 recent in one session.
28412 That means that the counts of new messages may be different in the two
28413 Alpines running side by side, because each incoming message will only be
28414 counted as recent in one of the two sessions.
28416 You may also display the total number of messages
28417 in each folder by using the
28418 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28419 option.
28421 <UL>   
28422 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28423 </UL><P>
28424 &lt;End of help on this topic&gt;
28425 </BODY>
28426 </HTML>
28427 ====== h_config_attach_in_reply ======
28428 <HTML>
28429 <HEAD>
28430 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28431 </HEAD>
28432 <BODY>
28433 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28435 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28436 attachments that were part of the original message will automatically be
28437 included in the Reply.
28439 &lt;End of help on this topic&gt;
28440 </BODY>
28441 </HTML>
28442 ====== h_config_include_header =====
28443 <HTML>
28444 <HEAD>
28445 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28446 </HEAD>
28447 <BODY>
28448 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28450 This feature controls an aspect of Alpine's Reply command. If set, and the
28451 original message is being included in the reply, then headers from that
28452 message will also be part of the reply.
28454 &lt;End of help on this topic&gt;
28455 </HEAD>
28456 </HTML>
28457 ====== h_config_sig_at_bottom =====
28458 <HTML>
28459 <HEAD>        
28460 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28461 </HEAD>
28462 <BODY>
28463 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28465 This feature controls an aspect of Alpine's Reply command.  If this feature
28466 is set, and the original message is being included in the reply, then the
28467 contents of your signature file (if any) will be inserted after the included
28468 message.
28470 This feature does not affect the results of a Forward command.
28472 &lt;End of help on this topic&gt;
28473 </BODY>
28474 </HTML>
28475 ====== h_config_sigdashes =====
28476 <HTML>
28477 <HEAD>
28478 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28479 </HEAD>
28480 <BODY>
28481 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28483 This feature enables support for the common USENET news convention 
28484 of preceding a message signature with the special line consisting of 
28485 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28488 When enabled and a
28489 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28490 Alpine will insert the special line before including the file's text (unless
28491 the special line already exists somewhere in the file's text).
28494 In addition, when you Reply or Followup to a message containing one of
28495 these special lines and choose to include its text, Alpine will observe
28496 the convention of not including text beyond the special line in your
28497 reply.
28498 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28499 mode is enabled and turned on, then Alpine <EM>will</EM>
28500 include the text beyond the special line regardless of the setting of
28501 this feature.
28504 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28505 for a related feature.
28508 <UL>   
28509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28510 </UL><P>
28511 &lt;End of help on this topic&gt;
28512 </BODY>
28513 </HTML>
28514 ====== h_config_new_thread_blank_subject =====
28515 <HTML>
28516 <HEAD>
28517 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28518 </HEAD>
28519 <BODY>
28520 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28522 When this feature is enabled (the default) Alpine will create a new thread
28523 every time that the subject line becomes empty at any time during composition.
28526 This behavior is particularly useful in case you are replying to a message.
28527 Replying to a message causes the message to be in the same thread than the
28528 original message that is being replied to. However, many authors want to create
28529 a new message (in a different thread) while replying to a message, and they do
28530 this by changing the full subject, by first deleting the original subject and
28531 typing the new subject of the current message.
28534 Enabling this feature causes that any time that the subject is deleted, the 
28535 message being composed will be considered the first message of a new thread.
28538 <UL>   
28539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28540 </UL><P>
28541 &lt;End of help on this topic&gt;
28542 </BODY>
28543 </HTML>
28544 ====== h_config_strip_sigdashes =====
28545 <HTML>
28546 <HEAD>
28547 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28548 </HEAD>
28549 <BODY>
28550 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28552 This feature doesn't do anything if the feature
28553 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28554 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28555 then turning on this feature enables support for the convention
28556 of not including text beyond the sigdashes line when Replying or Following
28557 up to a message and including the text of that message.
28558 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28559 mode is enabled and turned on, then Alpine <EM>will</EM>
28560 include the text beyond the special line regardless of the setting of
28561 this feature.
28563 In other words, this is a way to turn on the signature stripping behavior
28564 without also turning on the dashes-adding behavior.
28566 <UL>   
28567 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28568 </UL><P>
28569 &lt;End of help on this topic&gt;
28570 </BODY>
28571 </HTML>
28572 ====== h_config_forward_as_attachment =====
28573 <HTML>
28574 <HEAD>
28575 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28576 </HEAD>
28577 <BODY>
28578 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28580 This feature affects the way forwarded message text is handled.  When set, rather than 
28581 include the text of the forwarded message below any additional text you provide in the
28582 composer, the forwarded message is attached in its entirety to the message you send.
28584 This is useful in that it keeps the text you provide in the composer distinct from the
28585 text of the forwarded message.  Similarly, it allows the recipient to 
28586 conveniently operate on the forwarded message.  For example, they might reply directly to
28587 the sender of the forwarded message, or process it as part of a spam report.
28588 <UL>   
28589 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28590 </UL><P>
28591 &lt;End of help on this topic&gt;
28592 </BODY>
28593 </HTML>
28594 ====== h_config_preserve_field =====
28595 <HTML>
28596 <HEAD>
28597 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28598 </HEAD>
28599 <BODY>
28600 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28602 This feature affects Alpine's behavior when one replies to a message. 
28603 When you receive a message, some or all of the recipients of the message 
28604 have been added to the To: and Cc: fields. If you reply to such message, 
28605 and this feature is disabled, then the original sender of the message is 
28606 added to the To: field, and all other recipients are added to the Cc: 
28607 field, while your address is added to the From: field.
28610 However, if this feature is enabled, then Alpine will preserve the 
28611 original fields as sent in the original message, so the Cc: and To: 
28612 fields will be preserved. The sender's address will be added to the To: 
28613 field, while your address is added to the From: field.
28616 The behavior of this feature is that replies to all messages will behave 
28617 in the way described above. If you only intend this to happen on a per 
28618 message basis, then keep this feature disabled, and when replying to a 
28619 message you will see a new option in the menu for the &quot;Reply to all 
28620 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28621 make Alpine toggle its question so you can preserve the To: and Cc: 
28622 fields for that message only.
28624 <UL>   
28625 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28626 </UL><P>
28627 &lt;End of help on this topic&gt;
28628 </BODY>
28629 </HTML>
28630 ====== h_config_sub_lists =====
28631 <HTML>
28632 <HEAD>
28633 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28634 </HEAD>
28635 <BODY>
28636 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28638 This feature affects the subcommands available when Saving, 
28639 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28640 available. This command allows you to type in a substring of the folder
28641 you are looking for and when you type ^X it will display all folders
28642 that contain that substring in their names.
28643 This feature is set by default.
28646 &lt;End of help on this topic&gt;
28647 </BODY>
28648 </HTML>
28649 ====== h_config_scramble_message_id =====
28650 <HTML>
28651 <HEAD>
28652 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28653 </HEAD>
28654 <BODY>
28655 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28657 Normally the Message-ID header that Alpine generates when sending a message
28658 contains the name of the computer from which the message is being sent.
28659 Some believe that this hostname could be used by spammers or could
28660 be used by others for nefarious purposes.
28661 If this feature is set, that name will be transformed with a simple
28662 Rot13 transformation.
28663 The result will still have the correct syntax for a Message-ID but the
28664 part of the MessageID that is often a domain name will not be an actual
28665 domain name because the letters will be scrambled.
28667 In addition, other information such as the name program, version, and
28668 a code for operating system used to build Alpine, will be encoded using
28669 the Rot13 transformation, except for the version number which will be
28670 encoded using a Rot5 transformation.
28672 It is possible (but unlikely?) that some spam detection
28673 software will use that as a reason to reject the mail as spam.
28674 It has also been reported that some spam detection software uses the
28675 fact that there are no dots after the &quot;@&quot; as a reason to reject
28676 messages.
28677 If your PC-Alpine Message-ID is using a name without a dot that is because
28678 that is what Windows thinks is your &quot;Full computer name&quot;.
28679 The method used to set this varies from one type of Windows to another but
28680 check under Settings -> Control Panel -> System and
28681 look for Network Identification or Computer Name or something similar.
28682 How to set it is beyond the scope of Alpine.
28685 &lt;End of help on this topic&gt;
28686 </BODY>
28687 </HTML>
28688 ====== h_downgrade_multipart_to_text =====
28689 <HTML>
28690 <HEAD>
28691 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28692 </HEAD>
28693 <BODY>
28694 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28697 This feature affects Alpine's behavior when sending mail.  Internet
28698 standards require Alpine to translate all non-ASCII characters in
28699 messages that it sends using MIME encoding.  This encoding can be
28700 ostensibly broken for recipients if any agent between Alpine and the
28701 recipient, such as an email list expander, appends text to the
28702 message, such as list information or advertising.  When sending such
28703 messages Alpine attempts to protect such encoding by placing extra
28704 MIME boundaries around the message text.
28706 These extra boundaries are invisible to recipients that 
28707 use MIME-aware email programs (the vast majority).  However, if
28708 you correspond with users of email programs that are not MIME-aware,
28709 or do not handle the extra boundaries gracefully, you can
28710 use this feature to prevent Alpine from including the extra
28711 MIME information.  Of course, it will increase the likelihood
28712 that non-ASCII text you send may appear corrupt to the recipient.
28714 &lt;End of help on this topic&gt;
28715 </BODY>
28716 </HTML>
28717 ====== h_config_show_sort =====
28718 <HTML>
28719 <HEAD>
28720 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28721 </HEAD>
28722 <BODY>
28723 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28725 If this feature is set and there is sufficient space on the screen,
28726 a short indication of the current sort order will be
28727 added in the titlebar (the top line on the screen), before the name
28728 of the folder.
28729 For example, with the default Arrival sort in effect,
28730 the display would have the characters
28732 <P><CENTER>[A]</CENTER><P>
28734 added between the title of the screen and the folder name.
28735 The letters are the same as the letters you may type to manually
28736 sort a folder with the SortIndex command ($).
28737 The letters in the table below are the ones that may show
28738 up in the titlebar line.
28740 <TABLE>   
28741 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28742 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28743 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28744 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28745 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28746 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28747 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28748 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28749 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28750 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28751 </TABLE>
28753 If the sort order is Reversed, the letter above will be preceded by the letter
28754 &quot;R&quot;, for example
28756 <P><CENTER>[RS]</CENTER><P>
28758 means that a Reverse Subject sort is in effect.
28759 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28760 left out, and just an &quot;R&quot; is shown.
28762 <P><CENTER>[R]</CENTER>
28765 &lt;End of help on this topic&gt;
28766 </BODY>
28767 </HTML>
28768 ====== h_config_disable_reset_disp =====
28769 <HTML>
28770 <HEAD>
28771 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28772 </HEAD>
28773 <BODY>
28774 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28776 UNIX Alpine only.
28778 This feature affects Alpine's behavior when using
28779 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28780 Normally, before the display filter is run, the terminal mode is reset
28781 to what it was before you started Alpine.
28782 This may be necessary if the filter requires the use of the terminal.
28783 For example, it may need to interact with you.
28784 If you set this feature, then the terminal mode will not be reset.
28785 One thing that turning on this feature should fix is the coloring of
28786 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28787 breaks because the terminal reset resets the color state of the terminal.
28790 &lt;End of help on this topic&gt;
28791 </BODY>
28792 </HTML>
28793 ====== h_config_disable_sender =====
28794 <HTML>
28795 <HEAD>
28796 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28797 </HEAD>
28798 <BODY>
28799 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28801 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28802 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28803 header fields.
28804 By default, Alpine will generate such a header in situations where the
28805 username or domain are not the same as
28806 the &quot;From:&quot; header on the message.
28807 With this feature set,
28808 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28809 This may be desirable on a system that is virtually hosting many domains,
28810 and the sysadmin has other methods available for tracking a message to
28811 its originator.
28813 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28816 &lt;End of help on this topic&gt;
28817 </BODY>
28818 </HTML>
28819 ====== h_config_use_sender_not_x =====
28820 <HTML>
28821 <HEAD>
28822 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28823 </HEAD>
28824 <BODY>
28825 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28827 Normally Alpine adds a header line
28828 labeled &quot;X-X-Sender&quot;, if the sender is
28829 different from the From: line.
28830 The standard specifies that this header
28831 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28832 Setting this feature causes
28833 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28835 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28838 &lt;End of help on this topic&gt;
28839 </BODY>
28840 </HTML>
28841 ====== h_config_use_fk =====
28842 <HTML>
28843 <HEAD>
28844 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
28845 </HEAD>
28846 <BODY>
28847 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
28849 This feature specifies that Alpine will respond to function keys instead of
28850 the normal single-letter commands. In this mode, the key menus at the
28851 bottom of each screen will show function key designations instead of the
28852 normal mnemonic key.
28855 &lt;End of help on this topic&gt;
28856 </BODY>
28857 </HTML>
28858 ====== h_config_cancel_confirm =====
28859 <HTML>
28860 <HEAD>
28861 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
28862 </HEAD>
28863 <BODY>
28864 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
28866 This feature affects what happens when you type ^C to cancel a composition.
28867 By default, if you attempt to cancel a composition by typing ^C, you will be
28868 asked to confirm the cancellation by typing a &quot;C&quot;
28869 for <EM>C</EM>onfirm.
28870 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
28871 risky because the &quot;^C Y&quot; needed to cancel a message
28872 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
28874 If this feature is set the confirmation asked for
28875 will be a &quot;<EM>Y</EM>es&quot;
28876 instead of a &quot;<EM>C</EM>onfirm&quot; response.
28879 &lt;End of help on this topic&gt;
28880 </BODY>
28881 </HTML>
28882 ====== h_config_compose_maps_del =====
28883 <HTML>
28884 <HEAD>
28885 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
28886 </HEAD>
28887 <BODY>
28888 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
28890 This feature affects the behavior of the DELETE key.
28891 If set, Delete will be equivalent to ^D, and delete
28892 the current character.  Normally Alpine defines the Delete key
28893 to be equivalent to ^H, which deletes the <EM>previous</EM>
28894 character.
28897 &lt;End of help on this topic&gt;
28898 </BODY>
28899 </HTML>
28900 ====== h_config_compose_bg_post =====
28901 <HTML>
28902 <HEAD>
28903 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
28904 </HEAD>
28905 <BODY>
28906 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
28908 This feature affects the behavior of Alpine's mail sending.  If set, this
28909 feature enables a subcommand in the composer's "Send?" confirmation
28910 prompt.  The subcommand allows you to tell Alpine to handle the actual
28911 posting in the background.  While this feature usually allows posting
28912 to appear to happen very fast, it has no affect on the actual delivery
28913 time it takes a message to arrive at its destination.
28916 Please Note:
28917 <OL>
28918  <LI>This feature will have no effect if the feature
28919        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
28920        is set.
28921  <LI>This feature isn't supported on all systems.  All DOS and Windows,
28922        as well as several Unix ports, do not recognize this feature.
28923  <LI>Error handling is significantly different when this feature is
28924         enabled.  Any message posting failure results in the message
28925         being appended to your &quot;Interrupted&quot; mail folder.  When you
28926         type the <A HREF="h_common_compose">C</A>ompose command,
28927         Alpine will notice this folder and
28928         offer to extract any messages contained.  Upon continuing a 
28929         failed message, Alpine will display the nature of the failure 
28930         in the status message line.
28931  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
28932         for message data to
28933         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
28934         if you typically run close to any sort of disk-space limits or quotas.
28935 </OL>
28937 &lt;End of help on this topic&gt;
28938 </BODY>
28939 </HTML>
28940 ====== h_config_compose_dsn =====
28941 <HTML>
28942 <HEAD>
28943 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
28944 </HEAD>
28945 <BODY>
28946 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
28948 This feature affects the behavior of Alpine's mail sending.  If set, this
28949 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
28950 prompt.  The subcommand allows you to tell Alpine to request the type of
28951 Delivery Status Notification (DSN) that you would like.  Most users will
28952 be happy with the default, and need not enable this feature.
28954 If the feature
28955 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28956 then this feature has no effect and the type of DSN is not selectable.
28959 Turning on this feature and then turning on the DSNOpts from the send
28960 prompt reveals four on-off toggles at the bottom of the screen.
28961 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
28962 that no notification be returned to you, even if there is a delivery
28963 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
28964 server that you are willing (or not) to receive delay notifications, which
28965 happen when there is an unusual delay at some mail server (in that mail
28966 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
28967 Success requests that you be sent a DSN message when the message is
28968 successfully delivered to the recipients mailbox.  Setting NoErrRets will
28969 automatically turn off Delay and Success notification, and will flip the
28970 toggles to show that.  Similarly, turning on Delay and/or Success will
28971 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
28972 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
28973 the full message be returned in any failed DSN.  RetHdrs requests that
28974 only the headers be returned in any failed DSN.  Notice that this command
28975 applies only to failed delivery status reports.  For delay or success
28976 reports, the full message is never returned, only the headers are returned.
28979 If you don't enable the DSN feature or if you don't turn it on for a
28980 particular message, the default is that you will be notified about failures,
28981 you might be notified about delays, and you won't be notified about
28982 successes.  You will usually receive the full message back when there is
28983 a failure.
28986 If you turn on the DSNOpts the default is to return as much information as
28987 possible to you.  That is, by default, the Success and Delay options are
28988 turned on and the full message will be returned on failure.
28991 The sending prompt will display the current DSN request (if any) in a
28992 shorthand form.  It will be:
28994 <P><CENTER>[Never]</CENTER>
28997 if you have requested NoErrRets.  Otherwise, it will look something like:
28999 <P><CENTER>[FDS-Hdrs]</CENTER>
29002 The &quot;F&quot; will always be there, indicating that you will be notified
29003 of failures.  (Alpine doesn't provide a way to request no failure notification
29004 and at the same time request either success or delay notification.  The only
29005 way to request no failure notifications is to request no notifications at
29006 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29007 requested Delay and/or Success notification.  If one of those is missing,
29008 that means you are requesting no notification of the corresponding type.
29009 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29010 the headers and Full means to return the full message (applies to
29011 failure notifications only).
29014 NOTE: This feature relies on your system's mail transport agent or
29015 configured
29016 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29017 having the negotiation mechanism introduced in
29018 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29019 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
29020 are using doesn't support DSN, a short warning will be shown to you on
29021 the message line at the bottom of the screen after you send your message,
29022 but your message will have been sent anyway.
29025 Note that DSNs don't provide a mechanism to request read receipts.  That
29026 is, if you request notification on success you are notified when the
29027 message is delivered to the mailbox, not when the message is read.
29030 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29031 it is possible that this feature might cause problems for some servers. 
29034 &lt;End of help on this topic&gt;
29035 </BODY>
29036 </HTML>
29037 ====== h_config_auto_zoom =====
29038 <HTML>
29039 <HEAD>
29040 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29041 </HEAD>
29042 <BODY>
29043 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29045 This feature affects the behavior of the Select command.
29046 If set, the select command will automatically perform a zoom
29047 after the select is complete.
29048 This feature is set by default.
29050 Some related help topics are
29051 <UL>
29052 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29053 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29054 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29055 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29056 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29057 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29058 </UL>
29061 &lt;End of help on this topic&gt;
29062 </BODY>
29063 </HTML>
29064 ====== h_config_auto_unzoom =====
29065 <HTML>
29066 <HEAD>
29067 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29068 </HEAD>
29069 <BODY>
29070 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29072 This feature affects the behavior of the Apply command.  If set, and if
29073 you are currently looking at a Zoomed Index view of selected messages,
29074 the Apply command will do the operation you specify, but then will
29075 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29076 the normal Index view after the Apply. 
29077 This feature is set by default.
29080 Some related help topics are
29081 <UL>
29082 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29083 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29084 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29085 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29086 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29087 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29088 </UL>
29090 &lt;End of help on this topic&gt;
29091 </BODY>
29092 </HTML>
29093 ====== h_config_auto_unselect =====
29094 <HTML>
29095 <HEAD>
29096 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29097 </HEAD>
29098 <BODY>
29099 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29101 This feature affects the behavior of the Apply command.  If set,
29102 the Apply command will do the operation you specify, but then will
29103 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29104 the normal Index view after the Apply. 
29107 Some related help topics are
29108 <UL>
29109 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29110 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29111 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29112 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29113 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29114 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29115 </UL>
29117 &lt;End of help on this topic&gt;
29118 </BODY>
29119 </HTML>
29120 ====== h_config_fast_recent =====
29121 <HTML>
29122 <HEAD>
29123 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29124 </HEAD>
29125 <BODY>
29126 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29128 This feature controls the behavior of the TAB key when traversing folders
29129 in the optional 
29130 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29131 collection or in optional <!--#echo var="VAR_news-collections"-->.
29134 When the TAB
29135 (<A HREF="h_common_nextnew">NextNew</A>)
29136 key is pressed, the default behavior is to
29137 explicitly examine the status of the folder for the number of recent
29138 messages (messages delivered since the last time it was viewed).
29139 Depending on the size and number of messages in the folder, this test
29140 can be time consuming.
29143 Enabling this feature will cause Alpine to only test for the existence of
29144 any recent messages rather than to obtain the count.  This is much faster
29145 in many cases.  The downside is that you're not given the number of recent
29146 messages when prompted to view the next folder.
29147 If the feature
29148 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29149 is turned on, then the present feature will have no effect.
29152 <UL>   
29153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29154 </UL><P>
29155 &lt;End of help on this topic&gt;
29156 </BODY>
29157 </HTML>
29158 ====== h_config_arrow_nav =====
29159 <HTML>
29160 <HEAD>
29161 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29162 </HEAD>
29163 <BODY>
29164 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29166 This feature controls the behavior of the left and right arrow keys.
29167 If set, the left and right arrow keys will operate like the usual
29168 navigation keys &lt; and &gt;.
29169 This feature is set by default.
29172 If you set this feature, and do not like the changed behavior of the up/down 
29173 arrow 
29174 keys when navigating through the FOLDER LIST screen -- 
29175 <B>first</B> from column to column, if more than one folder is 
29176 displayed per row, 
29177 and <B>then</B> from row to row -- you may either also wish to set the feature 
29178 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29179 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29180 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29181 folders in each column.
29183 <UL>   
29184 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29185 </UL><P>
29186 &lt;End of help on this topic&gt;
29187 </BODY>
29188 </HTML>
29189 ====== h_config_relaxed_arrow_nav =====
29190 <HTML>
29191 <HEAD>
29192 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29193 </HEAD>
29194 <BODY>
29195 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29197 This feature controls the behavior of the left, right, up and down
29198 arrow keys in the FOLDER LIST screen when the &quot;<A
29199 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29200 set.
29201 This feature is set by default.
29205 When this feature is set, the left and right
29206 arrow keys in the FOLDER LIST screen
29207 move the highlight bar to the left or right, and the up and
29208 down arrows move it up or down.
29211 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29212 feature is not set;
29213 the left and right arrow keys in the Folder List screen strictly
29214 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29215 and down arrow keys move the highlight bar to the previous and next
29216 folder or directory name.
29219 <UL>   
29220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29221 </UL><P>
29222 &lt;End of help on this topic&gt;
29223 </BODY>
29224 </HTML>
29225 ====== h_config_alt_compose_menu =====
29226 <HTML>
29227 <HEAD>
29228 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29229 </HEAD>
29230 <BODY>
29231 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29233 This feature controls the menu that is displayed when Compose is selected.
29234 If set, a list of options will be presented, with each option representing
29235 the type of composition that could be used. This feature is most useful for
29236 users who want to avoid being prompted with each option separately, or who
29237 want to avoid the checking of remote postponed or form letter folders.
29238 The possible types of composition are:
29241 New, for starting a new composition. Note that if New is selected and roles
29242 are set, roles are checked for matches and applied according to the setting
29243 of the matching role.
29246 Interrupted, for continuing an interrupted composition. This option is only
29247 offered if an interrupted message folder is detected.
29250 Postponed, for continuing postponed compositions. This option is offered
29251 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29252 the postponed folder actually exists. This option is especially handy
29253 for avoiding having to check for the existence of a remote postponed folder.
29256 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29257 is set in the config, and is not checked for existence for reasons similar
29258 to those explained by the postponed option.
29261 setRole, for selecting a role to apply to a composition.
29264 &lt;End of help on this topic&gt;
29265 </BODY>
29266 </HTML>
29267 ====== h_config_alt_role_menu =====
29268 <HTML>
29269 <HEAD>
29270 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29271 </HEAD>
29272 <BODY>
29273 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29275 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29276 a role and compose a new message using that role.
29277 When this feature is set, the role command will first ask whether you want to
29278 Compose a new message, Forward the current message, Reply to the
29279 current message, or Bounce the current message.
29280 If you are not in the MESSAGE INDEX and are not viewing a message,
29281 then there is no current message and the question will be skipped.
29282 After you have chosen to Compose, Forward, Reply, or Bounce you will
29283 then choose the role to be used.
29285 When Bouncing the &quot;Set From&quot; address is used for the
29286 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29287 provided that the option
29288 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29289 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29290 set.
29291 Other actions of the role are ignored when Bouncing.
29294 &lt;End of help on this topic&gt;
29295 </BODY>
29296 </HTML>
29297 ====== h_config_always_spell_check =====
29298 <HTML>
29299 <HEAD>
29300 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29301 </HEAD>
29302 <BODY>
29303 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29305 When this feature is set, every composed message will be spell-checked before
29306 being sent.
29308 &lt;End of help on this topic&gt;
29309 </BODY>
29310 </HTML>
29311 ====== h_config_quell_asterisks =====
29312 <HTML>
29313 <HEAD>
29314 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29315 </HEAD>
29316 <BODY>
29317 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29319 When you are running Alpine you will sometimes be asked for a password
29320 in a prompt on the third line from the bottom of the screen.
29321 Normally each password character you type will cause an asterisk to echo
29322 on the screen. That gives you some feedback to know that your typing is
29323 being recognized.
29324 There is a very slight security risk in doing it this way because someone
29325 watching over your shoulder might be able to see how many characters there
29326 are in your password.
29327 If you'd like to suppress the echoing of the asterisks set this feature.
29329 &lt;End of help on this topic&gt;
29330 </BODY>
29331 </HTML>
29332 ====== h_config_quell_flowed_text =====
29333 <HTML>
29334 <HEAD>
29335 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29336 </HEAD>
29337 <BODY>
29338 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29340 Alpine generates flowed text where possible.
29341 The method for generating flowed text is defined by
29342 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29343 the benefit of doing so is
29344 to send message text that can properly be viewed both on normal width displays
29345 and on displays with smaller or larger than normal screen widths.
29346 With flowed text, a space at the end of a line tells the receiving mail
29347 client that the following line belongs to the same paragraph.
29348 Quoted text will also be affected, with only the innermost
29349 level of &quot;&gt;&quot; quoting being followed by a space.
29350 However, if you have changed the
29351 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29352 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29353 quoted text will not be flowed.
29354 For this reason, we recommend that you leave your
29355 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29357 This feature turns off the generation of flowed text, as it might be
29358 desired to more tightly control how a message is displayed on the receiving end.
29360 If this feature is <EM>not</EM> set, you can control on a message by message
29361 basis whether or not flowed text is generated.
29362 You do this by typing ^V at the Send confirmation prompt that you get
29363 after typing ^X to send a message.
29364 ^V is a toggle that turns flowing off and back on if typed again.
29365 If for some reason flowing cannot be done on a particular message, then the
29366 ^V command will not be available.
29367 This would be the case, for example, if this feature was set, or if your
29368 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29369 If the feature
29370 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29371 then the opportunity to control on a message by message basis
29372 whether or not flowed text is generated is lost.
29374 When this feature is not set and you have typed ^V to turn off flowing,
29375 the Send confirmation prompt will change to look like
29377 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29379 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29380 also turn off the sending of flowed text messages, but it differs in that
29381 it also trims all trailing white space from a message before sending it.
29383 If alternate editors are used extensively, be aware that a message will still
29384 be sent flowed if this feature is unset.  In most cases this will be fine,
29385 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29386 use that.
29388 &lt;End of help on this topic&gt;
29389 </BODY>
29390 </HTML>
29391 ====== h_config_strip_ws_before_send =====
29392 <HTML>
29393 <HEAD>
29394 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29395 </HEAD>
29396 <BODY>
29397 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29399 By default, trailing whitespace is not stripped from
29400 a message before sending.  Trailing whitespace should have no effect on an
29401 email message, and in flowed text can aid in delimiting paragraphs.
29402 However, the old behavior of stripping trailing whitespace was in place
29403 to better deal with older clients that couldn't handle certain types of
29404 text encodings.  This feature restores the old behavior
29406 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29407 generated by default but can be turned off via the
29408 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29409 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29410 of flowed text.
29412 &lt;End of help on this topic&gt;
29413 </BODY>
29414 </HTML>
29415 ====== h_config_alt_reply_menu =====
29416 <HTML>
29417 <HEAD>
29418 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
29419 </HEAD>
29420 <BODY>
29421 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
29423 Note that if this option is enabled, then the option
29424 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29425 is ignored. See below to understand why.
29427 When you reply to a message, a series of questions are asked that 
29428 determines how your reply will be handled by Alpine. This feature only 
29429 affects the result of the first question you are asked, and its purpose is 
29430 to set values that could override defaults set in Alpine's main 
29431 configuration screen. As a result, this menu allows you to configure even 
29432 more features than you would be able to do without this option. For 
29433 example, this menu always allows you to override or select a <A 
29434 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
29435 override your indent string, regardless of if you have enabled 
29436 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
29437 The full list of options can be found below.
29439 Here is an example of how this option works. After you press Reply,
29440 if you see &quot;A Inc Attach&quot; in the menu, it means that 
29441 if you press &quot;A&quot;, then Alpine will include the attachments
29442 of the original message, and the default is not to include them. 
29443 Conversely, if you see &quot;A No Attach&quot; 
29444 then by pressing &quot;A&quot; Alpine will not include
29445 attachments in your reply, and the default is that Alpine will 
29446 include them in your reply. The value that you see when you 
29447 start your reply is controlled by the option
29448 <A HREF="h_config_attach_in_reply">
29449 <!--#echo var="FEAT_include-attachments-in-reply"-->
29450 </A>. If the feature is enabled, then Alpine will display 
29451 &quot;A No Attach&quot; to override the default behavior. You can
29452 toggle between the two values of this option by pressing &quot;A&quot;.
29453 Remember that the value that you see in the menu is the action that will 
29454 be done when you press the associated command.
29456 Below are your options:
29457 <OL>
29458 <LI><B>A</B>: This determines if Alpine will include or not the 
29459 attachments sent to you in the message that you are replying to. The default 
29460 is to use the value of the configuration option 
29461 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overriden by using this command.
29463 <LI><B>H</B>: This command determines if the headers of a message are
29464 included in the body of the message that is being replied to. By default 
29465 Alpine will use the value of the configuration option 
29466 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
29467 Observe that by toggling this option to include headers, text will be toggled
29468 to be included by default.
29470 <LI><B>R</B>: Can be used to set a role different from the default.
29472 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
29473 message. The default is to strip the signature when the message is not
29474 viewed in headers mode, and you either have enabled
29475 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
29477 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
29479 <LI><B>Ctrl-R</B>: Can be used to edit the 
29480 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
29481 </OL>
29483 In order to include the text of the original message in the reply
29484 you either need to press 'y' to include the original text, or 'n' to 
29485 exclude it from the reply. Pressing return will execute the default 
29486 action, which is to include text only if the option
29487 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29488 is enabled. However, notice that the default is to include text if you edit the 
29489 reply indent string or if you explicitly set through this menu that you
29490 want headers included in the reply message.
29493 &lt;End of help on this topic&gt;
29494 </BODY>
29495 </HTML>
29496 ====== h_config_del_from_dot =====
29497 <HTML>
29498 <HEAD>
29499 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29500 </HEAD>
29501 <BODY>
29502 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29504 This feature controls the behavior of the Ctrl-K command in the composer.
29505 If set, ^K will cut from the current cursor position to the end of the line,
29506 rather than cutting the entire line.
29509 &lt;End of help on this topic&gt;
29510 </BODY>
29511 </HTML>
29512 ====== h_config_print_index =====
29513 <HTML>
29514 <HEAD>
29515 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29516 </HEAD>
29517 <BODY>
29518 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29520 This feature controls the behavior of the Print command when in the
29521 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29522 asking if you wish to print the message index, or the currently highlighted
29523 message. If not set, the message will be printed.
29526 &lt;End of help on this topic&gt;
29527 </BODY>
29528 </HTML>
29529 ====== h_config_allow_talk =====
29530 <HTML>
29531 <HEAD>
29532 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29533 </HEAD>
29534 <BODY>
29535 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29537 UNIX Alpine only.
29539 By default, permission for others to &quot;talk&quot; to your terminal is turned
29540 off when you are running Alpine.  When this feature is set, permission is
29541 instead turned on.  If enabled, you may see unexpected messages in the
29542 middle of your Alpine screen from someone attempting to contact you via the
29543 &quot;talk&quot; program.
29546 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29547 talk daemon on your system will attempt to print a message on your screen 
29548 when someone else is trying to contact you.  If you wish to see these
29549 messages while you are running Alpine, you should enable this feature.
29552 If you do enable this feature and see a &quot;talk&quot; message, you must 
29553 suspend or quit Alpine before you can respond.
29556 &lt;End of help on this topic&gt;
29557 </BODY>
29558 </HTML>
29559 ====== h_config_send_filter_dflt =====
29560 <HTML>
29561 <HEAD>
29562 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29563 </HEAD>
29564 <BODY>
29565 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29566 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29567 configured, setting this feature will cause
29568 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29569 instead of unfiltered, the usual default.
29571 <UL>   
29572 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29573 </UL><P>
29574 &lt;End of help on this topic&gt;
29575 </BODY>
29576 </HTML>
29577 ====== h_config_custom_print =====
29578 <HTML>
29579 <HEAD>
29580 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29581 </HEAD>
29582 <BODY>
29583 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29585 When this feature is set, the print command will have an additional
29586 subcommand called "C CustomPrint".  If selected, you will have
29587 the opportunity to enter any system print command --instead of being 
29588 restricted to using those that have been previously configured in the 
29589 printer setup menu.
29592 &lt;End of help on this topic&gt;
29593 </BODY>
29594 </HTML>
29595 ====== h_config_enable_dot_files =====
29596 <HTML>
29597 <HEAD>
29598 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29599 </HEAD>
29600 <BODY>
29601 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29603 When this feature is set, files beginning with dot (".") will be
29604 visible in the file browser.  For example, you'll be able to select them
29605 when using the browser to add an attachment to a message.
29607 &lt;End of help on this topic&gt;
29608 </BODY>
29609 </HTML>
29610 ====== h_config_enable_dot_folders =====
29611 <HTML>
29612 <HEAD>        
29613 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29614 </HEAD>
29615 <BODY>
29616 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29618 When this feature is set, folders beginning with dot (".") may be added
29619 and viewed.
29621 &lt;End of help on this topic&gt;
29622 </BODY>
29623 </HTML>
29624 ====== h_config_ff_between_msgs =====
29625 <HTML>
29626 <HEAD>
29627 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29628 </HEAD>
29629 <BODY>
29630 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29632 Setting this feature causes a formfeed to be printed between messages when
29633 printing multiple messages (with Apply Print command).
29635 &lt;End of help on this topic&gt;
29636 </BODY>
29637 </HTML>
29638 ====== h_config_blank_keymenu =====
29639 <HTML>
29640 <HEAD>
29641 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29642 </HEAD>
29643 <BODY>
29644 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29646 If this feature is set the command key menu that normally appears on the
29647 bottom two lines of the screen will not usually be there.  Asking for
29648 help with ^G or ? will cause the key menu to appear instead of causing
29649 the help message to come up.  If you want to actually see the help text,
29650 another ^G or ? will show it to you.  After the key menu has popped
29651 up with the help key it will remain there for an O for Other command but
29652 disappear if any other command is typed.
29654 &lt;End of help on this topic&gt;
29655 </BODY>
29656 </HTML>
29657 ====== h_config_enable_mouse =====
29658 <HTML>
29659 <HEAD>
29660 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29661 </HEAD>
29662 <BODY>
29663 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29665 This feature controls whether or not an X terminal mouse can be used with
29666 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29667 being used, the left mouse button on the mouse can be used to select text
29668 or commands.
29669 Clicking on a command at the bottom of the screen will behave as if you had
29670 typed that command.
29671 Clicking on an index line will move the current message highlight to
29672 that line.
29673 Double-clicking on an index line will view the message.
29674 Double-clicking on a link will view the link.
29676 This type of mouse support will also work in some terminal emulators which are
29677 not actually X terminals, but which have extra code to support the xterm
29678 style mouse.
29679 For those emulators you not only need to turn this feature on but you also
29680 have to set the $DISPLAY environment variable even though it isn't needed
29681 for your terminal.
29682 That will cause Alpine to think that it is an xterm and to properly interpret the
29683 escape sequences sent by the mouse.
29685 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29686 also modified.  It is sometimes possible to hold the shift key down while clicking
29687 left or middle mouse buttons for the normal xterm cut/paste operations. 
29688 There is also an Alpine command to toggle this mode on or off.
29689 The command is Ctrl-&#92; (Control-backslash).
29691 &lt;End of help on this topic&gt;
29692 </BODY>
29693 </HTML>
29694 ====== h_config_enable_xterm_newmail =====
29695 <HTML>
29696 <HEAD>        
29697 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29698 </HEAD>
29699 <BODY>
29700 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29702 This feature controls whether or not Alpine will attempt to announce new
29703 mail arrival when it is running in an X terminal window and that window
29704 is iconified.  If set, and the $DISPLAY variable indicates that an X
29705 terminal is being used, Alpine will send appropriate escape sequences to
29706 the X terminal to modify the label on Alpine's icon to indicate that new
29707 mail has arrived. Alpine will also modify the Alpine window's title to
29708 indicate new mail.
29709 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29711 &lt;End of help on this topic&gt;
29712 </BODY></HTML>
29713 ====== h_config_enable_newmail_short_text =====
29714 <HTML>
29715 <HEAD>        
29716 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29717 </HEAD>
29718 <BODY>
29719 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29721 This feature controls the text to be displayed in an icon in the event
29722 of a new message arrival.  Normally, the message will
29723 be the one that is displayed on the screen.  This feature shortens the
29724 message to a count of the number of new messages in brackets.  This may be
29725 more useful for those who use the window's title bar in the task bar as a
29726 new mail indicator.  This feature is only useful if the
29727 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29728 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29729 feature, this feature is only relevant when run in an xterm environment.
29731 &lt;End of help on this topic&gt;
29732 </BODY></HTML>
29733 ====== h_config_copy_to_to_from =====
29734 <HTML>
29735 <HEAD>
29736 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29737 </HEAD>
29738 <BODY>
29739 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29741 This feature affects the From address used when Replying to a message.
29742 It is probably only useful if you have some
29743 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29744 defined.
29745 When enabled, it checks to see if any of the addresses in the To or Cc
29746 fields of the message you are replying to is one of your addresses.
29747 If it is, and there is only one of them, then that address is used as
29748 the From address in the message you are composing.
29749 In other words, you will be using a From address that is the same
29750 as the To address that was used to get the mail to you in the first place.
29753 If a role is being used and it has a From address defined, that From address will
29754 be used rather than the one derived from this feature.
29757 <UL>   
29758 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29759 </UL><P>
29760 &lt;End of help on this topic&gt;
29761 </BODY>
29762 </HTML>
29763 ====== h_config_prefix_editing =====
29764 <HTML>
29765 <HEAD>
29766 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29767 </HEAD>
29768 <BODY>
29769 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29771 This feature affects the Reply command's &quot;Include original message
29772 in Reply?&quot; prompt.  When enabled, it causes the
29773 &quot;Edit Indent String&quot; sub-command to appear which allows 
29774 you to edit the string Alpine would otherwise use to denote included 
29775 text from the message being replied to.<P>
29777 Thus, you can change Alpine's default message quote character (usually
29778 an angle bracket) on a per message basis. So you could change your quoted message to
29779 look, for example, like this:<p>
29781 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29783 John: I just wanted to say hello and to congratulate you
29784 John: on a job well done!</pre><p>
29786 The configuration option
29787 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29788 may be used to change what appears as the default string to be edited.
29790 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29791 currently being replied to.
29793 If you change your <!--#echo var="VAR_reply-indent-string"-->
29794 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29795 quoted text will not be flowed
29796 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29797 when you reply.
29798 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29799 set to the default value.
29801 <UL>   
29802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29803 </UL><P>
29804 &lt;End of help on this topic&gt;
29805 </BODY>
29806 </HTML>
29807 ====== h_config_enable_search_and_repl =====
29808 <HTML>
29809 <HEAD>
29810 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29811 </HEAD>
29812 <BODY>
29813 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29815 This feature modifies the behavior of Alpine's composer.  Setting this
29816 feature causes Alpine to offer the "^R Replace" subcommand, which
29817 allows you to search and replace text strings in a message you are composing, 
29818 inside the "^W Where is" command.  
29822 To search and replace text, first enter the text to be replaced at the 
29823 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29824 text, press ^R, which turns the prompt into 
29828 Search (to replace): 
29832 and then press Enter.  The cursor will highlight the first occurrence 
29833 of the text string you entered, and the prompt will show: 
29837 Replace "<your text string>" with : 
29841 where <your text string> is what you entered at the previous prompt;
29842 here, enter the replacement text.  To only replace the highlighted 
29843 occurrence, simply press Enter now; to replace all occurrences in the 
29844 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
29845 each replacement.
29849 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
29850 ^X toggles between "Replace All" and "Replace One."
29854 If you previously searched for text in a message, it will be offered for 
29855 re-use as part of the prompt, shown in [ ] brackets.
29858 &lt;End of help on this topic&gt;
29859 </BODY>
29860 </HTML>
29861 ====== h_config_enable_view_attach =====
29862 <HTML>
29863 <HEAD>
29864 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
29865 </HEAD>
29866 <BODY>
29867 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
29869 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29870 Setting this feature causes Alpine to present attachments in boldface.
29871 The first available attachment is displayed in inverse.  This is the
29872 "selected" attachment.  Pressing RETURN will cause Alpine to display
29873 the selected attachment.  Use the arrow keys to change which of the
29874 attachments displayed in boldface is the current selection.
29878 Speaking of arrow keys, the Up and Down Arrows will select the next
29879 and previous attachments if one is available on the screen for selection.
29880 Otherwise, they will simply adjust the viewed text one line up or down.
29884 Similarly, when selectable items are present in a message, the Ctrl-F key
29885 can be used to select the next item in the message independent of which
29886 portion of the viewed message is currently displayed. The Ctrl-B key can
29887 be used to select the previous item in the same way. 
29888 <P> 
29889 &lt;End of help on this topic&gt;
29890 </BODY>
29891 </HTML>
29892 ====== h_config_enable_y_print =====
29893 <HTML>
29894 <HEAD>
29895 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
29896 </HEAD>
29897 <BODY>
29898 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
29900 This feature modifies the behavior of Alpine's Print command.
29902 By default, Alpine's print command is available by pressing the "%" key.  
29903 (This command is a substantial change from Pine versions before 4.00 -- 
29904 where the print command was "Y" -- based on numerous complaints about 
29905 printing being invoked inadvertently, since Y also means "Yes.")  
29909 This feature is supplied to mitigate any disruption or anxiety users 
29910 might feel as a result of this change.  
29914 Enabling this feature will cause Alpine to recognize both the old
29915 command, "Y" for Prynt, as well the new "%" method for invoking
29916 printing.  Note, key menu labels are not changed as a result of
29917 enabling this feature.
29921 &lt;End of help on this topic&gt;
29922 </BODY>
29923 </HTML>
29924 ====== h_config_enable_lessthan_exit =====
29925 <HTML>
29926 <HEAD>
29927 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
29928 </HEAD>
29929 <BODY>
29930 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
29932 If this feature is set, then on screens where there is an Exit command
29933 but no < command, the < key will perform the same function as the Exit
29934 command.
29935 This feature is set by default.
29937 &lt;End of help on this topic&gt;
29938 </BODY>
29939 </HTML>
29940 ====== h_config_enable_view_url =====
29941 <HTML>
29942 <HEAD>
29943 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
29944 </HEAD>
29945 <BODY>
29946 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
29947 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29948 When this feature is set (the default) Alpine will select possible URLs from the
29949 displayed text and display them in boldface for selection.
29951 The first available URL is displayed in inverse.  This is the
29952 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
29953 the selected URL via either built-in means as with mailto:, imap:,
29954 news:, and nntp:, or via an external application as defined
29955 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29956 variable.
29958 Use the arrow keys to change which of the URLs displayed in boldface
29959 is the current selection.
29961 Speaking of arrow keys, the Up and Down Arrows will select the next
29962 and previous URL if one is available on the screen for selection (unless 
29963 you have set the feature 
29964 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
29965 Otherwise, they will simply adjust the viewed text one line up or down.
29967 Similarly, when selectable items are present in a message, the Ctrl-F
29968 key can be used to select the next item in the message independent
29969 of which portion of the viewed message is currently displayed. The
29970 Ctrl-B key can be used to select the previous item in the same way.
29972 <UL>   
29973 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29974 </UL><P>
29975 &lt;End of help on this topic&gt;
29976 </BODY>
29977 </HTML>
29978 ====== h_config_enable_view_web_host =====
29979 <HTML>
29980 <HEAD>
29981 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
29982 </HEAD>
29983 <BODY>
29984 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
29986 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29987 When this feature is set (the default) Alpine will select possible web hostnames
29988 from the displayed text and display them in boldface for selection.  
29989 This can be useful when you receive messages referencing World Wide Web 
29990 sites without the use of complete URLs; for example, specifying only 
29991 &quot;www.patches.freeiz.com/alpine/&quot; (which will <B>not</B> become a 
29992 selectable 
29993 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
29994 rather than explicitly
29995 &quot;http://www.patches.freeiz.com/alpine/&quot;.  
29997 The first available hostname is displayed in inverse.  This is the
29998 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
29999 the selected hostname via an external application as defined
30000 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30001 variable.
30003 Use the arrow keys (unless you have set the feature 
30004 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30005 to change which of the hostnames displayed in
30006 boldface is the current selection.
30008 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30009 key can be used to select the next web hostname in the message independent
30010 of which portion of the viewed message is currently displayed. The
30011 Ctrl-B key can be used to select the previous web hostnames in the same way.
30013 <UL>   
30014 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30015 </UL><P>
30016 &lt;End of help on this topic&gt;
30017 </BODY>
30018 </HTML>
30019 ====== h_config_enable_view_addresses =====
30020 <HTML>
30021 <HEAD>
30022 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30023 </HEAD>
30024 <BODY>
30025 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30027 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30028 Setting this feature causes Alpine to select possible email addresses
30029 from the displayed text and display them in boldface for selection.  
30032 The first available email address is displayed in inverse.  This is the
30033 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30034 the message composition screen with the To: field filled in with the
30035 selected address.
30037 Use the arrow keys (unless you have set the feature 
30038 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30039 to change which of the hostnames displayed in
30040 boldface is the current selection.
30042 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30043 key can be used to select the next web hostname in the message independent
30044 of which portion of the viewed message is currently displayed. The
30045 Ctrl-B key can be used to select the previous web hostnames in the same way.
30047 <UL>   
30048 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30049 </UL><P>
30050 &lt;End of help on this topic&gt;
30051 </BODY>
30052 </HTML>
30053 ====== h_config_enable_view_arrows =====
30054 <HTML>
30055 <HEAD>
30056 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30057 </HEAD>
30058 <BODY>
30059 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30061 This feature modifies Up and Down arrow key behavior in Alpine's
30062 MESSAGE TEXT screen when selectable Attachments, URL's, or
30063 web-hostnames are presented. Alpine's usual behavior is to move to
30064 the next or previous selectable item if currently displayed or
30065 simply to adjust the screen view by one line.
30069 Setting this feature causes the UP and Down arrow key to behave as
30070 if no selectable items were present in the message.
30074 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30075 item) functionality is unchanged.
30078 &lt;End of help on this topic&gt;
30079 </BODY>
30080 <HTML>
30081 ====== h_config_quell_charset_warning =====
30082 <HTML>
30083 <HEAD>
30084 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30085 </HEAD>
30086 <BODY>
30087 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30089 By default, if the message you are viewing contains characters that are
30090 not representable in your
30091 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30092 then Alpine will
30093 add a warning to the start of the displayed text.
30094 If this option is set, then that editorial message will be suppressed.
30096 Setting this feature also suppresses the comment about the character set
30097 in header lines.
30098 For example, when viewing a message you might see
30100 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30102 in the From header if your Character-Set is something other than ISO-8859-2.
30103 If you set this feature, the comment about the character set will
30104 no longer be there.
30106 &lt;End of help on this topic&gt;
30107 </BODY>
30108 </HTML>
30109 ====== h_config_quell_host_after_url =====
30110 <HTML>
30111 <HEAD>
30112 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
30113 </HEAD>
30114 <BODY>
30115 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
30117 By default, links in HTML text are displayed with the host the link
30118 references appended, within square brackets, to the link text.  Alpine
30119 does this to help indicate where a link will take you, particularly when
30120 the link text might suggest a different destination.
30123 Setting this feature will prevent the server name from being appended
30124 to the displayed text.
30127 &lt;End of help on this topic&gt;
30128 </BODY>
30129 </HTML>
30130 ====== h_config_prefer_plain_text =====
30131 <HTML>
30132 <HEAD>
30133 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
30134 </HEAD>
30135 <BODY>
30136 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
30138 A message being viewed may contain alternate versions of the same content.
30139 Those alternate versions are supposed to be ordered by the sending software such that the
30140 first alternative is the least preferred and the last alternative is the
30141 most preferred. Alpine will normally display the most-preferred version that
30142 it knows how to display. This is most often encountered where the two
30143 alternate versions are a plain text version and an HTML version, with the
30144 HTML version listed last as the most preferred.
30146 If this option is set, then any plain text version will be preferred to
30147 all other versions.
30149 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
30150 which will temporarily change the sense of this option.
30151 If this option is set you will first see the plain text version of a
30152 message.
30153 If you then type the &quot;A&quot; command, you will see the most preferred version,
30154 most likely HTML, instead.
30155 Typing the &quot;A&quot; command a second time will switch it back.
30156 Alternatively, if the present option is not set you will originally see
30157 the most preferred version of the message and typing &quot;A&quot; will switch to
30158 the plain text version.
30160 &lt;End of help on this topic&gt;
30161 </BODY>
30162 </HTML>
30163 ====== h_config_pass_control =====
30164 <HTML>
30165 <HEAD>
30166 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
30167 </HEAD>
30168 <BODY>
30169 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
30171 It is probably not useful to set this option.
30172 This is a legacy option left behind &quot;just in case&quot;.
30173 Multi-byte characters that have an octet that has the same
30174 value as a control character are permitted through whether or not
30175 this option is turned on.
30177 This feature controls how certain characters contained in messages are
30178 displayed.
30179 If set, all characters in a message will be sent to the
30180 screen. Normally, control characters are displayed as shown below to
30181 avoid a garbled screen and to 
30182 avoid inadvertently changing terminal setup parameters.
30183 Control characters are usually displayed as two character sequences like
30184 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
30185 for Control-C,
30186 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
30187 for ESCAPE,
30188 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
30189 for DELETE, and
30190 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
30191 for the character with value 133 (0x85).
30192 (The DEL character is displayed as ^?, regular control characters are displayed
30193 as the character ^ followed by the character obtained by adding the
30194 five low-order bits of the character to 0x40, and the C1
30195 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
30196 character obtained by adding the
30197 five low-order bits of the character to 0x40.)
30198 Sometimes, in cases where changing a single control character into a
30199 two-character sequence would confuse Alpine's display routines,
30200 a question mark is substituted for the control character.
30202 If you wish to filter out regular control characters but pass the
30203 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30204 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.
30206 &lt;End of help on this topic&gt;
30207 </BODY>
30208 </HTML>
30209 ====== h_config_pass_c1_control =====
30210 <HTML>
30211 <HEAD>
30212 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
30213 </HEAD>
30214 <BODY>
30215 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
30217 It is probably not useful to set this option.
30218 This is a legacy option left behind &quot;just in case&quot;.
30219 Multi-byte characters that have an octet that has the same
30220 value as a control character are permitted through whether or not
30221 this option is turned on.
30223 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30224 is set, then this feature has no effect.
30225 However, if you wish to filter out regular control characters but pass the
30226 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30227 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30228 unset and set this feature.
30230 &lt;End of help on this topic&gt;
30231 </BODY>
30232 </HTML>
30233 ====== h_config_fcc_on_bounce =====
30234 <HTML>
30235 <HEAD>
30236 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30237 </HEAD>
30238 <BODY>
30239 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30241 This feature controls an aspect of Alpine's behavior when bouncing a
30242 message. If set, normal FCC ("File Carbon Copy") processing will be
30243 done, just as if you had composed a message to the address you are
30244 bouncing to.  If not set, no FCC of the message will be saved. 
30246 &lt;End of help on this topic&gt;
30247 </BODY>
30248 </HTML>
30249 ====== h_config_show_cursor =====
30250 <HTML>
30251 <HEAD>
30252 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30253 </HEAD>
30254 <BODY>
30255 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30257 This feature controls an aspect of Alpine's displays.  If set, the system
30258 cursor will move to convenient locations in the displays.  For example,
30259 to the beginning of the status field of the highlighted index line, or
30260 to the highlighted word after a successful WhereIs command.  It is intended
30261 to draw your attention to an "interesting" spot on the screen.
30263 &lt;End of help on this topic&gt;
30264 </BODY>
30265 </HTML>
30266 ====== h_config_sort_fcc_alpha =====
30267 <HTML>
30268 <HEAD>
30269 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30270 </HEAD>
30271 <BODY>
30272 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30274 This feature controls an aspect of Alpine's FOLDER LIST screen.
30275 If set, the default Fcc folder will be sorted alphabetically with the other
30276 folders instead of appearing right after the INBOX.
30278 &lt;End of help on this topic&gt;
30279 </BODY>
30280 </HTML>
30281 ====== h_config_sort_save_alpha =====
30282 <HTML>
30283 <HEAD>
30284 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30285 </HEAD>
30286 <BODY>
30287 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30289 This feature controls an aspect of Alpine's FOLDER LIST screen.
30290 If set, the default save folder will be sorted alphabetically with the other
30291 folders instead of appearing right after the INBOX (and default FCC folder).
30293 &lt;End of help on this topic&gt;
30294 </BODY>
30295 </HTML>
30296 ====== h_config_single_list =====
30297 <HTML>
30298 <HEAD>
30299 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30300 </HEAD>
30301 <BODY>
30302 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30304 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30305 the folders will be listed one per line instead of several per line
30306 in the FOLDER LIST display.
30308 &lt;End of help on this topic&gt;
30309 </BODY>
30310 </HTML>
30311 ====== h_config_vertical_list =====
30312 <HTML>
30313 <HEAD>
30314 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30315 </HEAD>
30316 <BODY>
30317 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30319 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30320 the folders will be listed alphabetically down the columns rather
30321 than across the columns as is the default.
30323 &lt;End of help on this topic&gt;
30324 </BODY>
30325 </HTML>
30326 ====== h_config_verbose_post =====
30327 <HTML>
30328 <HEAD>
30329 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30330 </HEAD>
30331 <BODY>
30332 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30333 This feature controls an aspect of Alpine's message sending.  When enabled,
30334 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30335 intended to cause the SMTP server to provide a more detailed account of
30336 the transaction.  This feature is typically only useful to system
30337 administrators and other support personel as an aid in troublshooting
30338 problems.
30340 Note, this feature relies on a specific capability of the system's mail
30341 transport agent or configured 
30342 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30343 It is possible that this
30344 feature will cause problems for some tranport agents, and may result in
30345 sending failure.  In addition, as the verbose output comes from the mail
30346 transport agent, it is likely to vary from one system to another. 
30347 <P><UL>
30348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30349 </UL><P>
30350 &lt;End of help on this topic&gt;
30351 </BODY>
30352 </HTML>
30353 ====== h_config_auto_reply_to =====
30354 <HTML>
30355 <HEAD>
30356 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30357 </HEAD>
30358 <BODY>
30359 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30361 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30362 will not prompt when a message being replied to contains a "Reply-To:"
30363 header value, but will simply use its value (as opposed to using the
30364 "From:" field's value).
30368 Note: Using the "Reply-To:" address is usually the preferred behavior,
30369 however, some mailing list managers choose to place the list's address in
30370 the "Reply-To:" field of any message sent out to the list.  In such
30371 cases, this feature makes it all too easy for personal replies to be
30372 inadvertently sent to the entire mail list, so be careful! 
30374 &lt;End of help on this topic&gt;
30375 </BODY>
30376 </HTML>
30377 ====== h_config_del_skips_del =====
30378 <HTML>
30379 <HEAD>
30380 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30381 </HEAD>
30382 <BODY>
30383 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30385 This feature controls an aspect of Alpine's Delete command.  If set, this
30386 feature will cause the Delete command to advance past following messages that
30387 are marked deleted.  In other words, pressing "D" will both mark the
30388 current message deleted and advance to the next message that is not marked
30389 deleted.
30390 This feature is set by default.
30392 &lt;End of help on this topic&gt;
30393 </BODY></HTML>
30394 ====== h_config_expunge_manually =====
30395 <HTML>
30396 <HEAD>
30397 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30398 </HEAD>
30399 <BODY>
30400 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30402 Normally, when you close a folder that contains deleted messages you are
30403 asked if you want to expunge those messages from the folder permanently.
30404 If this feature is set, you won't be asked and the deleted messages will
30405 remain in the folder.
30406 If you choose to set this feature you will have to expunge the
30407 messages manually using the eXpunge command, which you can use while
30408 in the MESSAGE INDEX screen.
30409 If you do not expunge deleted messages the size of your
30410 folder will continue to increase until you are out of disk space.
30412 <UL>   
30413 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30414 </UL><P>
30415 &lt;End of help on this topic&gt;
30416 </BODY>
30417 </HTML>
30418 ====== h_config_auto_expunge =====
30419 <HTML>
30420 <HEAD>
30421 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30422 </HEAD>
30423 <BODY>
30424 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30426 This features controls an aspect of Alpine's eXpunge command.  If set, you
30427 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30428 place.
30429 Actually, this is only true for the INBOX folder and for folders in the
30430 Incoming Folders collection. See the feature
30431 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30433 <UL>   
30434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30435 </UL><P>
30436 &lt;End of help on this topic&gt;
30437 </BODY>
30438 </HTML>
30439 ====== h_config_full_auto_expunge =====
30440 <HTML>
30441 <HEAD>
30442 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30443 </HEAD>
30444 <BODY>
30445 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30447 This features controls an aspect of Alpine's eXpunge command.  If set, you
30448 will <B>not</B> be prompted to confirm your intent before the expunge 
30449 takes place.  This feature sets this behavior for all folders, unlike the
30450 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30451 feature that works only for incoming folders.
30453 <UL>   
30454 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30455 </UL><P>
30456 &lt;End of help on this topic&gt;
30457 </BODY>
30458 </HTML>
30459 ====== h_config_auto_read_msgs =====
30460 <HTML>
30461 <HEAD>
30462 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30463 </HEAD>
30464 <BODY>
30465 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30466 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30467 and the 
30468 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30469 option is also set, then Alpine will
30470 automatically transfer all read messages to the designated folder and mark
30471 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30472 &quot;N&quot; (meaning New, or unseen) are not affected.
30474 <UL>   
30475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30476 </UL><P>
30477 &lt;End of help on this topic&gt;
30478 </BODY>
30479 </HTML>
30480 ====== h_config_auto_fcc_only =====
30481 <HTML>
30482 <HEAD>
30483 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30484 </HEAD>
30485 <BODY>
30486 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30487 This features controls an aspect of Alpine's composer.
30488 The only time this feature will be used is if you attempt to send mail
30489 that has no recipients but does have an Fcc.
30490 Normally, Alpine will ask if you really mean to copy the message only to
30491 the Fcc.
30492 That is, it asks if you really meant to have no recipients.
30493 If this feature is set, you
30494 will <B>not</B> be prompted to confirm your intent to make only a copy
30495 of a message with no recipients.
30497 This feature is closely related to
30498 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30499 The difference between this feature and that feature is that this feature
30500 considers a Bcc to be a recipient while that feature will ask for confirmation
30501 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30502 The default values also differ. This feature defaults to asking the question
30503 and you have to turn it off.
30504 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30505 unless you turn it on.
30508 <UL>   
30509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30510 </UL><P>
30511 &lt;End of help on this topic&gt;
30512 </BODY>
30513 </HTML>
30514 ====== h_config_mark_fcc_seen =====
30515 <HTML>
30516 <HEAD>
30517 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30518 </HEAD>
30519 <BODY>
30520 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30522 This features controls the way Fccs (File carbon copies) are
30523 made of the messages you send.
30526 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30527 copy will be marked as Unseen.
30528 When you look at the folder it was saved in the message will appear to
30529 be a New message until you read it.
30530 When this feature is enabled, the message will be marked as having
30531 been Seen.
30534 <UL>   
30535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30536 </UL><P>
30537 &lt;End of help on this topic&gt;
30538 </BODY>
30539 </HTML>
30540 ====== h_config_no_fcc_attach =====
30541 <HTML>
30542 <HEAD>
30543 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30544 </HEAD>
30545 <BODY>
30546 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30548 This features controls the way Fcc's (File carbon copies) are
30549 made of the messages you send.
30552 Normally, Alpine saves an exact copy of your message as it was sent.
30553 When this feature is enabled, the &quot;body&quot; of the message
30554 you send (the text you type in the composer) is preserved in the 
30555 copy as before, however all attachments are replaced with text
30556 explaining what had been sent rather than the attachments themselves.
30559 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30560 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30561 allows you to interactively set whether or not attachments are saved
30562 to the Fcc'd copy.
30565 <UL>   
30566 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30567 </UL><P>
30568 &lt;End of help on this topic&gt;
30569 </BODY>
30570 </HTML>
30571 ====== h_config_read_in_newsrc_order =====
30572 <HTML>
30573 <HEAD>
30574 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30575 </HEAD>
30576 <BODY>
30577 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30579 This feature controls the order in which newsgroups will be presented.  If
30580 set, they will be presented in the same order as they occur in your 
30581 <!--chtml if pinemode="os_windows"-->
30582 &quot;NEWSRC&quot;
30583 <!--chtml else-->
30584 &quot;.newsrc&quot;
30585 <!--chtml endif-->
30586 file (the default location of which can be changed with the 
30587 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30589 If not set, the newsgroups will be presented in alphabetical order.
30591 <UL>   
30592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30593 </UL><P>
30594 &lt;End of help on this topic&gt;
30595 </BODY>
30596 </HTML>
30597 ====== h_config_quell_tz_comment =====
30598 <HTML>
30599 <HEAD>
30600 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30601 </HEAD>
30602 <BODY>
30603 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30605 Normally, when Alpine generates a Date header for outgoing mail,
30606 it will try to include the symbolic timezone at the end of the
30607 header inside parentheses.
30608 The symbolic timezone is often three characters long, but on
30609 some operating systems, it may be longer.
30610 Apparently there are some SMTP servers in the world that will reject an
30611 incoming message if it has a Date header longer than about 80 characters.
30612 If this feature is set, the symbolic timezone normally generated by
30613 Alpine will not be included.
30614 You probably don't need to worry about this feature unless you run into
30615 the problem described above.
30618 &lt;End of help on this topic&gt;
30619 </BODY>
30620 </HTML>
30621 ====== h_config_post_wo_validation =====
30622 <HTML>
30623 <HEAD>
30624 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30625 </HEAD>
30626 <BODY>
30627 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30629 This feature controls whether the NNTP server is queried as newsgroups
30630 are entered for posting.  Validation over slow links (e.g. dialup using
30631 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30633 &lt;End of help on this topic&gt;
30634 </BODY>
30635 </HTML>
30636 ====== h_config_send_wo_confirm =====
30637 <HTML>
30638 <HEAD>
30639 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30640 </HEAD>
30641 <BODY>
30642 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30644 By default, when you send or post a message you will be asked to confirm
30645 with a question that looks something like:
30648 <CENTER><SAMP>Send message?</SAMP></CENTER>
30651 If this feature is set, you
30652 will <B>not</B> be prompted to confirm your intent to send
30653 and your message will be sent.
30655 If this feature is set it disables some possibilities and renders some
30656 other features meaningless.
30657 You will not be able to use
30658 <A HREF="h_config_sending_filter">Sending Filters</A>,
30659 Verbose sending mode,
30660 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30661 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30662 or ^V to turn off the generation of flowed text for this message.
30663 These options are normally available as suboptions in the Send prompt, but
30664 with no Send prompt the options are gone.
30667 A somewhat related feature is
30668 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30669 which may be used to eliminate the extra confirmation
30670 question when posting to a newsgroup.
30672 <UL>   
30673 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30674 </UL><P>
30675 &lt;End of help on this topic&gt;
30676 </BODY>
30677 </HTML>
30678 ====== h_config_quell_filtering_done_message =====
30679 <HTML>
30680 <HEAD>
30681 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30682 </HEAD>
30683 <BODY>
30684 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30686 If you use Filter Rules that move messages or set status of messages
30687 you sometimes see a message from Alpine that looks like
30690 <CENTER><SAMP>filtering done</SAMP></CENTER>
30693 If this feature is set, this message will be suppressed.
30694 If the feature
30695 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30696 is set then this message will be suppressed regardless.
30699 <UL>   
30700 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30701 </UL><P>
30702 &lt;End of help on this topic&gt;
30703 </BODY>
30704 </HTML>
30705 ====== h_config_quell_filtering_messages =====
30706 <HTML>
30707 <HEAD>
30708 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30709 </HEAD>
30710 <BODY>
30711 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30713 If you use Filter Rules that move messages or set status of messages
30714 you sometimes see messages from Alpine that look like
30717 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30723 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30729 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30732 If this feature is set, these messages will be suppressed.
30733 The feature
30734 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30735 is related.
30738 <UL>   
30739 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30740 </UL><P>
30741 &lt;End of help on this topic&gt;
30742 </BODY>
30743 </HTML>
30744 ====== h_config_quell_post_prompt =====
30745 <HTML>
30746 <HEAD>
30747 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30748 </HEAD>
30749 <BODY>
30750 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30752 By default, when you post a message to a newsgroup you are asked to confirm
30753 that you want to post with the question
30756 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30759 If this feature is set, you
30760 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30761 and your message will be posted.
30764 <UL>   
30765 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30766 </UL><P>
30767 &lt;End of help on this topic&gt;
30768 </BODY>
30769 </HTML>
30770 ====== h_config_check_mail_onquit =====
30771 <HTML>
30772 <HEAD>
30773 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30774 </HEAD>
30775 <BODY>
30776 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30778 If this feature is set, Alpine will check for new mail after you give the
30779 Quit command.
30780 If new mail has arrived since the previous check, you will be notified
30781 and given the choice of quitting or not quitting.
30783 <UL>   
30784 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30785 </UL><P>
30786 &lt;End of help on this topic&gt;
30787 </BODY>
30788 </HTML>
30789 ====== h_config_inbox_no_confirm =====
30790 <HTML>
30791 <HEAD>
30792 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30793 </HEAD>
30794 <BODY>
30795 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30797 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30798 command and there are no more folders or newsgroups to visit, you are asked
30799 if you want to return to the INBOX.
30800 If this feature is set you will not be asked.
30801 It will be assumed that you do want to return to the INBOX.
30803 <UL>   
30804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30805 </UL><P>
30806 &lt;End of help on this topic&gt;
30807 </BODY>
30808 </HTML>
30809 ====== h_config_dates_to_local =====
30810 <HTML>
30811 <HEAD>
30812 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30813 </HEAD>
30814 <BODY>
30815 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30817 Normally, the message dates that you see in the
30818 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30819 For example, if a message was sent to you from a few timezones to the east
30820 it might appear that it was sent from the future;
30821 or if it was sent from somewhere to the west it might appear
30822 as if it is from yesterday even though it was sent only a few minutes ago.
30823 If this feature is set an attempt will be made to convert the dates
30824 to your local timezone to be displayed.
30826 Note that this does not affect the results of Select by Date or of
30827 anything else other than these displayed dates.
30828 When viewing the message you may look at the original unconverted value of the Date
30829 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30831 <UL>   
30832 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30833 </UL><P>
30834 &lt;End of help on this topic&gt;
30835 </BODY>
30836 </HTML>
30837 ====== h_config_tab_no_prompt =====
30838 <HTML>
30839 <HEAD>
30840 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
30841 </HEAD>
30842 <BODY>
30843 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
30845 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30846 command and there is a problem checking a folder, you are asked
30847 whether you want to continue with the search in the following folder or not.
30848 This question gives you a chance to stop the NextNew processing.
30849 (The checking problem might be caused by the fact that the folder does not
30850 exist, or by an authentication problem, or by a server problem
30851 of some sort.)
30854 If this feature is set you will not be asked.
30855 It will be assumed that you do want to continue.
30857 <UL>   
30858 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30859 </UL><P>
30860 &lt;End of help on this topic&gt;
30861 </BODY>
30862 </HTML>
30863 ====== h_config_input_history =====
30864 <HTML>
30865 <HEAD>
30866 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
30867 </HEAD>
30868 <BODY>
30869 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
30871 Many of the prompts that ask for input in the status line near the
30872 bottom of the screen will respond to Up Arrow and Down Arrow
30873 with the history of previous entries.
30874 For example, in the MESSAGE INDEX screen when you use the WhereIs
30875 command the text you entered will be remembered and can be recalled
30876 by using the Up Arrow key.
30877 Another example, when saving a message the folders saved to will
30878 be remembered and can be recalled using the arrow keys.
30880 In the Save prompt, some users prefer that the Up and Down arrow keys
30881 be used for the Previous Collection and Next Collection commands
30882 instead of for a history of previous saves.
30883 If this option is set the Up and Down arrow keys will become synonyms for the
30884 Previous Collection and Next Collection (^P and ^N) commands in the
30885 prompt for the name of a folder to Save to or in the prompt for the
30886 name of a folder to GoTo.
30887 When this feature is not set (the default), ^P and ^N will change the
30888 collection and the arrow keys will show the history.
30890 <UL>   
30891 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30892 </UL><P>
30893 &lt;End of help on this topic&gt;
30894 </BODY>
30895 </HTML>
30896 ====== h_config_confirm_role =====
30897 <HTML>
30898 <HEAD>
30899 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
30900 </HEAD>
30901 <BODY>
30902 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
30904 If you have roles, when you Reply to or Forward a message, or Compose
30905 a new message, Alpine
30906 will search through your roles for one that matches.
30907 Normally, if no matches are found you will be placed into the composer
30908 with no opportunity to select a role.
30909 If this feature is set, then you will be asked to confirm that you don't
30910 want a role.
30911 This will give you the opportunity to select a role (with the ^T command).
30912 If you confirm no role with a Return, you will be placed in
30913 the composer with no role.
30914 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
30915 These behave the same as if you pressed the Return.
30916 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
30917 match what you might type if there was a role match.)
30919 If you are using the alternate form of the Compose command called
30920 &quot;Role&quot;, then all of your roles will be available to you,
30921 independent of the value of this feauture and of the values set for all of
30922 Reply Use, Forward Use, and Compose Use.
30924 <UL>   
30925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30926 </UL><P>
30927 &lt;End of help on this topic&gt;
30928 </BODY>
30929 </HTML>
30930 ====== h_config_news_cross_deletes =====
30931 <HTML>
30932 <HEAD>
30933 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
30934 </HEAD>
30935 <BODY>
30936 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
30938 This feature controls what Alpine does when you delete a message in a
30939 newsgroup that appears in more than one newsgroup.  Such a message
30940 is sometimes termed a &quot;crossposting&quot; in that it was posted
30941 across several newsgroups.
30944 Alpine's default behavior when you delete such a message is to remove
30945 only the copy in the current newsgroup from view when you use the
30946 &quot;Exclude&quot; command or the next time you visit the newsgroup.
30949 Enabling this feature causes Alpine to remove every occurrence of the
30950 message from all newsgroups it appears in and to which you are
30951 subscribed.
30954 NOTE: As currently implemented, enabling this feature may increase the
30955 time it takes the Expunge command and newsgroup closing to complete.
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_news_catchup =====
30965 <HTML>
30966 <HEAD>
30967 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
30968 </HEAD>
30969 <BODY>
30970 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
30972 This feature controls what Alpine does as it closes a newsgroup.
30973 When set, Alpine will offer to delete all messages from the newsgroup
30974 as you are quitting Alpine or opening a new folder.
30977 This feature is useful if you typically read all the interesting messages
30978 in a newsgroup each time you open it.  This feature saves you from
30979 having to delete each message in a newsgroup as you read it or from
30980 selecting all the messages and doing an
30981 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
30982 move on to the next folder or newsgroup.
30985 <UL>   
30986 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30987 </UL><P>
30988 &lt;End of help on this topic&gt;
30989 </BODY>
30990 </HTML>
30991 ====== h_config_next_thrd_wo_confirm =====
30992 <HTML>
30993 <HEAD>
30994 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
30995 </HEAD>
30996 <BODY>
30997 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
30999 This feature controls an aspect of Alpine's Next and Prev commands in
31000 the case where you are using one of the
31001 &quot;separate-index-screen&quot; styles for the configuration option
31002 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31003 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31004 When you are Viewing a particular thread you have a
31005 MESSAGE INDEX of only the messages in that thread.
31006 If you press the Next command with the last message in the thread highlighted
31007 you will normally be asked if you want to &quot;View next thread?&quot;,
31008 assuming there is a next thread to view.
31009 If this feature is set it will be assumed that you always want to view the
31010 next thread and you won't be asked to confirm that.
31011 Similarly, if the first message of the thread is highlighted and you
31012 press the Prev command, this feature will prevent the question
31013 &quot;View previous thread&quot;.
31015 This feature only has an effect in the MESSAGE INDEX screen.
31016 If you then view a particular message from that screen and press the
31017 Next command, you will be sent to the next thread without being asked,
31018 independent of the setting of this feature.
31020 The feature
31021 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31023 &lt;End of help on this topic&gt;
31024 </BODY>
31025 </HTML>
31026 ====== h_config_kw_braces =====
31027 <HTML>
31028 <HEAD>
31029 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31030 </HEAD>
31031 <BODY>
31032 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31034 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31035 TEXT screens.
31036 If you have modified the
31037 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31038 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31039 are used to display keywords or their initials along with the Subject; then
31040 this option may be used to modify the resulting display slightly.
31041 By default, the keywords or initials displayed for these tokens will be
31042 surrounded with curly braces ({ and }) and a trailing space.
31043 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31044 a message, the &quot;SUBJKEY&quot; token will normally look like
31046 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31048 and the SUBJKEYINIT token would look like
31050 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31052 The default character before the keywords is the left brace ({) and the
31053 default after the keywords is the right brace followed by a space (} ).
31055 This option allows you to change that.
31056 You should set it to two values separated by a space.
31057 The values may be quoted if they include space characters.
31058 So, for example, the default value could be specified explicitly by setting this
31059 option to
31061 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31063 The first part wouldn't need to be quoted (but it doesn't hurt).
31064 The second part does need the quotes because it includes a space character.
31065 If you wanted to change the braces to brackets you could use
31067 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31069 Inside the quotes you can use backslash quote to mean quote, so
31071 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31073 would produce
31075 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31077 It is also possible to color keywords in the index using the
31078 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31080 It is not possible to change the fact that a space character is used to
31081 separate the keywords if more than one keyword is set for a message.
31082 It is also not possible to change the fact that there are no separators
31083 between the keyword initials if more than one keyword is set.
31085 &lt;End of help on this topic&gt;
31086 </BODY>
31087 </HTML>
31088 ====== h_config_opening_sep =====
31089 <HTML>
31090 <HEAD>
31091 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31092 </HEAD>
31093 <BODY>
31094 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31096 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31097 With some setups the text of the subject is followed
31098 by the opening text of the message if there is any room available in the index line.
31099 If you have configured your
31100 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31101 to include one of the Subject tokens that causes this behavior
31102 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
31103 to modify what is displayed slightly.
31104 By default, the Subject is separated from the opening text of the message by
31105 the three characters space dash space;
31107 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
31109 Use this option to set it to something different.
31110 The value must be quoted if it includes any space characters.
31111 For example, the default value could be specified explicitly by setting this
31112 option to
31114 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
31116 &lt;End of help on this topic&gt;
31117 </BODY>
31118 </HTML>
31119 ====== h_config_select_wo_confirm =====
31120 <HTML>
31121 <HEAD>
31122 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
31123 </HEAD>
31124 <BODY>
31125 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
31127 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
31128 These commands all take text input to specify the name of the folder or
31129 file to be used, but allow you to press ^T for a list of possible names.
31130 If set, the selected name will be used immediately, without further
31131 opportunity to confirm or edit the name.
31133 Some related help topics are
31134 <UL>
31135 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
31136 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
31137 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
31138 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
31139 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
31140 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
31141 </UL>
31143 &lt;End of help on this topic&gt;
31144 </BODY>
31145 </HTML>
31146 ====== h_config_save_part_wo_confirm =====
31147 <HTML>
31148 <HEAD>
31149 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
31150 </HEAD>
31151 <BODY>
31152 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
31154 This feature controls an aspect of Alpine's Save command.
31155 By default, when you Save a message that has some deleted parts, you will
31156 be asked to confirm that you want to Save with a prompt that looks like:
31158 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
31160 If this feature is set, you will not be asked.
31162 &lt;End of help on this topic&gt;
31163 </BODY>
31164 </HTML>
31165 ====== h_config_use_resentto =====
31166 <HTML>
31167 <HEAD>
31168 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
31169 </HEAD>
31170 <BODY>
31171 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
31173 This feature is turned off by default because turning it on causes problems
31174 with some deficient IMAP servers.
31175 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
31176 <A HREF="h_rule_patterns">Pattern</A>
31177 contains a To header pattern and this feature is turned on,
31178 then a check is made in the message to see
31179 if a Resent-To header is present, and that is used instead of the To header.
31180 If this feature is not turned on, then the regular To header will always
31181 be used.
31184 &lt;End of help on this topic&gt;
31185 </BODY>
31186 </HTML>
31187 ====== h_config_use_reg_start_for_stayopen =====
31188 <HTML>
31189 <HEAD>
31190 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
31191 </HEAD>
31192 <BODY>
31193 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
31195 This feature affects which message is selected as the current message
31196 when you enter a
31197 <A HREF="h_config_permlocked">Stay Open</A> folder.
31199 Normally, the starting position for an incoming folder (which most Stay Open
31200 folders will likely be) is controlled by the
31201 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
31202 However, if a folder is a Stay Open folder, when you re-enter the folder
31203 after the first time the current message will be the same as it was when
31204 you left the folder.
31205 An exception is made if you use the TAB command to get to the folder.
31206 In that case, the message number will be incremented by one from what it
31207 was when you left the folder.
31209 The above special behavior is thought to be useful.
31210 However, it is special and different from what you might at first expect.
31211 If this feature is set, then Stay Open folders will not be treated specially
31212 as far as the startup rule is concerned.
31215 &lt;End of help on this topic&gt;
31216 </BODY>
31217 </HTML>
31218 ====== h_config_use_current_dir =====
31219 <HTML>
31220 <HEAD>
31221 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
31222 </HEAD>
31223 <BODY>
31224 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31226 This feature controls an aspect of several commands. 
31227 If set, your &quot;current working directory&quot; 
31228 <!--chtml if pinemode="running"-->
31229 (which, at least for your current Alpine &quot;session,&quot; 
31230 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31231 <!--chtml endif-->
31232 will be used instead of your home directory 
31233 <!--chtml if pinemode="running"-->
31234 (which, in the present configuration of your system, is
31235  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31236 <!--chtml endif-->
31237 for all of the following operations:<UL>
31238     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31239     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31240     <LI> <!--chtml if pinemode="function_key"-->F4
31241          <!--chtml else-->Ctrl-R
31242          <!--chtml endif--> file inclusion in the COMPOSER
31243     <LI> <!--chtml if pinemode="function_key"-->F5
31244          <!--chtml else-->Ctrl-J
31245          <!--chtml endif--> file attachment in the COMPOSER
31246 </UL>
31247 <!--chtml if pinemode="os_windows"-->
31249 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31250 you can set the &quot;current drive&quot; 
31251 by specifying it in the &quot;Start in:&quot; 
31252 box found in the Shortcut tab of the Properties.  
31253 <!--chtml endif-->
31255 <UL>   
31256 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31257 </UL>
31260 &lt;End of help on this topic&gt;
31261 </BODY>
31262 </HTML>
31263 ====== h_config_save_wont_delete =====
31264 <HTML>
31265 <HEAD>
31266 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31267 </HEAD>
31268 <BODY>
31269 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31271 This feature controls one aspect of the Save command.  If set, Save will
31272 not mark the message &quot;deleted&quot; (its default behavior) after
31273 it has been copied to the designated folder.
31276 &lt;End of help on this topic&gt;
31277 </BODY>
31278 </HTML>
31279 ====== h_config_use_boring_spinner =====
31280 <HTML>
31281 <HEAD>
31282 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31283 </HEAD>
31284 <BODY>
31285 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31287 When Alpine is delayed for some reason it usually shows that
31288 something is happening with a small animated display in the status
31289 message line near the bottom of the screen.
31290 Setting this feature will cause that animation to be the same
31291 each time instead of having Alpine choose a random animation.
31292 You may turn the animation off altogether by setting the
31293 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31294 option to zero.
31297 &lt;End of help on this topic&gt;
31298 </BODY>
31299 </HTML>
31300 ====== h_config_unsel_wont_advance =====
31301 <HTML>
31302 <HEAD>
31303 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31304 </HEAD>
31305 <BODY>
31306 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31308 This feature controls one aspect of the Unselect Current message command.
31309 Normally, when the Unselect current message command (:) is typed when the
31310 current message is selected, the message will be unselected and the next
31311 message will become the current message.
31312 If this feature is set, the cursor will not advance to the next message.
31313 Instead, the current message will remain the current message after
31314 unselecting.
31317 &lt;End of help on this topic&gt;
31318 </BODY>
31319 </HTML>
31320 ====== h_config_prune_uses_iso =====
31321 <HTML>
31322 <HEAD>
31323 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31324 </HEAD>
31325 <BODY>
31326 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31328 By default, Alpine asks monthly whether or not you would like to rename
31329 some folders to a new name containing the date.
31330 It also asks whether or not you would like to delete some old folders.
31331 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31332 explanation.
31335 By default, the name used when renaming a folder looks like
31337 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31339 For example, the first time you run Alpine in May of 2004,
31340 the folder &quot;sent-mail&quot; might be renamed to
31342 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31344 If this feature is set, the name used will be of the form
31346 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31348 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31349 month (01, 02, ..., 12).
31350 For the April, 2004 example above, it would instead be
31352 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31354 because April is the 4th month of the year.
31355 A reason you might want to set this feature is so that the folders
31356 will sort in chronological order.
31359 &lt;End of help on this topic&gt;
31360 </BODY>
31361 </HTML>
31362 ====== h_config_save_advances =====
31363 <HTML>
31364 <HEAD>
31365 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31366 </HEAD>
31367 <BODY>
31368 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31370 This feature controls one aspect of the Save command.  If set, Save will
31371 (in addition to copying the current message to the designated folder) also
31372 advance to the next message.
31375 &lt;End of help on this topic&gt;
31376 </BODY>
31377 </HTML>
31378 ====== h_config_force_arrow =====
31379 <HTML>
31380 <HEAD>
31381 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31382 </HEAD>
31383 <BODY>
31384 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31386 This feature affects Alpine's MESSAGE INDEX display routine.
31387 If set, the normal inverse-video cursor will be
31388 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31389 second column of the index display.
31391 This is the same index cursor you get if you turn on
31392 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31393 line coloring will still be present if this feature is turned on and
31394 <!--#echo var="FEAT_assume-slow-link"--> is off.
31396 An alternative version of the Arrow cursor is available by including the
31397 <A HREF="h_config_index_arrow_color">ARROW</A>
31398 token in the
31399 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31401 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31402 but that is not implemented.
31405 &lt;End of help on this topic&gt;
31406 </BODY>
31407 </HTML>
31408 ====== h_config_ignore_size =====
31409 <HTML>
31410 <HEAD>
31411 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31412 </HEAD>
31413 <BODY>
31414 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31416 When you have an account residing in an IMAP server, Alpine records the 
31417 size of each message as reported by the server. However, when Alpine saves 
31418 a message in such IMAP server, Alpine will compute the size of the message 
31419 independently, from the data it received. If these two numbers do not 
31420 match for a message, Alpine asks you if you still want to take the risk of 
31421 saving such message, since data corruption or loss of data could result 
31422 from this save.
31425 Sometimes the root of this problem is that the IMAP server does not 
31426 compute sizes correctly, and there will not be loss of information when 
31427 saving such message. Enabling this feature will make Alpine ignore such 
31428 error and continue saving the message without producing any warnings or 
31429 ever stopping the process, as if there had not been any error. This option 
31430 applies to all IMAP servers that you use, so if you enable this feature, 
31431 size discrepancy warnings will not be given for any IMAP server you 
31432 connect to.
31435 Example of a server where you could reproduce this problem is the Gmail 
31436 IMAP server. Another example can be found in some versions of the Exchange 
31437 server.
31440 It is recommended that this feature be disabled most of the time and only 
31441 enabled when you find a server which you can determine that has the above 
31442 mentioned defect, but be disabled again after making the save operation 
31443 succeed.
31446 &lt;End of help on this topic&gt;
31447 </BODY>
31448 </HTML>
31449 ====== h_config_force_low_speed =====
31450 <HTML>
31451 <HEAD>
31452 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31453 </HEAD>
31454 <BODY>
31455 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31457 UNIX Alpine only.
31459 This feature affects Alpine's display routines.  If set, the normal
31460 inverse-video cursor (used to highlight the current item in a list) will be
31461 replaced by an &quot;arrow&quot; cursor and other
31462 screen update optimizations for
31463 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31464 One of the optimizations is that colored index lines (set up with Indexcolor
31465 Rules) will not be colored.
31466 If you are just turning this feature on because you like using
31467 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31468 coloring by turning this feature off and the
31469 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31472 &lt;End of help on this topic&gt;
31473 </BODY>
31474 </HTML>
31475 ====== h_config_show_delay_cue =====
31476 <HTML>
31477 <HEAD>
31478 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31479 </HEAD>
31480 <BODY>
31481 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31483 If set, this feature will cause an asterisk to appear in the upper
31484 left-hand corner of the screen whenever Alpine checks for new mail.
31485 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31486 mailbox to disk.
31488 <!--chtml if pinemode="os_windows"-->
31490 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31491 it is trying to open a network connection (e.g, to open your INBOX
31492 on an IMAP
31493 server) or read from the network connection.  A greater-than symbol,
31494 will be displayed when PC-Alpine is trying to write to the network
31495 connection (e.g, sending a command to your IMAP server).
31496 <!--chtml endif-->
31499 &lt;End of help on this topic&gt;
31500 </BODY>
31501 </HTML>
31502 ====== h_config_color_style =====
31503 <HTML>
31504 <HEAD>
31505 <TITLE>OPTION: Color Style</TITLE>
31506 </HEAD>
31507 <BODY>
31508 <H1>OPTION: Color Style</H1>
31510 UNIX Alpine only.
31512 If the terminal or terminal emulator you are using is capable of displaying
31513 colors, this option controls whether or not color will be used in Alpine.
31514 If you turn color on and things are set up correctly,
31515 you should see color appear on the screen immmediately.
31516 Modern terminal emulators are usually capable of displaying colors.
31518 The available options include:
31521 <DL>
31522 <DT>no-color</DT>
31523 <DD>Don't use color.
31524 </DD>
31526 <DT>use-termdef</DT>
31527 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31528 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31529 how Alpine was compiled.
31530 This is a good option to choose if you switch between a color and a non-color
31531 terminal with the same Alpine configuration.
31532 Alpine will know to use color on the color terminal because it is described
31533 in the termcap entry, and Alpine will know to use black and white on the
31534 non-color terminal.
31535 The Alpine Technical Notes
31536 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31537 have more information on configuring a TERMCAP or TERMINFO
31538 entry for color Alpine.
31539 This is usually something a system administrator does.
31540 </DD>
31542 <DT>force-ansi-8color</DT>
31543 <DD>This is probably the setting that most people should use.
31544 Because setting up a termcap entry is confusing and because the
31545 terminal capabilities database is often not correctly configured for color,
31546 this choice and the next may be easier for you to use.
31547 If your terminal emulator responds to ANSI color escape sequences, which
31548 many do, this option will cause Alpine to believe your terminal will respond
31549 to the escape sequences that produce eight different foreground and background
31550 colors.
31551 The escape sequences used to set the foreground colors are
31553   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31555 where the color_number is an ASCII digit between 0 and 7.
31556 The numbers 0 through 7 should correspond to the colors black, red, green,
31557 yellow, blue, magenta, cyan, and white.
31558 Some terminal emulators use a pre-ANSI scheme that swaps
31559 the colors blue and red and the colors yellow and cyan.
31560 This will cause the default colors to be different, but other than that
31561 things should work fine.
31562 There is also a 9th color available, the last one shown, which is the default
31563 color from the terminal emulator.
31564 When used as a background color some people refer to this color as
31565 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31566 shown in the color swatch of the SETUP COLOR screen.
31567 The foreground transparent color is shown as
31568 the color of the &quot;TRAN&quot; text.
31569 (The transparent color will not work correctly in a PC-Alpine configuration.)
31570 The escape sequences used to set the background colors are the same
31571 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31572 The escape sequences for foreground and background default colors (transparent)
31573 are 39m and 49m.
31575 Note: With the Tera Term terminal emulator this setting works well.
31576 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31577 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31578 menu, in the &quot;Window&quot; submenu.
31579 </DD>
31581 <DT>force-ansi-16color</DT>
31582 <DD>Many terminal emulators know about the same eight colors above
31583 plus eight more.
31584 This option attempts to use all 16 colors.
31585 The same escape sequences as for the eight-color terminal are used
31586 for the first eight colors.
31587 The escape sequences used to set foreground colors 8-15 are the same as
31588 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31589 The background color sequences for colors 8-15 are the same as for 0-7
31590 except the &quot;4&quot; is replaced with &quot;10&quot;.
31591 You can tell if the 16 colors are working by turning on this option
31592 and then going into one of the color configuration screens, for example,
31593 the configuration screen for Normal Color.
31594 If you see 16 different colors to select from (plus a 17th for
31595 the transparent color), it's working.
31596 </DD>
31598 <DT>force-xterm-256color</DT>
31599 <DD>Some versions of xterm (and some other terminal emulators)
31600 have support for 256 colors.
31601 The escape sequences used to set the foreground colors are
31603   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31605 where the color_number is an ASCII digit between 0 and 255.
31606 Background colors are the same with the 38 replaced with a 48.
31607 The numbers 0 through 15 are probably similar to the 16 color version
31608 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31609 The terminal default (transparent) color is the 257th color at the bottom.
31610 Some terminal emulators will misinterpret these escape sequences causing
31611 the terminal to blink or overstrike characters or to do something else
31612 undesirable.
31614 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31615 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31616 this 256-color setting.
31618 </DD>
31619 </DL>
31622 The normal default is &quot;no-color&quot;.
31625 Once you've turned on color you may set the
31626 colors of many objects on the screen individually.
31627 For example, you may add colors to the status letters on the MESSAGE
31628 INDEX page.
31629 Most categories of color that Alpine supports are configurable here.
31630 For example, &quot;Normal Color&quot;
31631 is the color used to display most of the text in Alpine, and
31632 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31633 current message in the MESSAGE INDEX.
31635 Lines in the MESSAGE INDEX may also be colored.
31636 Use Setup Rules to get to the Indexcolor configuration screen.
31639 <UL>   
31640 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31641 </UL><P>
31642 &lt;End of help on this topic&gt;
31643 </BODY>
31644 </HTML>
31645 ====== h_config_disable_index_locale_dates =====
31646 <HTML>
31647 <HEAD>
31648 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31649 </HEAD>
31650 <BODY>
31651 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31653 This feature affects the display of dates in the MESSAGE INDEX.
31654 Normally an attempt is made to localize the dates
31655 used in the MESSAGE INDEX display to your locale.
31656 This is controlled with the
31657 LC_TIME locale setting on a UNIX system.
31658 On Windows the Regional Options control panel may be used to set the date format.
31659 At the programming level, Alpine is using the strftime routine
31660 to print the parts of a date.
31662 If this feature is set, dates are displayed in English and
31663 with the conventions of the United States.
31666 <UL>   
31667 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31668 </UL><P>
31669 &lt;End of help on this topic&gt;
31670 </BODY>
31671 </HTML>
31672 ====== h_config_auto_open_unread =====
31673 <HTML>
31674 <HEAD>
31675 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31676 </HEAD>
31677 <BODY>
31678 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
31680 This feature controls the behavior of the TAB key when traversing folders
31681 in the optional 
31682 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
31683 collection or in optional <!--#echo var="VAR_news-collections"-->.
31685 When the TAB
31686 (<A HREF="h_common_nextnew">NextNew</A>)
31687 key is pressed, and there
31688 are no more unseen messages in the current (incoming message or news)
31689 folder, Alpine will search the list of folders in the current collection for
31690 one containing New or Recent (new since the last time the folder was
31691 opened) messages.
31692 This behavior may be modified slightly with the
31693 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31694 feature that causes Alpine to look for Unseen messages instead of Recent
31695 messages.
31696 Normally, when such a folder is found, Alpine will ask
31697 whether you wish to open the folder.  If this feature is set, Alpine will
31698 automatically open the folder without prompting.
31700 This feature also affects some other similar situations.
31701 If you have a
31702 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31703 that is equal to one of the &quot;separate-&quot; values, and you are
31704 viewing a thread; then when you type the NextNew command and are at the
31705 end of the current thread you will automatically go to the next thread
31706 if this feature is set.
31707 By default, you would be asked if you want to view the next thread.
31708 You will also be asked at times whether or not you want to view the next
31709 thread after you delete the last message in the thread.
31710 Setting this feature will also cause that question to be skipped.
31713 <UL>   
31714 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31715 </UL><P>
31716 &lt;End of help on this topic&gt;
31717 </BODY>
31718 </HTML>
31719 ====== h_config_auto_include_reply =====
31720 <HTML>
31721 <HEAD>
31722 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31723 </HEAD>
31724 <BODY>
31725 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31727 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31728 will ask whether you wish to include the original message in your reply.
31729 If this feature is set and the feature
31730 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31731 is <EM>not</EM> set, then the original message will be included in the reply
31732 automatically, without prompting.
31734 &lt;End of help on this topic&gt;
31735 </BODY>
31736 </HTML>
31737 ====== h_config_select_in_bold =====
31738 <HTML>
31739 <HEAD>
31740 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31741 </HEAD>
31742 <BODY>
31743 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31745 This feature controls an aspect of Alpine's 
31746 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31747 commands; in
31748 particular, the Select and WhereIs commands. Select and WhereIs (with the
31749 ^X subcommand) will search the current folder for messages meeting a
31750 specified criteria, and &quot;tag&quot; the resulting messages with an 
31751 &quot;X&quot; in the
31752 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31753 is set, instead of using the &quot;X&quot; to denote a selected message, 
31754 Alpine will
31755 attempt to display those index lines in boldface. Whether this is
31756 preferable to the &quot;X&quot; will depend on personal taste and the type of
31757 terminal being used.
31759 <UL>   
31760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31761 </UL><P>
31762 &lt;End of help on this topic&gt;
31763 </BODY>
31764 </HTML>
31765 ====== h_config_alt_auth =====
31766 <HTML>
31767 <HEAD>
31768 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31769 </HEAD>
31770 <BODY>
31771 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31773 This feature affects how Alpine connects to IMAP servers.
31774 It's utility has largely been overtaken by events,
31775 but it may still be useful in some circumstances.
31776 If you only connect to modern IMAP servers that support
31777 &quot;TLS&quot; you can ignore this feature.
31780 Details:
31783 By default, Alpine will attempt to connect to an IMAP server on the
31784 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31785 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31786 then a secure (encrypted) session will be negotiated.
31789 With this feature enabled, before connecting on the normal IMAP port, Alpine
31790 will first attempt to connect to an alternate IMAP service port (993) used
31791 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31792 (SSL) method.
31793 If the SSL attempt fails, Alpine will then try the default
31794 behavior described in the previous paragraph.
31797 TLS negotiation on the normal port is preferred, and supersedes the use of
31798 SSL on port 993, but older servers may not provide TLS support.
31799 This feature may be convenient when accessing IMAP servers that do not support
31800 TLS, but do support SSL connections on port 993.
31801 However, it is important to understand that with this feature enabled,
31802 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31803 but it will proceed to make an insecure connection if that is the only
31804 option offered by the server, or if the Alpine in question has been built
31805 without encryption capability.
31808 Note that this feature specifies a per-user (or system-wide) default
31809 behavior, but host/folder specification flags may be used to control the
31810 behavior of any specific connection.
31811 This feature interacts with some of
31812 the possible host/folder path specification flags as follows:
31815 The <SAMP>/tls</SAMP> host flag, for example,
31818 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31820 will over-ride this feature for the specified host by bypassing the
31821 SSL connection attempt.
31822 Moreover, with <SAMP>/tls</SAMP> specified,
31823 the connection attempt will fail if the
31824 service on port 143 does not offer TLS support.
31827 The <SAMP>/ssl</SAMP> host flag, for example,
31830 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31832 will insist on an SSL connection for the specified host,
31833 and will fail if the SSL service on port 993 is not available.
31834 Alpine will not subsequently retry a connection
31835 on port 143 if <SAMP>/ssl</SAMP> is specified.
31838 <UL>   
31839 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31840 </UL><P>
31841 &lt;End of help on this topic&gt;
31842 </BODY>
31843 </HTML>
31844 ====== h_config_file_dir ======
31845 <HTML>
31846 <HEAD>
31847 <TITLE>OPTION: File Directory</TITLE>
31848 </HEAD>
31849 <BODY>
31850 <H1>OPTION: File Directory</H1>
31852 PC-Alpine only.
31854 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
31855 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
31856 Message Index's &quot;E&nbsp;Export&quot; command.
31859 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
31860 component, Alpine assumes the file exists in the user's home directory.
31861 Under Windows operating systems, this definition isn't always clear.  This 
31862 feature allows you to explictly set where Alpine should look for files
31863 without a leading path.
31866 NOTE: this feature's value is ignored if either 
31867 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
31868 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
31871 <UL>   
31872 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31873 </UL><P>
31874 &lt;End of help on this topic&gt;
31875 </BODY>
31876 </HTML>
31877 ====== h_config_quote_all_froms =====
31878 <HTML>
31879 <HEAD>
31880 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
31881 </HEAD>
31882 <BODY>
31883 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
31885 This feature controls an aspect of the Save command (and also the way
31886 outgoing messages are saved to an FCC folder).  If set, Alpine will add
31887 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
31888 when they are saved to another folder, including lines syntactically
31889 distinguishable from the type of message separator line commonly used on
31890 Unix systems.
31893 The default behavior is that a &quot;>&quot; will be prepended only to lines
31894 beginning with &quot;From &quot; that might otherwise be confused with a message
31895 separator line on Unix systems.  If pine is the only mail program you use,
31896 this default is reasonable.  If another program you use has trouble
31897 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
31898 enable this feature.  This feature only applies to the common Unix mailbox
31899 format that uses message separator lines beginning with &quot;From &quot;.  If
31900 Alpine has been configured to use a different mailbox format (possibly
31901 incompatible with other mail programs), then this issue does not arise,
31902 and the feature is irrelevant.
31905 &lt;End of help on this topic&gt;
31906 </BODY>
31907 </HTML>
31908 ====== h_config_normal_color =====
31909 <HTML>
31910 <HEAD>
31911 <TITLE>OPTION: Normal Color</TITLE>
31912 </HEAD>
31913 <BODY>
31914 <H1>OPTION: Normal Color</H1>
31916 Sets the color Alpine normally uses.
31917 The foreground color is the color of the actual character and the
31918 background color is the color of the area behind the character.
31919 By default this color is black characters on a white background.
31921 <A HREF="h_color_setup">Descriptions of the available commands</A>
31923 Look <A HREF="h_edit_nav_cmds">here</A>
31924 to see the available Editing and Navigation commands.
31926 &lt;End of help on this topic&gt;
31927 </BODY>
31928 </HTML>
31929 ====== h_config_reverse_color =====
31930 <HTML>
31931 <HEAD>
31932 <TITLE>OPTION: Reverse Color</TITLE>
31933 </HEAD>
31934 <BODY>
31935 <H1>OPTION: Reverse Color</H1>
31937 Sets the color Alpine uses for reverse video characters.
31938 The foreground color is the color of the actual character and the
31939 background color is the color of the area behind the character.
31941 <A HREF="h_color_setup">Descriptions of the available commands</A>
31943 Look <A HREF="h_edit_nav_cmds">here</A>
31944 to see the available Editing and Navigation commands.
31946 &lt;End of help on this topic&gt;
31947 </BODY>
31948 </HTML>
31949 ====== h_config_title_color =====
31950 <HTML>
31951 <HEAD>
31952 <TITLE>OPTION: Title Color</TITLE>
31953 </HEAD>
31954 <BODY>
31955 <H1>OPTION: Title Color</H1>
31957 Sets the color Alpine uses for the titlebar (the top line on the screen).
31958 The foreground color is the color of the actual character and the
31959 background color is the color of the area behind the character.
31960 By default, the Title Color is black characters on a yellow background.
31962 The actual titlebar color may be different from the Title Color if
31963 the option
31964 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
31965 is set to some value other than the default.
31966 It may also be different if the current folder is closed and the
31967 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
31968 color is set to something different from the Title Color.
31970 <A HREF="h_color_setup">Descriptions of the available commands</A>
31972 Look <A HREF="h_edit_nav_cmds">here</A>
31973 to see the available Editing and Navigation commands.
31975 &lt;End of help on this topic&gt;
31976 </BODY>
31977 </HTML>
31978 ====== h_config_titleclosed_color =====
31979 <HTML>
31980 <HEAD>
31981 <TITLE>OPTION: Title Closed Color</TITLE>
31982 </HEAD>
31983 <BODY>
31984 <H1>OPTION: Title Closed Color</H1>
31986 Sets the color Alpine uses for the titlebar (the top line on the screen)
31987 when the current folder is closed.
31988 The foreground color is the color of the actual character and the
31989 background color is the color of the area behind the character.
31990 By default, the Title Color Closed Color is white characters on a red background.
31992 By setting this color to something noticeable you will be alerted to the
31993 fact that the current folder is closed, perhaps unexpectedly.
31995 &lt;End of help on this topic&gt;
31996 </BODY>
31997 </HTML>
31998 ====== h_config_status_color =====
31999 <HTML>
32000 <HEAD>
32001 <TITLE>OPTION: Status Color</TITLE>
32002 </HEAD>
32003 <BODY>
32004 <H1>OPTION: Status Color</H1>
32006 Sets the color Alpine uses for status messages written to the message
32007 line near the bottom of the screen.
32008 The foreground color is the color of the actual character and the
32009 background color is the color of the area behind the character.
32010 By default, the Status Color is the same as the Reverse Color.
32012 <A HREF="h_color_setup">Descriptions of the available commands</A>
32014 Look <A HREF="h_edit_nav_cmds">here</A>
32015 to see the available Editing and Navigation commands.
32017 &lt;End of help on this topic&gt;
32018 </BODY>
32019 </HTML>
32020 ====== h_config_index_opening_color =====
32021 <HTML>
32022 <HEAD>
32023 <TITLE>OPTION: Index Opening Color</TITLE>
32024 </HEAD>
32025 <BODY>
32026 <H1>OPTION: Index Opening Color</H1>
32028 With some setups the text of the subject is followed
32029 by the opening text of the message if there is any room available in the index line.
32030 If you have configured your
32031 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32032 to include one of the Subject tokens that causes this behavior
32033 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32034 this opening text with this option.
32035 This coloring takes place for all but the current index line, and the Opening
32036 Color appears to be in front of any color from an Index Color Rule.
32038 By default the Index Opening Color is gray characters on a white background.
32041 <A HREF="h_color_setup">Descriptions of the available commands</A>
32043 Look <A HREF="h_edit_nav_cmds">here</A>
32044 to see the available Editing and Navigation commands.
32046 &lt;End of help on this topic&gt;
32047 </BODY>
32048 </HTML>
32049 ====== h_config_index_pri_color =====
32050 <HTML>
32051 <HEAD>
32052 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32053 </HEAD>
32054 <BODY>
32055 <H1>OPTION: Index Priority Symbol Colors</H1>
32057 The X-Priority header is a non-standard header that is used in a
32058 somewhat standard way by many mail programs.
32059 Alpine expects the value of this header to be a digit with a value
32060 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32061 Alpine can be made to display an indication of this priority in
32062 messages by use of one of the tokens
32063 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32064 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32065 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32068 You may set the color used to draw these tokens by use of the colors
32069 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32070 This coloring takes place for all but the current index line, and the Priority
32071 Color appears to be in front of any color from an Index Color Rule.
32072 If the priority has a value of 1 or 2 the High Priority color will be
32073 used,
32074 and if the value is 4 or 5 the Low Priority color will be used.
32076 If you don't set these colors the index line will be colored in the same color as
32077 the bulk of the index line.
32080 <A HREF="h_color_setup">Descriptions of the available commands</A>
32082 Look <A HREF="h_edit_nav_cmds">here</A>
32083 to see the available Editing and Navigation commands.
32085 &lt;End of help on this topic&gt;
32086 </BODY>
32087 </HTML>
32088 ====== h_config_index_subject_color =====
32089 <HTML>
32090 <HEAD>
32091 <TITLE>OPTION: Index Subject Color</TITLE>
32092 </HEAD>
32093 <BODY>
32094 <H1>OPTION: Index Subject Color</H1>
32096 You may set the color used to draw the Subject part of the index line.
32097 This coloring takes place for all but the current index line, and the Subject
32098 Color appears to be in front of any color from an Index Color Rule.
32100 If you don't set this color it will be colored in the same color as
32101 the bulk of the index line.
32104 <A HREF="h_color_setup">Descriptions of the available commands</A>
32106 Look <A HREF="h_edit_nav_cmds">here</A>
32107 to see the available Editing and Navigation commands.
32109 &lt;End of help on this topic&gt;
32110 </BODY>
32111 </HTML>
32112 ====== h_config_index_from_color =====
32113 <HTML>
32114 <HEAD>
32115 <TITLE>OPTION: Index From Color</TITLE>
32116 </HEAD>
32117 <BODY>
32118 <H1>OPTION: Index From Color</H1>
32120 You may set the color used to draw the From part of the index line.
32121 This coloring takes place for all but the current index line, and the From
32122 Color appears to be in front of any color from an Index Color Rule.
32124 If you don't set this color it will be colored in the same color as
32125 the bulk of the index line.
32128 <A HREF="h_color_setup">Descriptions of the available commands</A>
32130 Look <A HREF="h_edit_nav_cmds">here</A>
32131 to see the available Editing and Navigation commands.
32133 &lt;End of help on this topic&gt;
32134 </BODY>
32135 </HTML>
32136 ====== h_config_index_arrow_color =====
32137 <HTML>
32138 <HEAD>
32139 <TITLE>OPTION: Index Arrow Color</TITLE>
32140 </HEAD>
32141 <BODY>
32142 <H1>OPTION: Index Arrow Color</H1>
32144 If you have configured your
32145 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32146 to include the &quot;ARROW&quot; token, you may set the color of
32147 the arrow displayed with this option.
32148 If you don't set the color it will be colored in the same color as
32149 the bulk of the index line.
32152 <A HREF="h_color_setup">Descriptions of the available commands</A>
32154 Look <A HREF="h_edit_nav_cmds">here</A>
32155 to see the available Editing and Navigation commands.
32157 &lt;End of help on this topic&gt;
32158 </BODY>
32159 </HTML>
32160 ====== h_config_index_color =====
32161 <HTML>
32162 <HEAD>
32163 <TITLE>OPTION: Index Colors</TITLE>
32164 </HEAD>
32165 <BODY>
32166 <H1>OPTION: Index Colors</H1>
32168 You may add color to the single character symbols that give the status
32169 of each message in the MESSAGE INDEX.
32170 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
32171 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
32172 screen depending on whether the message is addressed to you, and whether
32173 the message is marked Important, is Deleted, is Answered, or is New.
32174 The color for each of those characters may be specified by setting the
32175 &quot;Index-to-me&quot; Symbol Color,
32176 the &quot;Index-important&quot; Symbol Color,
32177 the &quot;Index-deleted&quot; Symbol Color,
32178 the &quot;Index-answered&quot; Symbol Color,
32179 and the &quot;Index-new&quot; Symbol Color.
32180 There are also two other symbol colors called &quot;Index-recent&quot;
32181 and &quot;Index-unseen&quot;.
32182 These two colors will only be used if you have configured your
32183 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32184 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
32186 The default colors for these symbols are:
32187 <TABLE>
32188 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
32189 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
32190 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32191 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
32192 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
32193 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32194 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32195 </TABLE>
32197 Besides coloring the message status symbols, you may also color the
32198 entire index line.
32199 This is done by using the
32200 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
32201 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
32202 When the entire line is colored that color will be &quot;behind&quot; the
32203 status symbol colors talked about in the paragraph above.
32205 You may also color
32206 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32207 in the index using the
32208 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
32209 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
32210 the Subject using
32211 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
32212 the From field using
32213 <A HREF="h_config_index_from_color">Index From Color</A>;
32214 and the
32215 <A HREF="h_config_index_opening_color">Index Opening</A> text.
32217 <A HREF="h_color_setup">Descriptions of the available commands</A>
32219 Look <A HREF="h_edit_nav_cmds">here</A>
32220 to see the available Editing and Navigation commands.
32222 &lt;End of help on this topic&gt;
32223 </BODY>
32224 </HTML>
32225 ====== h_config_metamsg_color =====
32226 <HTML>
32227 <HEAD>
32228 <TITLE>OPTION: Meta-Message Color</TITLE>
32229 </HEAD>
32230 <BODY>
32231 <H1>OPTION: Meta-Message Color</H1>
32233 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32234 that aren't part of the message itself.
32235 For example, an attachment that isn't shown might produce a meta
32236 message something like:
32238 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32240 If you set the
32241 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32242 option you might see
32244 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32246 Warnings about suspicious looking URLs in HTML will also be colored
32247 with this color.
32249 The foreground color is the color of the actual character and the
32250 background color is the color of the area behind the character.
32251 By default, the Meta-Message Color is black characters on a yellow background.
32253 <A HREF="h_color_setup">Descriptions of the available commands</A>
32255 Look <A HREF="h_edit_nav_cmds">here</A>
32256 to see the available Editing and Navigation commands.
32258 &lt;End of help on this topic&gt;
32259 </BODY>
32260 </HTML>
32261 ====== h_config_keylabel_color =====
32262 <HTML>
32263 <HEAD>
32264 <TITLE>OPTION: KeyLabel Color</TITLE>
32265 </HEAD>
32266 <BODY>
32267 <H1>OPTION: KeyLabel Color</H1>
32269 Sets the color Alpine uses for the labels of the keys in the two-line
32270 menu at the bottom of the screen.
32271 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32272 This option sets the color used when displaying &quot;PrevMsg&quot;.
32273 The foreground color is the color of the actual character and the
32274 background color is the color of the area behind the character.
32275 By default, the KeyLabel Color is the same as the Normal Color.
32277 WARNING: Some terminal emulators have the property that the screen will scroll
32278 down one line whenever a character is written to the character cell in the
32279 lower right corner of the screen.
32280 Alpine can usually avoid writing a character in that corner of the screen.
32281 However, if you have defined a KeyLabel Color then Alpine does have to write
32282 a character in that cell in order to color the cell correctly.
32283 If you find that your display sometimes scrolls up a line this could be
32284 the problem.
32285 The most obvious symptom is probably that the titlebar at the top of the
32286 screen scrolls off the screen.
32287 Try setting KeyLabel Color to Default to see if that fixes the problem.
32289 <A HREF="h_color_setup">Descriptions of the available commands</A>
32291 Look <A HREF="h_edit_nav_cmds">here</A>
32292 to see the available Editing and Navigation commands.
32294 &lt;End of help on this topic&gt;
32295 </BODY>
32296 </HTML>
32297 ====== h_config_keyname_color =====
32298 <HTML>
32299 <HEAD>
32300 <TITLE>OPTION: KeyName Color</TITLE>
32301 </HEAD>
32302 <BODY>
32303 <H1>OPTION: KeyName Color</H1>
32305 Sets the color Alpine uses for the names of the keys in the two-line
32306 menu at the bottom of the screen.
32307 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32308 This option sets the color used when displaying the &quot;P&quot;.
32309 The foreground color is the color of the actual character and the
32310 background color is the color of the area behind the character.
32311 By default, the KeyName Color is the same as the Reverse Color.
32313 <A HREF="h_color_setup">Descriptions of the available commands</A>
32315 Look <A HREF="h_edit_nav_cmds">here</A>
32316 to see the available Editing and Navigation commands.
32318 &lt;End of help on this topic&gt;
32319 </BODY>
32320 </HTML>
32321 ====== h_config_slctbl_color =====
32322 <HTML>
32323 <HEAD>
32324 <TITLE>OPTION: Selectable Item Color</TITLE>
32325 </HEAD>
32326 <BODY>
32327 <H1>OPTION: Selectable Item Color</H1>
32329 Sets the color Alpine uses for selectable items, such as URLs.
32330 The foreground color is the color of the actual character and the
32331 background color is the color of the area behind the character.
32332 By default, the Selectable Item Color is the same as the Normal Color,
32333 except that it is bold.
32335 <A HREF="h_color_setup">Descriptions of the available commands</A>
32337 Look <A HREF="h_edit_nav_cmds">here</A>
32338 to see the available Editing and Navigation commands.
32340 &lt;End of help on this topic&gt;
32341 </BODY>
32342 </HTML>
32343 ====== h_config_quote_color =====
32344 <HTML>
32345 <HEAD>
32346 <TITLE>OPTION: Quote Colors</TITLE>
32347 </HEAD>
32348 <BODY>
32349 <H1>OPTION: Quote Colors</H1>
32351 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32352 screen.
32353 If a line begins with a &gt; character (or space followed by &gt;)
32354 it is considered a quote.
32355 That line will be given the Quote1 Color (first level quote).
32356 If there is a second level of quoting then the Quote2 Color will be used.
32357 Alpine considers there to be a second level of quoting if that first &gt; is
32358 followed by another &gt; (or space followed by &gt;).
32359 If there are characters other than whitespace and &gt; signs, then it isn't
32360 considered another level of quoting.
32361 Similarly, if there is a third level of quoting the Quote3 Color will be
32362 used.
32363 If there are more levels after that the Quote Colors are re-used.
32364 If you define all three colors then it would repeat like Color1, Color2, Color3,
32365 Color1, Color2, Color3, ...
32366 If you only define the first two it would be
32367 Color1, Color2, Color1, Color2, ...
32368 If you define only the Quote1 Color, then the entire quote would be that
32369 color regardless of the quoting levels.
32370 By default, the Quote1 Color is black characters on a greenish-blue background;
32371 the Quote2 Color is black characters on a dull yellow background; and
32372 the Quote3 Color is black characters on a green background.
32374 <A HREF="h_color_setup">Descriptions of the available commands</A>
32376 Look <A HREF="h_edit_nav_cmds">here</A>
32377 to see the available Editing and Navigation commands.
32379 &lt;End of help on this topic&gt;
32380 </BODY>
32381 </HTML>
32382 ====== h_config_folder_color =====
32383 <HTML>
32384 <HEAD>
32385 <TITLE>OPTION: Folder Color</TITLE>
32386 </HEAD>
32387 <BODY>
32388 <H1>OPTION: Folder Color</H1>
32390 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32391 screen. By default, the Folder Color is the normal text color.
32394 If you set a color for this feature, other than the normal color
32395 (the default), or a color for
32396 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32397 will be colored according to the color specified in the
32398 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32399 case, the color will be the only indication that the colored name
32400 refers to a directory. The normal behavior is that Alpine
32401 indicates that a name refers to a directory by appending a
32402 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32403 the folder.
32406 If a folder is a directory, then the folder name will be painted
32407 according to the color defined by this variable, and a separator
32408 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32409 to the name. That
32410 indicator will be painted according to the color defined in the
32411 <A HREF="h_config_directory_color">Directory Color</A> option.
32414 &lt;End of help on this topic&gt;
32415 </BODY>
32416 </HTML>
32417 ====== h_config_directory_color =====
32418 <HTML>
32419 <HEAD>
32420 <TITLE>OPTION: Directory Color</TITLE>
32421 </HEAD>
32422 <BODY>
32423 <H1>OPTION: Directory Color</H1>
32425 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32426 screen. By default, the Folder Color is the normal text color.
32428 If you set a color for this feature, other than the normal color
32429 (the default), or a color for
32430 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32431 will be colored according to the color specified in the
32432 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32433 case, the color will be the only indication that the colored name
32434 refers to a directory. The normal behavior is that Alpine
32435 indicates that a name refers to a directory by appending a
32436 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32437 the folder.
32439 If a folder is a directory, then the folder name will be painted
32440 according to the color defined by the option
32441 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32442 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32443 after the name. That
32444 indicator will be painted according to the color defined in this
32445 option.
32447 &lt;End of help on this topic&gt;
32448 </BODY>
32449 </HTML>
32450 ====== h_config_folder_list_color =====
32451 <HTML>
32452 <HEAD>
32453 <TITLE>OPTION: Folder-List Color</TITLE>
32454 </HEAD>
32455 <BODY>
32456 <H1>OPTION: Folder-List Color</H1>
32458 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32459 screen. By default, the Folder-List Color is the normal text color.
32461 This text refers to the informative text that Alpine displays so you
32462 can recognize each collection. The color of the content of each collection
32463 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32464 and <A HREF="h_config_directory_color">Directory Color</A>.
32466 Unlike the options
32467 <A HREF="h_config_folder_color">Folder Color</A>
32468 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32469 this option does not affect the way that Alpine reports folders,
32470 directories and folders that are directories.
32472 &lt;End of help on this topic&gt;
32473 </BODY>
32474 </HTML>
32475 ====== h_config_incunseen_color =====
32476 <HTML>
32477 <HEAD>
32478 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32479 </HEAD>
32480 <BODY>
32481 <H1>OPTION: Incoming Unseen Color</H1>
32483 If the option
32484 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32485 is turned on it is possible to highlight the folders that contain
32486 unseen messages by coloring them with this color.
32487 By default, this is the same as the Normal Color and no highlighting is done.
32489 Usually the &quot;current&quot; folder (the folder the cursor is on)
32490 is highlighted using reverse video.
32491 If the current folder is colored because it contains unseen messages then
32492 the color used to show that it is also the current folder is controlled
32493 by the
32494 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32495 feature at the top of the SETUP COLOR screen.
32497 <A HREF="h_color_setup">Descriptions of the available commands</A>
32499 Look <A HREF="h_edit_nav_cmds">here</A>
32500 to see the available Editing and Navigation commands.
32502 &lt;End of help on this topic&gt;
32503 </BODY>
32504 </HTML>
32505 ====== h_config_signature_color =====
32506 <HTML>
32507 <HEAD>
32508 <TITLE>OPTION: Signature Color</TITLE>
32509 </HEAD>
32510 <BODY>
32511 <H1>OPTION: Signature Color</H1>
32513 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32514 screen. According to USENET conventions, the signature is defined as the
32515 paragraph following the &quot;sigdashes&quot;, that is, the special line
32516 consisting of the three characters
32517 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32518 empty line right after the sigdashes to be considered as part of the
32519 signature.
32520 By default, the Signature Color is blue characters on a white background.
32522 <A HREF="h_color_setup">Descriptions of the available commands</A>
32524 Look <A HREF="h_edit_nav_cmds">here</A>
32525 to see the available Editing and Navigation commands.
32527 &lt;End of help on this topic&gt;
32528 </BODY>
32529 </HTML>
32530 ====== h_config_prompt_color =====
32531 <HTML>
32532 <HEAD>
32533 <TITLE>OPTION: Prompt Color</TITLE>
32534 </HEAD>
32535 <BODY>
32536 <H1>OPTION: Prompt Color</H1>
32538 Sets the color Alpine uses for confirmation prompts and questions that
32539 appear in the status line near the bottom of the screen.
32540 The foreground color is the color of the actual character and the
32541 background color is the color of the area behind the character.
32542 By default, the Prompt Color is the same as the Reverse Color.
32544 <A HREF="h_color_setup">Descriptions of the available commands</A>
32546 Look <A HREF="h_edit_nav_cmds">here</A>
32547 to see the available Editing and Navigation commands.
32549 &lt;End of help on this topic&gt;
32550 </BODY>
32551 </HTML>
32552 ====== h_config_header_general_color =====
32553 <HTML>
32554 <HEAD>
32555 <TITLE>OPTION: Header General Color</TITLE>
32556 </HEAD>
32557 <BODY>
32558 <H1>OPTION: Header General Color</H1>
32560 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32561 screen.
32562 The foreground color is the color of the actual character and the
32563 background color is the color of the area behind the character.
32564 By default, this is the same as the Normal Color.
32566 It is also possible to set the colors for specific header fields, for
32567 example the Subject, using
32568 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32569 If both a Header General Color and a specific Viewer Header Color are set
32570 the specific color will override the general color, as you would expect.
32572 <A HREF="h_color_setup">Descriptions of the available commands</A>
32574 Look <A HREF="h_edit_nav_cmds">here</A>
32575 to see the available Editing and Navigation commands.
32577 &lt;End of help on this topic&gt;
32578 </BODY>
32579 </HTML>
32580 ====== h_config_incol =====
32581 <HTML>
32582 <HEAD>
32583 <TITLE>Index Line Color</TITLE>
32584 </HEAD>
32585 <BODY>
32586 <H1>Index Line Color</H1>
32588 This option is used to set the color of a line in the index when the
32589 message for that line matches the Pattern.
32590 This colors the whole index line, except possibly the status letters,
32591 which may be colored separately using the
32592 <A HREF="h_color_setup">Setup Kolor</A> screen.
32593 The foreground color is the color of the actual characters and the
32594 background color is the color of the area behind the characters.
32596 <A HREF="h_color_setup">Descriptions of the available commands</A>
32598 Look <A HREF="h_edit_nav_cmds">here</A>
32599 to see the available Editing and Navigation commands.
32601 &lt;End of help on this topic&gt;
32602 </BODY>
32603 </HTML>
32604 ====== h_config_usetransparent_color =====
32605 <HTML>
32606 <HEAD>
32607 <TITLE>OPTION: Use Transparent Color</TITLE>
32608 </HEAD>
32609 <BODY>
32610 <H1>OPTION: Use Transparent Color</H1>
32612 This is a special color supported by some terminal emulators.
32613 It is intended to result in the default foreground or background color
32614 from the terminal emulator.
32615 This is the color the terminal was displaying characters in before you started Alpine.
32616 The reason it is called Transparent is because you could set the foreground color
32617 to some specific color, like Red, and then set the background color to the
32618 Transparent Color. If it works as expected, the background color from the terminal
32619 window in which Alpine is running will show through but with the Red characters
32620 in the foreground.
32622 <A HREF="h_color_setup">Descriptions of the available commands</A>
32624 Look <A HREF="h_edit_nav_cmds">here</A>
32625 to see the available Editing and Navigation commands.
32627 &lt;End of help on this topic&gt;
32628 </BODY>
32629 </HTML>
32630 ====== h_config_usenormal_color =====
32631 <HTML>
32632 <HEAD>
32633 <TITLE>OPTION: Use Normal Color</TITLE>
32634 </HEAD>
32635 <BODY>
32636 <H1>OPTION: Use Normal Color</H1>
32638 When you use this color value, the actual color used will be the same
32639 as the corresponding Normal Color.
32640 For example if your Normal Color is black on white and you set both
32641 the foreground and background colors here to use the Normal Color, you'll
32642 get black on white. If you later change the Normal Color to red on blue
32643 this color will also change to red on blue.
32645 <A HREF="h_color_setup">Descriptions of the available commands</A>
32647 Look <A HREF="h_edit_nav_cmds">here</A>
32648 to see the available Editing and Navigation commands.
32650 &lt;End of help on this topic&gt;
32651 </BODY>
32652 </HTML>
32653 ====== h_config_usenone_color =====
32654 <HTML>
32655 <HEAD>
32656 <TITLE>OPTION: Use None Color</TITLE>
32657 </HEAD>
32658 <BODY>
32659 <H1>OPTION: Use None Color</H1>
32661 This is a special color that simply means to leave the color alone.
32662 It is useful for Index symbols and for Keyword Colors used in the Subject
32663 field of an index line.
32664 The most likely use is to set an explicit foreground color and then set
32665 the background color to the None Color.
32666 That will cause the symbol or keyword to be drawn in the foreground color
32667 with a background equal to whatever color the rest of the index line is already
32668 drawn in.
32669 You will see no visible effect unless you have assigned Indexcolor Rules to
32670 color index lines or you have set an actual color for the Reverse Color.
32672 <A HREF="h_color_setup">Descriptions of the available commands</A>
32674 Look <A HREF="h_edit_nav_cmds">here</A>
32675 to see the available Editing and Navigation commands.
32677 &lt;End of help on this topic&gt;
32678 </BODY>
32679 </HTML>
32680 ====== h_config_dflt_color =====
32681 <HTML>
32682 <HEAD>
32683 <TITLE>OPTION: Default Color</TITLE>
32684 </HEAD>
32685 <BODY>
32686 <H1>OPTION: Default Color</H1>
32688 Setting default will cause the color to be the default color.
32689 Unsetting default is normally done by choosing a color, but in some cases
32690 you may want to declare the current default color to be your non-default
32691 choice.
32692 For example, the default Keyname Color is the same as the Reverse Color.
32693 Whenever the Reverse Color changes the Keyname Color will also change, unless
32694 you've changed it or unset the default box.
32696 <A HREF="h_color_setup">Descriptions of the available commands</A>
32698 Look <A HREF="h_edit_nav_cmds">here</A>
32699 to see the available Editing and Navigation commands.
32701 &lt;End of help on this topic&gt;
32702 </BODY>
32703 </HTML>
32704 ====== h_config_bold_slctbl =====
32705 <HTML>
32706 <HEAD>
32707 <TITLE>OPTION: Bold</TITLE>
32708 </HEAD>
32709 <BODY>
32710 <H1>OPTION: Bold</H1>
32712 The color for this particular section may have the Bold attribute turned
32713 on or off.
32714 Setting bold will cause the characters to be bold.
32716 <A HREF="h_color_setup">Descriptions of the available commands</A>
32718 Look <A HREF="h_edit_nav_cmds">here</A>
32719 to see the available Editing and Navigation commands.
32721 &lt;End of help on this topic&gt;
32722 </BODY>
32723 </HTML>
32724 ====== h_config_kw_color =====
32725 <HTML>
32726 <HEAD>
32727 <TITLE>OPTION: Keyword Colors</TITLE>
32728 </HEAD>
32729 <BODY>
32730 <H1>OPTION: Keyword Colors</H1>
32732 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32733 Keywords are displayed as part of the Subject by default.
32734 They are also displayed as part of the Subject if the tokens
32735 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32736 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32737 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32738 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32740 For example, you might have set up a Keyword
32741 &quot;Work&quot; using the
32742 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32743 You could cause that Keyword to show up as a special color
32744 by setting up the Keyword Color using this option, and then including it
32745 in the MESSAGE INDEX screen using one of the tokens listed above in the
32746 <!--#echo var="VAR_index-format"-->.
32748 <A HREF="h_color_setup">Descriptions of the available commands</A>
32750 Look <A HREF="h_edit_nav_cmds">here</A>
32751 to see the available Editing and Navigation commands.
32753 &lt;End of help on this topic&gt;
32754 </BODY>
32755 </HTML>
32756 ====== h_config_customhdr_color =====
32757 <HTML>
32758 <HEAD>
32759 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32760 </HEAD>
32761 <BODY>
32762 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32764 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32765 For example, you may set the color of the Subject header or the From header.
32766 The foreground color is the color of the actual character and the
32767 background color is the color of the area behind the character.
32769 In addition to setting the colors for particular headers (like the Subject)
32770 you may also set a color to be used for all headers unless overridden by a
32771 more specific Viewer Header Color.
32772 To do this use the
32773 <A HREF="h_config_header_general_color">Header General Color</A>.
32775 For Header Colors,
32776 there is an additional line on the
32777 screen labeled &quot;Pattern to match&quot;.
32778 If you leave that blank, then the whole field for that header will
32779 be colored.
32780 However, if you give a pattern to match, the coloring will only take place
32781 if there is a match for that pattern in the value of the field.
32782 For example, if you are working on a color for the Subject header and
32783 you fill in a pattern of &quot;important&quot;, then only Subjects that
32784 contain the word &quot;important&quot; will be colored.
32786 If the pattern you enter is a comma-separated list of patterns, then coloring
32787 happens if any of those patterns matches.
32789 <A HREF="h_color_setup">Descriptions of the available commands</A>
32791 Look <A HREF="h_edit_nav_cmds">here</A>
32792 to see the available Editing and Navigation commands.
32794 &lt;End of help on this topic&gt;
32795 </BODY>
32796 </HTML>
32797 ====== h_config_indextoken_color =====
32798 <HTML>
32799 <HEAD>
32800 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32801 </HEAD>
32802 <BODY>
32803 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32805 This option allows you to set up the color in which any token, not specified by the
32806 previous options, will be colored in the MESSAGE INDEX screen. 
32808 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32809 a token that can be used in the index format. 
32810 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32812 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32813 enter a new one. Once you have entered a valid token, a line will be added to the
32814 configuration screen that you can use to set up the colors in which that token will
32815 be painted. This is done in the same way that you configure colors for other
32816 variables.
32818 <A HREF="h_color_setup">Descriptions of the available commands</A>
32820 Look <A HREF="h_edit_nav_cmds">here</A>
32821 to see the available Editing and Navigation commands.
32823 &lt;End of help on this topic&gt;
32824 </BODY>
32825 </HTML>
32826 ====== h_config_customhdr_pattern =====
32827 <HTML>
32828 <HEAD>
32829 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32830 </HEAD>
32831 <BODY>
32832 <H1>OPTION: Viewer Header Color Pattern</H1>
32834 If you leave this blank, then the whole field for the header will
32835 be colored.
32836 If you give a pattern to match, the coloring will only take place
32837 if there is a match for that pattern in the value of the field.
32838 For example, if you are working on a color for the Subject header and
32839 you fill in a pattern of &quot;important&quot;, then only Subjects that
32840 contain the word &quot;important&quot; will be colored.
32842 For address headers (like From and To) and for the Newsgroups header,
32843 a pattern match will cause only the matched addresses or newsgroups to be
32844 colored.
32845 If there is no pattern to match, then all of the addresses or newsgroups
32846 in the relevant header will be colored.
32848 The matching pattern may be a comma-separated list of patterns to match
32849 instead of a single pattern.
32850 For example, you could use the pattern &quot;important,urgent&quot; which would
32851 cause a match if either the word &quot;important&quot; or the word
32852 &quot;urgent&quot; appeared in the value of the header.
32853 You could list several comma-separated email addresses in the Header
32854 From Color pattern so that those addresses will be colored when any of
32855 them appear in the From header.
32857 To add a new matching pattern or change the existing pattern use the 
32858 <!--chtml if pinemode="function_key"-->
32859 &quot;F4&quot;
32860 <!--chtml else-->
32861 &quot;C&quot;
32862 <!--chtml endif-->
32863 &quot;Change&quot; command that is available when the &quot;Pattern to
32864 match&quot; line is highlighted.
32866 <!--chtml if pinemode="function_key"-->
32867 &quot;F10&quot;
32868 <!--chtml else-->
32869 &quot;D&quot;
32870 <!--chtml endif-->
32871 &quot;Delete&quot; command may be used to quickly remove all patterns
32872 for a particular header.
32874 &lt;End of help on this topic&gt;
32875 </BODY>
32876 </HTML>
32877 ====== h_color_setup =====
32878 <HTML>
32879 <HEAD>
32880 <TITLE>SETUP COLOR COMMANDS</TITLE>
32881 </HEAD>
32882 <BODY>
32883 <H1>SETUP COLOR COMMANDS</H1>
32884 <!--chtml if pinemode="function_key"-->
32885 <PRE>
32886 Available Commands -- Group 1
32887 -------------------------------
32888 F1  Display this help text
32889 F2  Show other available commands
32890 F3  Exit to MAIN MENU
32891 F4  Select the highlighted foreground or background color
32892 F5  Move to previous line
32893 F6  Move to next line
32894 F7  Previous page
32895 F8  Next page
32896 F9  Add a config section for a header field
32897 F10 Restore all default colors (for all sections)
32898 F11 Print color configuration screen
32899 F12 Whereis (search for word)
32901 Available Commands -- Group 2
32902 -------------------------------
32903 F1  Display this help text
32904 F2  Show other available commands
32905 F5  Delete config section for highlighted header field
32906 F6  Shuffle the order of Header Color sections
32907 </PRE>
32908 <!--chtml else-->
32909 <PRE>
32910 General commands
32911 -------------------------------------------------
32912  ?  Display this help text     E  Exit back to MAIN MENU
32913  P  Previous Line              N  Next Line
32914  -  Previous page             Spc (space bar) Next page
32915  W  WhereIs (search for word)  %  Print color configuration screen
32917 Color Setup Commands
32918 ------------------------------------------------
32919  *  Select the highlighted foreground or background color
32920  A  Add a config section for a header field
32921  D  Delete config section for highlighted header field
32922  R  Restore all default colors (for all sections)
32923  $  Shuffle the order of Header Color sections
32924 </PRE>
32925 <!--chtml endif-->
32927 <H2>Description of the Setup Color Screen</H2>
32929 From this screen you may turn on color and set the colors of
32930 various parts of the Alpine display.
32931 For help on turning on color move your cursor into the Color Style section
32932 at the top of the Setup Color screen and ask for help.
32935 There are several sections in the Setup Color Screen.
32936 At the top are some settings that handle the style of color used
32937 with your terminal emulator (UNIX only), and some settings that
32938 control how the current indexline and the titlebar are colored.
32939 After that comes a long section called GENERAL COLORS that allows
32940 you to set the color of many elements in the Alpine screens.
32941 For example, the color of the titlebar, status messages,
32942 selectable links, quotes and signatures in messages, and so on.
32943 After that is a section called INDEX COLORS that allows you to
32944 set the colors of various pieces of the displayed index lines in
32945 the MESSAGE INDEX screen.
32946 The next section is HEADER COLORS. This is for coloring headers of
32947 messages in the MESSAGE TEXT screen in just about any way you would like.
32948 Finally, the KEYWORD COLORS section allows you to highlight
32949 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32950 in the MESSAGE INDEX screen.
32953 To change a color, highlight the color you want to change (for example,
32954 the Status Color) by moving
32955 the cursor into it.
32956 You may want to read the help text for the color to see a brief desription
32957 of what you are coloring.
32958 Then press &quot;C&quot; for Change to set the color to something new.
32959 That will put you into a screen with two columns of colors, one for
32960 the foreground color and one for the background color.
32961 The foreground color is just the color you want the actual characters
32962 to be and the background color is the color of the rest of the rectangle
32963 behind the characters.
32964 Select the foreground and background colors desired by using the Next and
32965 Prev keys to highlight the color, and the * command to select it.
32967 To set a color to its default value, set the X in the Default line at
32968 the bottom of the list of colors.
32971 The HEADER COLORS section is a little bit different from the others.
32972 Besides coloring the specific fields that Alpine knows about, you may also
32973 color specific header fields when viewing a message in the MESSAGE TEXT
32974 screen.
32975 For example, you may color the Subject header a particular color.
32976 There are a few commands for use with headers.
32977 The &quot;AddHeader&quot; command adds a section to the color
32978 configuration screen that allows you to set the color for that header.
32979 You'll be asked for the name of the header field you want to color.
32980 If you wanted to color the Subject, you would answer
32981 with the word &quot;subject&quot;.
32982 Once you've added a header field, the color setting works just like the
32983 other color fields, except that there is an additional line on the
32984 configuration screen labeled &quot;Pattern to match&quot;.
32985 If you leave that blank, then the whole field for that header will always
32986 be colored.
32987 However, if you give a pattern to match, the coloring will only take place
32988 if there is a match for that pattern in the value of the field.
32989 For example, if you are working on a color for the Subject header and
32990 you fill in a pattern of &quot;important&quot;, then only Subjects that
32991 contain the word &quot;important&quot; will be colored.
32993 The &quot;DeleteHdr&quot; command removes a header section from the
32994 configuration altogether.
32995 The &quot;Shuffle&quot; command changes the order of header sections.
32996 This is only necessary if you use header sections with pattern fields.
32997 For example, if you have two Subject sections, one with one pattern and
32998 another with another pattern, and the subject for a particular message
32999 happens to match both, then the color from the first match is used.
33002 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33003 Each section will change to the default value used for that section when
33004 color is first enabled.
33005 When you restore all default colors the color settings for the Header Colors
33006 will be unset (since that's the default), but the header fields you've
33007 added will remain so that you may easily reset them.
33008 In order to get rid of them completely you'd have to use
33009 the &quot;DeleteHdr&quot; command.
33012 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33013 may be set with matching rules and that is configured separately from
33014 the rest of the color settings described here.
33015 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33016 instead of in the Setup/Kolor section.
33018 <P><UL>
33019 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33020 </UL><P>
33021 &lt;End of help on this topic&gt;
33022 </BODY>
33023 </HTML>
33024 ====== h_config_news_uses_recent ======
33025 <HTML>
33026 <HEAD>
33027 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33028 </HEAD>
33029 <BODY>
33030 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33032 This feature causes certain messages to be marked as "New" in the
33033 MESSAGE INDEX of newsgroups.
33034 This feature is set by default.
33038 When opening a newsgroup, Alpine will consult your "newsrc" file and
33039 determine the last message you have previously disposed of via the "D"
33040 key.  If this feature is set, any subsequent messages will be shown in the
33041 Index with an "N", and the first of these messages will be highlighted.
33042 Although this is only an approximation of true "New" or "Unseen"
33043 status, it provides a useful cue to distinguish more-or-less recent
33044 messages from those you have seen previously, but are not yet ready to
33045 mark deleted.
33049 Background: your "newsrc" file (used to store message status information
33050 for newsgroups) is only capable of storing a single flag, and Alpine uses
33051 this to record whether or not you are "done with" a message, as
33052 indicated by marking the message as "Deleted".  Unfortunately, this
33053 means that Alpine has no way to record exactly which messages you have
33054 previously seen, so it normally does not show the "N" status flag for
33055 any messages in a newsgroup. This feature enables a starting
33056 *approximation* of seen/unseen status that may be useful.
33058 &lt;End of help on this topic&gt;
33059 </BODY>
33060 </HTML>
33061 ====== h_config_expose_hidden_config =====
33062 <HTML>
33063 <HEAD>
33064 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33065 </HEAD>
33066 <BODY>
33067 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33069 If set, this causes configuration options and features that are normally
33070 hidden from view to be editable in the Setup/Config screen.
33073 The purpose of this feature is to allow you to change configuration
33074 features and variables that are normally hidden.
33075 This is particularly useful if you are using a remote configuration,
33076 where it is difficult to edit the contents manually, but it may also be used
33077 on a local pinerc configuration file.
33079 If set, several configuration variables and features that are normally
33080 hidden from view will show up in the Setup/Configuration screen.
33081 They will be at the bottom of the configuration screen.
33082 You can find them by searching for the words &quot;hidden configuration&quot;.
33085 Note that this is an advanced feature that should be used with care.
33086 The reason that this part of the configuration is normally hidden is because
33087 there is a significant potential for causing problems if you change these
33088 variables.
33089 If something breaks after a change try changing it back to see if that is
33090 what is causing the problem.
33091 There are also some variables that are normally hidden because they are
33092 manipulated through Alpine in other ways.
33093 For example, colors are normally set using the Setup/Kolors screen and
33094 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33095 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33096 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33097 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33098 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33099 internally by Alpine and not set directly by the user.
33101 <UL>   
33102 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33103 </UL><P>
33104 &lt;End of help on this topic&gt;
33105 </BODY>
33106 </HTML>
33107 ====== h_config_disable_signature_edit =====
33108 <HTML>
33109 <HEAD>
33110 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
33111 </HEAD>
33112 <BODY>
33113 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
33115 If set, this disables the editing of signature files from within
33116 the Setup/Config screen.
33118 <UL>   
33119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33120 </UL><P>
33121 &lt;End of help on this topic&gt;
33122 </BODY>
33123 </HTML>
33124 ====== h_config_disable_roles_templateedit =====
33125 <HTML>
33126 <HEAD>
33127 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
33128 </HEAD>
33129 <BODY>
33130 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
33132 If set, this disables the editing of template files within the
33133 Role setup screen.
33135 <UL>   
33136 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33137 </UL><P>
33138 &lt;End of help on this topic&gt;
33139 </BODY>
33140 </HTML>
33141 ====== h_config_disable_roles_sigedit =====
33142 <HTML>
33143 <HEAD>
33144 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
33145 </HEAD>
33146 <BODY>
33147 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
33149 If set, this disables the editing of signature files within the
33150 Role setup screen.
33152 <UL>   
33153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33154 </UL><P>
33155 &lt;End of help on this topic&gt;
33156 </BODY>
33157 </HTML>
33158 ====== h_config_disable_roles_setup =====
33159 <HTML>
33160 <HEAD>
33161 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
33162 </HEAD>
33163 <BODY>
33164 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
33166 If set, this disables the Setup/Rules/Roles command.
33168 <UL>   
33169 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33170 </UL><P>
33171 &lt;End of help on this topic&gt;
33172 </BODY>
33173 </HTML>
33174 ====== h_config_disable_pipes_in_templates =====
33175 <HTML>
33176 <HEAD>
33177 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
33178 </HEAD>
33179 <BODY>
33180 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
33182 By default, if a template file name is followed by a vertical bar (|) then
33183 that causes the file to be executed to produce the text for the template.
33184 If this feature is set, then this is not allowed.
33186 <UL>   
33187 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33188 </UL><P>
33189 &lt;End of help on this topic&gt;
33190 </BODY>
33191 </HTML>
33192 ====== h_config_disable_pipes_in_sigs =====
33193 <HTML>
33194 <HEAD>
33195 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
33196 </HEAD>
33197 <BODY>
33198 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
33200 By default, if a signature file name is followed by a vertical bar (|) then
33201 that causes the file to be executed to produce the text for the signature.
33202 If this feature is set, then this is not allowed.
33204 <UL>   
33205 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33206 </UL><P>
33207 &lt;End of help on this topic&gt;
33208 </BODY>
33209 </HTML>
33210 ====== h_config_disable_password_cmd =====
33211 <HTML>
33212 <HEAD>
33213 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
33214 </HEAD>
33215 <BODY>
33216 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
33218 If set, then the Setup/Newpassword command is disabled.
33220 <UL>   
33221 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33222 </UL><P>
33223 &lt;End of help on this topic&gt;
33224 </BODY>
33225 </HTML>
33226 ====== h_config_disable_password_caching =====
33227 <HTML>
33228 <HEAD>
33229 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33230 </HEAD>
33231 <BODY>
33232 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33234 Normally, loginname/password combinations are cached in Alpine so that
33235 you do not have to enter the same password more than once in a session.
33236 A disadvantage to this approach is that the password must be stored in
33237 the memory image of the running Alpine in order that it can be re-used.
33238 In the event that Alpine crashes and produces a core dump, and that core
33239 dump is readable by others, the loginname and password could be read
33240 from the core dump.
33242 If this feature is set, then the passwords will not be cached and you
33243 will have to retype the password whenever Alpine needs it.
33244 Even with this feature set there is still some chance that the core
33245 file will contain a password, so care should be taken to make the
33246 core files unreadable.
33248 NOTE: If PASSFILE caching is enabled, this does not disable it.
33249 That is a separate and independent feature.
33250 <UL>   
33251 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33252 </UL><P>
33253 &lt;End of help on this topic&gt;
33254 </BODY>
33255 </HTML>
33256 ====== h_config_disable_password_file_saving =====
33257 <HTML>
33258 <HEAD>
33259 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33260 </HEAD>
33261 <BODY>
33262 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33264 This feature changes the behavior of Alpine when a login name and password combination
33265 for a specific server is not found in the password file. The default behavior is that
33266 Alpine will ask the user if they wish to save this information in the password file for future
33267 use. It is assumed that if a user created a password file it is because they intend
33268 to use it, but in some instances a user might want to save some passwords and not others.
33269 In this case, enabling this feature will make Alpine not add any more passwords to the
33270 password file and will only use the passwords that it already saved. If you wish to allow
33271 Alpine to save more passwords in the password file, disable this feature.
33273 <UL>   
33274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33275 </UL><P>
33276 &lt;End of help on this topic&gt;
33277 </BODY>
33278 </HTML>
33279 ====== h_config_disable_kb_lock =====
33280 <HTML>
33281 <HEAD>
33282 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33283 </HEAD>
33284 <BODY>
33285 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33287 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33289 <UL>   
33290 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33291 </UL><P>
33292 &lt;End of help on this topic&gt;
33293 </BODY>
33294 </HTML>
33295 ====== h_config_disable_config_cmd =====
33296 <HTML>
33297 <HEAD>
33298 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33299 </HEAD>
33300 <BODY>
33301 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33303 If set, then the Setup/Config screen is disabled.
33305 <UL>   
33306 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33307 </UL><P>
33308 &lt;End of help on this topic&gt;
33309 </BODY>
33310 </HTML>
33311 ====== h_config_allow_chg_from =====
33312 <HTML>
33313 <HEAD>
33314 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33315 </HEAD>
33316 <BODY>
33317 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33319 This feature affects Alpine's handling of the &quot;From:&quot; header field
33320 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33321 option.
33323 If this feature is set then the From line can be changed just like
33324 all the other header fields that can be changed.
33325 This feature defaults to <EM>ON</EM>.
33327 Even with this feature turned ON (the default) you will not be able 
33328 to change the From header unless you add it to your list of
33329 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33330 You may also want to change the
33331 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33332 if you want the From header to always show up in the composer without
33333 having to type the Rich Headers command first.
33335 Note that many sites restrict the use of this feature in order to
33336 reduce the chance of falsified addresses and misdirected mail.
33337 If you want to change the value of what gets included in the From header
33338 in messages you send
33339 look <A HREF="h_config_change_your_from">here</A> for a description.
33341 <UL>   
33342 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33343 </UL><P>
33344 &lt;End of help on this topic&gt;
33345 </BODY>
33346 </HTML>
33347 ====== h_config_disable_collate =====
33348 <HTML>
33349 <HEAD>
33350 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33351 </HEAD>
33352 <BODY>
33353 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33355 This is a hard to understand feature that should only be used in rare cases.
33356 Normally, the C function call
33358 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33360 is used by Alpine.
33361 If you want to try turning it off,
33362 setting this feature will turn it off.
33363 This part of the locale has to do with the sort order
33364 of characters in your locale.
33366 <UL>   
33367 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33368 </UL><P>
33369 &lt;End of help on this topic&gt;
33370 </BODY>
33371 </HTML>
33372 ====== h_config_quell_attach_extra_prompt =====
33373 <HTML>
33374 <HEAD>
33375 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33376 </HEAD>
33377 <BODY>
33378 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33380 By default, when you attempt to view an attachment externally
33381 from the &quot;Attachment View&quot; screen, you are asked if you
33382 really want to view the selected attachment.
33385 If this feature is set, you will <B>not</B> be prompted to confirm
33386 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33387 prompt. This feature was added for those wanting to preserve that
33388 behavior (along with 
33389 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33392 <UL>   
33393 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33394 </UL><P>
33395 &lt;End of help on this topic&gt;
33396 </BODY>
33397 </HTML>
33398 ====== h_config_quell_attach_ext_warn =====
33399 <HTML>
33400 <HEAD>
33401 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33402 </HEAD>
33403 <BODY>
33404 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33407 This feature suppresses the extra warning you can get when trying
33408 to view an attachment for which there is no mime-type match.  Turning
33409 on this feature will just run the program according to extension
33410 instead of first warning the user that it will run according to the
33411 file's extension.
33413 This feature can be used along side 
33414 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33415 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33417 <UL>   
33418 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33419 </UL><P>
33420 &lt;End of help on this topic&gt;
33421 </BODY>
33422 </HTML>
33423 ====== h_config_mailcap_params =====
33424 <HTML>
33425 <HEAD>
33426 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33427 </HEAD>
33428 <BODY>
33429 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33431 If set, this will allow mailcap named parameter substitution to occur
33432 in mailcap entries.
33433 By default, this is turned off to prevent security problems that may occur
33434 with some incorrect mailcap configurations.
33435 For more information, see RFC1524 and look for "named parameters" in the
33436 text of the RFC.
33438 <UL>   
33439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33440 </UL><P>
33441 &lt;End of help on this topic&gt;
33442 </BODY>
33443 </HTML>
33444 ====== h_config_disable_shared =====
33445 <HTML>
33446 <HEAD>
33447 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33448 </HEAD>
33449 <BODY>
33450 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33452 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33453 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33454 will be disabled.
33455 The reason this feature exists is because there are some implementations
33456 of system password lookup routines that are very slow when presented with
33457 a long loginname that does not exist.
33458 This feature could be set to prevent the delay at startup time when the
33459 names above are searched for in the password file.
33461 <UL>   
33462 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33463 </UL><P>
33464 &lt;End of help on this topic&gt;
33465 </BODY>
33466 </HTML>
33467 ====== h_config_hide_nntp_path =====
33468 <HTML>
33469 <HEAD>
33470 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33471 </HEAD>
33472 <BODY>
33473 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33475 Normally the Path header that Alpine generates when posting to a newsgroup
33476 contains the name of the computer from which the message is being sent and
33477 the user name.
33478 Some believe that this information is used by spammers.
33479 If this feature is set, that information will be replaced with the text
33481 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33483 instead.
33485 It should be noted that many servers being connected to will still reveal
33486 the information that this feature attempts to protect.
33488 <UL>   
33489 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33490 </UL><P>
33491 &lt;End of help on this topic&gt;
33492 </BODY>
33493 </HTML>
33494 ====== h_config_no_bezerk_zone =====
33495 <HTML>
33496 <HEAD>
33497 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33498 </HEAD>
33499 <BODY>
33500 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33502 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33503 (the line that begins with From <SPACE>).
33504 Some versions of Berkeley mail have trouble with this, and don't recognize
33505 the line as a message delimiter.
33506 If this feature is set, the timezone will be left off the delimiter line.
33508 <UL>   
33509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33510 </UL><P>
33511 &lt;End of help on this topic&gt;
33512 </BODY>
33513 </HTML>
33514 ====== h_config_quell_domain_warn =====
33515 <HTML>
33516 <HEAD>
33517 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33518 </HEAD>
33519 <BODY>
33520 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33522 When your configuration is set up so that your domain name contains no dots,
33523 it is usually a configuration error.
33524 By default, Alpine will warn you about this when you start it up.
33525 You will see a warning message that looks like
33528 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33531 If this feature is set, the warning is turned off.
33533 <UL>   
33534 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33535 </UL><P>
33536 &lt;End of help on this topic&gt;
33537 </BODY>
33538 </HTML>
33539 ====== h_config_quell_imap_env =====
33540 <HTML>
33541 <HEAD>
33542 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33543 </HEAD>
33544 <BODY>
33545 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33547 In the MESSAGE INDEX screen, if the open folder is being accessed
33548 using IMAP, Alpine normally tries to paint the index lines on the screen
33549 as soon as the information arrives from the IMAP server.
33550 This means that the index information makes it onto the screen more quickly
33551 than it otherwise would.
33552 This sometimes results in behavior that bothers some users.
33553 For example, when paging to a new page of the index, it may be possible for
33554 the lines to be painted on the screen in a random order, rather than from
33555 top to bottom.
33558 Setting this feature causes Alpine to wait for all of the information
33559 to be gathered before it paints the index screen.
33560 Once it collects all of the information, the screen will be painted quickly
33561 from top to bottom.
33563 <UL>   
33564 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33565 </UL><P>
33566 &lt;End of help on this topic&gt;
33567 </BODY>
33568 </HTML>
33569 ====== h_config_quell_news_env =====
33570 <HTML>
33571 <HEAD>
33572 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33573 </HEAD>
33574 <BODY>
33575 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33577 In the MESSAGE INDEX screen, if the open folder is being accessed
33578 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33579 as soon as the information arrives from the NNTP server.
33580 This means that the index information makes it onto the screen more quickly
33581 than it otherwise would.
33582 This sometimes results in behavior that bothers some users.
33583 For example, when paging to a new page of the index, it may be possible for
33584 the lines to be painted on the screen in a random order, rather than from
33585 top to bottom.
33588 Setting this feature causes Alpine to wait for all of the information
33589 to be gathered before it paints the index screen.
33590 Once it collects all of the information, the screen will be painted quickly
33591 from top to bottom.
33593 <UL>   
33594 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33595 </UL><P>
33596 &lt;End of help on this topic&gt;
33597 </BODY>
33598 </HTML>
33599 ====== h_config_quell_content_id =====
33600 <HTML>
33601 <HEAD>
33602 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33603 </HEAD>
33604 <BODY>
33605 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33607 This feature changes the behavior of Alpine when sending messages.
33608 It is intended to work around a bug in Microsoft's Outlook XP mail user
33609 agent.
33610 As of this writing, Microsoft has acknowledged the bug but
33611 has not added it to the Knowledge Base.
33612 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33613 This particular bug has bug fix number OfficeQFE:4781.
33614 The nature of the bug is that messages with attachments that
33615 contain a Content-ID header (which standard Alpine attachments do)
33616 do not show the attachment indicator (a paperclip) when viewed with
33617 Outlook XP.
33618 So the user has no indication that the message contains an attachment.
33621 If this feature is set then Alpine will remove most Content-ID headers
33622 before sending a message.
33623 If an attachment is of type MESSAGE, then the existing Content-ID headers
33624 inside the message will be left intact.
33625 This would only happen with Alpine if a message was forwarded as an attachment
33626 or if a message with a message attached was forwarded.
33627 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33628 the Content-ID headers of the alternative parts will not be removed.
33631 Because the Content-ID header is a standard part of MIME it is possible
33632 that setting this feature will break something.
33633 For example, if an attachment has a Content-ID header that is necessary
33634 for the correct functioning of that attachment, it is possible that Alpine
33635 may remove that header when the attachment is forwarded.
33636 However, it seems fairly safe at this time.
33639 <UL>   
33640 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33641 </UL><P>
33642 &lt;End of help on this topic&gt;
33643 </BODY>
33644 </HTML>
33645 ====== h_config_winpos_in_config =====
33646 <HTML>
33647 <HEAD>
33648 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33649 </HEAD>
33650 <BODY>
33651 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33653 PC-Alpine only.
33656 Normally, PC-Alpine will store its window size and position in the
33657 Windows Registry.
33658 This is convenient if you want to use the same remote
33659 configuration from more than one PC.
33660 If you use multiple configuration files to start PC-Alpine, you may want
33661 to store the window size and position in the configuration file instead
33662 of in the Registry.
33663 Setting this feature causes the value to be stored in 
33664 <A HREF="h_config_window_position">Window-Position</A>.
33667 <UL>   
33668 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33669 </UL><P>
33670 &lt;End of help on this topic&gt;
33671 </BODY>
33672 </HTML>
33673 ====== h_config_quell_ssl_largeblocks =====
33674 <HTML>
33675 <HEAD>
33676 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33677 </HEAD>
33678 <BODY>
33679 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
33681 PC-Alpine only.
33683 This feature changes the behavior of fetching messages
33684 and attachments so that the message data is fetched in chunks no larger
33685 than 12K bytes.
33686 This works around a bug in Microsoft's SSL/TLS support.
33687 Some versions of Microsoft SSL are not able to read full-sized (16K)
33688 SSL/TLS packets.
33689 Some servers will send such packets and this will
33690 cause PC-Alpine to crash with the error
33693 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
33696 Microsoft is aware of the problem and has developed a hotfix for it, it is
33697 discussed in article 300562 in the Microsoft Knowledge Base.
33699 <UL>   
33700 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33701 </UL><P>
33702 &lt;End of help on this topic&gt;
33703 </BODY>
33704 </HTML>
33705 ====== h_config_quell_partial =====
33706 <HTML>
33707 <HEAD>
33708 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
33709 </HEAD>
33710 <BODY>
33711 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33713 Partial fetching is a feature of the IMAP protocol.
33714 By default, Alpine
33715 will use partial fetching when copying the contents of a message or attachment
33716 from the IMAP server to Alpine.
33717 This means that the fetch will be done in many
33718 small chunks instead of one big chunk. The main benefit of this approach is
33719 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33720 to stop the fetch early. In some cases partial fetching may cause a performance
33721 problem so that the fetching of data takes significantly longer when partial
33722 fetching is used. Turning on this feature will turn off partial fetching.
33724 <UL>   
33725 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33726 </UL><P>
33727 &lt;End of help on this topic&gt;
33728 </BODY>
33729 </HTML>
33730 ====== h_config_quell_personal_name_prompt =====
33731 <HTML>
33732 <HEAD>
33733 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33734 </HEAD>
33735 <BODY>
33736 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33738 PC-Alpine only.  This feature quells the prompting for a 
33739 <A HREF="h_config_pers_name">personal name</A>.  This
33740 prompt normally happens before composing a message, and only happens when
33741 there is no personal name already set.
33743 <UL>   
33744 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33745 </UL><P>
33746 &lt;End of help on this topic&gt;
33747 </BODY>
33748 </HTML>
33749 ====== h_config_quell_user_id_prompt =====
33750 <HTML>
33751 <HEAD>
33752 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33753 </HEAD>
33754 <BODY>
33755 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33757 PC-Alpine only.  This feature quells the prompting for a 
33758 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33759 if the information can be obtained from the login name used
33760 to open the INBOX.  Normally, this prompt happens before composing
33761 a message, and only happens when there is no user-id already set
33762 in the configuration.
33764 With this feature set, composing a message is only possible after
33765 establishing a connection to the INBOX.
33767 <UL>   
33768 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33769 </UL><P>
33770 &lt;End of help on this topic&gt;
33771 </BODY>
33772 </HTML>
33773 ====== h_config_save_aggregates =====
33774 <HTML>
33775 <HEAD>
33776 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33777 </HEAD>
33778 <BODY>
33779 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33781 This feature will optimize an aggregate copy operation, if
33782 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33783 list of the messages to be copied.
33784 This feature is set by default.
33785 This may reduce network traffic and elapsed time for the Save.
33786 <EM>However, many IMAP servers (including the UW IMAP server) do
33787 not preserve the order of messages when this optimization is applied.</EM>
33788 If this feature is not set, 
33789 Alpine will copy each message individually and the order of the messages
33790 will be preserved.
33792 <UL>   
33793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33794 </UL><P>
33795 &lt;End of help on this topic&gt;
33796 </BODY>
33797 </HTML>
33798 ====== h_config_use_system_translation =====
33799 <HTML>
33800 <HEAD>
33801 <TITLE>FEATURE: Use System Translation</TITLE>
33802 </HEAD>
33803 <BODY>
33804 <H1>FEATURE: Use System Translation</H1>
33806 UNIX Alpine only.
33808 Alpine normally uses its own internal software to convert between the multi-byte
33809 representation of characters and the Unicode representation of those
33810 same characters.
33811 It converts from the multi-byte characters your keyboard produces to Unicode,
33812 and from Unicode to the multi-byte characters your display expects.
33813 Alpine also uses its own internal software to decide how much space on
33814 the screen a particular Unicode character will occupy.
33817 Setting this feature tells Alpine to use the system-supplied routines to
33818 perform these tasks instead.
33819 In particular there are three tasks and three system routines that will
33820 be used for these tasks.
33823 To convert from multi-byte to Unicode the routine
33826 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33829 is used.
33830 To convert from Unicode to multi-byte the routine
33833 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33836 is used.
33837 And to find the screen width a particular Unicode character will
33838 occupy the routine used is
33841 <CENTER><SAMP>wcwidth</SAMP></CENTER>
33844 This feature has been only lightly tested.
33845 The internal routines should normally be used unless you run into
33846 a problem that you think may be solved by using the system routines.
33847 Note that your environment needs to be set up for these
33848 routines to work correctly.
33849 In particular, the LANG or LC_CTYPE variable in your environment will
33850 need to be set.
33853 <UL>   
33854 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33855 </UL><P>
33856 &lt;End of help on this topic&gt;
33857 </BODY>
33858 </HTML>
33859 ====== h_config_suspend_spawns =====
33860 <HTML>
33861 <HEAD>
33862 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
33863 </HEAD>
33864 <BODY>
33865 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
33867 This feature affects Alpine's behavior when process suspension is enabled
33868 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
33869 temporarily interact with the operating system command &quot;shell&quot; 
33870 without
33871 quitting Alpine, and then subsequently resume the still-active Alpine session.
33874 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
33875 is set and subsequently the Ctrl-Z key
33876 is pressed, Alpine will normally suspend itself and return temporary control
33877 to Alpine's parent shell process.  However, if this feature is set, Alpine
33878 will instead create an inferior subshell process.  This is useful when the
33879 parent process is not intended to be used interactively.  Examples include
33880 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
33881 or via a menu system.<P>
33883 Note that one typically resumes a suspended Alpine by entering the Unix
33884 &quot;fg&quot; command, but if this feature is set, it will be necessary to
33885 enter the &quot;exit&quot; command instead.
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_8bit_smtp =====
33894 <HTML>
33895 <HEAD>
33896 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
33897 </HEAD>
33898 <BODY>
33899 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
33901 This feature affects Alpine's behavior when sending mail.
33902 By default, this feature is set.
33903 Internet standards
33904 require that all electronic mail messages traversing the global Internet
33905 consist of 7bit ASCII characters unless a pair of cooperating mail 
33906 transfer agents explicitly agree to allow 8bit messages.  In general, 
33907 then, exchanging messages in non-ASCII characters requires MIME encoding.
33909 However, there are now Internet standards that allow for unencoded 8bit
33910 exchange of messages between cooperating systems.  When this feature is set
33911 Alpine will try to negotiate unencoded 8bit transmission during the
33912 sending process.  Should the negotiation fail, Alpine will fall back to its
33913 ordinary encoding rules. 
33915 Note, this feature relies on your system's mail transport agent or
33916 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
33917 having the negotiation mechanism introduced in
33918 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
33919 &quot;8BITMIME&quot;. 
33921 ESMTP allows for graceful migration to upgraded mail transfer agents, but
33922 it is possible that this feature might cause problems for some servers. 
33923 <P><UL>
33924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33925 </UL>
33926 <P>&lt;End of help on this topic&gt;
33927 </BODY>
33928 </HTML>
33929 ====== h_config_8bit_nntp =====
33930 <HTML>
33931 <HEAD>
33932 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
33933 </HEAD>
33934 <BODY>
33935 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
33937 This feature affects Alpine's behavior when posting news.  
33941 The Internet standard for exchanging USENET news messages (RFC-1036)
33942 specifies that USENET messages should conform to Internet mail standards
33943 and contain only 7bit characters, but much of the news transport software
33944 in use today is capable of successfully sending messages containing 8bit
33945 characters.  Hence, many people believe that it is appropriate to send 8bit
33946 news messages without any MIME encoding.
33950 Moreover, there is no Internet standard for explicitly negotiating 8bit
33951 transfer, as there is for Internet email.  Therefore, Alpine provides the
33952 option of posting unencoded 8bit news messages, though not as the default.
33953 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
33954 postings that contain 8bit characters. 
33958 Note, articles may cross a path or pass through news transport software
33959 that is unsafe or even hostile to 8bit characters.  At best this will only
33960 cause the posting to become garbled.  The safest way to transmit 8bit
33961 characters is to leave Alpine's MIME encoding turned on, but recipients
33962 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
33963 messages.
33965 &lt;End of help on this topic&gt;
33966 </BODY>
33967 </HTML>
33968 ====== h_config_mark_for_cc =====
33969 <HTML>
33970 <HEAD>
33971 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
33972 </HEAD>
33973 <BODY>
33974 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
33976 This feature affects Alpine's MESSAGE INDEX display.
33977 By default, a '+' is displayed in the first column if the
33978 message is addressed directly to you.
33979 When this feature is set and the message is not addressed to you, then a
33980 '-' character is displayed if the message is instead Cc'd directly
33981 to you.
33984 <UL>   
33985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33986 </UL><P>
33987 &lt;End of help on this topic&gt;
33988 </BODY>
33989 </HTML>
33990 ====== h_config_tab_uses_unseen =====
33991 <HTML>
33992 <HEAD>
33993 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
33994 </HEAD>
33995 <BODY>
33996 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
33998 This feature affects Alpine's behavior when using the TAB
33999 <A HREF="h_common_nextnew">NextNew Command</A>
34000 to move from one folder to the next.
34001 Alpine's usual behavior is to search for folders
34002 with <EM>Recent</EM> messages in them.
34003 Recent messages are messages that have arrived since the last time the
34004 folder was opened.
34007 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34008 messages instead of Recent messages.
34009 Unseen messages remain Unseen until you view them (or flag then as Seen with
34010 the <A HREF="h_common_flag">Flag Command</A>).
34011 Setting this feature allows you to locate messages you have not read
34012 instead of only recently received messages.
34013 When this feature is set, the feature
34014 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34015 will have no effect, so the checking may be slower.
34018 Another reason why you might want to use this feature is that Alpine sometimes
34019 opens folders implicitly behind the scenes, and this clears the
34020 Recent status of all messages in the folder.
34021 One example where this happens is when Saving or filtering a
34022 message to another folder.
34023 If that message has some <A HREF="h_config_keywords">keywords</A>
34024 set, then because of some shortcomings
34025 in the IMAP specification, the best way to ensure that those keywords are
34026 still set in the saved copy of the message is to open the folder and
34027 set the keywords explicitly.
34028 Because this clears the Recent status of all messages in that folder the
34029 folder will not be found by the NextNew command unless this feature is set.
34032 &lt;End of help on this topic&gt;
34033 </BODY>
34034 </HTML>
34035 ====== h_config_tab_new_only =====
34036 <HTML>
34037 <HEAD>
34038 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34039 </HEAD>
34040 <BODY>
34041 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34043 This feature affects Alpine's behavior when using the TAB key to move from
34044 one message to the next.  Alpine's usual behavior is to select the next
34045 unread message or message flagged as "Important".
34049 Setting this feature causes Alpine to skip the messages flagged as important,
34050 and select unread messages exclusively.  Tab behavior when there are no
34051 new messages left to select remains unchanged.
34053 &lt;End of help on this topic&gt;
34054 </BODY>
34055 </HTML>
34056 ====== h_config_warn_if_subj_blank =====
34057 <HTML>
34058 <HEAD>
34059 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34060 </HEAD>
34061 <BODY>
34062 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34064 This feature affects Alpine's behavior when you send a message being
34065 composed.
34066 If this option is set, Alpine will check to see if the message about to be sent
34067 has a subject or not.
34068 If not, you will be asked if you want to send the message anyway.
34071 <UL>   
34072 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34073 </UL><P>
34074 &lt;End of help on this topic&gt;
34075 </BODY>
34076 </HTML>
34077 ====== h_config_warn_if_fcc_blank =====
34078 <HTML>
34079 <HEAD>
34080 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34081 </HEAD>
34082 <BODY>
34083 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34085 This feature affects Alpine's behavior when you send a message being
34086 composed.
34087 If this option is set, Alpine will check to see if the message about to be sent
34088 has an Fcc or not.
34089 If not, you will be asked if you want to send the message anyway.
34092 <UL>   
34093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34094 </UL><P>
34095 &lt;End of help on this topic&gt;
34096 </BODY>
34097 </HTML>
34098 ====== h_config_warn_if_no_to_or_cc =====
34099 <HTML>
34100 <HEAD>
34101 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
34102 </HEAD>
34103 <BODY>
34104 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
34106 This feature affects Alpine's behavior when you send a message being
34107 composed.
34108 If this option is set, Alpine will check to see if the message about to be sent
34109 has either a To address, a Cc address, or a Newsgroup.
34110 If none of these is set,
34111 you will be asked if you want to send the message anyway.
34114 This feature is closely related to
34115 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
34116 Alpine will normally ask if you want to copy a message only to the Fcc.
34117 This feature also applies to cases where there is a Bcc but still no To, Cc,
34118 or Newsgroup.
34119 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
34120 message with only an Fcc, then you won't be asked about sending with
34121 a blank To and Cc and Newsgroups header even if this feature is set.
34122 Similarly, if you have already been asked if you want to send to the Fcc
34123 only and you have answered Yes, then you won't be asked again about sending with
34124 blank To, Cc, and Newsgroups headers even if this feature is set.
34127 <UL>   
34128 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34129 </UL><P>
34130 &lt;End of help on this topic&gt;
34131 </BODY>
34132 </HTML>
34133 ====== h_config_quell_dead_letter =====
34134 <HTML>
34135 <HEAD>
34136 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
34137 </HEAD>
34138 <BODY>
34139 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
34141 This feature affects Alpine's behavior when you cancel a message being
34142 composed.  Alpine's usual behavior is to write the canceled message to
34143 a file named 
34144 <!--chtml if pinemode="os_windows"-->
34145 &quot;DEADLETR&quot;,
34146 <!--chtml else-->
34147 &quot;dead.letter&quot; in your home directory,
34148 <!--chtml endif-->
34149 overwriting any previous message. Under
34150 some conditions (some routine), this can introduce a noticeable delay.
34151 Setting this feature will cause Alpine NOT to write canceled compositions
34152 into the file.
34154 NOTE: Enabling this feature means NO record of canceled messages is
34155 maintained.
34157 This feature affects the newer option
34158 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
34159 number of dead letter files to keep around.
34160 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
34162 <UL>   
34163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34164 </UL><P>
34165 &lt;End of help on this topic&gt;
34166 </BODY>
34167 </HTML>
34168 ====== h_config_quell_beeps =====
34169 <HTML>
34170 <HEAD>
34171 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
34172 </HEAD>
34173 <BODY>
34174 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
34176 This feature affects Alpine's behavior when it displays status message
34177 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
34178 will not affect the display of such messages, but will cause those that
34179 emit a beep to become silent.
34182 <UL>   
34183 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34184 </UL><P>
34185 &lt;End of help on this topic&gt;
34186 </BODY>
34187 </HTML>
34188 ====== h_config_suppress_user_agent =====
34189 <HTML>
34190 <HEAD>
34191 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
34192 </HEAD>
34193 <BODY>
34194 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
34196 If this feature is set then Alpine will not generate a
34197 <CODE>User-Agent</CODE> header in outgoing messages.
34199 <UL>   
34200 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34201 </UL><P>
34202 &lt;End of help on this topic&gt;
34203 </BODY>
34204 </HTML>
34205 ====== h_config_quell_lock_failure_warnings =====
34206 <HTML>
34207 <HEAD>
34208 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
34209 </HEAD>
34210 <BODY>
34211 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
34213 This feature affects Alpine's behavior when it encounters a problem
34214 acquiring a mail folder lock.  Typically, a secondary file associated
34215 with the mail folder being opened is created as part of the locking
34216 process.  On some systems, such file creation has been administratively
34217 precluded by the system configuration.
34219 Alpine issues a warning when such failures occur, which can become bothersome
34220 if the system is configured to disallow such actions.  Setting this
34221 feature causes Alpine to remain silent when this part of lock creation fails.
34223 WARNING: systems that have been configured in a way that precludes locking
34224 introduce some risk of mail folder corruption when more than one program
34225 attempts to modify the mail folder.  This is most likely to occur to one's
34226 INBOX or other incoming message folder. 
34228 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34230 <UL>   
34231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34232 </UL><P>
34233 &lt;End of help on this topic&gt;
34234 </BODY>
34235 </HTML>
34236 ====== h_config_enable_role_take ======
34237 <HTML>
34238 <HEAD>
34239 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34240 </HEAD>
34241 <BODY>
34242 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34244 Normally, the Take command takes addresses from a message and helps you
34245 put them into your Address Book.
34246 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34247 you may find it useful
34248 to be able to Take information from a message's headers and put it into
34249 a new Rule.
34250 When this feature is set, you will be given an extra prompt that gives
34251 you the choice to Take into the Address Book or Take into a rule.
34252 <P><UL>
34253 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34254 </UL>
34256 &lt;End of help on this topic&gt;
34257 </BODY>
34258 </HTML>
34259 ====== h_config_enable_take_export ======
34260 <HTML>
34261 <HEAD>
34262 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34263 </HEAD>
34264 <BODY>
34265 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34267 Normally, the Take command takes addresses from a message and helps you
34268 put them into your Address Book.
34269 When this feature is set, you will be given an extra prompt that gives you
34270 the choice to Take addresses into a file instead of your Address
34271 Book.
34272 Only the user@domain_name part of the address is put in the file.
34273 <P><UL>
34274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34275 </UL>
34277 &lt;End of help on this topic&gt;
34278 </BODY>
34279 </HTML>
34280 ====== h_config_quell_folder_internal_msg ======
34281 <HTML>
34282 <HEAD>
34283 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34284 </HEAD>
34285 <BODY>
34286 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34288 This feature determines whether or not Alpine will create 
34289 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34290 MMDF format. <P> 
34292 Alpine will normally create these pseudo messages when they are not already
34293 present in a standard Unix or MMDF folder.  Their purpose is to record
34294 certain mailbox state data needed for correct IMAP and POP server
34295 operation, and also for Alpine to be able to mark messages as Answered when
34296 the Reply has been postponed.<P>
34298 Sites that do not use IMAP/POP for remote mail access, and that need to
34299 support mail tools that are adversely affected by the presence of the
34300 pseudo-messages (e.g. some mail notification tools) may enable this
34301 feature to tell Alpine not to create them.  Note that Alpine's 
34302 &quot;Answered&quot; flag
34303 capability will be adversely affected if this is done.<P>
34305 Note too that, even if this feature is enabled, Alpine will not remove
34306 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34307 or ipopd servers.) This feature has no effect on folders that are not in
34308 standard Unix or MMDF format, as pseudo-messages are not needed in the
34309 other formats to record mailbox state information.
34310 <P><UL>
34311 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34312 </UL>
34314 &lt;End of help on this topic&gt;
34315 </BODY>
34316 </HTML>
34317 ====== h_config_mulnews_as_typed ======
34318 <HTML>
34319 <HEAD>
34320 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34321 </HEAD>
34322 <BODY>
34323 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34325 This feature will be of little use to most users.
34326 It has no effect unless the feature
34327 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34328 is set.
34330 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34331 then the setting of this feature may have an effect on the names of the
34332 newsrc files used.
34333 Normally, the name of the news server will be canonicalized before it is
34334 used in the newsrc file name.
34335 For example, if you type the news server name
34338 <CENTER><SAMP>servername</SAMP></CENTER>
34341 it is likely that the canonical name will be something like
34344 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34347 Or it may be the case that
34350 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34353 is really an alias (a DNS CNAME) for
34356 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34359 If this feature is not set, then the canonicalized names will be used.
34360 If this feature is set, then the name you typed in (or put in your
34361 configuration) will be used.
34363 <P><UL>
34364 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34365 </UL>
34367 &lt;End of help on this topic&gt;
34368 </BODY>
34369 </HTML>
34370 ====== h_config_quell_empty_dirs ======
34371 <HTML>
34372 <HEAD>
34373 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34374 </HEAD>
34375 <BODY>
34376 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34378 This feature causes Alpine to remove from the display any directories
34379 that do not contain at least one file or directory.  This can be useful
34380 to prevent overly cluttered folder lists when a collection is stored on
34381 a server that treats all names as both a folder and a directory.
34384 Note, enabling this feature can cause surprising behavior!  For example,
34385 you can still use Add to create a directory, but unless you immediately
34386 enter that directory and create a folder, that newly created directory
34387 may not be displayed next time you enter the folder list.
34390 The description above is not quite correct.
34391 Only directories which potentially may hold messages are hidden if empty.
34392 That is, a directory which is really just a directory and is not selectable
34393 as a folder will not be hidden.
34394 Such directories can occur on servers that treat most names as both a folder
34395 and a directory.
34396 These directories are typically created implicitly when a folder is created
34397 inside a directory that does not yet exist.
34400 <UL>   
34401 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34402 </UL><P>
34403 &lt;End of help on this topic&gt;
34404 </BODY>
34405 </HTML>
34406 ====== h_config_termcap_wins =====
34407 <HTML>
34408 <HEAD>
34409 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34410 </HEAD>
34411 <BODY>
34412 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34414 This feature may affect Alpine's low-level input routines.  Termcap (or
34415 terminfo, depending on how your copy of Alpine was compiled and linked)
34416 is the name of the database that describes terminal capabilities.  In
34417 particular, it describes the sequences of characters that various keys
34418 will emit.
34421 An example would be the Up Arrow key on the keyboard.  Up
34422 Arrow is not a distinct character on most Unix systems.  When you press
34423 the Up Arrow key a short sequence of characters are produced.  This
34424 sequence is supposed to be described in the termcap database by the
34425 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34426 are using terminfo instead of termcap).
34429 By default, Alpine defines some terminal
34430 escape sequences that are commonly used.  For example, the sequence
34431 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34432 &quot;ESC&nbsp;[&nbsp;A&quot;
34433 is also recognized as an Up Arrow key.  These are chosen because common
34434 terminals like VT100's or ANSI standard terminals produce these
34435 sequences when you press the Up Arrow key.
34438 If your system's termcap
34439 (terminfo) database assigns some other function to the sequence
34440 &quot;ESC&nbsp;O&nbsp;A&quot;
34441 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34442 database assigns a sequence that doesn't begin with an escape
34443 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34444 This usually works fine
34445 because most terminals emit the escape sequences that Alpine has defined
34446 by default.  We have also found that it is usually better to have these
34447 defaults take precedence over the definitions contained in the database
34448 because the defaults are more likely to be correct than the database.
34451 There are some terminals where this breaks down.  If you want Alpine to
34452 believe the definitions given in your termcap (terminfo) database in
34453 preference to the defaults the Alpine itself sets up, then you may turn
34454 this feature on.  Then, sequences of characters that are defined in
34455 both termcap (terminfo) and in Alpine's set of defaults will be
34456 interpreted the way that termcap (terminfo) says they should be
34457 interpreted.  Also, if your terminal capabilities database assigns a
34458 sequence that doesn't begin with escape, it will not be ignored.
34461 <UL>   
34462 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34463 </UL><P>
34464 &lt;End of help on this topic&gt;
34465 </BODY>
34466 </HTML>
34467 ====== h_config_cruise_mode =====
34468 <HTML>
34469 <HEAD>
34470 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34471 </HEAD>
34472 <BODY>
34473 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34475 This feature affects Alpine's behavior when you hit the
34476 &quot;Space&nbsp;Bar&quot; at
34477 the end of a displayed message.  Typically, Alpine complains that the end
34478 of the text has already been reached.  Setting this feature causes such
34479 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34480 taking you to the next &quot;interesting&quot; message,
34481 or scanning ahead to the 
34482 next incoming folder with &quot;interesting&quot; messages.
34485 <UL>   
34486 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34487 </UL><P>
34488 &lt;End of help on this topic&gt;
34489 </BODY>
34490 </HTML>
34491 ====== h_config_cruise_mode_delete =====
34492 <HTML>
34493 <HEAD>
34494 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34495 </HEAD>
34496 <BODY>
34497 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34499 This feature modifies the behavior of Alpine's 
34500 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34501 Setting this feature causes Alpine to implicitly delete read
34502 messages when it moves on to display the next &quot;interesting&quot; message.
34504 NOTE: Beware when enabling this feature AND the 
34505 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34506 feature.
34508 <UL>   
34509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34510 </UL><P>
34511 &lt;End of help on this topic&gt;
34512 </BODY>
34513 </HTML>
34514 ====== h_config_slash_coll_entire =====
34515 <HTML>
34516 <HEAD>
34517 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34518 </HEAD>
34519 <BODY>
34520 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34522 The slash (/) command is available from the MESSAGE INDEX screen when
34523 the folder is sorted by either Threads or OrderedSubject, and the
34524 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34525 is set to something other than &quot;none&quot;.
34526 Normally, the slash command Collapses or Expands the subthread that
34527 starts at the currently highlighted message, if any.
34528 If this option is set, then the slash command Collapses or Expands the
34529 <EM>entire</EM> current thread instead of just the subthread.
34530 The current thread is simply the top-level thread that contains the
34531 current message.
34534 <UL>   
34535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34536 </UL><P>
34537 &lt;End of help on this topic&gt;
34538 </BODY>
34539 </HTML>
34540 ====== h_config_color_thrd_import =====
34541 <HTML>
34542 <HEAD>
34543 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34544 </HEAD>
34545 <BODY>
34546 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34548 This option affects only the THREAD INDEX screen.
34549 Whether or not you ever see a THREAD INDEX screen depends on the setting
34550 of the configuration option
34551 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34552 and on the sort order of the index.
34555 If a message within a thread is flagged as Important
34556 and this option is set, then
34557 the entire line in the THREAD INDEX will be colored the color of the
34558 Index-important Symbol, which can be set using the
34559 <A HREF="h_color_setup">Setup Kolor</A> screen.
34562 <UL>   
34563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34564 </UL><P>
34565 &lt;End of help on this topic&gt;
34566 </BODY>
34567 </HTML>
34568 ====== h_config_allow_goto =====
34569 <HTML>
34570 <HEAD>        
34571 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34572 </HEAD>
34573 <BODY>
34574 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34576 This feature modifies the behavior of Alpine's file browser.  Setting this
34577 feature causes Alpine to offer the "G Goto" command in the file browser.
34578 That is the default.
34582 The Goto command allows you to explicitly type in the desired directory.
34584 &lt;End of help on this topic&gt;
34585 </BODY></HTML>
34586 ====== h_config_add_ldap =====
34587 <HTML>
34588 <HEAD>
34589 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34590 </HEAD>
34591 <BODY>
34592 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34594 If both the Directory option
34595 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34596 and this feature are set,
34597 then when an implicit directory lookup is done from the
34598 composer you will automatically be prompted to add the result of the
34599 directory lookup to your address book.
34601 <UL>   
34602 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34603 </UL><P>
34604 &lt;End of help on this topic&gt;
34605 </BODY>
34606 </HTML>
34607 ===== h_patterns_compat_behavior =====
34608 <HTML>
34609 <HEAD>
34610 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34611 </HEAD>
34612 <BODY>
34613 <H1>Rules Behavior Changes in Pine 4.50</H1>
34615 In Alpine, Rules that contain unrecognized elements
34616 are ignored.
34617 In most cases, the unrecognized elements will be something that was
34618 added as a new Rules feature in a later version of Alpine.
34619 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34620 ignore rules that contained unrecognized elements.
34621 For example, a new element of Rules that was added in Pine 4.50 is
34622 Age interval.
34623 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34624 all messages older than a week red.
34625 Now, if you run Pine 4.44 using that same configuration file, it will not
34626 recognize the Age interval and so will just ignore it.
34627 That means that all messages will match that rule so all messages will
34628 be colored red when using Pine version 4.44.
34631 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34632 However, since the behavior still exists in versions prior to Pine 4.50 and
34633 since Filtering is a potentially destructive operation, another measure
34634 was taken to attempt to avoid unintentional Filtering of messages.
34635 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34636 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34637 will be copied to a new Filters configuration variable
34638 with a different name (&quot;Patterns-Filters2&quot;).
34639 From then on, Alpine will continue to use the new
34640 variable.
34641 Of course, Pine version 4.44 or lower will continue to use the old
34642 variable.
34643 That means that if you are using Alpine
34644 and also using a version of Pine that is older than 4.50, they will not
34645 share the configuration information about Filters.
34646 If you make a change in one version you won't see it in the other version.
34649 Since Scoring can be used to trigger Filtering, the same thing has been
34650 done for Score rules.
34651 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34652 and the new name is (&quot;Patterns-Scores2&quot;).
34653 The same is not true of Role, Indexcolor, and Other rules that are
34654 thought to be less harmful when a mistake is made.
34657 &lt;End of help on this topic&gt;
34658 </BODY>
34659 </HTML>
34660 ======= h_config_filt_opts_sentdate =======
34661 <HTML>
34662 <HEAD>
34663 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34664 </HEAD>
34665 <BODY>
34666 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34668 By default, the Age interval of a Pattern uses a message's time of
34669 arrival to compute the age of the message.
34670 If this feature is set, the date in the message's Date header will
34671 be used instead.
34673 &lt;End of help on this topic&gt;
34674 </BODY>
34675 </HTML>
34676 ======= h_config_filt_opts_notdel =======
34677 <HTML>
34678 <HEAD>
34679 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
34680 </HEAD>
34681 <BODY>
34682 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
34684 If this option is set then a message will be moved into the
34685 specified folder only if it is not marked for deletion.
34686 This is useful if you have multiple Alpine sessions running
34687 simultaneously and you don't want messages to be filtered into a
34688 folder more than once.
34689 It is also useful if you want to filter
34690 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
34691 This method is not foolproof.
34692 There may be cases where a message
34693 gets marked deleted and so it is never filtered into the folder.
34694 For example, if you deleted it in another Alpine session or another mail
34695 program that didn't use the filtering rule.
34697 This option has no effect if the Filter Action is not set to Move.
34699 &lt;End of help on this topic&gt;
34700 </BODY>
34701 </HTML>
34702 ======= h_config_filt_opts_nonterm =======
34703 <HTML>
34704 <HEAD>
34705 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
34706 </HEAD>
34707 <BODY>
34708 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
34710 If this option is set then this is a non-terminating rule.
34711 Usually, for each message, Alpine searches through the Filter Rules until
34712 a match is found and then it performs the action associated with that rule.
34713 Rules following the match are not considered.
34714 If this option is set then the search for matches will continue at the next
34715 rule.
34717 If a non-terminating rule matches then the actions associated with
34718 that rule, except for any implied deletion of the message, are performed
34719 before the match for the next rule is checked.
34720 For example, if the non-terminating rule sets the Important status, then that
34721 status will be set when the next rule is considered.
34722 However, if the non-terminating rule Moves the message, the message will
34723 actually be copied instead of copied and deleted so that it is still there
34724 for the next rule.
34725 A moved message is deleted after all the relevant rules have been checked.
34726 The name of the &quot;Move&quot; action is confusing in this case because
34727 a single message can be moved to more than one folder.
34728 It turns the Move into a Copy instead, but it is still followed by a deletion
34729 at the end.
34731 This option may be useful if you want to have a single message filtered to
34732 two different folders because it matches two different Patterns.
34733 For example, suppose you normally filter messages to a particular mailing
34734 list into one folder, and messages addressed directly to you into a second
34735 folder.
34736 If a message is sent to both you and the list (and you can tell that by
34737 looking at the headers of the message) this option may give you a convenient
34738 way to capture a copy to each folder.
34739 (It may also cause you to capture two copies to each folder,
34740 depending on whether your mail system delivers one or two copies of the
34741 message to you and on how the list works.)
34743 &lt;End of help on this topic&gt;
34744 </BODY>
34745 </HTML>
34746 ===== h_mainhelp_smime ======
34747 <HTML>
34748 <HEAD>
34749 <TITLE>S/MIME Overview</TITLE>
34750 </HEAD>
34751 <BODY>
34752 <H1>S/MIME Overview</H1>
34754 S/MIME is a standard for the public key encryption and signing of email.
34755 UNIX Alpine contains a basic implementation of S/MIME based on
34756 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
34757 To check if this version of Alpine supports S/MIME look at
34758 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34759 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34761 Some limitations:
34762 <UL>
34763    <LI> There is no PC-Alpine implementation.
34764    <LI> There is no provision for checking for CRLs
34765         (Certificate Revocation Lists) in Alpine.
34766    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34767    <LI> There is no mechanism available for feeding either an entire incoming
34768         or an entire outgoing message to an external
34769         filter and using that external filter to do S/MIME or PGP processing.
34770    <LI> Because the implementation currently uses OpenSSL, there is only a very
34771         limited integration with the Mac OS Keychain (the storing and access of
34772         public certificates).
34773 </UL>
34775 The S/MIME configuration screen is reached by going to the Main Menu and typing
34776 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34779 <H2>S/MIME BASICS</H2>
34781 In order to digitally sign messages you send you must have a public/private key-pair.
34782 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34783 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34784 users or a company which provides certificates for its workers.
34785 These certificates are bound to an email address, so the identity being verified is the
34786 email address not a person's name.
34788 Mail is signed by using the sender's private key, which only the owner of the private key
34789 has access to.
34790 The signature is verified using the signer's public key, which anyone can
34791 have access to.
34792 With Alpine, the first time you receive a signed message the public key of the
34793 sender will be stored for future use.
34796 Mail is encrypted using the recipient's public key and decrypted by
34797 the recipient with their private key.
34800 You need a key of your own in order to sign outgoing messages and to have others
34801 encrypt messages sent to you.
34802 You do not need a key of your own to verify signed messages sent by others or to
34803 encrypt messages sent to others.
34805 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34807 By default UNIX Alpine stores the certificates it uses in a directory in your
34808 home directory.
34809 The directory name is
34811 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34813 Within that directory are three subdirectories.
34814 Each of the three subdirectories contains files with PEM-encoded contents,
34815 the default format for OpenSSL.
34816 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34817 The files within that directory have names that are email addresses with the
34818 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34819 An example filename is
34821 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34823 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34824 your private key.
34825 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34826 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34827 Authorities that you want to trust but that aren't contained in the set of system CAs.
34828 Those files may have arbitrary names as long as they end with the
34829 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34831 <H2>HOW TO SIGN AND ENCRYPT</H2>
34833 If you have a certificate you may sign outgoing messages.
34834 After typing the Ctrl-X command to send a message you will see the prompt
34836 <CENTER><SAMP>Send message?</SAMP></CENTER>
34838 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34839 Typing the &quot;G&quot; command will change the prompt to
34841 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
34843 Typing the &quot;E&quot; command will change the prompt to
34845 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
34847 You may even type both to get
34849 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
34852 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
34854 The reading of a signed message should not require any special action on
34855 your part.
34856 There should be an editorial addition at the start of the message which
34857 says either
34859 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
34863 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
34865 If an encrypted message is sent to you the encrypted text will not
34866 be shown.
34867 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
34868 you are viewing the message) and supply your passphrase when asked.
34870 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
34871 which gives you some information about the certificate used to sign or encrypt the message.
34873 <H2>MISCELLANEOUS</H2>
34875 If you have access to a private certificate in the PKCS12 format, which 
34876 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
34877 use the following commands to generate private keys, public and certificate
34878 authorities certificates. In the examples below, we assume that the 
34879 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
34880 that your email address is &quot;your@address.com&quot;.
34883 In order to create a private key use the command
34885 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
34887 In order to create a public certificate use the command
34889 <CENTER><SAMP>
34890 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
34891 </SAMP></CENTER>
34893 In order to create a certificate authority certificate use the command
34895 <CENTER><SAMP>
34896 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
34897 </SAMP></CENTER>
34899 <P> If the previous command produces an empty file, it means that the 
34900 certificate authority was not included in the .p12 file, so you will have 
34901 to get it from some other sources. You will need these certificates, so 
34902 that you can validate correctly signatures.
34905 After you have exported these certificates and keys, you can  use the import 
34906 command in Alpine, from the S/MIME configuration screen,
34907 to import these certificates into Alpine. They will be available for use
34908 as soon as you import them.
34910 &lt;End of help on this topic&gt;
34911 </BODY>
34912 </HTML>
34913 ====== h_config_smime_pubcertdir =====
34914 <HTML>
34915 <HEAD>
34916 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
34917 </HEAD>
34918 <BODY>
34919 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
34921 UNIX Alpine only.
34923 If the option
34924 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34925 is set then this option will have no effect.
34927 Normally, Public Certificates for use with S/MIME will be stored in the directory
34928 which is the value of this option.
34929 Those certificates will be stored in PEM format, one certificate per file.
34930 The name of the file for the certificate corresponding to
34932 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34934 should be
34936 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
34938 For example, a file for user@example.com would be in the file
34940 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34942 in this directory.
34944 Use the Setup/SMIME screen to modify this variable.
34946 Typically, the public certificates that you have will come from S/MIME signed
34947 messages that are sent to you.
34948 Alpine will extract the public certificate from the signed message and store
34949 it in the certificates directory.
34950 These PEM format public certificates look something like:
34951 <PRE>
34952 -----BEGIN CERTIFICATE-----
34953 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
34954 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
34955 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
34957 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
34958 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
34959 -----END CERTIFICATE-----
34960 </PRE>
34962 <UL>   
34963 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34964 </UL><P>
34966 <UL>   
34967 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34968 </UL><P>
34969 &lt;End of help on this topic&gt;
34970 </BODY>
34971 </HTML>
34972 ====== h_config_smime_pubcertcon =====
34973 <HTML>
34974 <HEAD>
34975 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
34976 </HEAD>
34977 <BODY>
34978 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
34980 UNIX Alpine only.
34982 If this option is set it will be used instead of
34983 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34985 This option gives you a way to store certificates remotely on an IMAP server
34986 instead of storing the certificates one per file locally.
34987 In order to do that you just give this option a remote folder name for a folder
34988 which does not yet exist.
34989 The name is similar to the name you might use for a remote configuration file.
34990 A remote folder name might look something like:
34992 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
34995 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34996 about the syntax of folder names.
34998 Use the Setup/SMIME screen to modify this variable.
35000 <UL>   
35001 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35002 </UL><P>
35004 <UL>   
35005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35006 </UL><P>
35007 &lt;End of help on this topic&gt;
35008 </BODY>
35009 </HTML>
35010 ====== h_config_smime_privkeydir =====
35011 <HTML>
35012 <HEAD>
35013 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
35014 </HEAD>
35015 <BODY>
35016 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
35018 UNIX Alpine only.
35020 In order to sign outgoing S/MIME messages you will need a
35021 personal digital ID certificate.
35022 You will usually get such a certificate from a certificate authority such as
35023 Thawte or CAcert.
35024 (In order to encrypt outgoing messages you don't need a personal digital ID, you
35025 need the public certificate of the recipient instead.)
35026 If the option
35027 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
35028 is set then this option will have no effect.
35030 Normally, Private Keys for use with S/MIME will be stored in the directory
35031 which is the value of this option.
35032 Those certificates will be stored in PEM format, one certificate per file.
35033 The name of the file for the certificate corresponding to your
35035 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35037 should be
35039 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
35041 For example, if your address is user@example.com the name of the file would be
35043 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
35045 in this directory.
35047 Use the Setup/SMIME screen to modify this variable.
35049 Typically, the private key that you have will come from a Certificate
35050 Authority.
35051 The private key should be stored in a PEM format file that
35052 looks something like:
35053 <PRE>
35054 -----BEGIN RSA PRIVATE KEY-----
35055 Proc-Type: 4,ENCRYPTED
35056 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
35058 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
35059 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
35060 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
35062 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
35063 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
35064 -----END RSA PRIVATE KEY-----
35065 </PRE>
35067 <UL>   
35068 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35069 </UL><P>
35071 <UL>   
35072 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35073 </UL><P>
35074 &lt;End of help on this topic&gt;
35075 </BODY>
35076 </HTML>
35077 ====== h_config_smime_privkeycon =====
35078 <HTML>
35079 <HEAD>
35080 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
35081 </HEAD>
35082 <BODY>
35083 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
35085 UNIX Alpine only.
35087 If this option is set it will be used instead of
35088 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35090 This option gives you a way to store keys remotely on an IMAP server
35091 instead of storing the keys one per file locally.
35092 In order to do that you just give this option a remote folder name for a folder
35093 which does not yet exist.
35094 The name is similar to the name you might use for a remote configuration file.
35095 A remote folder name might look something like:
35097 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
35100 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35101 about the syntax of folder names.
35103 Use the Setup/SMIME screen to modify this variable.
35105 <UL>   
35106 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35107 </UL><P>
35109 <UL>   
35110 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35111 </UL><P>
35112 &lt;End of help on this topic&gt;
35113 </BODY>
35114 </HTML>
35115 ====== h_config_smime_cacertdir =====
35116 <HTML>
35117 <HEAD>
35118 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
35119 </HEAD>
35120 <BODY>
35121 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
35123 UNIX Alpine only.
35125 If the option
35126 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
35127 is set then this option will have no effect.
35129 CACert is a shorthand name for certification authority certificate.
35130 Normally Alpine will use the CACerts that are located in the standard system
35131 location for CACerts.
35132 It may be the case that one of your correspondents has a Digital ID which has
35133 been signed by a certificate authority that is not in the regular set of system certificate
35134 authorities.
35135 You may supplement the system list by adding further certificates of your own.
35136 These should  be stored in the directory
35137 which is the value of this option.
35138 The certificates will be stored in PEM format, one certificate per file.
35139 The names of the files can be anything ending in &quot;.crt&quot;.
35141 Use the Setup/SMIME screen to modify this variable.
35143 These PEM format CA certificates look very similar to your public
35144 certificates for particular email addresses
35145 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
35147 <UL>   
35148 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35149 </UL><P>
35151 <UL>   
35152 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35153 </UL><P>
35154 &lt;End of help on this topic&gt;
35155 </BODY>
35156 </HTML>
35157 ====== h_config_smime_cacertcon =====
35158 <HTML>
35159 <HEAD>
35160 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
35161 </HEAD>
35162 <BODY>
35163 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
35165 UNIX Alpine only.
35167 If this option is set it will be used instead of
35168 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35170 This option gives you a way to store certificates remotely on an IMAP server
35171 instead of storing the certificates one per file locally.
35172 In order to do that you just give this option a remote folder name for a folder
35173 which does not yet exist.
35174 The name is similar to the name you might use for a remote configuration file.
35175 A remote folder name might look something like:
35177 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
35180 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35181 about the syntax of folder names.
35183 Use the Setup/SMIME screen to modify this variable.
35185 <UL>   
35186 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35187 </UL><P>
35189 <UL>   
35190 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35191 </UL><P>
35192 &lt;End of help on this topic&gt;
35193 </BODY>
35194 </HTML>
35195 ========== h_config_smime_sign_by_default ==========
35196 <HTML>
35197 <HEAD>
35198 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
35199 </HEAD>
35200 <BODY>
35201 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
35203 UNIX Alpine only.
35205 This feature only has an effect if your version of Alpine includes
35206 support for S/MIME.
35207 It affects Alpine's behavior when you send a message.
35208 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
35210 Only the default value is affected.
35211 In any case, you may still toggle the Signing option on or off before sending
35212 with the &quot;G Sign&quot; command (provided you have a personal digital ID
35213 certificate).
35215 <UL>   
35216 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35217 </UL><P>
35220 <UL>   
35221 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35222 </UL><P>
35223 &lt;End of help on this topic&gt;
35224 </BODY>
35225 </HTML>
35226 ========== h_config_smime_use_cert_store ==========
35227 <HTML>
35228 <HEAD>
35229 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35230 </HEAD>
35231 <BODY>
35232 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35234 UNIX Alpine only.
35236 This feature only has an effect if your version of Alpine includes
35237 support for S/MIME.
35238 It affects Alpine's behavior when you validate a message, and should
35239 not be disabled, unless you are performing a test.
35241 There are two important aspects of validation: validation of the message
35242 (that is, the message was not modified after it was sent) 
35243 as well as validation of the identity of the sender. This option has to 
35244 do with the latter. 
35246 In order to validate that the message came from the sender in the message
35247 and not an impersonator, Alpine can 
35248 either use the certificates that come in the message, or the ones that 
35249 you have personally stored. If this feature is enabled (the default) then 
35250 Alpine will use certificates that you have already saved in your store 
35251 and not those that come in the message to validate the sender of the 
35252 message. In particular, the first time that you receive a signed message
35253 from a sender, and their certificate does not validate against your
35254 store, then you will be asked if you wish to save such certificate. If
35255 you do not wish to save the certificate, then Alpine will fail to validate
35256 the signature of the message. Otherwise, Alpine will proceed to validate
35257 the signature of the message. This behavior helps you prevent against impersonation, because 
35258 it is assumed that you trust the certificates that you have saved, and 
35259 might not trust those that came with the message that you are validating.
35261 <UL>   
35262 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35263 </UL><P>
35266 <UL>   
35267 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35268 </UL><P>
35269 &lt;End of help on this topic&gt;
35270 </BODY>
35271 </HTML>
35272 ========== h_config_smime_pubcerts_in_keychain ==========
35273 <HTML>
35274 <HEAD>
35275 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35276 </HEAD>
35277 <BODY>
35278 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35280 UNIX Alpine only.
35282 If this feature is set the Mac OS X default keychain will be used as the place
35283 to store public certificates instead of a
35284 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35285 or a
35286 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35288 <UL>   
35289 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35290 </UL><P>
35292 <UL>   
35293 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35294 </UL><P>
35295 &lt;End of help on this topic&gt;
35296 </BODY>
35297 </HTML>
35298 ========== h_config_smime_dont_do_smime ==========
35299 <HTML>
35300 <HEAD>
35301 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35302 </HEAD>
35303 <BODY>
35304 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35306 UNIX Alpine only.
35308 Setting this feature turns off all of Alpine's S/MIME support.
35309 You might want to set this if you are having trouble due to the S/MIME support.
35311 <UL>   
35312 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35313 </UL><P>
35316 <UL>   
35317 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35318 </UL><P>
35319 &lt;End of help on this topic&gt;
35320 </BODY>
35321 </HTML>
35322 ========== h_config_smime_encrypt_by_default ==========
35323 <HTML>
35324 <HEAD>
35325 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35326 </HEAD>
35327 <BODY>
35328 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35330 UNIX Alpine only.
35332 This feature only has an effect if your version of Alpine includes
35333 support for S/MIME.
35334 It affects Alpine's behavior when you send a message.
35335 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35337 Only the default value is affected.
35338 In any case, you may still toggle the Encrypt option on or off before sending
35339 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35340 for the recipient).
35342 <UL>   
35343 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35344 </UL><P>
35347 <UL>   
35348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35349 </UL><P>
35350 &lt;End of help on this topic&gt;
35351 </BODY>
35352 </HTML>
35353 ========== h_config_smime_remember_passphrase ==========
35354 <HTML>
35355 <HEAD>
35356 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35357 </HEAD>
35358 <BODY>
35359 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35361 UNIX Alpine only.
35363 This feature only has an effect if your version of Alpine includes
35364 support for S/MIME.
35365 If this option is set, you will only have to enter your passphrase for your private key
35366 once during an Alpine session.
35368 <UL>   
35369 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35370 </UL><P>
35373 <UL>   
35374 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35375 </UL><P>
35376 &lt;End of help on this topic&gt;
35377 </BODY>
35378 </HTML>
35379 ====== h_config_smime_transfer_pub_to_con =====
35380 <HTML>
35381 <HEAD>
35382 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35383 </HEAD>
35384 <BODY>
35385 <H1>S/MIME: Transfer Public Certs to Container</H1>
35387 UNIX Alpine only.
35389 The Transfer command will copy the public certificates in your configured
35390 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35391 to the container in your configured
35392 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35393 This might be useful if you decide to switch from using a cert directory to a cert
35394 container.
35396 Warning: Any previous contents in the container will be lost.
35398 <UL>   
35399 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35400 </UL><P>
35402 <UL>   
35403 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35404 </UL><P>
35405 &lt;End of help on this topic&gt;
35406 </BODY>
35407 </HTML>
35408 ====== h_config_smime_transfer_pub_to_dir =====
35409 <HTML>
35410 <HEAD>
35411 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35412 </HEAD>
35413 <BODY>
35414 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35416 UNIX Alpine only.
35418 The Transfer command will copy the public certificates in your configured
35419 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35420 to the directory in your configured
35421 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35422 This might be useful if you decide to switch from using a cert container to a cert
35423 directory.
35425 <UL>   
35426 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35427 </UL><P>
35429 <UL>   
35430 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35431 </UL><P>
35432 &lt;End of help on this topic&gt;
35433 </BODY>
35434 </HTML>
35435 ====== h_config_smime_transfer_priv_to_con =====
35436 <HTML>
35437 <HEAD>
35438 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35439 </HEAD>
35440 <BODY>
35441 <H1>S/MIME: Transfer Private Keys to Container</H1>
35443 UNIX Alpine only.
35445 The Transfer command will copy the private keys in your configured
35446 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35447 to the container in your configured
35448 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35449 This might be useful if you decide to switch from using a key directory to a key
35450 container.
35452 Warning: Any previous contents in the container will be lost.
35454 <UL>   
35455 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35456 </UL><P>
35458 <UL>   
35459 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35460 </UL><P>
35461 &lt;End of help on this topic&gt;
35462 </BODY>
35463 </HTML>
35464 ====== h_config_smime_transfer_priv_to_dir =====
35465 <HTML>
35466 <HEAD>
35467 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35468 </HEAD>
35469 <BODY>
35470 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35472 UNIX Alpine only.
35474 The Transfer command will copy the private keys in your configured
35475 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35476 to the directory in your configured
35477 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35478 This might be useful if you decide to switch from using a key container to a key
35479 directory.
35481 <UL>   
35482 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35483 </UL><P>
35485 <UL>   
35486 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35487 </UL><P>
35488 &lt;End of help on this topic&gt;
35489 </BODY>
35490 </HTML>
35491 ====== h_config_smime_transfer_cacert_to_con =====
35492 <HTML>
35493 <HEAD>
35494 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35495 </HEAD>
35496 <BODY>
35497 <H1>S/MIME: Transfer CA Certs to Container</H1>
35499 UNIX Alpine only.
35501 The Transfer command will copy the CA certificates in your configured
35502 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35503 to the container in your configured
35504 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35505 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35506 container.
35508 Warning: Any previous contents in the container will be lost.
35510 <UL>   
35511 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35512 </UL><P>
35514 <UL>   
35515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35516 </UL><P>
35517 &lt;End of help on this topic&gt;
35518 </BODY>
35519 </HTML>
35520 ====== h_config_smime_transfer_cacert_to_dir =====
35521 <HTML>
35522 <HEAD>
35523 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35524 </HEAD>
35525 <BODY>
35526 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35528 UNIX Alpine only.
35530 The Transfer command will copy the CA certificates in your configured
35531 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35532 to the directory in your configured
35533 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35534 This might be useful if you decide to switch from using a CA cert container to a CA cert
35535 directory.
35537 <UL>   
35538 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35539 </UL><P>
35541 <UL>   
35542 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35543 </UL><P>
35544 &lt;End of help on this topic&gt;
35545 </BODY>
35546 </HTML>
35547 ====== h_config_smime_transfer_pubcon_to_key =====
35548 <HTML>
35549 <HEAD>
35550 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35551 </HEAD>
35552 <BODY>
35553 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35555 Mac OS X Alpine only.
35557 The Transfer command will copy the public certificates in your configured
35558 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35559 to your default Mac OS X Keychain.
35560 This might be useful if you decide to switch from using a cert container to using
35561 the Keychain to store your public certs, which you may do by using the
35562 feature
35563 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35565 <UL>   
35566 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35567 </UL><P>
35569 <UL>   
35570 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35571 </UL><P>
35572 &lt;End of help on this topic&gt;
35573 </BODY>
35574 </HTML>
35575 ====== h_config_smime_transfer_pubkey_to_con =====
35576 <HTML>
35577 <HEAD>
35578 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35579 </HEAD>
35580 <BODY>
35581 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35583 UNIX Alpine only.
35585 The Transfer command will copy the public certificates in your configured
35586 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35587 to your default Mac OS X Keychain.
35588 This might be useful if you decide to switch from using a cert container to using
35589 the Keychain to store your public certs.
35591 <UL>   
35592 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35593 </UL><P>
35595 <UL>   
35596 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35597 </UL><P>
35598 &lt;End of help on this topic&gt;
35599 </BODY>
35600 </HTML>
35601 ====== h_config_smime_public_certificates =====
35602 <HTML>
35603 <HEAD>
35604 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35605 </HEAD>
35606 <BODY>
35607 <H1>S/MIME: Manage Public Certificates</H1>
35609 UNIX Alpine only.
35611 This menu item allows you to manage your public certificates, this
35612 may include your own public certificate, but it normally includes
35613 certificates of people you correspond with. These certificates are
35614 saved by Alpine automatically when they are found in signed messages
35615 that you receive. This interface allows you to manage them, by
35616 giving you the option to delete them, or trust them (in the case
35617 of self-signed certificates).
35620 Please note that Alpine will not validate a message that was sent to you
35621 using a self-signed certificate, unless you decide to trust that certificate.
35622 Internally, a certificate is trusted by copying it to the
35623 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35624 collection. If you decide that you want to stop trusting a self-signed
35625 certificate, you must delete such certificate from such collection.
35627 The <B>I</B> Import command available in this screen allows you to 
35628 import a command to this collection.
35630 <UL>   
35631 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35632 </UL><P>
35634 <UL>   
35635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35636 </UL><P>
35637 &lt;End of help on this topic&gt;
35638 </BODY>
35639 </HTML>
35640 ====== h_config_smime_private_keys =====
35641 <HTML>
35642 <HEAD>
35643 <TITLE>S/MIME: Manage Private Keys</TITLE>
35644 </HEAD>
35645 <BODY>
35646 <H1>S/MIME: Manage Private Keys</H1>
35648 UNIX Alpine only.
35650 This option allows you to manage your private key. Normally a person has only
35651 one key, in the same way that a person only has one valid passport, or ID card,
35652 at any given time. This option allows you to manage private keys. You can
35653 delete them or import them. Additionally, you can view information
35654 about your public certificate, such as the issuer and the dates of validity
35655 of such certificate, among others.
35658 If you have more than one e-mail address for which you want to use the 
35659 same private key, you must add all those addresses to the private key at 
35660 the moment that the key is generated. When you receive a signed message using 
35661 a key generated for several e-mail addresses, Alpine will save a 
35662 certificate for each e-mail address included in such certificate.
35664 The <B>I</B> Import command available in this screen allows you to 
35665 import a command to this collection.
35667 <UL>   
35668 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35669 </UL><P>
35671 <UL>   
35672 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35673 </UL><P>
35674 &lt;End of help on this topic&gt;
35675 </BODY>
35676 </HTML>
35677 ====== h_config_smime_certificate_authorities =====
35678 <HTML>
35679 <HEAD>
35680 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35681 </HEAD>
35682 <BODY>
35683 <H1>S/MIME: Manage Certificate Authorities</H1>
35685 UNIX Alpine only.
35687 This collection contains certificates that are needed to validate the 
35688 certificate of another person, and therefore contains certificates that 
35689 you trust. Typically a certificate is signed by another entity, called a 
35690 certificate authority. This option allows you to manage which certificates 
35691 you trust, allowing you to import them and to delete them or view information
35692 about each certificate, such as the issuer and the dates of validity
35693 of such certificate.
35695 The <B>I</B> Import command available in this screen allows you to 
35696 import a command to this collection.
35698 <UL>   
35699 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35700 </UL><P>
35702 <UL>   
35703 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35704 </UL><P>
35705 &lt;End of help on this topic&gt;
35706 </BODY>
35707 </HTML>
35708 ====== h_config_smime_password_file_certificates =====
35709 <HTML>
35710 <HEAD>
35711 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
35712 </HEAD>
35713 <BODY>
35714 <H1>S/MIME: Manage Password File Certificates</H1>
35716 UNIX Alpine only.
35718 This option allows you to manage the certificates that are used to
35719 encrypt and decrypt your password file. This is useful in case you
35720 want to change the certificates used to encrypt your password file.
35722 In order to avoid unauthorized use of this option, you are asked to
35723 enter the password of the current private key used to encrypt your
35724 password file.
35726 Once you have entered your password for the current key, you enter a
35727 screen where you can import your new key, and see the information on your
35728 current key.
35730 To import a new key press &quot;RETURN&quot; and enter the location of
35731 the new key. You will be asked to enter the password of the new key. If
35732 this part of the process is successful, Alpine will search for the 
35733 certificate that matches that key. If your key is named 
35734 &quot;your_email@address.com.key&quot;, then Alpine will look for your
35735 certificate in the same directory in the file named
35736 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
35737 as part of your key (that is, it will look to see if your certificate
35738 is in the file &quot;your_email@address.com.key&quot;), if all of this
35739 fails, Alpine will ask you to enter the location of the certificate
35740 that matches the key you unlocked. If a certificate is found, it will be 
35741 used, and in this case, the password file will be read, decrypted with the 
35742 old key and encrypted with the new key. Once this is done, the new key and 
35743 certificates are saved, and the old keys are permanently deleted.
35745 Alpine does not create a backup of your password file, or your old keys
35746 that will be replaced. If you need to keep old copies, you will have to do
35747 this operation outside Alpine.
35748 <UL>   
35749 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35750 </UL><P>
35752 <UL>   
35753 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35754 </UL><P>
35755 &lt;End of help on this topic&gt;
35756 </BODY>
35757 </HTML>
35758 ====== h_certificate_information =====
35759 <HTML>
35760 <HEAD>
35761 <TITLE>S/MIME: Certificate Information Screen</TITLE>
35762 </HEAD>
35763 <BODY>
35764 <H1>S/MIME: Certificate Information Screen</H1>
35766 UNIX Alpine only.
35768 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
35769 such as its owner, e-mail address, issuer, and interval of validity, 
35770 among others.
35772 In the case of public certificates, this screen shows you if there was a
35773 failure when attempting to validate such message. If the certificate is
35774 self-signed, then the <B>T</B> Trust command will be available, which
35775 you can use to trust such certificate and make Alpine not fail validating 
35776 signatures signed with such certificate.
35778 You can also mark a certificate deleted, with the <B>D</B> command, or 
35779 remove the deleted mark with the <B>U</B> undelete command.
35781 In the case of your private key, Alpine shows you the information
35782 from your public key. Additionally, Alpine allows you to see public
35783 and private information about your key, with the <B>B</B> and
35784 <B>R</B> commands respectively.
35785 <UL>   
35786 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35787 </UL><P>
35789 <UL>   
35790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35791 </UL><P>
35792 &lt;End of help on this topic&gt;
35793 </BODY>
35794 </HTML>
35795 ====== h_config_smime_manage_public_menu =====
35796 <HTML>
35797 <HEAD>
35798 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
35799 </HEAD>
35800 <BODY>
35801 <H1>S/MIME: Commands that Manage Public Certificates</H1>
35803 UNIX Alpine only.
35805 This screen allows you to manage your public certificates. 
35807 The format of this screen is as follows. There are five fields: The 
35808 leftmost field is normally empty, but it could contain the letter 
35809 &quot;D&quot; to indicate that that certificate has been marked for 
35810 deletion. The next field is the e-mail address of the owner of the 
35811 certificate, shown in its entirety. The third and fourth field are the 
35812 first and last day validity for that certificate, respectively. The date
35813 is displayed in the user's locale unless the option 
35814 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
35815 is set. In this case, the month, day and year are represented by two
35816 digits, and the format used is mm/dd/yy. Finally, the fifth 
35817 field is what can be displayed of the MD5 hash of the certificate. You can 
35818 use any of the last three fields to distinguish between two certificates 
35819 for the same owner.
35821 Available commands in this screen and a short description of what they 
35822 do follows.
35823 <UL>
35824 <LI> <B>I</B> Imports a public certificate to this collection.
35825 <LI> <B>V</B> View information about a certificate such as the name of the person the
35826 certificate was issued to, its dates of validity, and validity status.
35827 <LI> <B>D</B> Marks a certificate deleted.
35828 <LI> <B>U</B> Removes the deletion mark on a certificate.
35829 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35830 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
35831 trust a certificate by copying it to the collection of trusted certificates.
35832 </UL>
35834 All commands provide feedback to let you know about their success or failure.
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_manage_private_menu =====
35847 <HTML>
35848 <HEAD>
35849 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
35850 </HEAD>
35851 <BODY>
35852 <H1>S/MIME: Commands that Manage Private Keys</H1>
35854 UNIX Alpine only.
35856 This screen allows you to manage your private key.
35858 The format of this screen is as follows. There are five fields: The 
35859 leftmost field is normally empty, but it could contain the letter 
35860 &quot;D&quot; to indicate that that certificate has been marked for 
35861 deletion. The next field is the e-mail address of the owner of the 
35862 certificate, shown in its entirety. The third field is the first day of 
35863 validity for that certificate; the fourth field in the last day that that 
35864 certificate is valid, and the fifth field is what can be displayed of the 
35865 MD5 hash of the public certificate corresponding to this private key. You 
35866 can use any of the last three fields to distinguish between two 
35867 certificates for the same owner.
35869 Available commands and a short description of what they do follows.
35870 <UL>
35871 <LI> <B>I</B> Imports a new public key to this collection.
35872 <LI> <B>V</B> View information about the public certificate corresponding to this
35873 key.
35874 <LI> <B>D</B> Marks a key to be deleted.
35875 <LI> <B>U</B> Removes the deletion mark on a key.
35876 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
35877 Note that expunging a private key does not remove the public key, which must
35878 be removed separately.
35879 </UL>
35881 All commands provide feedback to let you know about their success or failure.
35883 <UL>   
35884 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35885 </UL><P>
35887 <UL>   
35888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35889 </UL><P>
35890 &lt;End of help on this topic&gt;
35891 </BODY>
35892 </HTML>
35893 ====== h_config_smime_manage_cacerts_menu =====
35894 <HTML>
35895 <HEAD>
35896 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
35897 </HEAD>
35898 <BODY>
35899 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
35901 UNIX Alpine only.
35903 This screen allows you to manage your collection of certificates that you
35904 trust. 
35906 The format of this screen is as follows. There are five fields: The 
35907 leftmost field is normally empty, but it could contain the letter 
35908 &quot;D&quot; to indicate that that certificate has been marked for 
35909 deletion. The next field is the e-mail address of the owner of the 
35910 certificate, shown in its entirety. The third field is the first day of 
35911 validity for that certificate; the fourth field in the last day that that 
35912 certificate is valid, and the fifth field is what can be displayed of the 
35913 MD5 hash of the certificate. You can use any of the last three fields to 
35914 distinguish between two certificates for the same owner.
35916 Available commands and a short description of what they do follows.
35917 <UL>
35918 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
35919 done by reading the certificate and validating it. Once a certificate
35920 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
35921 to the certificate, if necessary.
35922 <LI> <B>V</B> View information about this certificate, such as its issuer 
35923 and validity dates.
35924 <LI> <B>D</B> Marks a certificate to be deleted.
35925 <LI> <B>U</B> Removes the deletion mark on a certificate.
35926 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35927 </UL>
35929 All commands provide feedback to let you know about their success or failure.
35931 <UL>
35932 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35933 </UL><P>
35935 <UL>   
35936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35937 </UL><P>
35938 &lt;End of help on this topic&gt;
35939 </BODY>
35940 </HTML>
35941 ====== h_config_lame_list_mode =====
35942 <HTML>
35943 <HEAD>
35944 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
35945 </HEAD>
35946 <BODY>
35947 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
35949 This feature modifies the method Alpine uses to ask your IMAP
35950 server for folder names to display in the FOLDER LIST screen.
35951 It is intended to compensate for a small set of IMAP servers that
35952 are programmed to ignore a part of the request, and thus respond
35953 to Alpine's query with nonsensical results.
35956 If you find that Alpine is erroneously displaying blank folder lists,
35957 try enabling this feature.
35960 NOTE: Enabling this feature has consequences for the Goto and Save
35961 commands.  Many servers allow access to folders outside the area
35962 reserved for your personal folders via some reserved character,
35963 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
35964 allows, at the Goto and Save prompts, quick access to folders
35965 outside your personal folder collection without requiring a specific
35966 collection definition.  This behavior will generally not be available
35967 when this feature is enabled.
35970 <UL>   
35971 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35972 </UL><P>
35973 &lt;End of help on this topic&gt;
35974 </BODY>
35975 </HTML>
35976 ====== h_config_enable_mulnewsrcs =====
35977 <HTML>
35978 <HEAD>
35979 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
35980 </HEAD>
35981 <BODY>
35982 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
35984 This feature makes it so Alpine can use multiple newsrcs based on
35985 the news server being connected to, which allows for separate lists
35986 of subscribed-to newsgroups. When this feature is not set, there is only
35987 one list of newsgroups.
35989 Under this feature, the name of a newsrc is based on the news server.
35990 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
35991 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
35992 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
35993 Setting this feature for the first time will allow for the option of using
35994 your old newsrc the next time you read news.
35996 If this feature is set, then the feature
35997 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
35998 also may affect the name of the newsrc file that is used.
36000 <UL>   
36001 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36002 </UL><P>
36003 &lt;End of help on this topic&gt;
36004 </BODY>
36005 </HTML>
36006 ======= h_ab_export_vcard =======
36007 <HTML>
36008 <HEAD>
36009 <TITLE>Address Book Export Format</TITLE>
36010 </HEAD>
36011 <BODY>
36012 <H1>Address Book Export Format</H1>
36014 You are exporting address book data from Alpine to a file outside of Alpine.
36015 You are being asked to choose the format of the export.
36016 Here are the choices:
36018 <DL>
36019 <DT><EM>A</EM>ddress List</DT>
36020 <DD>
36021 The addresses from the address book entries you are saving
36022 from will be saved one address per line.
36023 Address book lists (those with more than one address) will have
36024 all of their addresses saved separately.
36025 </DD>
36027 <DT><EM>V</EM>Card</DT>
36028 <DD>
36029 The entries will be saved in
36030 <A HREF="h_whatis_vcard">vCard</A> format.
36031 </DD>
36033 <DT><EM>T</EM>ab Separated</DT>
36034 <DD>
36035 The entries will be saved in tab-separated columns.
36036 There will be just 4 columns of data that correspond to Alpine's
36037 Nickname field, Full Name field, Address field, and Comment field.
36038 It might prove useful to Select only the Simple, non-List address book
36039 entries before Saving.
36040 </DD>
36042 <DT><EM>^C</EM> Cancel</DT>
36043 <DD>
36044 Cancel out of the Save.
36045 </DD>
36047 </DL>
36051 &lt;End of help on this topic&gt;
36052 </BODY>
36053 </HTML>
36054 ====== h_config_predict_nntp_server =====
36055 <HTML>
36056 <HEAD>
36057 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
36058 </HEAD>
36059 <BODY>
36060 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
36062 This feature allows Alpine to assume that the open NNTP server at the
36063 time of composition is the NNTP server to which the message should be
36064 posted.  This is especially recommended when there are multiple News
36065 collections.  If this feature is not set, Alpine will try to post to the first server in
36066 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
36067 this feature also negates the need to add News collection servers to
36068 the <!--#echo var="VAR_nntp-server"--> variable.
36070 This feature can be especially handy when used in conjunction with
36071 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
36073 <UL>   
36074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36075 </UL><P>
36076 &lt;End of help on this topic&gt;
36077 </BODY>
36078 </HTML>
36079 ====== h_config_nntp_search_uses_overview =====
36080 <HTML>
36081 <HEAD>
36082 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
36083 </HEAD>
36084 <BODY>
36085 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
36087 This feature should probably be turned on unless it causes trouble.
36088 The results of the NNTP overview command (XOVER) may be used to help
36089 with some searches in news groups.
36090 It should result in quicker response time.
36091 Turning this feature on apparently causes search results which are
36092 different from what you would get with the feature turned off on some
36093 servers.
36095 <UL>   
36096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36097 </UL><P>
36098 &lt;End of help on this topic&gt;
36099 </BODY>
36100 </HTML>
36101 ====== h_config_thread_sorts_by_arrival =====
36102 <HTML>
36103 <HEAD>
36104 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
36105 </HEAD>
36106 <BODY>
36107 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
36109 This feature affects how a threading sort arranges threads.  The default way
36110 to arrange threads is by the date of the earliest message in the thread.
36111 This feature arranges threads by the last message to arrive in a thread.
36113 This feature causes old threads that get recent messages to sort to the bottom,
36114 where previously a message arrival to a thread would not rearrange the order of
36115 that thread.
36117 <UL>   
36118 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36119 </UL><P>
36120 &lt;End of help on this topic&gt;
36121 </BODY>
36122 </HTML>
36123 ====== h_config_textplain_int =====
36124 <HTML>
36125 <HEAD>
36126 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
36127 </HEAD>
36128 <BODY>
36129 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
36131 This feature modifies the method Alpine uses to display Text/Plain
36132 MIME attachments from the Attachment Index screen.  Normally, the
36133 &quot;View&quot; command searches for any externally defined (usually
36134 via the
36135 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
36136 and displays the selected text within that viewer.
36139 Enabling this feature causes Alpine to ignore any external viewer
36140 settings and always display text with Alpine's internal viewer.
36143 <UL>   
36144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36145 </UL><P>
36146 &lt;End of help on this topic&gt;
36147 </BODY>
36148 </HTML>
36149 ====== h_config_wp_columns =====
36150 <HTML>
36151 <HEAD>
36152 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
36153 </HEAD>
36154 <BODY>
36155 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
36157 Web Alpine only.
36159 This configuration setting specifies the number of horizontal characters
36160 used to format various WebAlpine pages.  Smaller values will tend to reduce
36161 the amount of horizontal scrolling required to view pages within narrow
36162 browsers, such as those found on PDAs, and larger values will tend to 
36163 spread more information across the page.
36166 The Message List page uses the width to determine how many characters
36167 to assign each field.  Note, a smaller value may result in a disproportionate
36168 amount of blank space between fields on each line.  Similarly, a large
36169 value may result in cramped fields or horizontal scrolling.
36172 The Message View page uses this value to determine when to wrap lines
36173 in displayed message text.  Note, a smaller value may result in jagged
36174 right margins or confusing quoting.  A larger value may cause lines of text to
36175 run beyond the browser's right edge, requiring horizontal scrolling.
36178 <UL>   
36179 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36180 </UL><P>
36181 &lt;End of help on this topic&gt;
36182 </BODY>
36183 </HTML>
36184 ====== h_config_wp_state =====
36185 <HTML>
36186 <HEAD>
36187 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
36188 </HEAD>
36189 <BODY>
36190 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
36192 Web Alpine only.
36194 Various aspects of cross-session state.
36197 <UL>   
36198 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36199 </UL><P>
36200 &lt;End of help on this topic&gt;
36201 </BODY>
36202 </HTML>
36203 ====== h_config_wp_aggstate =====
36204 <HTML>
36205 <HEAD>
36206 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
36207 </HEAD>
36208 <BODY>
36209 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
36211 Web Alpine only.
36213 Aggregate operations tab state.
36216 <UL>   
36217 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36218 </UL><P>
36219 &lt;End of help on this topic&gt;
36220 </BODY>
36221 </HTML>
36222 ====== h_config_wp_indexlines =====
36223 <HTML>
36224 <HEAD>
36225 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36226 </HEAD>
36227 <BODY>
36228 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36230 Web Alpine only.
36232 Number of index lines in table.
36235 <UL>   
36236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36237 </UL><P>
36238 &lt;End of help on this topic&gt;
36239 </BODY>
36240 </HTML>
36241 ====== h_config_wp_indexheight =====
36242 <HTML>
36243 <HEAD>
36244 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36245 </HEAD>
36246 <BODY>
36247 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36249 Web Alpine only.
36251 Index table row height.
36254 <UL>   
36255 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36256 </UL><P>
36257 &lt;End of help on this topic&gt;
36258 </BODY>
36259 </HTML>
36260 ====== h_config_rss_news =====
36261 <HTML>
36262 <HEAD>
36263 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36264 </HEAD>
36265 <BODY>
36266 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36268 Web Alpine only.
36270 RSS News feed.
36273 <UL>   
36274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36275 </UL><P>
36276 &lt;End of help on this topic&gt;
36277 </BODY>
36278 </HTML>
36279 ====== h_config_rss_weather =====
36280 <HTML>
36281 <HEAD>
36282 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36283 </HEAD>
36284 <BODY>
36285 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36287 Web Alpine only.
36289 RSS Weather feed.
36292 <UL>   
36293 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36294 </UL><P>
36295 &lt;End of help on this topic&gt;
36296 </BODY>
36297 </HTML>
36298 ====== h_config_send_confirms_only_expanded =====
36299 <HTML>
36300 <HEAD>
36301 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36302 </HEAD>
36303 <BODY>
36304 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36306 This Web Alpine option specifies whether or not a Send confirmations
36307 happens when a composed message is readied for sending or not.  The
36308 default behavior is to not confirm that the nicknames were expanded to
36309 the intended addresses.
36312 <UL>   
36313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36314 </UL><P>
36315 &lt;End of help on this topic&gt;
36316 </BODY>
36317 </HTML>
36318 ====== h_config_enable_jump_command =====
36319 <HTML>
36320 <HEAD>
36321 <TITLE>FEATURE: enable-jump-command</TITLE>
36322 </HEAD>
36323 <BODY>
36324 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36326 This Web Alpine option specifies whether or not a Jump command is
36327 offered in the Message List and Message View pages.  The command is
36328 implemented as an input field in the left column of the List and View
36329 screens. 
36332 When enabled and a number is entered in the input field while the
36333 Message List is displayed, the Message List is reframed with the
36334 specified message.  While viewing a message, the message associated
36335 with the specified message number is displayed.
36338 <UL>   
36339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36340 </UL><P>
36341 &lt;End of help on this topic&gt;
36342 </BODY>
36343 </HTML>
36344 ====== h_config_enable_newmail_sound =====
36345 <HTML>
36346 <HEAD>
36347 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36348 </HEAD>
36349 <BODY>
36350 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36352 This Web Alpine option specifies whether or not a sound file is sent
36353 to the web browser along with the newmail notification message.
36357 <UL>   
36358 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36359 </UL><P>
36360 &lt;End of help on this topic&gt;
36361 </BODY>
36362 </HTML>
36363 ====== h_config_render_html_internally =====
36364 <HTML>
36365 <HEAD>
36366 <TITLE>FEATURE: render-html-internally</TITLE>
36367 </HEAD>
36368 <BODY>
36369 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36371 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36372 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36373 the HTML text into plain text in the same way Unix and PC-Alpine do.
36377 <UL>   
36378 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36379 </UL><P>
36380 &lt;End of help on this topic&gt;
36381 </BODY>
36382 </HTML>
36383 ====== h_config_role_undo =====
36384 Yes, remember changes and exit back to list of roles; No, discard changes
36385 made in this screen; ^C, cancel exit and stay in this config screen.
36386 ====== h_exit_editor =====
36387 S, save changes and exit from the editor; D, do not save changes but
36388 do exit from the editor; or ^C, cancel exit and stay in the editor.
36389 ====== h_config_undo =====
36390 Yes, save changes and exit; No, exit without saving any changes made since
36391 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36392 ====== h_os_index_whereis =====
36393 Enter ^V or ^Y to go immediately to the last or first message in the index.
36394 Or, enter the match string followed by RETURN.
36395 ====== h_os_index_whereis_agg =====
36396 Enter ^V or ^Y to go immediately to the last or first message in the index,
36397 Or, enter the match string followed by RETURN (or ^X to select all matches).
36398 =========== h_oe_add_full ==================
36399 Type the full name of the person being added and press the RETURN key.
36400 Press ^C to cancel addition.
36401 =========== h_oe_add_nick ==================
36402 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36403 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36404 ========== h_oe_add_addr ================
36405 Type the e-mail address and press RETURN.
36406 Press ^C to cancel addition.
36407 ========== h_oe_crlst_full ==============
36408 Type a long name or description for the list that you are creating and
36409 press RETURN.  Press ^C to cancel creation of list.
36410 =========== h_oe_crlst_nick =============
36411 Type a nickname (short, easy-to-remember name or single word) for the list
36412 you are creating and press RETURN.  Press ^C to cancel.
36413 ========== h_oe_crlst_addr ==============
36414 Type an e-mail address, or a nickname already in the address book that you
36415 want to be part of this list and press RETURN.
36416 ========== h_oe_adlst_addr =============
36417 Type an e-mail address or a nickname already in the address book that you
36418 want to add to this list and press RETURN.
36419 ========== h_oe_editab_nick ============
36420 Change the nickname using the arrow keys and delete key.  Press RETURN
36421 when done.  Press ^C to cancel editing and leave the nickname as it was.
36422 ========== h_oe_editab_full ============
36423 Change the full name using the arrow keys and delete key.  Press RETURN
36424 when done.  Press ^C to cancel editing and leave the full name as it was.
36425 ========== h_oe_editab_addr ============
36426 Change the address using the arrow keys and delete key.  Press RETURN
36427 when done.  Press ^C to cancel editing and leave the address as it was.
36428 ========== h_oe_editab_fcc ============
36429 Change the fcc using the arrow keys and delete key.  Press RETURN when
36430 done.  Press ^C to cancel editing and leave the fcc as it was.
36431 ========== h_oe_editab_comment ============
36432 Change the comment field using the arrow keys and delete key.  Press RETURN
36433 when done.  Press ^C to cancel editing and leave the comment as it was.
36434 ====== h_ab_forward =====
36435 Yes, expand nicknames and qualify local names with your current domain name;
36436 No, leave nicknames and local names as is;  ^C, cancel.
36437 ========== h_ab_export ==========
36438 Type the name of a file to write the addresses into and
36439 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36440 ========== h_ab_edit_a_field ==========
36441 Edit any of the fields of the currently selected entry by typing one of the
36442 letters at the bottom of the screen.  Press ^C to cancel edit.
36443 ====== h_ab_del_data_revert =====
36444 Press B to completely delete addrbook and revert to default, C to delete config
36445 and revert while leaving data, or D to only delete data (make it empty).
36446 ====== h_ab_del_data_modify =====
36447 Press B to completely delete addrbook, C to delete configuration while leaving
36448 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36449 ====== h_ab_del_config_modify =====
36450 Yes, remove this address book from my configuration.
36451 No, make no changes now.
36452 ====== h_ab_del_config_revert =====
36453 Yes, remove this address book from my config and revert to default.
36454 No, make no changes now.
36455 ====== h_ab_del_default =====
36456 Yes, remove this default address book from my configuration.
36457 No, make no changes now.
36458 ====== h_ab_really_delete =====
36459 Yes, delete the actual contents of the address book, not just the 
36460 configuration.  No, don't delete the data after all, cancel and start over.
36461 ====== h_ab_del_ignore =====
36462 Press I to ignore all the default address books for this category.  Press R to
36463 remove this one address book and add the others to your personal list.
36464 ====== h_ab_del_dir_ignore =====
36465 Press I to ignore all the default directory servers for this category.
36466 Press R to remove this one server and add the others to your personal list.
36467 ====== h_ab_copy_dups =====
36468 Yes, overwrite the existing entry.
36469 No, skip duplicates but save the rest. Press ^C to cancel.
36470 ====== h_confirm_cancel =====
36471 Type C to Confirm that you want to abandon the message you are composing.
36472 Type N or ^C to cancel out of the cancel and keep composing.
36473 ====== h_ab_text_or_vcard =====
36474 Text, start composer with displayed text already included.
36475 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36476 ====== h_ab_backup_or_ldap =====
36477 Backup, copy email address from entry and allow editing of it.
36478 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36479 ====== h_ldap_text_or_vcard =====
36480 Text: export displayed text for selected entry. Address: export only the
36481 email address. VCard: export entry in vCard format. ^C cancels.
36482 ====== h_ab_save_exp =====
36483 Save, save entry or entries to an address book.
36484 Export, save to file outside of pine. ^C cancels save.
36485 ====== h_ab_add =====
36486 A, add a brand new entry to this address book.
36487 E, edit the entry that is currently highlighted. ^C to cancel.
36488 ====== h_ab_shuf =====
36489 U, swap order of highlighted address book and the one above it.
36490 D, swap order of highlighted address book and the one below it. ^C to cancel.
36491 ====== h_ab_shuf_up =====
36492 U, swap order of highlighted address book and the one above it.
36493 Press ^C to cancel.
36494 ====== h_ab_shuf_down =====
36495 D, swap order of highlighted address book and the one below it.
36496 Press ^C to cancel.
36497 ====== h_folder_prop =====
36498 Count is # of messages in the folder, Unseen means messages that have not
36499 been read, New means messages that were Recently added to the folder.
36500 ====== h_role_shuf =====
36501 U, swap order of highlighted rule and the one above it.
36502 D, swap order of highlighted rule and the one below it. ^C to cancel.
36503 ====== h_role_shuf_up =====
36504 U, swap order of highlighted rule and the one above it.
36505 Press ^C to cancel.
36506 ====== h_role_shuf_down =====
36507 D, swap order of highlighted rule and the one below it.
36508 Press ^C to cancel.
36509 ====== h_incoming_shuf =====
36510 B, swap order of highlighted directory and the one before it.
36511 F, swap order of highlighted directory and the one after it. ^C to cancel.
36512 ====== h_incoming_shuf_up =====
36513 B, swap order of highlighted directory and the one before it.
36514 Press ^C to cancel.
36515 ====== h_incoming_shuf_down =====
36516 F, swap order of highlighted directory and the one after it.
36517 Press ^C to cancel.
36518 ====== h_dir_shuf =====
36519 U, swap order of highlighted directory and the one above it.
36520 D, swap order of highlighted directory and the one below it. ^C to cancel.
36521 ====== h_dir_shuf_up =====
36522 U, swap order of highlighted directory and the one above it.
36523 Press ^C to cancel.
36524 ====== h_dir_shuf_down =====
36525 D, swap order of highlighted directory and the one below it.
36526 Press ^C to cancel.
36527 ====== h_hdrcolor_shuf =====
36528 U, swap order of highlighted Header Color and the one above it.
36529 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36530 ====== h_hdrcolor_shuf_up =====
36531 U, swap order of highlighted Header Color and the one above it.
36532 Press ^C to cancel.
36533 ====== h_hdrcolor_shuf_down =====
36534 D, swap order of highlighted Header Color and the one below it.
36535 Press ^C to cancel.
36536 ========== h_oe_editab_al ============
36537 Change the address using the arrow keys and delete key.  Press RETURN
36538 when done.  Press ^C to cancel editing and leave the address as it was.
36539 ========== h_dir_comp_search ===============
36540 Type a string to look for just like you would in the composer. Your configured
36541 rules for the servers with the implicit flag set will be used.
36542 ========== h_oe_searchab ===============
36543 Type the word or name you want to search for and press RETURN.  If you press
36544 RETURN without entering anything the word in [] will be searched for.
36545 ========== h_oe_chooseabook ==========
36546 Choose the address book you want to save the new entry in.
36547 Use ^N or ^P to change address books.  ^C to cancel.
36548 ========== h_oe_takeaddr ==========
36549 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36550 when done.  Press ^C to cancel adding this entry to the address book.
36551 ========== h_oe_take_replace ==========
36552 Press R to replace the old entry with this new data.  You will still have
36553 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36554 ========== h_oe_take_replace_or_add ==========
36555 Press R to replace the old entry.  Press A to add the selected addresses to
36556 the old existing list.  N to enter another nickname. ^C to cancel now.
36557 ========== h_oe_takename ==========
36558 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36559 when done.  Press ^C to cancel adding this entry to the address book.
36560 ========== h_oe_takenick ==========
36561 Type a nickname (short easy-to-remember name, initials or single word) for this
36562 entry in the address book and press RETURN.  Press ^C to cancel addition.
36563 ========== h_oe_jump ==========
36564 Type the message number you want to jump to and press RETURN.  The word "end"
36565 represents the last message. Press ^C to cancel jumping to another message.
36566 ========== h_oe_jump_thd ==========
36567 Type the thread number you want to jump to and press RETURN.  The word "end"
36568 represents the last thread. Press ^C to cancel jumping to another thread.
36569 ========== h_oe_debuglevel ==========
36570 Higher number shows more debugging details.
36571 Press ^C if you want to cancel the change.
36572 ========== h_oe_broach ==========
36573 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36574 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36575 ========== h_oe_foldsearch ==========
36576 Type the text you want to search for in foldernames and press RETURN.  If you
36577 press RETURN without entering anything, any text in [] will be searched for.
36578 ========== h_oe_foldrename ==========
36579 Change the old name of the folder to the new name using the arrow and
36580 delete keys and press RETURN.  Press ^C to cancel rename.
36581 ========== h_oe_login ==========
36582 Enter your login name for the host you are opening the mailbox on.  Just press
36583 RETURN to use your login from this host as is, or edit it with delete key.
36584 ========== h_oe_passwd ==========
36585 Type your password for the host and login shown as part of the prompt.
36586 Press ^C to cancel opening folder.
36587 ========== h_oe_choosep ==========
36588 Enter the number associated with the printer you want to select.  Press ^C to
36589 cancel the printer selection.  The current selection is highlighted.
36590 ========== h_oe_customp ==========
36591 Type the name of the Unix print command and press RETURN.  Press ^C to
36592 cancel the printer selection.
36593 ========== h_oe_searchview ==========
36594 Type the word or name you want to search for and press RETURN.  If you press
36595 RETURN without entering anything the word in [] will be searched for.
36596 ========== h_oe_keylock ==========
36597 The keyboard is in use and locked by another user.  Only that user can
36598 unlock this keyboard by typing the password.
36599 ========== h_wt_expire ==========
36600 At the beginning of each month Alpine offers to rename your current sent-mail
36601 folder to one named for the month so you have a sent-mail folder for each month
36602 ========== h_wt_delete_old ==========
36603 It is the beginning of the month, and we need to conserve disk
36604 space.  Please delete any sent-mail that you do not need.
36605 ========== h_select_sort ==========
36606 Select the order for sorting the index by typing the capitalized letter.
36607 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36608 ========== h_no_F_arg ============
36609 Enter name of file to be opened.
36611 ========== h_sticky_personal_name ==========
36612 Type in your name as you want it to appear on outgoing email.  This entry
36613 will be saved into your Alpine configuration file.
36614 ========== h_sticky_inbox ============
36615 INBOX syntax is usually {complete.machine.name}INBOX
36616 This entry will be saved in your Alpine configuration file.
36617 ========== h_sticky_smtp ============
36618 The name of the computer on your campus that relays your outgoing email
36619 to the Internet.  This entry will be saved in your Alpine configuration file.
36620 ========== h_sticky_user_id ==========
36621 The username or login-id part of your email address.  This entry will be
36622 saved in your Alpine configuration file.
36623 ========== h_sticky_domain ==========
36624 The domain part of your email address, NOT the name of your PC.  This
36625 entry will be saved in your Alpine configuration file.
36626 ========== h_bounce =========
36627 Enter the address or nickname of the intended recipient.  Alpine will resend
36628 the message, which will retain the original author's From: address.
36629 ========== h_incoming_add_folder_nickname =========
36630 Enter an (optional) nickname that will be used in lieu of the actual
36631 host and folder names in the FOLDER LIST display.
36632 ========== h_anon_forward ==========
36633 Enter the address of your intended recipient, or ^C to cancel.
36634 Example: jsmith@somewhere.edu
36635 ========== h_news_subscribe ==========
36636 Enter the name of the newsgroup to which you wish to subscribe,
36637 or ^C to cancel.  Example: comp.mail.pine
36638 ========== h_pipe_msg ==========
36639 Enter the name of the Unix command to which you wish to send this
36640 message, or ^C to cancel.
36641 ========== h_pipe_attach ==========
36642 Enter the name of the Unix command to which you wish to send this
36643 attachment, or ^C to cancel.
36644 ========== h_select_by_num ==========
36645 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36646 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36647 ========== h_select_by_thrdnum ==========
36648 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36649 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36650 ========== h_select_txt_from ==========
36651 Messages with From: headers containing the entered string will be selected.
36652 ^C to cancel. ^G again to see original options.
36653 ========== h_select_txt_not_from ==========
36654 Messages without From: headers containing the entered string will be selected.
36655 ^C to cancel. ^G again to see original options.
36656 ========== h_select_txt_to ==========
36657 Messages with To: headers containing the entered string will be selected.
36658 ^C to cancel. ^G again to see original options.
36659 ========== h_select_txt_not_to ==========
36660 Messages without To: headers containing the entered string will be selected.
36661 ^C to cancel. ^G again to see original options.
36662 ========== h_select_txt_cc ==========
36663 Messages with Cc: headers containing the entered string will be selected.
36664 ^C to cancel. ^G again to see original options.
36665 ========== h_select_txt_not_cc ==========
36666 Messages without Cc: headers containing the entered string will be selected.
36667 ^C to cancel. ^G again to see original options.
36668 ========== h_select_txt_subj ==========
36669 Messages with Subject: headers containing the entered string will be selected.
36670 ^C to cancel.  ^X enters Subject: line of current message.
36671 ========== h_select_txt_not_subj ==========
36672 Messages without Subject headers containing the entered string will be selected.
36673 ^C to cancel.  ^X enters Subject: line of current message.
36674 ========== h_select_txt_all ==========
36675 All messages containing the entered string will be selected.  Headers and body,
36676 but not encoded attachments, will be compared.  Enter ^C to cancel.
36677 ========== h_select_txt_not_all ==========
36678 All messages that don't contain the entered string will be selected.  Headers
36679 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
36680 ========== h_select_txt_body ==========
36681 All messages containing the entered string will be selected. Body text, but
36682 not headers or encoded attachments, will be compared. ^C to cancel.
36683 ========== h_select_txt_not_body ==========
36684 All messages that don't contain the entered string will be selected. Body
36685 text, but not headers or encoded attachments, will be compared. ^C to cancel.
36686 ========== h_select_txt_recip ==========
36687 Messages with Cc: or To: headers containing the entered string will be selected.
36688 ^C to cancel. ^G again to see original options.
36689 ========== h_select_txt_not_recip ==========
36690 Messages without Cc: or To: headers containing the string will be selected.
36691 ^C to cancel. ^G again to see original options.
36692 ========== h_select_txt_partic ==========
36693 Messages with Cc, To, or From headers containing the string will be selected.
36694 ^C to cancel. ^G again to see original options.
36695 ========== h_select_txt_not_partic ==========
36696 Messages without Cc, To, or From headers containing the string will be selected.
36697 ^C to cancel. ^G again to see original options.
36698 ========== h_select_date ==========
36699 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
36700 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
36701 ========== h_attach_index_whereis ==========
36702 Enter some text that appears in the Attachment Index entry for the desired
36703 attachment.  The first attachment containing that text will be highlighted.
36704 ========== h_kb_lock ==========
36705 Keystrokes entered here (up to a RETURN) comprise a password that must
36706 be entered again later in order to unlock the keyboard.
36707 ========== h_compose_default ==========
36708 N, compose a new message. R, set a role.
36709 ^C to cancel.
36710 ========== h_untranslatable ==========
36711 Send using UTF-8 character set; Send but replace untranslatable characters
36712 with question marks; return to the composer; or cancel message altogether.
36713 ========== h_compose_intrptd ==========
36714 N, compose a new msg. I, continue interrupted msg. R, set a role.
36715 ^C to cancel.
36716 ========== h_compose_postponed ==========
36717 N, compose a new message. P, continue postponed msg. R, set a role.
36718 ^C to cancel.
36719 ========== h_compose_intrptd_postponed ==========
36720 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36721 R, set a role. ^C to cancel.
36722 ========== h_compose_form ==========
36723 N, compose a new message. F, use form letter. R, set a role.
36724 ^C to cancel.
36725 ========== h_compose_intrptd_form ==========
36726 N, compose a new msg. I, continue interrupted msg. F, use form letter.
36727 R, set a role. ^C to cancel.
36728 ========== h_compose_postponed_form ==========
36729 N, compose a new message. P, continue postponed msg. F, use form letter.
36730 R, set a role. ^C to cancel.
36731 ========== h_compose_intrptd_postponed_form ==========
36732 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36733 F, use form letter. R, set a role. ^C to cancel.
36734 ========== h_config_context_del_except ==========
36735 If you delete the last exceptional collection you can only add it back by
36736 manually editing the exceptions config file.
36737 ========== h_config_whereis ==========
36738 To move quickly to a particular line, enter a search string or
36739 ^C to cancel.
36740 ========== h_config_edit_scorei ==========
36741 Enter interval in the form (min,max). -INF and INF may be used to represent
36742 -infinity and infinity. ^C to cancel change. RETURN to accept change.
36743 ========== h_config_add ==========
36744 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
36745 pressing RETURN sets the Empty Value (this turns off any global default).
36746 ========== h_config_add_custom_color ==========
36747 Enter a header fieldname. For example, "subject" or "from".
36749 ========== h_config_add_pat_hdr ==========
36750 Enter a header fieldname. For example, "reply-to" or "organization" or
36751 any fieldname you want that isn't included already.
36752 ========== h_config_print_opt_choice ==========
36753 You may edit either the initialization string (characters printed before
36754 printing starts) or the trailer string.  Choose one or ^C to cancel.
36755 ========== h_config_print_init ==========
36756 Enter a C-style string for this.  You may use common backslash escapes like
36757 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
36758 ========== h_config_change ==========
36759 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
36760 delete current (highlighted) character, etc.  Enter ^C to cancel change.
36761 ========== h_config_replace_add ==========
36762 Replace ignores the current default, Add places the current default in your
36763 editing buffer as if you had typed it in.
36764 ========== h_config_insert_after ==========
36765 Enter a nickname for this print command.  (InsertBefore puts the new item
36766 before the current line, InsertAfter puts it after the current line.)
36767 ========== h_config_print_cmd ==========
36768 Enter command to be executed for the printer.  Use normal editing keys
36769 to modify, ^C to cancel, carriage return to accept current value.
36770 ========== h_config_role_del ==========
36771 Answering Yes will remove this rule completely from your rules list.
36772 ========== h_config_role_addfile ==========
36773 Type the name of a file to add to your configuration. You don't need to
36774 use a file, you may add rules directly (with Add) without using a file.
36775 ========== h_config_role_delfile ==========
36776 Answering Yes will remove this rule file completely from your rules list.
36777 The rules data file itself will not be removed.
36778 ========== h_config_print_del ==========
36779 Answering Yes will remove this printer completely from your printer list.
36780 ========== h_config_print_name_cmd ==========
36781 You may edit the Nickname of this printer, the Command to be executed when
36782 printing, or change the Options associated with this printer.
36783 ========== h_send_check_fcc ==========
36784 Yes, send message without an Fcc.
36785 No, return to composer.
36786 ========== h_send_check_subj ==========
36787 Yes, send message without a Subject.
36788 No, return to composer.
36789 ========== h_send_check_to_cc ==========
36790 Yes, send message without a To address, or a Cc address, or a Newsgroup.
36791 No, return to composer.
36792 ========== h_send_fcc_only ==========
36793 Yes, copy message to Fcc only and send to NO recipients.
36794 No, return to composer.
36795 ========== h_send_prompt ==========
36796 Yes, send the message.
36797 No or ^C, return to composer.
36798 ========== h_send_prompt_flowed ==========
36799 Yes, send the message.  No or ^C, return to composer.
36800 What's Flowed? See Do Not Send Flowed Text in config screen.
36801 ========== h_send_prompt_dsn ==========
36802 Yes, send the message.  No or ^C, return to composer.
36803 What's DSNOpts? See Enable Delivery Status Notification in config screen.
36804 ========== h_send_prompt_dsn_flowed ==========
36805 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
36806 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
36807 ========== h_role_confirm ==========
36808 Yes, use displayed role. No, compose without a role.
36809 ^C, cancel the message. ^T, select a role from your other eligible roles.
36810 ========== h_norole_confirm ==========
36811 Return, compose without a role.
36812 ^C, cancel the message. ^T, select a role from your eligible roles.
36813 ========== h_custom_print ==========
36814 Enter a Unix command that accepts its data on standard input.
36815 Alpine will display any information the command sends to standard output.
36816 ========== h_convert_abooks_and_sigs ==========
36817 You will be given the opportunity to convert address books and signature files
36818 to remote configurations.
36819 ========== h_convert_abooks ==========
36820 You will be given the opportunity to convert address books to remote
36821 configurations.
36822 ========== h_flag_keyword ==========
36823 Enter the name of the keyword you want to add for this folder.
36824 No spaces, parentheses, braces, percents or asterisks are allowed.
36825 ========== h_select_keyword ==========
36826 Enter the keyword you want to match, or use ^T to select a keyword from a list
36827 of possible keywords for this folder. Use ! to look for non-matches instead.
36828 ========== h_type_keyword ==========
36829 Enter the keyword you want to add. You may add a nickname in the next step.
36830 No spaces, parentheses, braces, percents or asterisks are allowed.
36831 ========== h_type_keyword_nickname ==========
36832 Enter an optional nickname for the keyword you want to add.
36833 Type Carriage return to use the keyword name instead of a nickname.
36834 ========== h_convert_sigs ==========
36835 You will be given the opportunity to convert signature files to remote
36836 configurations.
36837 ========== h_convert_abook ==========
36838 Yes is fairly safe. You will be ADDing a remote address book that is a copy
36839 of the current address book. The current abook won't be removed automatically.
36840 ========== h_convert_sig ==========
36841 Answering Yes copies the contents of the signature file into your Alpine
36842 configuration file. After that, the contents of the file will not be used.
36843 ========== h_save_addman ==========
36844 Enter the simple name of the folder you want to add. Carriage return to
36845 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
36846 ========== h_reopen_folder ==========
36847 Yes reopens the folder, as if you were starting over. This uncovers new mail.
36848 No leaves the folder index as it was without discovering new mail.
36849 ========== h_convert_pinerc_server ==========
36850 This is the name of the host (computer) where the remote Alpine configuration
36851 will be stored. This should be an IMAP server that you have permission to use.
36852 ========== h_convert_pinerc_folder ==========
36853 Enter the correct remote folder name. This folder is special and should
36854 contain only configuration data. It shouldn't contain other mail messages.
36855 ========== h_role_compose ==========
36856 Compose a New message, Reply to current message, Forward current message, or
36857 Bounce message. Then you will be asked to choose one of your Roles to be used.
36858 ========== h_role_aggregate ==========
36859 Compose a reply, or forward, or bounce the selected messages. Then you 
36860 will be asked to choose one of your Roles to be used for this operation.
36861 ========== h_save_size_changed ==========
36862 The reported size of a message is not the same as the actual size. Answer Yes
36863 to continue and hope for the best or No to Cancel the entire Save.
36864 ========== h_select_by_larger_size ==========
36865 Enter a number or ^C to cancel. All messages greater than this many characters
36866 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
36867 ========== h_select_by_smaller_size ==========
36868 Enter a number or ^C to cancel. All messages less than this many characters
36869 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
36870 ========== h_preserve_field ==========
36871 Use 'p' to toggle between preserving or not preserving the original To:
36872 and Cc: fields of the message. Enter ^C to cancel message.