* Update git.conf and git.guess following the directions from
[alpine.git] / pith / pine.hlp
bloba1d8ea1f8826d440a78fbda9c99947d75774132d
1 # $Id: pine.hlp 1266 2009-07-14 18:39:12Z hubert@u.washington.edu $
3 #        T H E   A L P I N E    M E S S A G E   S Y S T E M
5 #/* ========================================================================
6 # * Copyright 2013-2018 Eduardo Chappa
7 # * Copyright 2006-2008 University of Washington
8 # *
9 # * Licensed under the Apache License, Version 2.0 (the "License");
10 # * you may not use this file except in compliance with the License.
11 # * You may obtain a copy of the License at
12 # *
13 # *     http://www.apache.org/licenses/LICENSE-2.0
14 # *
15 # * ========================================================================
16 # */
18          Help text for the Alpine mailer
20 This file is in a format created to be turned into text strings in a C
21 program.
23 There are two shell scripts that run on this.  Cmplhelp.sh is the
24 first and turns this into a C file (helptext.c) of text strings that
25 are compiled and linked. The other program, cmplhlp2.sh, turns this
26 into a .h file (helptext.h) with extern string definitions of the
27 strings in the .c file.  The code that actually processes these files
28 while alpine is running is in help.c
30 The lines with "===== xxxx ====" divide the different help screens.  The
31 xxx is the name of the variable that strings will be put in, which are
32 also declared in helptext.h.
34 # is a comment
36 Help text screen text can be either plain text OR HTML.  The latter is
37 denoted by the first line starting with "<HTML>".  The former is simply
38 displayed as it's formatted here.
40 HTML is limited to simple formatting ala HTML 2.0.  No forms, or tables.
41 In addition a small set of tools are are available to customize the HTML
42 screen's text:
44 1a)  Default and function key bindings are separated like this:
46 <!--chtml if pinemode="function_key"-->
47         Function key bindings here
48 <!--chtml else-->
49         Default key bindings here
50 <!--chtml endif-->
53 1b)  A way to distinguish HTML text that is to be displayed when
54      pine is running vs. when the text is served up outside Alpine
55      (someday) can be done via:
57 <!--chtml if pinemode="running"-->
58    Text displayed when viewed within a running pine session
59 <!--chtml else-->
60    Text displayed when HTML viewed outside pine (using chtml aware server)
61 <!--chtml endif-->
63 1c)  A way to distinguish HTML text that is to be displayed under
64      PC-Alpine vs. not is available via:
66 <!--chtml if pinemode="os_windows"-->
67    Text displayed under PC-Alpine
68 <!--chtml else-->
69    Text displayed otherwise
70 <!--chtml endif-->
72 WARNING ABOUT CHTML "if-else-endif" CLAUSES: They don't nest.
74 2a) Several "server side include" commented elements are supported:
76 <!--#include file="textfile"--> 
78 The file "textfile" will be inserted into the HTML text directly.
79 Alpine does no formatting of the text.  At some point we might want to
80 look at the first line for <HTML> but not today.
82 2b) Various bits of Alpine's running state can be inserted into the
83 HTML text as well using the special comment:
85 <!--#echo var="variable"--> 
87 Where "variable" is one of either:
89     ALPINE_VERSION
90     ALPINE_REVISION
91     ALPINE_COMPILE_DATE
92     ALPINE_TODAYS_DATE
93     C_CLIENT_VERSION
94     _LOCAL_FULLNAME_
95     _LOCAL_ADDRESS_
96     _BUGS_FULLNAME_
97     _BUGS_ADDRESS_
98     CURRENT_DIR
99     HOME_DIR
100     PINE_CONF_PATH
101     PINE_CONF_FIXED_PATH
102     PINE_INFO_PATH
103     MAIL_SPOOL_PATH
104     MAIL_SPOOL_LOCK_PATH
105     VAR_<VARNAME> - where <VARNAME> is config variable name
106     FEAT_<FEATURENAME> - where <FEATURENAME> is config feature name
108 3) The URL scheme "X-Alpine-Gripe:" is available to insert links to
109    pine's composer such that various debugging data can be attached to the
110    message. Aside from normal email addresses, this can be set to
111    either "_LOCAL_ADDRESS_" for the configured local help address, or
112    "_BUGS_ADDRESS_" for the configured local bug reporting address.
113    Aside from the special tokens above, the default behavior only differs
114    from "mailto:" by the insertion of a special Subject: prefix that
115    consists of a randomly-generated token for tracking purposes.
116    Several optional parameters can be included to control what is
117    attached or offered for attachment to the message:
119         ?config  --  Automatically attaches the user's configuration
120                      information to the trouble report
121         ?keys    --  Automatically attaches the user's most recent
122                      keystrokes
123         ?curmsg  --  Causes the user to get an offer to attach the
124                      current message to the trouble report
125         ?local   --  Automatically attaches the result of the script 
126                      defined by VAR_BUGS_EXTRAS
128 For HTML-format sections, the help screen dividers  "===== xxxx ====" must 
129 contain one and only one space after the first and before the second set of 
130 equal signs.
132 Note to authors of this file: to mark sections that need further revision, 
133 please use the text string on the following line consistently so that it is 
134 easy to find those places again in this file:
135 *revision needed*
137 NOTE: Several sections of help text which weren't being used were removed
138 at RCS version number 4.122.  In particular, there were some placeholders
139 with help text for the config screen and the composer that didn't have any
140 reasonable place to be called from.
141 Dummy change to get revision in pine.hlp
142 ============= h_revision =================
143 Alpine Commit 277 2018-05-20 14:52:22
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
158 <BR>
159 <BR>Copyright 2013-2018 Eduardo Chappa
160 <BR>Copyright 2006-2008 University of Washington
161 </DIV>
164 Alpine is an &quot;Alternatively Licensed Program for Internet
165 News and Email&quot; produced until 2009 by the University of Washington.
166 It is intended to be an easy-to-use program for
167 sending, receiving, and filing Internet electronic mail messages and
168 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
169 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
170 is available as is a world wide web based version designed to run under the
171 Apache web server.
174 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
176 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
177 addresses bugs found in previous releases and has a few additions as well.
180 Additions include:
182 <UL>
183 <LI> PC-Alpine builds with LibreSSL and supports S/MIME.
185 <LI> NTLM authentication support with the ntlm library, in Unix systems.
186 Based on code provided by Maciej W. Rozycki.
188 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
189 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
191 <LI> Improvements to the configure stage of compilation. Some of
192 these contributed by Helmut Grohne. See
193 <A href="https://bugs.debian.org/876164">Bug 876164</A> in Debian.
195 <LI> Add &quot;remove password&quot; command to the management screen for the 
196 password file encryption key. This allows users to use their password file
197 without entering a master password.
199 </UL>
202 Bugs that have been addressed include:
203 <UL>
204    <LI> Crash when attempting to bounce a message due to lack of space in
205         allocated space for key menu array. Reported by David Sewell.
207    <LI> Crash when a CA certificate failed to load, and user attempted to
208         view certificate information of other certificate authorities.
210    <LI> Deactivate some color code from Pico (as standalone editor in the
211         windows version) until I find a way to activate it again. This is 
212         not critical and it is not something that PC-Pico must have (some 
213         of it already exists in other ways, like color support, what does 
214         not exist is the more complex code that Unix-Pico has with color 
215         codes for specific colors.)
217    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
218         build when using Visual Studio 2017. Fix contributed by 
219         Ulf-Dietrich Braunmann.
221    <LI> When the locale is not set up to UTF-8, alpine might determine the 
222         width of a character incorrectly. Reported by Alexandre Fedotov.
224    <LI> When colors are edited from the main setup configuration screen, some
225         color settings are not updated until Alpine is restarted. Reported by
226         Andrew Hill.
228    <LI> If the first part of a message is multipart/alternative, and the 
229         first part of this is also a multipart type, then Alpine might 
230         fail to select the first text part when replying to a message. 
231         Reported by Lucio Chiappetti.
233    <LI> TLS 1.2 works does not work if Alpine is compiled with openssl &gt;= 1.1.0.
234         Reported and patched by Kyle George.
236    <LI> If the directory where Alpine saves the certificates if empty,
237         alpine would not create a self-signed certificate to encrypt the 
238         password file.
240    <LI> S/MIME: The list of public certificates is freed before it is 
241         reused when a signature fails to verify. This causes Alpine to 
242         crash. Patch submitted by Linus Torvalds.
244    <LI> S/MIME: A message could fail to verify its signature even if the
245         certificate was saved when the message was open. Based on a report 
246         by David Woodhouse to the RedHat bugzilla system.
247 </UL>
250 Version 2.21 addresses bugs found in previous releases and has several 
251 additions as well.
254 Additions include:
255 <UL>
256   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
257        user to choose the dictionary used to spell check, in case the user 
258        communicates in more than one language. Examples of values for the 
259        variable are "en_US" or "de_DE", etc. Only the first 10 
260        dictionaries are offered.
262   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
263        Based on a contribution by Wang Kang.
265   <LI> Colors configured in Alpine are inherited in the composer.
267   <LI> When Alpine is compiled with password file and SMIME support 
268        the password file is encrypted using a private key/public 
269        certificate pair. If one such pair cannot be found, one will be 
270        created. <A HREF="h_password_file_support">Learn more</A>.
272   <LI> Alpine builds with any version of OpenSSL greater than or equal
273        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
274        LibreSSL.
276   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
277        format, which removes text in the SUBJECT between &quot;[&quot; and 
278        &quot;]&quot;.
280   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
281        but it differns in that it gives the time in which the message was
282        sent for messages that are less than a week old. it uses a 24 hour
283        format.
285   <LI> Alpine will include attachments when forwarding some 
286        multipart/alternative messages for which it did not use to include 
287        attachments.
289   <LI> New configuration option 
290        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
291        which adds more ways to control features and variables when you
292        start to reply to a message.
294   <LI> Added support for RFC 2971 - IMAP ID extension.
296   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
297        that allows users to ignore errors in the computation of the size
298        of a message from defective servers.
300   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
301        clients such as Thunderbird do not validate signatures that use sha1 digest.
303   <LI> Add the configuration variable "default-directories", which is called
304        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
305        variable saves a list of directories that are readily accessible 
306        for save or export of attachments. This makes it easier to save 
307        attachments in directories that are hard to navigate to, or that 
308        are accessed frequently.
310   <LI> When a filename is attached and its name is encoded, the save 
311        attachment command will offer to save the file in the encoded form. 
312        This might work for some users, but the save command will have a 
313        subcommand ^N to decode the file name and save the file with the 
314        decoded name.
316   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
317        as well as autocompletes automatically when only one possibility exists 
318        for the ^J attach command.
320   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
321        the html OL tag.
323   <LI> Ignore message from smtp server after a successful authentication
324        challenge.
326   <LI> When a message is saved in the Form Letter folder, add the ability
327        to save the role being used to compose such message so that settings
328        such as the SMTP server set in the role can be used when sending
329        such form message. Suggested and patched by Frank Doepper.
331   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
332        SSLCERTSDIR is not found.
334   <LI> When Alpine sends an attachment, it will set the boundary attribute
335        in lower case, as some SMTP servers, such as those of libero.it 
336        reject messages if the boundary attribute is in uppercase.
338   <LI> Add the ability to change the private key and certificates used
339        to encrypt a password file in the SMIME setup configuration screen.
340        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
342   <LI> SMIME: The ctrl-E command that gives information on the certificate
343        is only available for messages that have a signed or encrypted 
344        part.
346   <LI> SMIME: If a message contains a RFC822 attachment that is
347        signed/decrypted add the ability to view its SMIME information.
349   <LI> SMIME: Certificate information in the S/MIME screen is available 
350        for certificates stored in a container.
352   <LI> SMIME: Offer the common name of the person, instead of the name of
353        file containing the certificate, as the name to be displayed in the 
354        certificate management screen for certificate authorities. 
355        Suggested by Matthias Rieber.
357   <LI> SMIME: Management of several alternate name (SAN) certificates is 
358        improved. When importing a SAN certificate, also import a certificate
359        for the filename, besides for the e-mail addresses in the
360        certificate. Suggested by Matthias Rieber.
362   <LI> SMIME: add full year when displaying information about a certificate
363        in the certificate management screen. Suggested by Matthias Rieber.
365   <LI> SMIME: sort certificates by some type of alphabetical order in the
366        displayed name.
368   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
369        certificates included in signatures, when the option "Validate 
370        Using Certificate Store Only" is enabled. If the user does not wish 
371        to save it, validation will fail.
373   <LI> HTML: Add support for decoding entities in hexadecimal notation.
374        Suggested by Tulip&aacute;nt Gergely.
376   <LI> The &quot;#&quot; command, when used as part of an aggregate
377        operation will allow users to select the role used in either 
378        replying, forwarding or replying to the group of selected messages, 
379        Suggested by Hisashi T Fujinaka.
381   <LI> If the charset of a message can not be determined, use the value set
382        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
384   <LI> Resizing setup screen will redraw screen.
386   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
387        in the width ambiguous zone, it will use other means to determine
388        the width, such as call wcwidth.
390   <LI> Pico: Code reorganization in the search command to make it easier to
391        add subcommands of the search command.
393   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
394        subcommand of the search command to bring this choice into view.
396   <LI> Pico: Add the ability to search for strings in the beginning or end
397        of a line. Use the Ctrl-^ subcommand of the search command to bring 
398        this choice into view.
400   <LI> For a multipart/alternative message, the Take Address command will 
401        work on the part that is being read.
403   <LI> When sending a message, allow for 512 characters of consecutive 
404        non-white space before folding the subject line.
406   <LI> Make sure titlebar (the line at the top of the screen) always 
407        contains the name of the folder/newsgroup that is open, if this 
408        fits in the title.
410   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
411        will also scramble the name, version and operating system in the 
412        message-id header. Based on a contribution by Dennis Davis, which 
413        is itself based on a contribution by Mark Hills.
415   <LI> Change in logic in imap_set_password function to make Alpine ask if
416        a user wants to save a password before reading the password file.
418   <LI> When exporting all parts of a message, if two attachments have the same
419        name, do not overwrite a file more than once, but instead add a counter
420        number to the filename to make a new file that does not exist in the file
421        system.
423   <LI> Add the Control-R subcommand to the save command for attachments. 
424        This subcommand toggles if the saving will be done in binary mode 
425        for text attachments. When a user saves an attachment using binary
426        mode it will be saved as it was sent, otherwise the attachment will
427        be transformed to UTF-8 for further transformation through internal
428        and user defined filters for saving.
430   <LI> Add command line argument -smimedir, which allows to specify
431        the default path for a directory that contains the public, private, 
432        and ca directories. This is useful in case a user has a backup of 
433        old certificates that cannot be installed in the ~/.alpine-smime 
434        dir.
436   <LI> Reimplementation of the code that allows the .pinerc file to be a
437        symbolic link by Kyle George from tcpsoft.com to use realpath.
439   <LI> When saving an attachment, the "^T" command leads to a screen where the
440        "A" command can be used to add a file. A directory can be added by
441        pressing "^X" after the "A" command. Added after a suggestion by
442        Stefan Goessling.
444   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
445        scroll through the history of directories used to save attachments, 
446        while preserving the given name of the file. Suggested by Peter 
447        Koellner.
449   <LI> SMIME: Turn off automatic signing and encrypting of a message when
450        bouncing. Suggested after a discussion with Matthias Rieber.
452   <LI> When messages are selected, warn the user if a message that is not
453        selected will be bounced, or if not all selected messages will be 
454        bounced. Suggested by Ulf-Dietrich Braumann.
456   <LI> The bounce command adds a subcommand to choose a role.
458   <LI> When selecting messages by number, the &quot;.&quot; character can 
459        be used to specify the message on which the cursor is on.
461   <LI> When Alpine opens an attachment, it sometimes changes the extension 
462        of the file that is being opened and replaces it by another for the 
463        same mime type. If Alpine finds that the extension of the file 
464        corresponds with the mime type, according to the mime-types file, 
465        then it will keep it, and no substitution will be made.
467   <LI> Set no restrictions on the length of encoded subjects, but encode
468        words in length of no more than 75 characters.
469 </UL>
473 Bugs that have been addressed include:
474 <UL>
475   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
476        Alpine will use the function ASN1_TIME_print to determine the date 
477        of validity. Reported by Ben Stienstra.
479   <LI> SMIME: Crash when attempting to unlock the password file and an
480        incorrect password is entered.
482   <LI> SMIME: Crash when checking the signature of a message that contains
483        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
484        Krellner.
486   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
488   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
489        remote containers. Reported by Matthias Rieber.
491   <LI> SMIME: certificates included in messages were not being transferred
492        to a remote container.
494   <LI> SMIME: Crash if public certificates are located in an inaccessible
495        remote server and the private key is not available.
497   <LI> SMIME: Alpine does not remove temporary files created when adding a 
498        CA certificate to a container. Reported by Holger Trapp.
500   <LI> SMIME: When reading a local certificate, Alpine converts the name 
501        of the certificate to lowercase, which may make Alpine not be able 
502        to read such certificate. Reported by Dennis Davis.
504   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
505        entering a password to read an encrypted message will make Alpine 
506        forget the key and not ask the password to unlock it again in case 
507        it is necessary to unlock it again. Reported by Ulf-Dietrich 
508        Braumann.
510   <LI> Alpine would use freed memory while trying to compute the color
511        of the titlebar. This happened when trying to continue a postponed 
512        message.
514   <LI> Alpine failed to read an encrypted password file if too many
515        passwords were saved in the password file.
517   <LI> When selecting messages while in Threaded Index Screen, some 
518        messages other than top of threads could appear in the index, making
519        Alpine display messages &quot;out of the screen.&quot;
521   <LI> The index format would be chopped at the position of an unrecognized 
522        token, instead of skipping the token as intended.
524   <LI> Work in progress: Avoid calling non-safe functions when Alpine
525        receives a signal. See bug report 
526        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
528   <LI> Crash when attempting to read a message after a bounce command. 
529        In order to produce a crash one needed to use the ^T subcommand and 
530        do a search in a LDAP directory. The crash is produced by changes 
531        to the text in the title bar. Reported by Heinrich Mislik in the 
532        Alpine-info list.
534   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
535        making Alpine not display the correct character at the position 
536        that wrapping is done. Reported by Wang Kang.
538   <LI> Pico: Searching for a string that is too long causes Pico to crash
539        in the next search.
541   <LI> Fix vulnerability in regex library. This only affects those who use
542        this library, such as the windows version of Alpine. See 
543        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
544        for more details.
546   <LI> Alpine would not set include and lib paths for OpenSSL if this was
547        installed in /usr/local/ssl.
549   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
550        contents when saving its configuration.
552   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
553        the name. Reported by Andreas Fehr.
555   <LI> When opening an INBOX folder in a context different from the 
556        incoming folders collection, from the command line, Alpine would 
557        open the INBOX folder from the incoming folders collection.
559   <LI> Mismatch in size of UCS and CELL caused a corruption in the
560        content of a pointer, which made the speller in PC-Alpine get the 
561        content of a word incorrectly.
563   <LI> Skip testing openssl compatibility version when cross-compilation
564        is detected. Fix contributed by Antti Sepp&auml;l&auml;
566   <LI> Alpine fails to remove temporary files used during a display or sending
567        filter. Fix contributed by Phil Brooke.
569   <LI> When the index is in zoomed state, adding new messages to the 
570        selection would not show those messages if those messages are on 
571        top of the current message in the top of the screen. Reported by
572        Ulf-Dietrich Braumann. In addition, when the user scrolls through
573        the index, this scroll smoothly, without jumping pages. Reported
574        by Holger Trapp.
576   <LI> Crash when reviewing history of saving attachments.
578   <LI> Crash when canceling a goto command on a local collection that has
579        not been expanded and attempting to expand such collection.
581   <LI> Crash in Pico when forwarding messages that contain a direction mark
582        at the end of a line. Reported by James Mingo.
584   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
585 </UL>
589 Version 2.20 addresses bugs found in previous releases and has several 
590 additions as well.
593 Additions include:
596 <UL>
597   <LI> Upgrade UW-IMAP to Panda IMAP from 
598        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
599   <LI> S/MIME: Add screen to manage certificates.
600   <LI> S/MIME: Signatures are validated using the user's certificates instead
601        of the ones included in the message. Behavior can be disabled by
602        disabling the option <A href="h_config_smime_use_cert_store">
603         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
604        by default.
605   <LI> S/MIME: sign messages using intermediate certificates when needed 
606        and possible.
607   <LI> S/MIME: validation of certificates for servers that modify signed 
608        content.
609   <LI> S/MIME: signed and encrypted messages will be signed first and 
610        encrypted second, so that they can be decoded by other clients.
611   <LI> S/MIME: add the sender certificate to the list of certificates in
612        encrypted messages to make it possible for the sender to decrypt
613        the message they sent.
614   <LI> S/MIME: When transferring certificates to a local container, create 
615        container with default names PublicContainer, PrivateContainer and 
616        CAContainer, as appropriate for these files, unless the user has 
617        provided some other names.
618   <LI> S/MIME: Forwarding a message will include the signed part as part
619        of the text and not as a multipart message, just as the reply
620        command does.
621   <LI> HTML: Style tag in body of html message causes Alpine to not write
622        its content until a new &lt;/style&gt;
623   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
624        the same inline tag; the same is valid for the &lt;HR&gt; tag.
625   <LI> Add support to selective expunge through a subcommand of the 
626        select-apply commands. Read more in the <A 
627        HREF="h_index_cmd_expunge">help</A> for the expunge command.
628   <LI> Pico: New subcommand of the search command, allows to reverse the
629        direction of search.
630   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
631        the key and certificate used to encrypt the password file are saved 
632        in the ~/.alpine-smime/.pwd directory, or in the directory specified
633        by the -pwdcertdir command line option. 
634        <A HREF="h_password_file_support">Learn more</A>.
635   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
636        server to use different ways to connect using ssl, for 
637        example {server.com/tls1} will attempt to connect to 
638        server.com at the ssl imap port (port 993) and establish a 
639        connection using TLSv1. These flags can be used in 
640        conjunction with the /ssl flag, the ssl flag is redundant. 
641        Conversely, however, the /ssl flag does not imply any of 
642        these flags; the /ssl flag means SSLv3 or, if not available, 
643        SSLv2 in the SSL port.
644   <LI> Alpine does not attempt to automatically reopen a collection 
645        that was not opened due to cancellation by the user. 
646        Instead, the user must try to open it explicitly.
647   <LI> Alpine searches for a certificate that matches an email address in
648        all addresses in a certificate (instead of just the first 
649        one) but when it tries to unlock the certificate, it asks 
650        for the password for the first email address in that 
651        certificate.
652   <LI> Style tag in body of html message causes Alpine to not write its content
653        until a new &lt;/style&gt;
654   <LI> Experimental: Write the content-type of a message in 
655        lowercase, as some non-compliant servers do not understand 
656        uppercase content-type, such as those of GMX.de.
657   <LI> Experimental: Do not send the RSET command before attempting
658        to send a message, as this causes a delay in some evily managed
659        servers.
660   <LI> Opening a folder updates recent count in maildrops (this 
661        already works for other types of folders)
662   <LI> Automatically redraw screen after opening an attachment 
663        instead of simply clearing it.
664   <LI> Pico: Justification works without need of a predefined quote 
665        string. This allows justification of blocks of text that are 
666        indented with spaces.
667   <LI> Decode the name of attachment names, so they can be written as part   
668        of the description of the part. 
669   <LI> Check bounds and tie strings off to improve security. Contributed 
670        by James Jerkins.
671   <LI> Replace tabs by spaces in From and Subject fields to control for
672        size in screen of these fields. Change only in index screen display.
673   <LI> Aggregate operations allows bouncing a list of messages using a role.
674        Suggested by Ulf-Dietrich Braumann.
675   <LI> Disable saving new passwords to the password file. Implemented
676        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
677   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
678      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
679      Charles M. Register.
680 </UL>
684 Bugs that have been addressed include:
685 <UL>
686   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
687        in personal names. Reported by Lev Gorenstein.
688   <LI> When writing the .pinerc file, lines were truncated if they were longer
689        than 10,000 characters. This could cause data corruption, so now lines
690        are allowed to be of any length.
691   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
692        remove attachments before they were open by a mailcap viewer. It 
693        requires that the user has an equivalent to a command such as "ps 
694        auxww" to list the list of processes, and check if there is any 
695        program using the attachment. The default is "/bin/ps auxww", but 
696        it can be changed at compile time with the option --with-ps-cmd. 
697        See the help of the variable 
698        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
699        for more information.
700   <LI> S/MIME: signed messages that contained an attachment would not validate.
701   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
702        validate. Thanks to Andreas Schamanek for testing, debugging and 
703        advising during the process of fixing this problem.
704   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
705        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
706        and Stefan Mueller.
707   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
708        home directory.
709   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
710        SMIME making it not possible to sign or encrypt messages.
711   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
712        information that is not part of the body, and hence making the body
713        of the message seem wrong.
714   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
715        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
716        enabled, the message contains 8bit characters and the smtp server 
717        supports 8bit sending.
718   <LI> When replying to several messages, subject will be decoded first,
719        and then stripped from re/fwd before they are compared to determine
720        the subject of the replied message.
721   <LI> Crash when tcp connection to NNTP server was lost after connection
722        had been established, but lost immediately afterwards.
723   <LI> Crash with message &quot;lock when already locked&quot;, when painting
724        an index was based on scores that needed information from a remote
725        addressbook in the same server as the folder opened. Reported by
726        Peter Koellner.
727   <LI> Crash in message/rfc822 attachments encoded in base64.
728   <LI> Postponed messages whose content-type is text/html, text/enriched and
729        text/richtext are sent with that content-type, even though, after
730        resuming composition, Alpine had changed its type to text/plain.
731   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
732        character set, which might lead to a crash or a corruption in the 
733        screen. Work was done to contain the bug. A more complete fix will 
734        be done in a future release. Reported by Professor Robert Funnell.
735   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
736   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
737   <LI> Save command did not warn of existence of a message with a deleted 
738        attachment in an aggregate save, unless cursor was positioned on a message 
739        with a deleted attachment. Reported by Florian Herzig.
740   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
741        in an IMAP server.
742   <LI> DATE tokens were not internally transformed to UTF-8, which made their
743        values not appear complete in the screen. Reported by Werner Scheinast.
744   <LI> Fixes to configure script so that it will not require PAM for every system.
745   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
746        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
747        during the build. Fix by Ulf-Dietrich Braumann.
748   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
749        needs to use tcl_getstringresult() instead. Reported by 
750        Ulf-Dietrich Braumann.
751   <LI> Quoted string in URL Viewers configuration variable were not 
752        unquoted before passing to viewer.
753   <LI> Fix in configure script to detect location of tcl library; add
754        /usr/local in FreeBSD and fix a bug in configure script that used 
755        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
756        by Werner Scheinast.
757   <LI> Move SSL configurations from UW-IMAP to configure script, and
758        update OpenSSL configuration for Mac OS X.
759   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
760   <LI> When the download of an attachment is interrumpted, Alpine stills
761      caches what was downloaded, making the download incomplete for 
762      subsequent calls of Alpine attempting to open the attachment. In the 
763      future, Alpine will not cache any downloaded part of the attachment 
764      when it is interrupted.
765 </UL>
770 Version 2.11 addresses bugs found in previous releases and has a few 
771 additions as well.
774 Additions include:
777 <UL>
778    <LI> Alpine requires version 1.0.0c of Openssl to build.
779    <LI> Increase encryption of S/MIME encrypted messages.
780    <LI> Pico: Improvements in justification of paragraphs: lines that begin
781 with a quote string, followed by a space were considered individual paragraphs,
782 now they are considered part of a paragraph. Based on earlier joint work
783 with Jeff Franklin.
784    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
785    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
786 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
787    <LI> Added recognition of ws and wss URIs.
788    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
789  <A HREF="h_config_directory_color">directory names</A>,
790  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
791    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
792 used in the display of the INDEX SCREEN.
793    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
794 that adds the ability to preserve To: and Cc: fields when replying to a 
795 message, as specified by original sender.
796    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
797  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
798    <LI> Quota command includes subcommands for printing, forwarding, etc.
799 </UL>
802 Bugs that have been addressed include:
804 <UL>
805   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
806   <LI> Crash when resizing the screen in a configuration screen.
807   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
808   <LI> Do not use a shell to open a browser.
809   <LI> Configure script did not test for crypto or pam libraries.
810   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
811   <LI> Change Cygwin directory separator to &quot;/&quot;.
812   <LI> Alpine could set List- headers, contrary to RFC 2369.
813 </UL>
816 Version 2.10 addresses bugs found in previous releases and has a few 
817 additions as well.
820 Additions include:
823 <UL>
824    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
825    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
826    <LI> Foreign characters are decoded correctly in IMAP folder names.
827    <LI> Question about breaking connection to slow servers includes their name.
828    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
829    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
830    <LI> Cygwin: Alpine builds without need of patch.
831    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
832    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
833    <LI> Add support for strong encryption of password file when S/MIME is built in.
834 </UL>
837 Bugs that have been addressed include:
840 <UL>
841    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
842    <LI> Double allocation of memory in Pico.
843    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
844    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
845    <LI> Not recognition of environment variables in some options.
846    <LI> Not display of login prompt during initial keystrokes.
847    <LI> justification of long urls breaks them.
848    <LI> Incorrect New Mail message when envelope is not available.
849    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
850    <LI> Crash when resizing the screen after display of LDAP search.
851    <LI> Crash when redrawing screen while opening a remote folder collection.
852    <LI> Infinite loop in scrolltool function during notification of new mail.
853    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
854    <LI> No display of signed and encrypted S/MIME messages.
855    <LI> Alpine will not build with OpenSSL.
856    <LI> Crash for double locking in calls to c-client.
857    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
858    <LI> Ignore the references header when threading messages
859    <LI> No update of colors in index screen after update to addressbook.
860 </UL>
863 Version 2.01 addresses bugs found in previous releases and has a few 
864 additions as well.
867 Additions include:
870 <UL>
871    <LI> Fixed non-ASCII web alpine handling
872    <LI> Added web alpine help.
873    <LI> Allow web alpine inbox on second IMAP server.
874    <LI> Allow web alpine config reset after bad inbox-path gets set.
875    <LI> Added web alpine ability to create group contact from contact list members.
876    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
877    <LI> Tidied up web alpine script layout.
878    <LI> Fixed web alpine status message ordering
879    <LI> Added web alpine Fcc setting via Contacts in Compose
880    <LI> Fixed web alpine autodraft attachment issues
881    <LI> Fixed web alpine problems with recent count maintenance
882    <LI> Fixed web alpine newmail arrival display in message list
883    <LI> Added web alpine confirmation to folder create for Move/Copy
884    <LI> Added web alpine user-domain support
885    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
886 </UL>
889 Bugs that have been addressed include:
892 <UL>
893    <LI> In web alpine fixed delete all selected within a search result to reorient
894         correctly to whole-mailbox message list.
895    <LI> Fixed web alpine delete in view page to be sensitive to sort
896    <LI> Fixed web alpine open of folder within directory from folder manager page.
897    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
898    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
899    <LI> Fixed web alpine adding contacts from message list and view
900    <LI> Fixed web alpine create of non-existent fcc
901    <LI> Remove mistakenly left debugger statement in web alpine javascript.
902    <LI> Some UNIX alpine build problems fixed
903    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
904         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
905         by locale charmap call on some Solaris 8 systems.
906    <LI> MacOS Keychain logins were not working correctly with generic host names, like
907         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
908         new password requests when not needed
909    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
910         last folder in the list
911    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
912         looked for along with the email address
913    <LI> Changes to configure to get spellcheck options with work with arguments.
914    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
915         returned by gethostname (iPhone can do this)
916    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
917         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
918    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
919         Jake Scott of marganstanley.com.
920    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
921         is not used in alpine.
922    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
923         Apparently this causes RIM Blackberry BIS service problems. This is not
924         used in alpine.
925    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
926    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
927         Fix from Ludwig Nussel of SUSE and from Crispin.
928    <LI> Include whole filename in export filename history
929    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
930 </UL>
933 Version 2.00
934 addressed bugs found in previous releases and had a few additions as well.
936 Additions included:
939 <UL>
940    <LI> Redesigned Web Alpine interface
941    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
942         in UNIX versions of Alpine
943    <LI> Attempt to include the attachment filename as part of the name of the
944         temporary file used when viewing an attachment with an external program.
945         Add some randomness to that filename to make it hard to predict the filename.
946         Add a filename extension, usually derived from the type/subtype, to the
947         temporary filename. This was previously done only on Windows and MacOS X.
948    <LI> Enhance address completion in the composer (TAB command) so that it looks
949         through nicknames, fullnames, and addresses from the address book; addresses
950         from the message being viewed, if any; and the results from
951         <A HREF="h_direct_config">LDAP Directory Server</A>
952         lookups for all of the defined directory servers that have the
953         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
954         feature set.
955    <LI> Make the default character set setting more liberal in what it will accept
956         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
957    <LI> Remove the Alpine revision number from the titlebar in released versions
958         while leaving it there in snapshot versions
959    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
960         display of asterisks when you type a password for Alpine
961    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
962    <LI> When the
963         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
964         feature is turned on convert not only the dates in the index screen but also
965         the dates in the MESSAGE VIEW
966 </UL>
969 Bugs addressed in the 2.00 release included:
972 <UL>
973    <LI> Crash when using tab-completion for selecting a Save filename
974    <LI> Make Web Alpine help text images relative for more portability
975    <LI> Fixed attach save of html parts in Web Alpine
976    <LI> Viewing, printing, exporting, replying, and bouncing of message
977         digests was broken. Replying and bouncing should not have been
978         allowed at all for digests. It would be nice to have a more standard
979         index-like view of a message digest but that has not been addressed
980         with this minor bug fix.
981    <LI> Adjust wrapping of HTML messages so that the margins specified by
982         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
983         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
984         are observed correctly
985    <LI> Interrupt of WhereIs command in index was broken
986    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
987         option did not work correctly interpreting unknown characters in message headers
988    <LI> Long address lines could cause blank continuation lines
989    <LI> Save to a local default INBOX failed if the primary collection was also local,
990         which it is by default. The save went to  ~/mail/inbox instead.
991    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
992         inbox, not the inbox in the primary collection
993    <LI> Address book entries with lots of addresses would be truncated when
994         entered in the composer with a screen size wider than 270 or so charcters
995    <LI> Some fields in the index screen were truncated when the screen width was
996         wider than 256 characters
997    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
998         folder, and there is a more than 10 minute pause between typing the TAB
999         and typing the Yes
1000 </UL>
1003 Version 1.10(962)
1004 addressed bugs found in previous releases and had a few additions as well.
1006 Additions included:
1009 <UL>
1010    <LI> Add the possibility of setting a default role
1011         (see <A HREF="h_role_select">Roles Screen</A>)
1012         which may be convenient if your work flow involves acting in one
1013         role for a while then switching to another role and staying in the
1014         new role for another period of time
1015    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
1016         is encountered, ask the user if he or she wants to continue with the
1017         risky Save anyway instead of aborting. This may be helpful if your
1018         IMAP server is broken in this way but be aware that it is possible there
1019         was a real error instead of just a broken server implementation.
1020    <LI> Some configure adjustments for Kerberos detection and
1021         for SCO OpenServer 5 support
1022    <LI> Hide INBOX in a collection if it also appears as an
1023         <A HREF="h_config_enable_incoming">Incoming Folder</A>
1024    <LI> Show asterisks for feedback when the user is typing a password
1025    <LI> Performance improvement for threading of large folders
1026    <LI> Previously, the search used to find
1027         Pattern matches containing To patterns searched for both To
1028         and Resent-To headers. The relatively complicated search this
1029         produces causes problems when using some deficient IMAP servers.
1030         Now the default is to look only for To headers and ignore the
1031         presence of Resent-To. The previous behavior may be restored
1032         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
1033    <LI> Add an
1034         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1035         to help with reading malformed unlabeled messages
1036    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
1037    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1038    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1039 </UL>
1042 Bugs addressed in the 1.10(962) release included:
1045 <UL>
1046    <LI> Crash when encountering certain errors from an SMTP server
1047    <LI> Crash in composer caused by overflow in replace_pat()
1048    <LI> Hang when authenticating to an SMTP server that fails with a
1049         &quot;connection disconnected&quot; error
1050    <LI> Bug in handling of trailing tab character in flowed text
1051    <LI> Security enhancement for mailcap parameter substitution
1052    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1053         did not work if the message being replied to was not flowed text
1054         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1055         was not turned on
1056    <LI> Don't allow printer to be changed through hidden config screen
1057         if system administrator didn't want it to be allowed
1058    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1059         should know that it won't work, causing error messages to appear
1060    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1061         of double-quote double-quote didn't work right
1062    <LI> Quoting wasn't being done to protect special characters from the
1063         MacOS X shell when
1064         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1065         was not defined
1066    <LI> On MacOS X message attachments should be shown internally instead of
1067         being shown using the Mail application
1068    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1069         sometimes set the outgoing charset to X-UNKNOWN, making the result
1070         unreadable
1071    <LI> When the sending of a message failed lines with leading spaces had one
1072         additional space inserted in each of those lines when the user
1073         was returned to the composer
1074    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1075         that contained non-ascii characters because it was truncating the
1076         line being searched so that it was shorter than what was visible on
1077         the screen
1078    <LI> When composing, an attachment with a long name that causes wrapping in
1079         just the wrong place would generate an error and cause the send
1080         of the attachment to fail
1081    <LI> After calling the file browser to attach a file in the composer, a resize
1082         of the window when back in the composer would redraw the last screen that
1083         had been shown in the browser instead of the current composer screen
1084    <LI> Possible crash in index screen when encountering unparseable addresses
1085         or when using one of the PRIORITY tokens or the HEADER token in the
1086         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1087    <LI> Problems with Header Color editing if the configuration option
1088         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1089         was inadvertently changed to the Empty Value in the hidden config screen
1090    <LI> When resuming the final postponed message from an Exchange server the user
1091         could get a certificate validation failure because alpine was trying
1092         to validate the canonical name of the folder instead of the name the
1093         user used
1094    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1095         failure to find a match
1096    <LI> Make matching of extension names case independent in mimetypes files
1097    <LI> Windows dialog boxes for entering text were not working correctly
1098    <LI> Replying to or Forwarding multipart/alternative messages which had a
1099         single text/html part did not work well
1100    <LI> Printing the print confirmation page caused a crash
1101    <LI> A To line with a long, quoted personal name could display incorrectly
1102         if it was close to the same width as the screen
1103    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1104         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1105         are turned on hide (0/0) when the folder is empty
1106    <LI> Folder completion while Saving didn't work if the collection being
1107         saved to was the local home directory
1108 </UL>
1111 Version 1.00
1112 was an evolutionary release based on
1113 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
1114 developed at the University of Washington.
1115 It is upwards-compatible for existing Pine users.
1118 Changes included:
1120 <UL>
1121    <LI> Ground-up reorganization of source code around addition
1122         of "pith/" core routine library.
1123    <LI> Fundamental improvement in Alpine's internal text handling, which
1124         is now based exclusively on Unicode. This allows displaying incoming
1125         messages and producing outgoing messages in many different languages.
1126    <LI> Ground-up reorganization of build and install procedures
1127         based on GNU Build System's autotools. NOTE, the included IMAP library
1128         build is not based on autotools, so some features will not work. However,
1129         it should get built automatically during the Alpine build process.
1130    <LI> Web-based version included built on TCL designed to run under
1131         a suitable CGI-supporting web server such as Apache.
1132 </UL>
1136 Details on changes in previous (prerelease) versions of Alpine
1137 may be found at the following URL:
1139 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1142 <HR WIDTH="75%"><P>
1144 <H2>Getting Help</H2>
1145 <DL>
1146 <DT>Online Help</DT>
1147 <DD>
1148 Every Alpine screen and command has associated help text
1149 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1150 </DD>
1152 <DT>Web Help</DT>
1153 <DD>
1154 The most current source of information about Alpine,
1155 including new version availability, is the web page at
1157 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1158 </DD>
1159 </DL>
1161 Frequently Asked Questions (and answers) may be found at the following
1162 URL:
1164 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
1167 <HR WIDTH="75%"><P>
1169 <H2>Additional Information</H2>
1171 General Alpine configuration information can be found
1172 <A HREF="h_news_config">here</A>.
1174 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1175 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1176 access is provided by the IMAP Toolkit Environment (c-client library)
1177 version <!--#echo var="C_CLIENT_VERSION"-->.
1178 <P> 
1179 Alpine was developed until 2009 by the Office of Computing 
1180 &amp; Communications at the University of Washington in Seattle.  
1181 Since then, the effort of developing Alpine has been continued by
1182 a community of volunteers who make good software even better!
1185 Alpine Copyright 2013-2018 Eduardo Chappa, 
1186 <BR> Copyright 2006-2008 University of Washington.
1189 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1190 or instead you can find the Apache License, version 2.0 at the web URL:
1193 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1196 &lt;End of Release Notes&gt;
1197 </BODY>
1198 </HTML>
1199 ====== h_password_file_support ======
1200 <HTML>
1201 <HEAD>
1202 <TITLE>Encryption for Password File Support Explained</TITLE>
1203 </HEAD>
1204 <BODY>
1205 <H1>Encryption for Password File Support Explained</H1>
1207 Index<BR>
1208 <OL>
1209 <LI><A HREF="#content">Explanation</A>
1210 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1211 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1212 </OL>
1214 <P><A NAME="content">Unix Alpine Only.</A>
1216 <P> If your version of Alpine has been built with password file support
1217 then you can use a special file to save your passwords, and avoid typing
1218 them every time you open a connection to a remote server.
1220 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1221 password file will be encrypted with a strong key. There are two ways in 
1222 which this can happen: Alpine will either use a matching private key and 
1223 public certificate pair that you already own, or it will create one for 
1224 you, just for purposes of encrypting this file. We describe both processes 
1225 below.
1227 <P> Initially, Alpine will scan your public and private directories for a 
1228 certificate/private key pair that works. Alpine will pick the first pair 
1229 that it finds that matches. 
1231 <P> Once a pair has been chosen, it will be copied to the directory 
1232 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1233 that directory. The first time this process is done, this directory will 
1234 be created, a key/certificate pair will be copied to it, from then on 
1235 this pair will be used to encrypt and decrypt your password file. 
1237 <P> If you want to use a specific key and certificate pair to encrypt
1238 your password file, you can create the directory ~/.alpine-smime/.pwd 
1239 manually, and then create your preferred key/certificate pair there.
1240 Alpine will use this key regardless of if it has expired, or if it is
1241 self-signed. These issues do not affect the encryption or decryption
1242 of the password file.
1244 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1245 your key/certificate pair, you can specify a different one with the 
1246 -pwdcertdir command line option in Alpine. If the directory specified by 
1247 this option is not found Alpine will fail to encrypt and decrypt your 
1248 password file. However if it exists, Alpine will search for a 
1249 key/certificate pair in that
1250 directory, and if it does not find one, it will create one and save it
1251 in that directory.
1253 <P> Alpine does not care about the names of the key and certificates in 
1254 this directory, but the private key must have &quot;.key&quot; extension 
1255 and your public certificate must have the &quot;.crt&quot; extension. The
1256 name of the private key will be used in the prompt when you are asked
1257 to unlock your key to decrypt your password.
1259 <P> If Alpine cannot find a suitable private key and public certificate 
1260 pair to encrypt your password, it will create one. You will be asked to 
1261 create a &quot;Master Password&quot; to protect such key. At this moment 
1262 there are no restrictions on passwords, other than they have to be at 
1263 least 8 characters long, but future versions of Alpine will include 
1264 functionality to restrict master passwords, as set up by the administrator 
1265 of the system in the pine.conf.fixed file.
1267 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1269 <P>Assume you have a private key called peter@address.com.key in your, 
1270 ~/.alpine-smime/private directory, and a public certificate called 
1271 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1272 are your only key/certificate pair.
1274 <P> When Alpine starts for the first time, without command line options, 
1275 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1276 it will create it. Then it will go through your keys and certificates and 
1277 find a pair that it can use, and copy the files peter@address.com.key,
1278 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1279 you can do the same by copying these files by yourself. This can be done
1280 with the sequence of commands
1282 <PRE>
1283 mkdir ~/.alpine-smime/.pwd
1284 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1285 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1286 </PRE>
1288 <P> When Alpine starts, you will be asked the password to unlock your
1289 private key with the prompt.
1291 <PRE>
1292 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1293 </PRE>
1295 <P> If you prefer to use different names for your private and public keys 
1296 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1297 preserve the extension of the files. For example, you can use the names 
1298 private_key.key and public_cert.crt instead. In this case, the prompt you 
1299 will see when you are asked to unlock your private key will read
1301 <PRE>
1302 Enter password of key &lt;private_key&gt; to unlock password file:
1303 </PRE>
1305 <P>Observe that you do not need to use an existing key/certificate pair, 
1306 and that you can create a new private key/public certificate pair to 
1307 encrypt and decrypt your password file. Alpine provides a mechanism to
1308 change the encryption key for this file in the S/MIME configuration
1309 screen.
1311 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1313 <P> If Alpine cannot find a suitable private key and public certificate pair
1314 to encrypt your password file, it will create one. When doing so, it will
1315 start the process with the following warning:
1317 <PRE>
1318 Creating a Master Password for your Password file.
1319 </PRE>
1321 <P> Then Alpine will ask you to enter your Master Password:
1323 <PRE>
1324 Create master password (attempt 1 of 3):
1325 </PRE>
1327 <P> Once you enter this password, and it validates according to system policy,
1328 you will be asked to confirm this password. 
1330 <PRE>
1331 Confirm master password (attempt 1 of 3):
1332 </PRE>
1334 <P> If you input the same password, then Alpine will set that as your 
1335 Master Password, and you will use this password to unlock your key in the 
1336 future.
1338 <P> If you would like to switch your Master Password in the future, you can 
1339 do so by creating a new public key and public certificate pair. You can do 
1340 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1341 Certificate for Password File&quot; section, simply enter your current 
1342 password to unlock your current key and then press &quot;C&quot; to create 
1343 a new key.
1346 &lt;End of help&gt;
1347 </BODY>
1348 </HTML>
1349 ====== h_tls_failure_details ======
1350 <HTML>
1351 <HEAD>
1352 <TITLE>Certificate Validation Details</TITLE>
1353 </HEAD>
1354 <BODY>
1355 <H1>Certificate Validation Details</H1>
1357 This screen gives details as to why the certificate validation failed: the
1358 name of the desired server system; the reason for failure; and the name on
1359 the certificate.  This is primarily of interest to experts.
1362 &lt;End of help&gt;
1363 </BODY>
1364 </HTML>
1365 ====== h_tls_failure ======
1366 <HTML>
1367 <HEAD>
1368 <TITLE>TLS or SSL Failure</TITLE>
1369 </HEAD>
1370 <BODY>
1371 <H1>TLS or SSL Failure</H1>
1373 An attempt was made to establish a secure, encrypted connection to the
1374 server system using either Transport Layer Security (TLS) or the older
1375 Secure Sockets Layer (SSL).  This attempt failed.
1378 You should contact your server system management for more assistance.
1379 The problem is probably at the server system and not in Alpine or your local
1380 system.  The text in this screen may be helpful for the server system
1381 management in debugging the problem,
1384 &lt;End of help&gt;
1385 </BODY>
1386 </HTML>
1387 ====== h_tls_validation_failure ======
1388 <HTML>
1389 <HEAD>
1390 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1391 </HEAD>
1392 <BODY>
1393 <H1>TLS and SSL Certificate Validation Failures</H1>
1395 An attempt was made to establish a secure, encrypted connection to the
1396 server system using either Transport Layer Security (TLS) or the older
1397 Secure Sockets Layer (SSL).
1400 An important part of this procedure is server certificate validation.  A
1401 server certificate is an &quot;electronic identification card&quot; for the server
1402 system that is signed by a well-known certificate authority (CA).  Alpine
1403 compares the server system identity in the server certificate with the
1404 name of the server system to which it is trying to connect.  Alpine also
1405 verifies that the CA signature is authentic.
1408 Some common failure conditions are:
1411 <UL>
1412   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1413 signed its own certificate.  This does not necessarily indicate anything
1414 bad; the server operators may simply have elected to not purchase a
1415 signed certificate from a certificate authority.
1417   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1418 the signature on the server system is from an unknown certificate authority.
1419 It can also mean that no certificate authority certificates have been
1420 installed on the local UNIX system.
1422   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1423 the same as either of the above two conditions in UNIX Alpine.  Note that
1424 Windows systems typically have a full set of certificate authority
1425 certificates installed, so it is more likely to be a self-signed
1426 certificate than an unknown certificate authority.
1428   <LI> Server name does not match certificate.  This means that the server
1429 presented a proper signed certificate for a name other than the desired
1430 name.
1431 </UL>
1434 Any of these conditions can indicate that you are being attacked and have
1435 been directed to an imposter server that will record your password and
1436 your private mail messages.  It can also mean something innocuous.
1439 If you are certain that the problem is innocuous, you can append the
1440 option
1443 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1446 to the server system name where it appears in your configuration (e.g. the
1447 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1448 a folder-collection, or a news or SMTP server).  This will
1449 disable certificate validation.  On the other hand, if you are attacked,
1450 you will get no warning if you do this.
1453 &lt;End of Cert Validation Failures help&gt;
1454 </BODY>
1455 </HTML>
1456 ====== h_release_tlscerts ======
1457 <HTML>
1458 <HEAD>
1459 <TITLE>TLS and SSL usage note</TITLE>
1460 </HEAD>
1461 <BODY>
1462 <H1>TLS and SSL usage note</H1>
1465 When using Alpine from Unix or Windows 2000,
1466 server certificates must be signed by a trusted certificate authority.
1467 You may relax this requirement (at the cost of some security) by using
1469 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1470 modifier in the mailbox name.
1473 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1476 The fully-qualified host name of the server should be used
1477 so that it matches the host name in the server certificate.
1479 Here is an example of a host specification that directs Alpine to use
1480 the SSL port (993) and an encrypted data stream.
1482 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1484 &lt;End of TLS usage help&gt;
1485 </BODY>
1486 </HTML>
1487 ====== h_news_config ======
1488 <HTML>
1489 <HEAD>
1490 <TITLE>Alpine Configuration</TITLE>
1491 </HEAD>
1492 <BODY>
1493 <H1>Alpine Configuration</H1>
1495 <H2>Using Environment Variables</H2>
1497 The values of Alpine configuration options may include environment variables
1498 that are replaced by the value of the variable at the time Alpine is run
1499 (and also at the time the config option is changed).
1500 The syntax to use environment variables is a subset of the common Unix
1501 shell dollar-syntax.
1502 For example, if
1504 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1506 appears in the value of an Alpine configuration option it is looked up in the
1507 environent (using getenv(&quot;VAR&quot;)) and its
1508 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1509 To include a literal dollar sign you may precede the dollar sign with another
1510 dollar sign.
1511 In other words, if the text
1513 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1515 is the value of a configuration option, it will be expanded to
1517 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1519 and no environment lookup will be done.
1520 For Unix Alpine it will also work to use a backslash character to
1521 escape the special meaning of the dollar sign, but $$ is preferable since
1522 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1523 to be in a shared configuration file.
1526 This all sounds more complicated than it actually is.
1527 An example may make it clearer.
1528 Unfortunately, the way in which environment variables are set is OS-dependent 
1529 and command shell-dependent.
1530 In some Unix command shells you may use
1532 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1533    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1535 Now, if you use Alpine's Setup/Config screen to set
1537 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1539 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1540 so that this would be equivalent to
1542 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1544 Note, environment variable substitution happens after configuration
1545 options that are lists are split into the separate elements of the list,
1546 so a single environment variable can't contain a list of values.
1549 The environment variable doesn't have to be the only thing
1550 after the equal sign.
1551 However, if the name of the variable is not at the end of the line or
1552 followed by a space (so that you can tell where the variable name ends),
1553 it must be enclosed in curly braces like
1555 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1557 It is always ok to use the braces even if you don't need to.
1559 It is also possible to set a default value for an environment variable.
1560 This default value will be used if the environment variable is not
1561 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1562 The syntax used to set a default value is
1564 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1566 If the config file contains
1568 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1570 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1571 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1572 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1573 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1574 the default value.
1575 (Note that the variable is called &quot;personal-name&quot; in the config
1576 file but is displayed in the config screen as
1577 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1578 In general, the value that goes into a config file is never exactly the
1579 same as the value you see on the screen.)
1582 An example where an environment variable might be useful is the
1583 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1584 Suppose most users used the server
1586 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1588 but that there were some exceptions who used
1590 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1592 In this case, the system manager might include the following line in
1593 the systemwide default Alpine configuration file
1595 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1597 For the exceptional users adding
1599 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1601 to their environment should work.
1603 Another example might be the case where a user has to use a different
1604 SMTP server from work and from home.
1605 The setup might be something as simple as
1607 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1609 or perhaps a default value could be given.
1610 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1611 a list of SMTP servers.
1614 <H2>Configuration precedence</H2>
1616 There are several levels of Alpine configuration.  Configuration values at
1617 a given level override corresponding values at lower levels.  In order of
1618 increasing precedence:
1620 <UL>
1621  <LI> built-in defaults
1622  <LI> system-wide
1623 <!--chtml if pinemode="os_windows"-->
1624       config file from command line or provided
1625       by "PINECONF" environment variable
1626 <!--chtml else-->
1627       pine.conf file
1628 <!--chtml endif-->
1629  <LI> personal configuration file
1630  <LI> personal exceptions configuration file
1631  <LI> command-line options
1632  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1633  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1634 </UL>
1636 The values in both the personal configuration file and the
1637 <A HREF="h_config_exceptions">exceptions</A>
1638 configuration file may be set using the Setup command.
1639 Setup/Config is the command to change most of the personal configuration
1640 options.
1641 The other Setup subcommands are also used to change the configuration,
1642 for example, Setup/AddressBook, Setup/Rules, and so on.
1643 Changing the personal exceptions configuration is very similar.
1644 To change a value in the Config screen you would use the command
1645 Setup/eXceptions/Config.
1646 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1648 There are a couple exceptions to the rule that configuration values are replaced
1649 by the value of the same option in a higher-precedence file.
1650 The Feature-List variable has values that are additive, but can be
1651 negated by prepending &quot;no-&quot; in front of an individual feature name.
1652 So for features, each individual feature's value is replaced by the value
1653 of the same feature in a higher-precedence file.
1654 Note that this is done automatically for you when you change these values via
1655 the Setup/Config command.
1656 The other exception to the <EM>replace</EM> semantics happens when you
1657 use <A HREF="h_config_inheritance">configuration inheritance</A>
1658 for option lists.
1661 <H2>File name defaults</H2>
1663 Notes:<P>
1665 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1666 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1667 <BR> # = default file name is overridable in pinerc.
1668 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1669 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1670 <BR> + between the mailcap paths implies that the two files are combined.
1671 <BR> ; between other default paths implies that the first one found is used.
1672 </P>
1673 Alpine looks for most support files in the same directory it finds its
1674 personal configuration file (pinerc).  The -p command-line flag may be
1675 used to specify a particular path name for the pinerc file.  If a
1676 pinerc file does not exist, it will be created (if directory permissions
1677 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1678 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1679 file does not exist in either one, it will create one in the first of those
1680 two directories that is writable.  In detail:
1681 <PRE>
1683 PC-Alpine:
1685  executable     &lt;DOS search path&gt;&#92;pine.exe
1686  help index     &lt;exe dir&gt;&#92;pine.ndx
1687  help text      &lt;exe dir&gt;&#92;pine.hlp
1689  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1690  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1691  global cfg     $PINECONF
1693  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1694  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1695  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1696  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1697  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1698  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1699  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1700  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1701  postponed#     $HOME&#92;mail&#92;postpond.mtx
1702  interrupted    $HOME&#92;mail&#92;intruptd
1704 Unix Alpine:
1706  executable     &lt;Unix search path&gt;/pine
1707  persnl cfg     ~/.pinerc
1708  except cfg     ~/.pinercex
1709  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1710  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1711  local help     <!--#echo var="PINE_INFO_PATH"-->
1713  interrupted    ~/.pine-interrupted-mail
1714  debug          ~/.pine-debugN
1715  crash          ~/.pine-crash
1716  newsrc#        ~/.newsrc
1717  signature#     &lt;pinerc dir&gt;/.signature
1718  addressbook#   &lt;pinerc dir&gt;/.addressbook
1719  postponed#     ~/mail/postponed-msgs
1720  sentmail#      ~/mail/sent-mail
1721  mailcap#       ~/.mailcap + /etc/mailcap
1722                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1723  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1725  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1726  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1727  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1728  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1729  password       /etc/passwd
1731 Unix Alpine and PC-Alpine:
1733  .ab*           remote addressbook support files
1734  a[1-9]*        temporary (while Alpine is running) addressbook files
1736 </PRE>
1739 <H2>Mailcap files</H2>
1741 Alpine honors the mailcap configuration system for specifying external
1742 programs for handling attachments.  The mailcap file maps MIME attachment
1743 types to the external programs loaded on your system that can display
1744 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1745 distribution.  It includes comments that explain the syntax you need to
1746 use for mailcap.  With the mailcap file, any program (mail readers,
1747 newsreaders, WWW clients) can use the same configuration for handling
1748 MIME-encoded data.
1751 <H2>MIME-Types files</H2>
1753 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1754 what Content-Type to use for labeling an attached file, based on
1755 the file extension.  That is, this file provides a mapping between
1756 filename extensions and MIME content-types.
1759 <H2>Environment variables</H2>
1761 PC-Alpine uses the following environment variables:
1762 <DL>
1763 <DT>PINERC</DT>
1764 <DD>Optional path to pinerc file.</DD>
1765 <DT>PINERCEX</DT>
1766 <DD>Optional path to personal exceptions configuration file.</DD>
1767 <DT>PINECONF</DT>
1768 <DD>Optional path to global pine config file.</DD>
1769 <DT>HOME</DT>
1770 <DT>TMPDIR, TMP, or TEMP</DT>
1771 <DT>COMSPEC</DT>
1772 <DT>MAILCAPS</DT>
1773 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1774 <DT>USER_DICTIONARY</DT>
1775 <DD>Used to specify the file to contain the user's spell check
1776 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1777 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1778 </DL>
1780 Unix Alpine uses the following environment variables:
1781 <DL>
1782 <DT>TERM</DT>
1783 <DD>Tells Alpine what kind of terminal is being used.</DD>
1784 <DT>DISPLAY</DT>
1785 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1786 <DT>SHELL</DT>
1787 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1788 <DT>TMPDIR, TMP, or TEMP</DT>
1789 <DT>MAILCAPS</DT>
1790 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1791 </DL>
1792 <!--chtml if pinemode="os_windows"-->
1794 <H2>Common PC-Alpine Configuration Problems</H2>
1796 <H3>Configuration settings aren't being saved</H3>
1798 <P>This problem can happen if you run pine from one directory and
1799 then decide to move your pine directory to another location.  PC-Alpine
1800 stores certain variables, including the configuration location, in the
1801 Windows Registry (which you shouldn't ever need to manually edit).  There
1802 are a couple of ways to go about removing or resetting the values in the
1803 registry.
1806 1) Run PC-Alpine's registry value deletion command.  This can be done by
1807 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1808 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1809 value to the above command.
1812 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1813 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1814 option, you can tell PC-Alpine the location of your pinerc.  An example of
1815 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;.
1816 Again, you can use the DOS prompt or the shortcut method explained in (1).
1819 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1820 set registry values to the current setting, and is therefore useful with
1821 the &quot;-p&nbsp;PINERC&quot; option.
1823 <!--chtml endif-->
1825 &lt;End of Configuration Notes&gt;
1826 </BODY>
1827 </HTML>
1828 ====== h_news_legal ======
1829 <html>
1830 <head>
1831 <TITLE>Alpine Legal Notices</TITLE>
1832 </head>
1833 <body>
1835 <H1>Alpine Legal Notices</H1>
1837 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1841 &lt;End of Alpine Legal Notices&gt;
1842 </BODY>
1843 </HTML>
1844 ===== h_info_on_mbox =====
1845 <HTML>
1846 <HEAD>
1847 <TITLE>Information on mbox driver</TITLE>
1848 </HEAD>
1849 <BODY>
1850 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1852 Beginning with Pine 4.00 (Pine came before Alpine)
1853 a new INBOX access method is
1854 available as part of the standard configuration.  It is called the
1855 &quot;mbox&quot; driver and it works like this:<P>
1858 <BLOCKQUOTE>
1859 If the file &quot;mbox&quot; exists in the user's home directory, and
1860 is in Unix mailbox format, then when INBOX is opened this file will be
1861 selected as INBOX instead of the mail spool file.  Messages will be
1862 automatically transferred from the mail spool file into the mbox
1863 file.
1864 </BLOCKQUOTE>
1867 The advantage of this method is that, after new mail has been copied
1868 from the system mail spool, all subsequent access is confined to the
1869 user's home directory, which is desirable on some systems.  However, a
1870 possible disadvantage is that mail tools other than those from the
1871 University of Washington will not know to look for mail in the user's
1872 mbox file.  For example, POP or IMAP servers other than those from the
1873 University of Washington, and many &quot;new mail notification&quot;
1874 programs may not work as expected with this driver enabled.<P>
1876 To disable this behavior, either remove/rename the &quot;mbox&quot;
1877 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1878 option in Setup/Config
1879 and add &quot;mbox&quot; to it:
1881 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1883 &lt;End of help on this topic&gt;
1884 </BODY>
1885 </HTML>
1886 ===== h_info_on_locking =====
1887 <HTML>
1888 <HEAD>
1889 <TITLE>FAQs on Alpine Locking</TITLE>
1890 </HEAD>
1891 <BODY>
1892 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1894 There is an extensive section on locking in the Alpine technical notes;
1895 this information is intended to provide answers to some common questions:<P>
1896 <OL>
1897 <LI> Why did locking change in Pine 4.00?<BR>
1898 The actual locking mechanisms did not change in 4.00.
1899 What changed is that when one particular locking mechanism used by Alpine 
1900 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1901 failure would occur, but no warning was issued.<P>
1903 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1904 Yes.  It means that Alpine was unable to create a lockfile in the
1905 spool directory, generally because of overly restrictive protections on the
1906 spool directory.  The correct permissions on the spool directory for
1907 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1908 with the sticky-bit set, so only owners of a file can delete them.<P>
1910 <LI> Why does Alpine require that the mail spool directory have 1777
1911    protections?<BR>
1912 Alpine was designed to run without special privileges.  This means that in
1913 order to create a lockfile in the spool directory, it is necessary to have
1914 the spool directory permissions be world-writable.<P>
1916 <LI> Can't you create the lockfile somewhere else?<BR>
1917 No.  The lockfile in question must be in the mail spool directory, because
1918 that's where the mail delivery program expects to find it, and the purpose
1919 of the file is to coordinate access between the mail client (Alpine) and the
1920 mail delivery program.<P>
1922 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1923 No.  Remember that the individual mail files in the spool directory are
1924 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1925 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1926 -- means that only the owner of the file (or root) can delete files in the 
1927 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1928 anyone could
1929 create a random file in the spool directory.  If the spool directory is
1930 under quota control along with home directories, there is little incentive
1931 for anyone to do this, and even without quotas a periodic scan for
1932 non-mail files usually takes care of the problem.  <P>
1934 <LI> Why not run Alpine as setgid mail?<BR>
1935 Alpine was never designed to run with privileges, and to do so introduces a
1936 significant security vulnerability.  For example, if a user suspends Alpine,
1937 the resulting shell will have group privileges.  This is one example of
1938 why we strongly recommend against running Alpine as a privileged program.
1939 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1940 users
1941 could not test Alpine versions or other mailers that had not been installed
1942 by the system administrators.<P>
1945 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1946 There are, but they all have different sets of tradeoffs, and not all will
1947 work on all systems.  Some examples:<UL>
1948  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1949    spool is local.   Doesn't work reliably if NFS is used.
1950    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1951    use the same calls.
1952  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1953    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1954 mail tools that always look in the spool directory for the mail.
1955 </UL><P>
1957 <LI> Are these spool directory lock files the only kinds of locks used by
1958    Alpine?<BR>
1959 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1960 mailbox format folders, these are used to coordinate access between
1961 multiple Alpine sessions.  <P>
1963 <LI> What about the 
1964 <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>
1965 This is for people who are content to live dangerously, or who have
1966 specific knowledge that the spool directory lockfiles are superfluous on
1967 their system (because both Alpine and the mail delivery program are using 
1968 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1970 <LI> Where can I find more details on how Alpine locking works?<BR>
1971 See the Alpine Technical Notes.<P>
1973 </OL>
1975 &lt;End of help on this topic&gt;
1976 </BODY>
1977 </HTML>
1978 ===== h_finding_help ====
1979 <HTML>
1980 <HEAD>
1981 <TITLE>Finding more information and requesting help</TITLE>
1982 </HEAD>
1983 <BODY>
1984 <H1>Places to Look for More Answers</H1>
1985 If you have questions about or problems with Alpine that you cannot resolve 
1986 after consulting the program's internal, context-sensitive help screens, here 
1987 are additional information resources that you may find helpful:
1989 <UL>
1990   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1992   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1994   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1995 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1996   since the last version, which may be useful for you to be aware of, 
1997 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1998 a change in the way an aspect of Alpine works.  There, you will also find notes 
1999 on Alpine configuration.<P>
2000 <!--
2001   <LI> The main site for Alpine contains information on configuring and solving problems
2002        with Alpine, it can be found at
2004 <CENTER><A HREF="http://alpine.freeiz.com/alpine/">http://alpine.freeiz.com/alpine/</A></CENTER>  
2006   <LI> The Alpine Information Center (maintained by the University of
2007            Washington) World Wide Web site contains, among other things
2008            <UL>
2009            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
2010            <LI>an overview of the basics for beginning Alpine users
2011            <LI>Technical Notes for systems administrators
2012            <LI>archives (including a searchable index) of the alpine-info 
2013 mailing list, on which matters of interest to systems/email administrators,
2014 developers, trainers, user support personnel, and others involved with Alpine 
2015 messaging on a &quot;technical&quot; level are discussed.
2016 </UL>
2017         The Alpine Information Center can be accessed with a WWW browser at:<P>
2018             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
2019 </UL>
2020 <P><HR WIDTH="75%">
2021 <H1>Requesting help</H1>
2022 If the internal help, the Release Notes, the Alpine Information Center, and your 
2023 local online and print resources do not help you resolve a problem, please
2024 start by contacting your local computer support staff and asking for help.
2026 This is especially true if:
2027 <ul>
2028   <li>You suddenly have trouble sending or receiving mail.
2029   <li>You receive a "disk quota exceeded" message.
2030   <li>You have forgotten your password.
2031   <li>You think your account may have been compromised.
2032   <li>You need help viewing an attachment.
2033   <li>You need to know how to configure your:
2034       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
2035       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
2036       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
2037       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2038   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2039   <li>You want to block email from a particular person.
2040   <li>You're going on vacation and need to autorespond to incoming mail.
2041   <li>You want to automatically file or filter incoming messages.
2042 </ul>
2044 In all of these cases,
2045 you should contact <B>your</B> support staff, because <B>only they</B> 
2046 will be able to assist you effectively. Your support staff may be, depending on who 
2047 provides you with the email account you use Alpine with, for example:<UL>
2048 <LI> the computing help desk of (a department of) your university, school, 
2049 employer, ... ; or
2050 <LI> the customer service center of your Internet Service Provider; or
2051 <LI> the friendly volunteer helpers of your Freenet; or
2052 <LI> the person who setup your computer and internet connection.
2053 </UL>
2055 Due to the large number of Alpine installations worldwide, and because we
2056 receive no funding for it, the University of Washington <B>cannot provide 
2057 individual support services outside the University of Washington</B>.
2059 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2060 newsgroup can be a valuable source of information and assistance for Alpine 
2061 user issues.
2063 For systems/email administrators, developers, trainers, user support
2064 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2065 level, the mailing list alpine-info is available; for information on
2066 subscribing and posting to it, see
2068 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
2071 Regardless of whom you are asking for help with Alpine, remember 
2072 to provide as much detail as you can about the
2073 nature of any problem you are encountering, such as
2074 <UL>
2075 <LI>when it first occurred;
2076 <LI>what, if anything, happened that might have brought it about;
2077 <LI>whether it still persists;
2078 <LI>whether it is reproducible, and if so, how;
2079 <LI>what, if anything, you already tried to solve it.
2080 </UL> 
2081 It may also be helpful if you specify what version of Alpine you are using 
2082 <!--chtml if pinemode="running"-->
2083 -- this is <!--#echo var="ALPINE_VERSION"--> --
2084 <!--chtml endif-->
2085 and on what system, and when the copy of Alpine you are using was created
2086 <!--chtml if pinemode="running"-->
2087 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2088 <!--chtml endif-->
2090 <!--chtml if pinemode="running"-->
2091 <P>   
2092 When the Alpine program you are currently using was installed, a support
2093 contact email address may have been set up; in that case, you can simply select
2094 this link now to send a message to it:<BR>
2095 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2096 <!--chtml endif-->
2097 <!--chtml if [ -r PINE_INFO_PATH ]-->
2098 <HR WIDTH="75%">Local Support Contacts:<P>
2099 <!--#include file="PINE_INFO_PATH"-->
2100 <HR WIDTH="75%">
2101 <!--chtml endif-->
2102 <P> 
2103 &lt;End of help on this topic&gt;
2104 </BODY>
2105 </HTML>
2106 ===== new_user_greeting ======
2107 <HTML>
2108 <HEAD>
2109 <TITLE>NEW USER GREETING</TITLE>
2110 </HEAD>
2111 <BODY>
2112 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2113 <BR>
2114 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2115 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2116 select Setup/Config to see many of the options available to you. Also note
2117 that all screens have context-sensitive help text available.<P>
2118 <!--chtml if pinemode="phone_home"-->
2119 SPECIAL REQUEST:
2120 This software was originally created and maintained as a public
2121 service by the University of Washington until 2009; updates are made 
2122 available as a public service of the Alpine community. It is always 
2123 helpful to have an idea of how many users are using Alpine. Are you 
2124 willing to be counted as an Alpine user? Pressing 
2125 <A HREF="X-Alpine-Phone-Home:">Return</A>
2126 will send an anonymous (meaning, your real email address will not be revealed) 
2127 message to the Alpine developers for purposes of tallying.
2129 <!--To Exit this screen and continue your Alpine session press "E".-->
2130 <!--chtml else-->
2131 To Exit this screen and continue your Alpine session press "Return".
2132 <!--chtml endif-->
2133 </BODY>
2134 </HTML>
2135 ===== new_alpine_user_greeting ======
2136 <HTML>
2137 <HEAD>
2138 <TITLE>NEW ALPINE USER GREETING</TITLE>
2139 </HEAD>
2140 <BODY>
2141 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2142 <BR>
2143 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2144 Your Alpine configuration file indicates that you may have used Pine before
2145 but not Alpine.
2146 If you are familiar with the way Pine works, you should be comfortable
2147 using Alpine.
2148 Your Pine configuration file is automatically used for Alpine.
2149 The Release Notes may be viewed by pressing 
2150 &quot;R&quot; now or while in the MAIN MENU.
2152 <!--chtml if pinemode="phone_home"-->
2153 SPECIAL REQUEST:
2154 This software was originally created and maintained as a public
2155 service by the University of Washington until 2009; updates are made 
2156 available as a public service of the Alpine community. It is always 
2157 helpful to have an idea of how many users are using Alpine. Are you 
2158 willing to be counted as an Alpine user? Pressing 
2159 <A HREF="X-Alpine-Phone-Home:">Return</A>
2160 will send an anonymous (meaning, your real email address will not be revealed) 
2161 message to the Alpine developers for purposes of tallying.
2163 <!--To Exit this screen and continue your Alpine session press "E".-->
2164 <!--chtml else-->
2165 To Exit this screen and continue your Alpine session press "Return".
2166 <!--chtml endif-->
2167 </BODY>
2168 </HTML>
2169 ===== new_version_greeting ======
2170 <HTML>
2171 <HEAD>
2172 <TITLE>NEW VERSION GREETING</TITLE>
2173 </HEAD>
2174 <BODY>
2175 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2176 <BR>
2177 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2178 Your Alpine configuration file indicates that you may not have used 
2179 this version of Alpine before.  This version's significant changes are
2180 documented in the Release Notes, which may be viewed by pressing 
2181 &quot;R&quot; now or while in the MAIN MENU.
2183 <!--chtml if pinemode="phone_home"-->
2184 SPECIAL REQUEST:
2185 This software was originally created and maintained as a public
2186 service by the University of Washington until 2009; updates are made 
2187 available as a public service of the Alpine community. It is always 
2188 helpful to have an idea of how many users are using Alpine. Are you 
2189 willing to be counted as an Alpine user? Pressing 
2190 <A HREF="X-Alpine-Phone-Home:">Return</A>
2191 will send an anonymous (meaning, your real email address will not be revealed) 
2192 message to the Alpine developers for purposes of tallying.
2194 <!--To Exit this screen and continue your Alpine session press "E".-->
2195 <!--chtml else-->
2196 To Exit this screen and continue your Alpine session press "Return".
2197 <!--chtml endif-->
2198 </BODY>
2199 </HTML>
2201 ===== main_menu_tx ======
2202 <HTML>
2203 <HEAD>
2204 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2205 </HEAD>
2206 <BODY>
2207 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2208 <DIV ALIGN=CENTER>
2209 Version <!--#echo var="ALPINE_VERSION"-->
2210 <!--chtml if pinemode="running"-->
2211 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2212 <!--chtml endif-->
2213 </DIV>
2214 <CENTER>Copyright 2013-2018 Eduardo Chappa,
2215 <BR>Copyright 2006-2008 University of Washington.
2216 </CENTER>
2219 When you are viewing a help screen, there may be links to
2220 other topics highlighted (in Reverse video) in the text.
2221 Here is an example.
2222 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2223 highlighted.
2224 If you type carriage return (or V for View Link, see the commands at the
2225 bottom of the screen) you will be taken to a new help screen to view the
2226 Introduction.
2227 The commands at the bottom of the screen should then include
2228 &quot;P Prev Help&quot;.
2229 If you type &quot;P&quot; you will end up back here.
2230 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2231 to the place you were in Alpine when you entered Help.
2232 In this case, you would go back to the MAIN MENU.
2233 There are also other links that are highlighted in bold (or the color used
2234 by your terminal to display bold).
2235 The items after the Introduction in the TABLE OF CONTENTS are all examples
2236 of such links.
2237 In order to view those links, you first have to make the link you want
2238 to view the current link.
2239 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2240 (see bottom of screen) can do that for you.
2243 <H2>TABLE OF CONTENTS</H2>
2244 <OL>
2245   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2246   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2247 <!--chtml if [ -r PINE_INFO_PATH ]-->
2248   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2249 <!--chtml endif-->
2250   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2251   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2252   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2253   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2254   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2255   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2256   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2257   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2258   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2259   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2260   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2261   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2262   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2263   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2264   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2265   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2266   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2267   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2268   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2269   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2270   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2271   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2272   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2273   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2274   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2275 </OL>
2278 &lt;End of help on this topic&gt;
2279 </BODY>
2280 </HTML>
2281 ===== h_mainhelp_intro ======
2282 <HTML>
2283 <HEAD>
2284 <TITLE>Introduction</TITLE>
2285 </HEAD>
2286 <BODY>
2287 <H1>Introduction</H1>
2289 Alpine is an &quot;Alternatively Licensed Program for Internet
2290 News and Email&quot; produced until 2009 by the University of Washington.
2291 It is intended to be an easy-to-use program for
2292 sending, receiving, and filing Internet electronic mail messages and
2293 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2294 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2295 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2296 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2297 Directory Access Protocol).<p>
2299 Although originally designed for inexperienced email users, Alpine has
2300 evolved to support many advanced features.  There are an ever-growing
2301 number of configuration and personal-preference options, though which of
2302 them are available to you is determined by your local system managers. 
2304 <H2>WHAT ALPINE DOES...</H2>
2306 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2307 allows you to
2308 compose and read messages using Internet mail standards.  (Whether you
2309 can correspond with others on the Internet depends on whether or not your
2310 computer is connected to the Internet.)  Alpine also allows reading and
2311 posting messages on the Internet &quot;net news&quot; system, provided
2312 that your site operates a suitable news server.
2314 <H2>WHAT ALPINE DOES NOT DO...</H2>
2316 A &quot;mail user agent&quot; such as Alpine is just one part of a
2317 messaging system. Here are some things that are <B>not</B> done by Alpine,
2318 but require other programs:<P>
2319 <UL>
2320  <LI> Actual relaying of email... which is done by &quot;message transfer 
2321 agents&quot;.
2322  <LI> Vacation messages... automatically responding to incoming messages
2323  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2324 email.
2325  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2326  <LI> List processing... resending one message to a list of recipients.
2327 </UL>
2330 &lt;End of help on this topic&gt;
2331 </BODY>
2332 </HTML>
2334 ===== h_mainhelp_pinehelp ======
2335 <HTML>
2336 <HEAD>
2337 <TITLE>Alpine Help</TITLE>
2338 </HEAD>
2339 <BODY>
2340 <H1>Alpine Help</H1>
2342 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2343 use will have its own help text, explaining the choices available for that
2344 screen. This general help section, on the other hand, attempts to give an 
2345 overall picture of what Alpine is capable of doing, as well as pointers to 
2346 additional help sections about specific topics.<p>
2348 Much of the help text contains links to further help topics, similar to
2349 how the World Wide Web works.
2350 You may choose a link to view using the &quot;NextLink&quot; and
2351 &quot;PrevLink&quot; commands to change the link that is highlighted.
2352 The &quot;View Link&quot; command will then show you the highlighted link.
2353 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2354 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2355 will return you to the location in Alpine before you asked for help.
2356 For example, if you are reading this text in Alpine you may return to the
2357 help table of contents with the &quot;Prev Help&quot; command or you may view the
2358 Release notes link in the next paragraph and then return here with
2359 &quot;Prev Help&quot;.
2362 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2363 on the current Alpine version are also available from the MAIN MENU: Press
2364 <!--chtml if pinemode="function_key"-->
2365 &quot;F9&quot;
2366 <!--chtml else-->
2367 &quot;R&quot;
2368 <!--chtml endif-->
2369 to browse the release notes.  These include changes since the last release,
2370 configuration information, the history of the Alpine
2371 project, credits, and legal notices.
2373 Alpine releases are available via the world wide web at
2375 <CENTER><SAMP><A 
2376 HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP
2377 ></CENTER>
2380 If you would like to print <EM>all</EM> of Alpine's internal help text
2381 (not recommended) for a little light bedtime reading, then press
2382 <!--chtml if pinemode="function_key"-->
2383 &quot;F12&quot;
2384 <!--chtml else-->
2385 &quot;Z&quot;
2386 <!--chtml endif-->
2387 now.  (This assumes that the
2388 copy of Alpine you are using has been properly configured for printing
2389 at your site.)
2391 &lt;End of help on this topic&gt;
2392 </BODY>
2393 </HTML>
2394 ===== h_mainhelp_localsupport ======
2395 <HTML>
2396 <HEAD>
2397 <TITLE>Local Support Contacts</TITLE>
2398 </HEAD>
2399 <BODY>
2400 <H1>Local Support Contacts</H1>
2402 <!--chtml if [ -r PINE_INFO_PATH ]-->
2403 <!--#include file="PINE_INFO_PATH"-->
2404 <!--chtml else-->
2405 No Local Support Contacts configured.
2406 <!--chtml endif-->
2409 &lt;End of help on this topic&gt;
2410 </BODY>
2411 </HTML>
2413 ===== h_mainhelp_cmds ======
2414 <HTML>
2415 <HEAD>
2416 <TITLE>Giving Commands in Alpine</TITLE>
2417 </HEAD>
2418 <BODY>
2419 <H1>Giving Commands in Alpine</H1>
2421 Unless configured otherwise
2422 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2423 the bottom two lines of the screen are always used to list the
2424 commands you can give.  You press the keys that are highlighted to give
2425 the command.  The commands for getting help and going back to the main
2426 menu are always present (except when viewing help as you are now).
2427 <!--chtml if pinemode="function_key"-->
2428 <!--chtml else-->
2430 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2431 you see at the bottom of any screen. In some cases there are 3 or
2432 even 4 different
2433 sets of keys that can be seen by using the O key. <EM>All commands are 
2434 active</EM>, even if they are not currently showing at the bottom of your 
2435 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2436 remind yourself of the proper key to press to perform an operation.
2438 <H2>Control Key Commands</H2>
2439 When composing mail, and in a few other places, in Alpine you
2440 have to use Control keys. This means pressing the Control key (usually labeled 
2441 &quot;Ctrl&quot;) and the
2442 letter indicated at the same time.  Usually, this is shown with a
2443 &quot;^&quot; in front of the letter.  On some systems, certain control
2444 characters are intercepted before they get to Alpine.  As a work-around,
2445 you can press the ESCAPE key twice followed by the desired key.  For
2446 example, if Ctrl-O (^O) does not work on your system, try typing
2447 &quot;ESC ESC O&quot;.
2448 <!--chtml endif-->
2449 <H2>Paging Up and Down</H2>
2450 The &quot;+&quot; and &quot;-&quot; keys are used for
2451 moving to the next or previous page.  The space bar is a synonym for
2452 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2453 up as you do in the message composer.  On screens with a WhereIs (search)
2454 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2455 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2456 of the message or list.
2458 <H2>Return Key</H2>
2459 The return key is usually a synonym for a frequently used
2460 command.  When viewing a message, there is currently not a default
2461 command, so RETURN does nothing; when in the index, it is synonymous with
2462 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2463 enclosed in square brackets [] is the same as the return key.
2465 <H2>Control Keys Not Used By Alpine</H2>
2466 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2467 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2468 at prompts for file/folder names, control keys must be used for editing and 
2469 navigation functions.
2472 Alpine has used nearly all the control keys available.  There are, however,
2473 certain control keys that are reserved by other programs or for technical
2474 reasons.  Alpine does not use any of these keys:
2475 <DL>
2476  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2477  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2478  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2479 </DL>
2481 Note: Ctrl-S and Ctrl-Q can be subject to 
2482 <A HREF="h_special_xon_xoff">special handling</A>.
2484 In addition, while the ESC key alone is not used for command input,
2485 Alpine will recognize two consecutive ESC key presses followed by a letter 
2486 key as a substitute for control key input.  For example, the control key
2487 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2488 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2489 This is useful if the communication program you are using
2490 (e.g. Telnet) has its own, conflicting, idea of what certain control
2491 characters mean.
2494 <H2>Repainting the Screen</H2>
2495 Sometimes what is displayed on the screen will be
2496 incorrect due to noise on the phone line or other causes and you will want
2497 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2498 command to do this.  It never hurts to do it when in doubt.
2501 &lt;End of help on this topic&gt;
2502 </BODY>
2503 </HTML>
2504 ===== h_mainhelp_status ======
2505 <HTML>
2506 <HEAD>
2507 <TITLE>Titlebar Line</TITLE>
2508 </HEAD>
2509 <BODY>
2510 <H1>Titlebar Line</H1>
2512 The top line of the screen is Alpine's titlebar line.  It will always display
2513 the current version of Alpine and will also convey information about the
2514 status of the program.  This is where you look to find out what
2515 collection, folder and message number is active and where you are in Alpine.
2518 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2519 (typically your INBOX) is &quot;locked&quot; by another mail session --
2520 most likely a more recent session of Alpine has taken the INBOX lock.
2523 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2524 access a
2525 folder on a remote mail server, and for some reason, communication with
2526 the mail server has either been lost, or never successfully established.
2527 This can be a result of trying to open a non-existent folder, or one
2528 stored on an invalid or non-operational server, or it can mean that Alpine
2529 has been suspended for more that 30 minutes while accessing a remote mail
2530 server.
2533 &lt;End of help on this topic&gt;
2534 </BODY>
2535 </HTML>
2536 ===== h_mainhelp_mainmenu ======
2537 <HTML>
2538 <HEAD>
2539 <TITLE>Main Menu</TITLE>
2540 </HEAD>
2541 <BODY>
2542 <H1>Main Menu</H1>
2544 The Main Menu lists Alpine's main options.
2545 The key or keys you must type to enter your
2546 choice are to the left of each option or command name.
2547 You can type either uppercase or lowercase letters,
2548 and you should not press &lt;Return&gt; after typing the
2549 letter (unless you are specifically asking for the default,
2550 highlighted command).
2553 From the Main Menu you can choose to read online help, write (compose) and 
2554 send a message, look at an index of your mail messages, open or maintain
2555 your mail folders, update your address book, configure Alpine, and quit Alpine.
2556 There are additional options listed at
2557 the bottom of the screen as well.
2560 The Help command usually returns context-sensitive help information.
2561 However, in the Main Menu you get the most general help, which includes
2562 a Table of Contents.
2563 The last entry in the Table of Contents is an Index of help topics,
2564 so this is a good place to go if you are having trouble finding how
2565 to do something.
2567 <H2>Main Menu Commands</H2>
2568 The Alpine main menu lists the most common Alpine functions. A <a
2569 href="h_main_menu_commands">full list of these
2570 commands</a> and what they do is available.
2572 &lt;End of help on this topic&gt;
2573 </BODY>
2574 </HTML>
2575 ===== h_mainhelp_abooks ======
2576 <HTML>
2577 <HEAD>
2578 <TITLE>Address Books</TITLE>
2579 </HEAD>
2580 <BODY>
2581 <H1>Address Books</H1>
2584 As you use email, you can build a list of your regular email correspondents 
2585 in your Alpine
2586 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2587 screen. Your
2588 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2589 You can use the address book to store email addresses for individuals or
2590 groups, to create easily
2591 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2592 address when you are composing a message.
2594 There are two ways to add addresses to your address book: you can add them 
2595 manually or take them from messages (by pressing T to access the Take command). 
2596 With either method, you specify nicknames for your correspondents. A single 
2597 address book entry (or nickname) can point to just one email address, or, it can
2598 point to more than one. When it points to more than one, it is called a 
2599 distribution list. Each distribution list has a nickname, a full name, and a 
2600 list of addresses. These
2601 addresses may be actual addresses, other nicknames in your address book, or 
2602 other
2603 distribution lists.
2606 Additional information is available in Alpine's online help:
2607 <ul>
2608   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2609 </ul>
2611 &lt;End of help on this topic&gt;
2612 </BODY>
2613 </HTML>
2614 ===== h_mainhelp_ldap ======
2615 <HTML>
2616 <HEAD>
2617 <TITLE>LDAP</TITLE>
2618 </HEAD>
2619 <BODY>
2620 <H1>LDAP</H1>
2622 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2623 an organization's shared
2624 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2625 large address
2626 books, rather like the White Pages provided by the phone company. As an Alpine 
2627 user, it is not
2628 necessary to know much about how this works, only how to use it and how to 
2629 configure
2632 More information on configuring LDAP is available in Alpine's online help:
2633 <ul>
2634   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2635 </ul>
2637 Additional help on using LDAP in Alpine is also available:
2638 <ul>
2639   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2640 </ul>
2642 &lt;End of help on this topic&gt;
2643 </BODY>
2644 </HTML>
2645 ===== h_mainhelp_index ======
2646 <HTML>
2647 <HEAD>
2648 <TITLE>Index of Messages</TITLE>
2649 </HEAD>
2650 <BODY>
2651 <H1>Index of Messages</H1>
2653 In Alpine's message index, the selected message is highlighted. The first 
2654 column on the left is blank, shows a &quot;+&quot; if the message was
2655 sent directly to you (i.e., it is not a
2656 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2658 The second column may be blank, or it may contain:
2659 <ul>
2660   <li>"N" if the message is new (unread), </li>
2661   <li>"A" if you have answered the message (using the Reply command), </li>
2662   <li>"D" if you have marked the message for deletion.</li>
2663 </ul>
2666 Note: If you answer a message as well as mark it deleted (in either order), 
2667 you will only see the &quot;D&quot;.
2670 The rest of the columns in the message line show you the message
2671 number, date sent, sender, size, and subject. For details, press ? (Help).  
2672 The behavior and appearance of the Index screen is highly configurable.
2673 In the Setup/Config screen search (with the WhereIs command) for options
2674 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2675 many of the configuration possibilities.
2676 In particular, the
2677 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2678 option may be used to configure the look of the standard MESSAGE INDEX lines
2679 in many different ways.
2680 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2681 read the help text there for more information.
2683 Most of the commands you need to handle your messages are visible at the
2684 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2685 commands that are available.
2686 You do not need to see these &quot;other commands&quot;
2687 on the screen to use them. That is, you never need to press O as a prefix
2688 for any other command.
2691 Additional information is available in Alpine's online help:
2692 <ul>
2693   <li><a href="h_mail_index">Message Index Commands</a></li>
2694 </ul>
2696 &lt;End of help on this topic&gt;
2697 </BODY>
2698 </HTML>
2699 ===== h_mainhelp_reading ======
2700 <HTML>
2701 <HEAD>
2702 <TITLE>Reading Messages</TITLE>
2703 </HEAD>
2704 <BODY>
2705 <H1>Reading Messages</H1>
2707 The message text screen shows you the text of the message along with
2708 its header. If a message has attachments, those will be listed (but not
2709 displayed) also.  The titlebar line displays information about the currently
2710 open message, folder and collection.  You see the name of the collection
2711 (if there is one) in angle brackets, then the name of the folder, then the
2712 message number and finally the position within the current message (in
2713 percent). If the message is marked for deletion
2714 &quot;DEL&quot; will appear in the
2715 upper right as well.
2718 As with every Alpine screen, the bottom two lines show you the commands 
2719 available.
2721 <P>Additional information is available in Alpine's online help:
2722 <ul>
2723   <li><a href="h_mail_view">Message Text Screen</a></li>
2724   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2725   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2726 </ul>
2728 &lt;End of help on this topic&gt;
2729 </BODY>
2730 </HTML>
2731 ===== h_mainhelp_composing ======
2732 <HTML>
2733 <HEAD>
2734 <TITLE>Composing Messages</TITLE>
2735 </HEAD>
2736 <BODY>
2737 <H1>Composing Messages</H1>
2739 To write a message, press C (Compose). You see the Compose Message
2740 screen, which is divided into two parts: the header area and the message
2741 text area. The header area is where information on the recipient (the To:
2742 field) and the subject line go, while the message text area contains the
2743 actual text of the email message. Different commands are available to you
2744 when your cursor is in different areas on this screen. To see additional
2745 help on commands in either the message text or header area, type
2746 <Control>G (Get help).
2749 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2750 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2752 <P>The following information from Alpine's online help may prove useful:
2753 <ul>
2754   <li><a href="h_composer_to">Message Header Commands</a></li>
2755   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2756   <li><a href="h_composer">Composer Commands</a></li>
2757   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2758   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2759   <li><a href="h_compose_send">Send Command</a></li>
2760   <li><a href="h_compose_spell">Spell Check Command</a></li>
2761 </ul>
2763 &lt;End of help on this topic&gt;
2764 </BODY>
2765 </HTML>
2766 ===== h_mainhelp_collections ======
2767 <HTML>
2768 <HEAD>
2769 <TITLE>Collection Lists</TITLE>
2770 </HEAD>
2771 <BODY>
2772 <H1>Collection Lists</H1>
2774 Collection lists are Alpine's way of organizing groups of folders. Each
2775 "collection" can reside on a different server, for example, and contain a
2776 different group of mail folders.
2779 For more information on this, see:
2780 <ul>
2781   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2782 </ul>
2784 Additional information relating to collection lists is also available in 
2785 Alpine's online
2786 help:
2787 <ul>
2788   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2789   <li><a href="h_collection_screen">Collection List Screen</a></li>
2790 </ul>
2792 &lt;End of help on this topic&gt;
2793 </BODY>
2794 </HTML>
2795 ===== h_mainhelp_folders ======
2796 <HTML>
2797 <HEAD>
2798 <TITLE>Folders</TITLE>
2799 </HEAD>
2800 <BODY>
2801 <H1>Folders</H1>
2803 Messages can quickly accumulate in your INBOX folder. If you use email
2804 often, you soon could have hundreds. You need to delete messages you do
2805 not want, and you can use folders to organize messages you wish to save. A
2806 folder is a collection of one or more messages that are stored (just like
2807 the messages in your INBOX) so you can access and manage them.
2810 You can organize your email messages into different folders by topic,
2811 correspondent, date, or any other category that is meaningful to you. You
2812 can create your own folders, and Alpine automatically provides three:
2813 <ul>
2814   <li>The INBOX folder: messages sent to you are listed in this folder.
2815       When you first start Alpine and go to the Message Index screen, you are
2816 looking at the list of messages in your INBOX folder. Every incoming
2817 message remains in your INBOX until you delete it or save it in another
2818 folder. </li>
2819   <li>The sent-mail folder: copies of messages you send are stored in this 
2820 folder. This is
2821 convenient if you cannot remember whether you actually sent a message and want 
2822 to check, or
2823 if you want to send a message again.</li>
2824   <li>The saved-messages folder: copies of messages you save are stored in this 
2825 folder
2826 unless you choose to save them to other folders you create yourself.</li>
2827 </ul>
2830 More information about folders is available in Alpine's online help:
2831 <ul>
2832   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2833   <li><a href="h_folder_maint">Help for Folder List</a></li>
2834   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2835   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2836 Explained</a></li>
2837   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2838 </ul>
2840 &lt;End of help on this topic&gt;
2841 </BODY>
2842 </HTML>
2843 ===== h_mainhelp_color ======
2844 <HTML>
2845 <HEAD>
2846 <TITLE>Color</TITLE>
2847 </HEAD>
2848 <BODY>
2849 <H1>Color</H1>
2851 If the terminal emulator you are using is capable of displaying color or if
2852 you are using PC-Alpine, then it is possible to set up Alpine so that various
2853 parts of the display will be shown in colors you configure. This is done
2854 using the Setup Color screen, available from the MAIN MENU by selecting
2855 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2856 stands for Config in this context).
2859 For example, you may color things like the titlebar, the current item,
2860 the keymenu, and the status messages.
2861 You may also color lines in the index, and headers and quoted text in the
2862 MESSAGE TEXT screen.
2863 You use the Color Setup screen for configuring most of this, but you must
2864 use the IndexColor setup for coloring whole index lines.
2865 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2868 The following entries in Alpine's online help provide additional information 
2869 about how to use color:
2870 <UL>
2871   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2872   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2873   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2874   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2875 </UL>
2877 &lt;End of help on this topic&gt;
2878 </BODY>
2879 </HTML>
2880 ===== h_mainhelp_mouse ======
2881 <HTML>
2882 <HEAD>
2883 <TITLE>Using a Mouse</TITLE>
2884 </HEAD>
2885 <BODY>
2886 <H1>Using a Mouse</H1>
2888 If you are using PC-Alpine mouse support is turned on automatically.
2889 If you are using UNIX Alpine within an X terminal window or within
2890 a terminal emulator that supports an xterm-style mouse, then you may
2891 turn on support for the mouse with the feature
2892 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2893 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2895 PC-Alpine offers considerable mouse support.  You can view what is
2896 &quot;clickable&quot; by dragging your mouse over any screen; when the
2897 arrow cursor changes into a hand, you found something. Mouse-click
2898 possibilities include navigating between screens and folders and
2899 double-clicking on hyperlinks to open your Web browser.
2900 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2901 screen.  Examples of right-click options include &quot;copy&quot; after
2902 selecting text to copy and &quot;View in New Window&quot; when you click
2903 on a particular message in the Message Index. The menu choices available
2904 to you will vary based upon what screen is open, where on the screen your
2905 cursor is located, and even what action you have already taken.
2906 Within a folder, you may set the &quot;Important&quot; flag on any
2907 message.
2909 X terminal mouse support is more limited but still quite powerful.
2910 As with PC-Alpine, clicking on any of the commands in the keymenu at
2911 the bottom of the screen will execute that command as if you typed it.
2912 Double-clicking on a link, for example the link to the
2913 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2914 will take you to that link.
2915 Double-clicking on an index line will view the message, and so on.
2917 &lt;End of help on this topic&gt;
2918 </BODY>
2919 </HTML>
2920 ===== h_mainhelp_keywords ======
2921 <HTML>
2922 <HEAD>
2923 <TITLE>Keywords</TITLE>
2924 </HEAD>
2925 <BODY>
2926 <H1>Keywords</H1>
2928 Within a folder, you may set the &quot;Important&quot; flag on any
2929 message.
2930 This doesn't have any system-defined meaning and is only called
2931 the Important flag because many users use it to signify that a message
2932 is important to them in some way.
2934 You may also define your own set of keywords.
2935 You might know these as user defined flags or as labels.
2936 These are similar to the Important flag but you choose the names for yourself.
2938 Alpine will only display keywords that
2939 have been added by you in the Flag Details screen or
2940 that have been configured by you using the Setup/Config option
2941 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2942 Keywords set by other means (for example, by another email client) will not
2943 show up in Alpine unless you configure Alpine to know about them.
2944 They will show up in the Flag Details screen, but will not show up, for example,
2945 in the index line.
2948 The following entries in Alpine's online help provide additional information 
2949 about how to use keywords:
2950 <ul>
2951   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2952   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2953 </ul>
2955 &lt;End of help on this topic&gt;
2956 </BODY>
2957 </HTML>
2958 ===== h_mainhelp_roles ======
2959 <HTML>
2960 <HEAD>
2961 <TITLE>Roles</TITLE>
2962 </HEAD>
2963 <BODY>
2964 <H1>Roles</H1>
2966 You may play different roles depending on who you are replying to. For
2967 example, if you are replying to a message addressed to help-desk you may
2968 be acting as a Help Desk Worker. That role may require that you use a
2969 different return address and/or a different signature.
2972 To configure roles, go to the MAIN MENU and use the Setup command
2973 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2974 The following entries in Alpine's online help provide additional information 
2975 about how to
2976 use roles:
2977 <ul>
2978   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2979   <li><a href="h_role_select">Roles Screen</a></li>
2980 </ul>
2982 &lt;End of help on this topic&gt;
2983 </BODY>
2984 </HTML>
2985 ===== h_mainhelp_filtering ======
2986 <HTML>
2987 <HEAD>
2988 <TITLE>Filtering</TITLE>
2989 </HEAD>
2990 <BODY>
2991 <H1>Filtering</H1>
2993 The software that actually delivers mail (the stuff that happens
2994 before Alpine is involved) for you is in a better position to do mail filtering
2995 than Alpine itself.
2996 If possible, you may want to look into using that sort of mail filtering to
2997 deliver mail to different folders, delete it, or forward it.
2998 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
3001 Filtering is a way to automatically move certain messages from one folder
3002 to another or to automatically delete messages.
3003 You may also automatically set the state (Important, New, Deleted, Answered) of messages
3004 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
3005 Alpine doesn't have the ability to forward mail to another address or
3006 to deliver vacation messages.
3009 To configure filtering, go to the MAIN MENU and use the Setup command
3010 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
3011 The following entries in Alpine's online help provide additional information 
3012 about how to use filtering:
3013 <UL>
3014   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
3015 </UL>
3017 &lt;End of help on this topic&gt;
3018 </BODY>
3019 </HTML>
3020 ===== h_mainhelp_patterns ======
3021 <HTML>
3022 <HEAD>
3023 <TITLE>Patterns</TITLE>
3024 </HEAD>
3025 <BODY>
3026 <H1>Patterns</H1>
3028 Patterns are used with Roles, Filtering, Index Coloring,
3029 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
3030 The following entries in Alpine's online help provide information 
3031 about using Patterns:
3032 <UL>
3033   <LI> <A HREF="h_rule_patterns">Patterns</A>
3034 </UL>
3036 &lt;End of help on this topic&gt;
3037 </BODY>
3038 </HTML>
3039 ===== h_mainhelp_cmdlineopts ======
3040 <HTML>
3041 <HEAD>
3042 <TITLE>Command Line Options</TITLE>
3043 </HEAD>
3044 <BODY>
3045 <H1>Command Line Options</H1>
3047 Alpine accepts a number of command line arguments, allowing you, for
3048 example, to start Alpine and immediately access a particular folder.
3049 Many of these arguments overlap with options in the Alpine configuration file.
3050 If there is a difference, then an option set on the command line takes
3051 precedence.
3052 Alpine expects command line arguments (other than addresses) to be
3053 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3054 A <a href="h_command_line_options">full list</a> of command line
3055 possibilities is available.
3057 &lt;End of help on this topic&gt;
3058 </BODY>
3059 </HTML>
3060 ===== h_mainhelp_config ======
3061 <HTML>
3062 <HEAD>
3063 <TITLE>Alpine Configuration</TITLE>
3064 </HEAD>
3065 <BODY>
3066 <H1>Alpine Configuration</H1>
3068 Unless it has been administratively disabled, the Setup command on the
3069 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3070 The possible subcommands are for general Configuration settings,
3071 Printer settings, Changing your Password, Signature setup,
3072 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3073 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3074 and Color configuration.
3075 In particular, the &quot;Config&quot; subcommand has many features you may
3076 set or unset and many other configuration variables that may be set to change
3077 the way Alpine works.
3078 Every one of the hundreds of options available in that configuration settings
3079 screen has help text associated with it.
3080 You may read that text by moving the cursor to highlight the option and then
3081 typing the Help command.
3083 These settings are stored in your personal
3084 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3085 <A HREF="h_config_remote_config">remotely</A>),
3086 but on shared systems these settings
3087 may be over-ridden by a system-wide control file (due to local site
3088 security or support policies).  A global pine configuration file can also
3089 be used to set default values for all Alpine users on a particular system.
3090 Power users may be interested in splitting their personal configuration
3091 data into two pieces, a generic piece and
3092 <A HREF="h_config_exceptions">exceptions</A> which apply to
3093 a particular platform.
3094 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3095 General Alpine configuration information can be found
3096 <A HREF="h_news_config">here</A>.
3098 &lt;End of help on this topic&gt;
3099 </BODY>
3100 </HTML>
3101 ===== h_mainhelp_aggops ======
3102 <HTML>
3103 <HEAD>
3104 <TITLE>Aggregate Operations</TITLE>
3105 </HEAD>
3106 <BODY>
3107 <H1>Aggregate Operations</H1>
3109 When you are in the MESSAGE INDEX, the available commands
3110 (for example, Delete, Undelete, Save, Reply, and so on)
3111 normally act on a single message.
3112 So, for example, if you press the Delete command, the currently highlighted
3113 message is marked Deleted.
3114 These commands that normally act on a single message may be applied to
3115 several messages at once instead.
3117 By default this feature is turned on, but it could be administratively turned
3118 off to reduce complexity.
3119 The feature
3120 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3121 in the Setup/Config screen is used to turn it off or on.
3122 When this feature is turned on, the four commands &quot;Select&quot;,
3123 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3124 are available.
3125 The two selection commands allow you to mark a set of
3126 messages as being &quot;selected&quot;.
3127 The &quot;ZoomMode&quot; command will toggle between
3128 displaying only the selected messages and displaying all the messages.
3129 The &quot;Apply&quot; command allows you to
3130 apply one of the regular MESSAGE INDEX commands to all of the selected
3131 messages instead of to only the highlighted message.
3133 An example aggregate operation would be to catch up when reading
3134 a news group.
3135 That is, get rid of all the messages in the news group so that you can
3136 start fresh.
3137 The easiest way to do this in Alpine is to use aggregate operations.
3138 You want to Delete all of the messages in the group.
3139 You could start at the top and type &quot;D&quot; once for every message.
3140 A much faster method is to first Select all of the messages in the group,
3141 and then Delete all of them.
3142 This would take four keystrokes:
3144 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3145 <BR>
3146 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3148 Another use of Select is to use it for searching for a particular message
3149 or set of messages in a large folder.
3150 You may know that the message was From a certain user.
3151 You could select all messages from that user to start, and use Zoom to
3152 look at only those messages.
3153 If there were still too many messages to look at you could Narrow the
3154 set of messages further by selecting from all of those messages only
3155 the ones that were after a certain date, or contained a particular phrase
3156 in the Subject, or were too a particular address, and so on.
3157 That may be the end of what you are doing, or you may want to use Apply to
3158 Save or Forward or Print all of the selected messages.
3160 Some related help topics are
3161 <UL>
3162 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3163 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3164 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3165 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3166 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3167 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3168 </UL>
3170 &lt;End of help on this topic&gt;
3171 </BODY>
3172 </HTML>
3173 ===== h_mainhelp_readingnews ======
3174 <HTML>
3175 <HEAD>
3176 <TITLE>Reading News</TITLE>
3177 </HEAD>
3178 <BODY>
3179 <H1>Reading News</H1>
3181 <H2>Background</H2>
3182 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3183 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3184 Usenet newsgroups allow groups of people with common interests to discuss 
3185 particular topics. You might find newsgroups related to your career, or you 
3186 might wish to check out the online discussion among the fans of your favorite 
3187 television show. 
3189 <H2>Configuring Alpine for Reading News</H2>
3190 Alpine often arrives
3191 pre-configured by your system administrator to automatically access the
3192 newsgroups offered by your organization, Internet Service Provider, or
3193 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3194 need additional details on <a href="h_configuring_news">how to
3195 configure Alpine to read news</a>.
3197 <H2>Accessing Newsgroups</H2>
3198 The first step in reading news is to access the newsgroups collections
3199 screen from Alpine. If everything is configured properly, you should be able
3200 to do this by first typing L (folder List), then selecting the folder
3201 collection listed as "News." The actual name of this collection may differ
3202 from system to system.
3204 <H2>Subscribing to Newsgroups</H2>
3206 Once you have accessed the news collection, you need to subscribe to a
3207 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3208 will keep a record of the newsgroups in which you are interested and which
3209 articles in those newsgroups have been read.
3211 <H2>Using Newsgroups</H2> 
3212 Alpine uses the similar commands to read news as to read mail. For example,
3213 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3214 and the R command Replies to a news posting. Basically, Alpine allows you to
3215 read news as if it were mail, so you don't need to change the way you
3216 interact with Alpine.
3218 There is also additional Alpine help available on 
3219 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3221 &lt;End of help on this topic&gt;
3222 </BODY>
3223 </HTML>
3224 ===== h_mainhelp_securing ======
3225 <HTML>
3226 <HEAD>
3227 <TITLE>Securing your Alpine Session</TITLE>
3228 </HEAD>
3229 <BODY>
3230 <H1>Securing your Alpine Session</H1>
3232 By default, Alpine will attempt to connect to an IMAP server on the normal
3233 IMAP service port (143).
3234 If the Alpine you are using has been built to
3235 support &quot;Transport Layer Security&quot; (TLS)
3236 and &quot;Secure Sockets Layer&quot; (SSL) 
3237 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3238 and the server offers the STARTTLS capability, then a secure (encrypted)
3239 session will be established.
3241 When you are connected to a remote folder the titlebar will contain a plus sign
3242 in the far right column if the connection is encrypted using TLS or SSL.
3243 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3244 if the connection is encrypted.
3246 <H2>More Information on Alpine with SSL and TLS</H2>
3247 <UL>
3248 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3249 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3250 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3251 <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>
3252 </UL>
3253 <H2>Here are some other security-related features and options</H2>
3255 <UL>
3256 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3257 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3258 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3259 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3260 </UL>
3262 &lt;End of help on this topic&gt;
3263 </BODY>
3264 </HTML>
3265 ===== h_mainhelp_problems ======
3266 <HTML>
3267 <HEAD>
3268 <TITLE>Reporting Problems</TITLE>
3269 </HEAD>
3270 <BODY>
3271 <H1>Reporting Problems</H1>
3273 We ask that you first read the relevant help screens and then seek
3274 assistance from your own local support staff.  Once you are sure that your
3275 difficulty is not a local configuration problem, you might look at the
3276 help section explaining where to look for
3277 <A HREF="h_finding_help">more information</A> and where to 
3278 get assistance.
3281 <ADDRESS>
3282    Eduardo Chappa &lt;chappa@gmx.com&gt;
3283 </ADDRESS>
3286 &lt;End of help on this topic&gt;
3287 </BODY>
3288 </HTML>
3289 ===== h_main_menu_commands ======
3290 <HTML>
3291 <HEAD>
3292 <TITLE>MAIN MENU COMMANDS</TITLE>
3293 </HEAD>
3294 <BODY>
3295 <H1>MAIN MENU COMMANDS</H1>
3297 <!--chtml if pinemode="function_key"-->
3298 &nbsp;Available&nbsp;Commands&nbsp;--
3299 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3300 &nbsp;------------------------------
3301 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3302 ----------<BR>
3303 &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>
3304 &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>
3305 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3306 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3307 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3308 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3309 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3310 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3311 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3312 &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;
3313 &nbsp;F7&nbsp;&nbsp;<A 
3314 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3315 &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;
3316 &nbsp;F8&nbsp;&nbsp;<A 
3317 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3318 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3319 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 
3320 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3321 &nbsp;F10&nbsp;<A 
3322 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 
3323 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3324 &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;
3325 &nbsp;F11&nbsp;<A 
3326 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3327 <!--chtml else-->
3328 &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>
3329 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3330 &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>
3331 &nbsp;C&nbsp;&nbsp;<A 
3332 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>
3333 &nbsp;I&nbsp;&nbsp;<A 
3334 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>
3335 &nbsp;L&nbsp;&nbsp;<A 
3336 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>
3337 &nbsp;A&nbsp;&nbsp;<A 
3338 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3339 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3340 &nbsp;S&nbsp;&nbsp;<A 
3341 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 
3342 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3343 &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>
3344 &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 
3345 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3346 <!--chtml endif-->
3349 NOTE:
3350 <OL>
3351  <LI>For help on a particular command, highlight the bold text associated
3352 with it above and hit Return.
3353  <LI> The availability of certain commands (e.g. some of the options under
3354 SETUP) is determined by Alpine configuration files and system capabilities.
3355 At some sites, certain commands may not be available due to security or
3356 support concerns.
3357 </OL>
3359 &lt;End of help on this topic&gt;
3360 </BODY>
3361 </HTML>
3363 ===== h_command_line_options ======
3364 <HTML>
3365 <HEAD>
3366 <TITLE>COMMAND LINE OPTIONS</TITLE>
3367 </HEAD>
3368 <BODY>
3369 <H1>COMMAND LINE OPTIONS</H1>
3370 Possible starting arguments for Alpine:
3372 <DL COMPACT>
3374 <DT> <EM>[addresses]</EM>
3376 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3377 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3378 <EM>Alpine</EM> will startup in
3379 the composer with a message started to the addresses specified.
3380 Once the message is sent, the <EM>Alpine</EM> session closes.
3381 Standard input redirection is allowed.
3382 Separate multiple addresses with a space between them.
3383 Addresses are placed in the &quot;To&quot; field only.
3386 <DT> &lt; <EM>file</EM>
3388 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3389 into the body of the message.
3390 Once the message is sent, the <EM>Alpine</EM> session closes. 
3393 <DT> -attach <EM>file</EM>
3395 <DD> Go directly into composer with given file attached.
3398 <DT> -attachlist <EM>file-list</EM>
3400 <DD> Go directly into composer with given files attached.
3401 This must be the last option on the command line.
3404 <DT> -attach_and_delete <EM>file</EM>
3406 <DD> Go directly into composer with given file attached, delete when finished.
3409 <DT> -aux <EM>local_directory</EM>
3411 <DD> <EM>PC-Alpine</EM> only.
3412 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3413 files, like debug files, address books, and signature files.  The pinerc may 
3414 be local or remote.
3417 <DT> -bail
3419 <DD> If the personal configuration file doesn't already exist, exit.
3420 This might be useful if the configuration file is accessed using some
3421 remote filesystem protocol. If the remote mount is missing this will cause
3422 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3425 <DT> -c <EM>n</EM>
3427 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3428 This is used when there are multiple folder collections (contexts) and you 
3429 want to open a folder not in the primary collection.
3432 <DT> -conf
3434 <DD> Configuration: Prints a sample system configuration file to the
3435 screen or standard output. To generate an initial system configuration 
3436 file, execute
3438 <PRE><CODE>
3439                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3440 </CODE></PRE>
3443 To generate a system configuration file using settings from an old
3444 system configuration file, execute
3446 <PRE><CODE>
3447                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3448 </CODE></PRE>
3450 A system configuration file is not required.
3453 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3455 <DD> Copy an address book file to a remote address book folder.
3456 If the remote folder doesn't exist, it will be created.
3457 If it exists but the first message in the folder isn't a remote address
3458 book header message, the copy will be aborted.
3459 This flag will not usually be used by a user.
3460 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3461 and copy entries from the local address book by using aggregate Save in
3462 the address book screen.
3465 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3467 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3468 If the remote folder doesn't exist, it will be created.
3469 If it exists but the first message in the folder isn't a remote pinerc
3470 header message, the copy will be aborted.
3471 This flag may be useful to users who already have a local pinerc file and
3472 would like to convert it to a remote pinerc folder and use that instead.
3473 This gives a way to bootstrap that conversion without having to manually
3474 reset all of the variables in the remote pinerc folder.
3477 <DT> -d <EM>debug-level</EM>
3479 <DD> Debug Level:  Sets the level of debugging information written by
3480 <EM>Alpine</EM>.
3481 <EM>debug-level</EM> can be set to any integer 0-9.
3482 A debug level of 0 turns off debugging for the session.
3483 (Actually there are some levels higher than 9, but you probably don't
3484 want to see them.)
3487 <DT> -d <EM>keywords</EM>
3489 <DD> You may use a more detailed version of the debugging flag to set
3490 the debug level in separate parts of <EM>Alpine</EM>.
3491 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3492 verbose=0..9.
3493 <EM>Flush</EM> causes debugging information to be flushed immediately to
3494 the debug file as it is written.
3495 <EM>Verbose</EM> is the general debugging verbosity level.
3496 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3497 is useful when you are trying to figure out what is responsible for delays.
3498 <EM>Numfiles</EM> sets the number of debug files saved.
3499 <EM>Imap</EM> sets the debug level for the debugging statements related
3500 to the conversation with the IMAP server, and more generally, for the
3501 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3502 <EM>Tcp</EM> turns on some TCP/IP debugging.
3505 <DT> -f <EM>folder</EM>
3507 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3508 of the standard INBOX.
3511 <DT> -F <EM>file</EM>
3513 <DD> Open named text file for viewing and forwarding.
3516 <DT> -h
3518 <DD> Help:  Prints the list of available command-line arguments to the
3519 screen.
3522 <DT> -i
3524 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3525 screen instead of the MAIN MENU.
3528 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3531 <DT> -I <EM>a,b,c,...</EM>
3533 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3534 sequence of commands upon startup.
3535 This allows users to get <EM>Alpine</EM> to start in any
3536 of its menus/screens.
3537 You cannot include any input to the composer in the initial keystrokes.
3538 The key &lt;Return&gt; is represented by a ``CR'' in
3539 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3540 Control keys are two character sequences beginning with ``^'', such as
3541 ``^I''.
3542 A tab character is ``TAB''.
3543 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3544 ``DOWN'', ``LEFT'', and ``RIGHT''.
3545 A restriction is that you can't mix function keys and character keys in this
3546 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3547 A user can always use only <EM>character</EM> keys in the startup list even
3548 if he or she is using <EM>function</EM> keys normally, or vice versa.
3549 If an element in this list is a string of characters surrounded by double
3550 quotes (&quot;) then it will be expanded into the individual characters in
3551 the string, excluding the double quotes.
3554 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3557 <DT> -install
3559 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3560 some basic information to help with getting properly set up.
3563 <DT> -k
3565 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3566 the input of commands to be function-keys.
3567 Otherwise, commands are linked to the regular character keys.
3570 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3571 <EM>Feature-List</EM>.
3574 <DT> -n <EM>n</EM>
3576 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3577 FOLDER INDEX screen with the current message being the specified
3578 message number.
3581 <DT> -nosplash
3583 <DD> <EM>PC-Alpine</EM> only.
3584 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3585 This may be helpful for certain troubleshooting or terminal server scenarios.
3588 <DT> -o <EM>folder</EM>
3590 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3593 <DT> -p <EM>pinerc</EM>
3595 <DD> Uses the named file as the personal configuration file instead of
3596 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3597 Alpinerc may be either a local file or a remote configuration folder.
3600 <DT> -P <EM>pinerc</EM>
3602 <DD> Uses the named file as the system wide configuration file instead of
3603 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3604 Alpinerc may be either a local file or a remote configuration folder.
3607 <DT> -passfile <EM>passfile</EM>
3609 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3610 This should be a fully-qualified filename.
3613 <DT> -pinerc <EM>file</EM>
3615 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3616 settings of variables that the user has made.
3617 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3620 <DT> -r
3622 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3623 <EM>Alpine</EM> in restricted mode can only send email to itself.
3624 Save and export are limited.
3627 <DT> -registry <EM>cmd</EM>
3629 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3630 <EM>Alpine</EM>'s registry entries.
3631 Possible values for <EM>cmd</EM> are set, clear, and dump.
3632 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3633 entries according to its current settings.
3634 <EM>Clear</EM> will clear the registry values.
3635 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3636 <EM>Dump</EM> will display the values of current registry settings.
3637 Note that the dump command is currently disabled.
3638 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3639 the registry only if there currently aren't any values set.
3642 <DT> -sort <EM>key</EM>
3644 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3645 FOLDER INDEX screen.
3646 <EM>Key</EM> can have the following values: 
3647 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3648 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3649 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3650 The default value is &quot;arrival&quot;.
3651 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3654 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3657 <DT> -uninstall
3659 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3660 in Windows settings.  The registry settings are removed and
3661 the password cache is cleared.
3664 <DT> -url <EM>url</EM>
3666 <DD> Open the given URL.
3669 <DT> -v
3671 <DD> Version:  Print version information to the screen.
3674 <DT> -x <EM>exceptions_config</EM>
3676 <DD> Configuration settings in the exceptions configuration override your normal
3677 default settings.
3678 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3681 <DT> -z
3683 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3684 will suspend the <EM>Alpine</EM> session.
3687 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3688 <EM>Feature-List</EM>.
3691 <DT> -<EM>option</EM>=<EM>value</EM>
3693 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3694 For example, <EM>-signature-file=sig1</EM> or
3695 <EM>-Feature-List=signature-at-bottom</EM>.
3696 Note:  Feature-List values are
3697 additive and features may be preceded with no- to turn them off.
3698 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3699 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3700 <EM>-Feature-List=signature-at-bottom</EM>.
3703 </DL>
3705 &lt;End of help on this topic&gt;
3706 </BODY>
3707 </HTML>
3708 ===== h_configuring_news ======
3709 <HTML>
3710 <HEAD>
3711 <TITLE>CONFIGURING NEWS</TITLE>
3712 </HEAD>
3713 <BODY>
3714 <H1>CONFIGURING NEWS</H1>
3715 Alpine can access news folders in any one of three different ways:
3716 <DL>
3717 <DT>REMOTE NNTP</DT>
3718 <DD>Using the Network News Transport Protocol (NNTP) to
3719 access news on a remote news server.  In this case the newsrc file is
3720 stored on the machine where Alpine is running.
3723 To specify a remote news-collection accessed via NNTP use the
3724 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3725 Server: value to the NNTP server's hostname appended with the
3726 communication method &quot;/service=NNTP&quot;, and set the Path:
3727 value to the &quot;#news.&quot; namespace (without the quotes).  See
3728 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3729 help text for a more complete explanation of access method, and the
3730 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3731 text for a more complete explanation of &quot;namespace&quot;.
3733 Instead of specifying a news-collection, you may simply set the
3734 <A HREF="h_config_nntp_server">NNTP Server</A>
3735 option, which will cause Alpine to create a default news-collection for you.
3736 Another NNTP option that may be of interest is
3737 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3739 <DT>REMOTE IMAP</DT>
3740 <DD>Using the Internet Message Access Protocol (IMAP) to
3741 access news on a remote news server.  In this case, your newsrc file is
3742 stored on the news server, in your home directory, so you must have an
3743 account on the news server, but you would be running Alpine on a different
3744 machine.  The news server must be running an IMAPd server process. 
3747 To specify a remote news-collection accessed via IMAP use the
3748 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3749 Server: value to the IMAP server's hostname, and set the Path: value
3750 to the &quot;#news.&quot; namespace (without the quotes).  See the
3751 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3752 text for a more complete explanation of &quot;namespace&quot;.
3754 </DD>
3756 <DT>LOCAL</DT>
3757 <DD>Using local file access to the news database.  In this
3758 case, your newsrc file is stored on the news server, in your home
3759 directory, so you must have an account on the news server, and you would
3760 be running Alpine on the same machine.
3763 To specify a local news-collection use the SETUP/collectionList
3764 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3765 set the Path: value to the &quot;#news.&quot; namespace (without the
3766 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3767 field's help text for a more complete explanation of &quot;namespace&quot;.
3769 </DD>
3770 </DL>
3774 NOTE: Should no news-collection be defined as above, Alpine will
3775 automatically create one using the Setup/Config screen's
3776 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3777 will be created as a &quot;Remote NNTP&quot; as described above.
3781 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3782 possible.  If you don't have an account on the news server, or if the news
3783 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3784 sure, ask your service provider, university, or company for help.)  In
3785 this case, your Unix .newsrc file can be transferred to your PC.  A good
3786 place to put it would be in the same directory as your PINERC file, under
3787 the name NEWSRC, but you can 
3788 <A HREF="h_config_newsrc_path">specify a different location</A>
3789 via Alpine's Setup/Config screen.
3792 Other configuration features related to news are
3793 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3794 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3795 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3796 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3797 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3798 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3799 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3800 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3803 &lt;End of help on this topic&gt;
3804 </BODY>
3805 </HTML>
3806 ===== h_reading_news ======
3807 <HTML>
3808 <HEAD>
3809 <TITLE>READING NEWS</TITLE>
3810 </HEAD>
3811 <BODY>
3812 <H1>READING NEWS</H1>
3814 Alpine uses almost the same commands for manipulating news folders as for
3815 mail folders.  This means, for example, that when you are done with a
3816 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3817 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3818 most newsreaders, wherein a message is implicitly dismissed after you have
3819 looked at it once. We strongly believe that Alpine should offer as much
3820 consistency as possible between mail and news, so the mail paradigm --
3821 wherein a message does not magically disappear without explicit action by
3822 the user -- is used for news as well. <P>
3824 If you answer a message in a news folder, the index view will show the
3825 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3826 keep track of what news as been read has no way of storing this flag, so
3827 it will not be preserved across sessions.  The Deleted flag is the only
3828 one that is preserved when you leave and then return to a newsgroup.  As an
3829 additional note on replies, when you Reply to a newsgroup message and say
3830 you want to reply to all recipients, Alpine will ask if you want to post the
3831 message to all the newsgroups listed in the original message. <P>
3833 If you would like Alpine to mark more-or-less recent news messages as
3834 &quot;New&quot;, then set the
3835 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3836 feature (which is set by default).  This will cause messages after the last one you have marked as
3837 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3838 &quot;N&quot; status often makes it easier to distinguish later news
3839 articles from those you've previously seen, but not yet disposed of via
3840 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3841 record of which messages you have not seen.
3844 A frequent operation in news-reading is &quot;catching up&quot; -- that
3845 is, getting rid of all the messages in the newsgroup so that you can
3846 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3847 Select command.  You would enter the following four keystrokes:
3848 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3849 dismiss) command to all of them.
3852 There are also additional details on 
3853 <A HREF="h_configuring_news">configuring news</a>.
3856 &lt;End of help on this topic&gt;
3857 </BODY>
3858 </HTML>
3859 ====== h_help_index ======
3860 <HTML>
3861 <HEAD>
3862 <TITLE>Help Index</TITLE>
3863 </HEAD>
3864 <BODY>
3865 <H1>Help Index</H1>
3866 <ul>
3867 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3868 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3869 <li><a href="h_main_addrbook">Address Book Command</a>
3870 <li><a href="h_abook_view">Address Book View Explained</a>
3871 <li><a href="h_compose_addrcomplete">Address Completion</a>
3872 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3873 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3874 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3875 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3876 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3877 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3878 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3879 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3880 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3881 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3882 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3883 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3884 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3885 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3886 <li><a href="h_news_legal">Alpine Legal Notices</a>
3887 <li><a href="h_compose_alted">Alt Editor Command</a>
3888 <li><a href="h_index_cmd_apply">Apply Command</a>
3889 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3890 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3891 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3892 <li><a href="h_composer_browse">BROWSER</a>
3893 <li><a href="h_common_bounce">Bounce Command</a>
3894 <li><a href="h_compose_cancel">Cancel Command</a>
3895 <li><a href="h_config_change_your_from">Changing your From Address</a>
3896 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3897 <li><a href="h_mainhelp_color">Color</a>
3898 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3899 <li><a href="h_composer">COMPOSER COMMANDS</a>
3900 <li><a href="h_mainhelp_composing">Composing Messages</a>
3901 <li><a href="h_mainhelp_collections">Collection Lists</a>
3902 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3903 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3904 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3905 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3906 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3907 <li><a href="h_common_compose">Compose Command</a>
3908 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3909 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3910 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3911 <li><a href="h_mainhelp_config">Configuration</a>
3912 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3913 <li><a href="h_config_dflt_color">Default Color</a>
3914 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3915 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3916 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3917 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3918 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3919 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3920 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3921 <li><a href="h_ge_export">Export File Selection</a>
3922 <li><a href="h_ge_allparts">Export Message File Selection</a>
3923 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3924 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3925 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3926 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3927 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3928 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3929 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
3930 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3931 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3932 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3933 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3934 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3935 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3936 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3937 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3938 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3939 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3940 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3941 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3942 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3943 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3944 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3945 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3946 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3947 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3948 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3949 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3950 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3951 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3952 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3953 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3954 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3955 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3956 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3957 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3958 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3959 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3960 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3961 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3962 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3963 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3964 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3965 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3966 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3967 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3968 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3969 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3970 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3971 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3972 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3973 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3974 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3975 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3976 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3977 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3978 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3979 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3980 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3981 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3982 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3983 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3984 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3985 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3986 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3987 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3988 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3989 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3990 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3991 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3992 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3993 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3994 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3995 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3996 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3997 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3998 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3999 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
4000 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
4001 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
4002 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
4003 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
4004 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
4005 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
4006 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
4007 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
4008 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
4009 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
4010 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
4011 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
4012 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
4013 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
4014 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
4015 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
4016 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
4017 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
4018 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
4019 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
4020 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
4021 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
4022 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
4023 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
4024 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
4025 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
4026 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
4027 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
4028 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
4029 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
4030 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
4031 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
4032 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
4033 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
4034 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
4035 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
4036 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
4037 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4038 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4039 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4040 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4041 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4042 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4043 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4044 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4045 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4046 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4047 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4048 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4049 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4050 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4051 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4052 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4053 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4054 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4055 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4056 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4057 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4058 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4059 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4060 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4061 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4062 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4063 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4064 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4065 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4066 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4067 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4068 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4069 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4070 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4071 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4072 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4073 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4074 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4075 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4076 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4077 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4078 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4079 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4080 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4081 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4082 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4083 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4084 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4085 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4086 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4087 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4088 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4089 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4090 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4091 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4092 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4093 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4094 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4095 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4096 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4097 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4098 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4099 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4100 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4101 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4102 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4103 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4104 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4105 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4106 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4107 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4108 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4109 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4110 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4111 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4112 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4113 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4114 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4115 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4116 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4117 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4118 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4119 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4120 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4121 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4122 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4123 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4124 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4125 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4126 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4127 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4128 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4129 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4130 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4131 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4132 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4133 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4134 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4135 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4136 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4137 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4138 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4139 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4140 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4141 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4142 <li><a href="h_mainhelp_filtering">Filtering</a>
4143 <li><a href="h_finding_help">Finding more information and requesting help</a>
4144 <li><a href="h_common_flag">Flag Command</a>
4145 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4146 <li><a href="h_mainhelp_folders">Folders</a>
4147 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4148 <li><a href="h_common_folders">Folder List Command</a>
4149 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4150 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4151 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4152 <li><a href="h_config_change_your_from">From Address, Changing</a>
4153 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4154 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4155 <li><a href="h_common_goto">Goto Command</a>
4156 <li><a href="h_common_hdrmode">HdrMode Command</a>
4157 <li><a href="h_mainhelp_pinehelp">Help</a>
4158 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4159 <li><a href="h_folder_maint">Help for Folder List</a>
4160 <li><a href="h_valid_folder_names">IMAP</a>
4161 <li><a href="h_ge_import">Import File Selection</a>
4162 <li><a href="h_mainhelp_index">Index of Messages</a>
4163 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4164 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4165 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4166 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4167 <li><a href="h_mainhelp_intro">Introduction</a>
4168 <li><a href="h_main_journal">Journal Command</a>
4169 <li><a href="h_common_jump">Jump Command</a>
4170 <li><a href="h_compose_justify">Justify Command</a>
4171 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4172 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4173 <li><a href="h_mainhelp_ldap">LDAP</a>
4174 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4175 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4176 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4177 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4178 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4179 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4180 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4181 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4182 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4183 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4184 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4185 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4186 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4187 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4188 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4189 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4190 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4191 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4192 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4193 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4194 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4195 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4196 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4197 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4198 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4199 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4200 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4201 <li><a href="h_common_index">Message Index Command</a>
4202 <li><a href="h_mainhelp_mouse">Mouse</a>
4203 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4204 <li><a href="new_user_greeting">NEW USER GREETING</a>
4205 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4206 <li><a href="h_mainhelp_readingnews">News Reading</a>
4207 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
4208 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4209 <li><a href="h_common_nextnew">NextNew Command</a>
4210 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4211 <li><a href="h_mainhelp_readingnews">NNTP</a>
4212 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4213 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4214 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4215 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4216 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4217 <li><a href="h_config_color_style">OPTION: Color Style</a>
4218 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4219 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4220 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4221 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4222 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4223 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4224 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4225 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4226 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4227 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4228 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4229 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4230 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4231 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4232 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4233 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4234 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4235 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4236 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4237 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4238 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4239 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4240 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4241 <li><a href="h_config_font_name">OPTION: Font Name</a>
4242 <li><a href="h_config_font_size">OPTION: Font Size</a>
4243 <li><a href="h_config_font_style">OPTION: Font Style</a>
4244 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4245 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4246 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4247 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4248 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4249 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4250 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4251 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4252 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4253 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4254 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4255 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4256 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4257 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4258 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4259 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4260 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4261 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4262 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4263 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4264 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4265 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4266 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4267 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4268 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4269 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4270 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4271 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4272 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4273 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4274 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4275 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4276 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4277 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4278 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4279 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4280 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4281 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4282 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4283 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4284 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4285 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4286 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4287 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4288 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4289 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4290 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4291 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4292 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4293 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4294 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4295 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4296 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4297 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4298 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4299 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4300 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4301 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4302 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4303 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4304 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4305 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4306 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4307 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4308 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4309 <li><a href="h_config_printer">OPTION: Printer</a>
4310 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4311 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4312 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4313 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4314 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4315 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4316 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4317 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4318 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4319 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4320 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4321 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4322 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4323 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4324 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4325 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4326 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4327 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4328 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4329 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4330 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4331 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4332 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4333 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4334 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4335 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4336 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4337 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4338 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4339 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4340 <li><a href="h_config_status_color">OPTION: Status Color</a>
4341 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4342 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4343 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4344 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4345 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4346 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4347 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4348 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4349 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4350 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4351 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4352 <li><a href="h_config_title_color">OPTION: Title Color</a>
4353 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4354 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4355 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4356 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4357 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4358 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4359 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4360 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4361 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4362 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4363 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4364 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4365 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4366 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4367 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4368 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4369 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4370 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4371 <li><a href="h_mainhelp_patterns">Patterns</a>
4372 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4373 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4374 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4375 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4376 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4377 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4378 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4379 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4380 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4381 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4382 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4383 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4384 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4385 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4386 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4387 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4388 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4389 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4390 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4391 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4392 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4393 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4394 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4395 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4396 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4397 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4398 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4399 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4400 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4401 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4402 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4403 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4404 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4405 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4406 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4407 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4408 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4409 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4410 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4411 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4412 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4413 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4414 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4415 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4416 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4417 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4418 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4419 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4420 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4421 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4422 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4423 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4424 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4425 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4426 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4427 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4428 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4429 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4430 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4431 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4432 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4433 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4434 <li><a href="h_common_pipe">Pipe Command</a>
4435 <li><a href="h_valid_folder_names">POP</a>
4436 <li><a href="h_common_postpone">Postpone Command</a>
4437 <li><a href="h_common_print">Print Command</a>
4438 <li><a href="h_mainhelp_readingnews">Reading News</a>
4439 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4440 <li><a href="h_mainhelp_roles">Roles</a>
4441 <li><a href="h_role_select">ROLES SCREEN</a>
4442 <li><a href="h_compose_readfile">Read File Command</a>
4443 <li><a href="h_mainhelp_reading">Reading Messages</a>
4444 <li><a href="h_main_release_notes">Release Notes Command</a>
4445 <li><a href="h_common_reply">Reply and Forward Commands</a>
4446 <li><a href="h_compose_richhdr">Rich Header Command</a>
4447 <li><a href="h_common_role">Role Command</a>
4448 <li><a href="h_mainhelp_smime">S/MIME</a>
4449 <li><a href="h_index_cmd_select">Searching for Messages</a>
4450 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4451 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4452 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4453 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4454 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4455 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4456 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4457 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4458 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4459 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4460 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4461 <li><a href="h_common_save">Save and Export Commands</a>
4462 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4463 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4464 <li><a href="h_compose_send">Send Command</a>
4465 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4466 <li><a href="h_main_setup">Setup Command</a>
4467 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4468 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4469 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4470 <li><a href="h_mainhelp_smime">S/MIME</a>
4471 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4472 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4473 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4474 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4475 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4476 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4477 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4478 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4479 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4480 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4481 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4482 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4483 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4484 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4485 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4486 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4487 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4488 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4489 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4490 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4491 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4492 <li><a href="h_index_cmd_sort">Sort Command</a>
4493 <li><a href="h_compose_spell">Spell Check Command</a>
4494 <li><a href="h_common_suspend">Suspend Command</a>
4495 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4496 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4497 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4498 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4499 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4500 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4501 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4502 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4503 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4504 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4505 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4506 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4507 <li><a href="h_common_take">TakeAddr Command</a>
4508 <li><a href="h_mainhelp_status">Titlebar Line</a>
4509 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4510 <li><a href="h_config_usenone_color">Use None Color</a>
4511 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4512 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4513 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4514 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4515 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4516 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4517 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4518 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4519 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4520 </UL>
4523 &lt;End of Help Index&gt;
4524 </BODY>
4525 </HTML>
4528 ============== h_config_remote_config =============
4529 <HTML>
4530 <HEAD>
4531 <TITLE>Remote Configuration</TITLE>
4532 </HEAD>
4533 <BODY>
4534 <H1>Remote Configuration</H1>
4536 You may use the command line argument &quot;-p pinerc&quot; to tell
4537 Alpine to use a non-default configuration file.
4538 There are two types of storage for configuration information.
4539 <EM>Local</EM> configuration files are used by default.
4540 These are just regular files on the UNIX system or on the PC.
4541 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4542 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4543 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4544 The advantage of using a remote configuration is that the same information
4545 may be accessed from multiple platforms.
4546 For example, if you use one computer at work and another at home, the same
4547 configuration could be used from both places.
4548 A configuration change from one place would be seen in both places.
4549 To use a remote configuration you simply give a
4550 <A HREF="h_valid_folder_names">remote folder name</A>
4551 as the argument to the &quot;-p&quot; command line option.
4552 The command line might look something like:
4554 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4556 If there are special characters in the command shell you use, you may need to
4557 quote the last argument (to protect the curly braces from the shell).
4558 The command might look like:
4560 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4562 You should choose a folder name for a folder that does not yet exist.
4563 It will be created containing an empty configuration.
4564 Do not use a folder that you wish to store regular mail messages in.
4566 The Setup/RemoteConfigSetup command will help you convert from a local
4567 configuration to a remote configuration.
4568 It will create a remote configuration for you and copy your current local
4569 configuration to it.
4570 It will also help you convert local address books into remote address books
4571 and local signature files into literal signatures contained in the
4572 remote configuration file.
4574 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4575 may copy a local pinerc file to a remote configuration folder by hand
4576 by using the command line option &quot;-copy_pinerc&quot;.
4578 Another command line option, which is somewhat related to remote
4579 configuration, is the option &quot;-x exceptions_config&quot;.
4580 The configuration settings in the exceptions configuration override
4581 your default settings.
4582 It may be useful to store the default configuration (the -p argument) remotely
4583 and to have the exceptions configuration stored in a local file.
4584 You might put generic configuration information in the remote configuration
4585 and platform-specific configuration on each platform in the exceptions
4586 configuration.
4587 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4588 can be either remote folders or local files.
4590 There is another command line argument that works only with PC-Alpine and
4591 which may prove useful when using a remote configuration.
4592 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4593 to store your local auxiliary files.
4594 This only has an effect if your configuration file is remote.
4595 Some examples of auxiliary files are debug files, address book files, and
4596 signature files.
4598 &lt;End of help on this topic&gt;
4599 </BODY>
4600 </HTML>
4601 ============== h_config_exceptions =============
4602 <HTML>
4603 <HEAD>
4604 <TITLE>Generic and Exceptional Configuration</TITLE>
4605 </HEAD>
4606 <BODY>
4607 <H1>Generic and Exceptional Configuration</H1>
4609 If you use Alpine from more than one platform it may be convenient
4610 to split your configuration information into two pieces, a generic piece
4611 and exceptions that apply to a particular platform.
4612 For example, suppose you use Alpine from home and from work.
4613 Most of your configuration settings are probably the
4614 same in both locations, so those settings belong in the generic settings
4615 configuration.
4616 However, you may use a different SMTP server and INBOX
4617 from home than you do from work.
4619 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4621 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4622 options could be
4623 part of your exceptional configuration so that they could be different in the
4624 two places.
4626 The command line option &quot;-x exceptions_config&quot;
4627 may be used to split your configuration into generic and exceptional pieces.
4628 &quot;Exceptions_config&quot; may be either local or remote.
4629 The regular Alpine configuration file will contain the generic data, and
4630 &quot;exceptions_config&quot; will contain the exceptional data.
4632 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4633 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4634 in the same local directory that the regular config file is located in (usually
4635 the Unix home directory).
4636 If the regular config file is remote (because the command line option
4637 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4638 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4639 If the file does not already exist then no exceptions will be used.
4640 You can force exceptions to be used by using the &quot;-x&quot; option or
4641 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4643 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4644 PC-Alpine will use the value of the
4645 environment variable <CODE>$PINERCEX</CODE>.
4646 If that is not set, PC-Alpine will look for
4647 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4648 in the same local directory that the regular config file is located in.
4649 If the regular config file is remote (because the command line option
4650 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4651 local directory specified by the &quot;-aux local_directory&quot; command
4652 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4653 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4655 When you have an exception configuration there is a new command
4656 in the Alpine Setup screen, Setup/eXceptions.
4657 It toggles between exceptions and the regular configuration.
4658 This is the usual way to make changes in your exceptional configuration data.
4659 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4660 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4661 for Config or &quot;K&quot; for Kolor.
4663 For most people, splitting the configuration information into two pieces is
4664 going to be most useful if the generic information is accessed
4665 <A HREF="h_config_remote_config">remotely</A>).
4666 That data will be the same no matter where you access it from and if you
4667 change it that change will show up everywhere.
4668 The exceptional data will most commonly be in a local file, so that the
4669 contents may easily be different on each computing platform used.
4671 If you already have a local configuration file with settings you like
4672 you may find that the command Setup/RemoteConfigSetup is useful
4673 in helping you convert to a remote configuration.
4674 The command line flag &quot;-copy_pinerc&quot;
4675 may also be useful.
4677 &lt;End of help on this topic&gt;
4678 </BODY>
4679 </HTML>
4680 ============== h_config_inheritance =============
4681 <HTML>
4682 <HEAD>
4683 <TITLE>Configuration Inheritance</TITLE>
4684 </HEAD>
4685 <BODY>
4686 <H1>Configuration Inheritance</H1>
4688 Configuration inheritance is a power user feature.
4689 It is confusing and not completely supported by the configuration
4690 user interface.
4691 We start with an explanation of how configuration works in hopes of making
4692 it easier to describe how inheritance works.
4694 Alpine uses a hierarchy of configuration values from different locations.
4695 There are five ways in which each configuration option (configuration
4696 variable) can be set.
4697 In increasing order of precedence they are:
4699 <OL>
4700 <LI> the system-wide configuration file.
4702 <LI> the personal configuration file
4704 <LI> the personal exceptions file
4706 <LI> a command line argument
4708 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4709 </OL>
4711 The fixed configuration file is normally
4712 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4714 The system-wide configuration file is normally
4715 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4716 set for PC-Alpine.
4717 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4718 is used for the system-wide configuration.
4719 This location can be set or changed on the command line with the -P flag.
4720 The system-wide configuration file can be either a local file or a
4721 remote configuration folder.
4723 For Unix Alpine, the personal configuration file is normally the file
4724 <CODE>.pinerc</CODE> in the user's home directory.
4725 This can be changed with the -p command line flag.
4726 For PC-Alpine, the personal configuration file is in
4727 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4728 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4729 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4730 This can be changed with the -p command line flag.
4731 If -p is used, the configuration data may be in a local file or a remote config
4732 folder.
4734 For Unix Alpine, the personal exceptions configuration file is named
4735 <CODE>.pinercex</CODE> and is in the same directory as the personal
4736 configuration file, if that configuration file is not remote, and is in
4737 the home directory if the personal configuration file is remote.
4738 If the file exists, then exceptions are turned on.
4739 If it doesn't, then you are not using exceptions.
4740 Alternatively, you may change the location of the exceptions configuration
4741 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4742 Like the personal configuration data, exceptions_config may be
4743 either local or remote.
4745 For PC-Alpine, the personal exceptions configuration file is named
4746 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4747 configuration file unless the personal configuration file is remote.
4748 In that case, it is in the local directory specfied by the
4749 &quot;-aux local_directory&quot; command line argument.
4750 (In the case that the personal configuration is remote and there is no
4751 &quot;-aux&quot; command line argument, Alpine searches for
4752 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4753 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4754 If the file exists, then exceptions are turned on.
4755 If it doesn't, then you are not using exceptions.
4756 You may change the location of the exceptions configuration
4757 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4758 or with the
4759 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4760 option).
4762 To reiterate, the value of a configuration option is taken from the
4763 last location in the list above in which it is set.
4764 Or, thinking about it slightly differently, a default value for an option
4765 is established in the system-wide configuration file (or internally by Alpine
4766 if there is no value in the system-wide file).
4767 That default remains in effect until and unless it is overridden by a value in a
4768 location further down the list, in which case a new &quot;default&quot;
4769 value is established.
4770 As we continue down the list of locations we either retain the
4771 value at each step or establish a new value.
4772 The value that is still set after going through the whole list of
4773 configuration locations is the one that is used.
4775 So, for example, if an option is set in the system-wide configuration
4776 file and in the personal configuration file, but is not set in the
4777 exceptions, on the command line, or in the fixed file; then the value
4778 from the personal configuration file is the one that is used.
4779 Or, if it is set in the system-wide config, in the personal config, not
4780 in the exceptions, but is set on the command line; then the value
4781 on the command line is used.
4783 Finally we get to inheritance.
4784 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4785 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4786 the inheritance mechanism makes it possible to <EM>combine</EM>
4787 the values from different locations instead of <EM>replacing</EM> the value.
4788 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4789 for which you may already set whatever you want at
4790 any configuration location (by using the &quot;no-&quot; prefix if
4791 necessary).
4793 To use inheritance, set the first item in a configuration list to the
4794 token &quot;INHERIT&quot;, without the quotes.
4795 If the first item is &quot;INHERIT&quot;,
4796 then instead of replacing the default value established so far, the rest of
4797 the list is appended to the default value established so far and that is
4798 the new value.
4800 Here is an example which may make it clearer. Suppose we have:
4802 <PRE>
4803  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4804  Personal config    :   smtp-server = INHERIT, mysmtp.home
4805  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4806  Command line       :   smtp-server = &lt;No Value Set&gt;
4807  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4808 </PRE>
4811 This would result in an effective smtp-server option of
4813 <PRE>
4814  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4815 </PRE>
4817 The &quot;INHERIT&quot; token can be used in any of the configuration files
4818 and the effect cascades.
4819 For example, if we change the above example to:
4821 <PRE>
4822  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4823  Personal config    :   smtp-server = INHERIT, mysmtp.home
4824  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4825  Command line       :   smtp-server = &lt;No Value Set&gt;
4826  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4827 </PRE>
4830 This would result in:
4832 <PRE>
4833  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4834 </PRE>
4836 Unset variables are skipped over (the default value is carried forward) so
4837 that, for example:
4839 <PRE>
4840  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4841  Personal config    :   smtp-server = &lt;No Value Set&gt;
4842  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4843  Command line       :   smtp-server = &lt;No Value Set&gt;
4844  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4845 </PRE>
4848 produces:
4850 <PRE>
4851  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4852 </PRE>
4855 If any later configuration location has a value set (for a particular list
4856 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4857 then that value replaces whatever value has been defined up to that point.
4858 In other words, that cancels out any previous inheritance.
4860 <PRE>
4861  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4862  Personal config    :   smtp-server = INHERIT, mysmtp.org
4863  Exceptions config  :   smtp-server = yoursmtp.org
4864  Command line       :   smtp-server = &lt;No Value Set&gt;
4865  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4866 </PRE>
4869 results in:
4871 <PRE>
4872  smtp-server = yoursmtp.org
4873 </PRE>
4876 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4877 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4878 difficult to insert the value &quot;INHERIT&quot; into the list of values
4879 for the option using the normal Setup tools.
4880 In other words, the color setting screen (for example) does not
4881 provide a way to input the text &quot;INHERIT&quot; as the first
4882 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4883 The way to do this is to either edit the pinerc file directly and manually
4884 insert it, or turn
4885 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4886 feature and insert it using the Setup/Config screen.
4888 &lt;End of help on this topic&gt;
4889 </BODY>
4890 </HTML>
4891 ============== h_special_xon_xoff =============
4892 <HTML>
4893 <HEAD>
4894 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4895 </HEAD>
4896 <BODY>
4897 <H1>XOFF/XON Handling within Alpine</H1>
4899 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4900 and XON) as normal characters, even though Alpine does not use them.
4901 However, the printer, modem, or communication software you are using may
4902 be configured for &quot;software flow control,&quot; which means that
4903 XON/XOFF must be treated as special characters by the operating system.
4904 If you see messages such as &quot;^S not defined for this screen&quot;,
4905 then your system is probably using software flow control. In this case
4906 you will need to set the
4907 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4908 feature.
4910 If you <EM>do</EM> set this
4911 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4912 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4913 and see if that puts things right.  Printing via the
4914 &quot;attached-to-ansi&quot; or 
4915 &quot;attached-to-wyse&quot;
4916 option will automatically enable software
4917 flow-control handling for the duration of the printing.
4919 &lt;End of help on this topic&gt;
4920 </BODY>
4921 </HTML>
4922 ============= h_special_help_nav =============
4923 <HTML>
4924 <HEAD>
4925 <TITLE>Help Text Navigation Explained</TITLE>
4926 </HEAD>
4927 <BODY>
4928 <H1>Help Text Navigation Explained</H1>
4930 Alpine contains extensive context-sensitive help text.   At any point, 
4931 pressing the &quot;?&quot; key will bring up a page of help text
4932 explaining the options available to you.  You can leave the help
4933 text screen and return to normal Alpine operation by pressing
4935 <!--chtml if pinemode="function_key"-->
4936 F3 function
4937 <!--chtml else-->
4938 &quot;E&quot;
4939 <!--chtml endif-->
4940 key to Exit Help at any time.
4943 Within the help screen you might find a word or phrase displayed in 
4944 inverse text and others displayed in bold typeface.  Such words and
4945 phrases are used to tell you Alpine has more information available on
4946 the topic they describe.
4947 The inverted text is the &quot;selected&quot; topic.  
4948 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4949 displayed in bold type
4950 is &quot;selected&quot;.
4951 Hit the Return key to display the information Alpine has available on that
4952 topic.  While viewing such additional information, the 
4953 <!--chtml if pinemode="function_key"-->
4954 F3 function
4955 <!--chtml else-->
4956 &quot;P&quot;
4957 <!--chtml endif-->
4958 key will return you to the previous help screen, and the
4959 <!--chtml if pinemode="function_key"-->
4960 F2 function
4961 <!--chtml else-->
4962 &quot;E&quot;
4963 <!--chtml endif-->
4964 key will Exit the Help system altogether.
4967 The "N" command will tell you the internal name of the help text you are 
4968 reading each time, so that you can send this name in the text of a message 
4969 and create a direct link to that internal help using the x-pine-help URL 
4970 scheme. For example, the direct link to this item is 
4971 x-pine-help:h_special_help_nav. If you add this text to a message, then
4972 a person using Pine to read such message would have a direct link to this
4973 help text.
4976 When you are finished reading this help text, you can press the
4977 <!--chtml if pinemode="function_key"-->
4978 F3 function
4979 <!--chtml else-->
4980 &quot;P&quot;
4981 <!--chtml endif-->
4982 key to return to the previously displayed help text.
4985 &lt;End of help on this topic&gt;
4986 </BODY>
4987 </HTML>
4988 ============= h_special_list_commands =============
4989 <HTML>
4990 <HEAD>
4991 <TITLE>Email List Commands Explained</TITLE>
4992 </HEAD>
4993 <BODY>
4994 <H1>Email List Commands Explained</H1>
4996 Electonic mail lists provide a way for like-minded users to join in
4997 discussions on topics of interest.  The email list itself is 
4998 represented by a
4999 single address that participants send messages to when they have
5000 something of interest to share with other members of the list.  The
5001 receiving computer then, either automatically or after review by the
5002 list's owner (or moderator), sends a copy of that message to each
5003 member of the list.
5006 Usually, subscribing and unsubscribing is done by sending requests in
5007 an email message to a special address setup to handle managing list
5008 membership.  Often this is the name of the list followed by
5009 <I>-request</I>.  This address is almost <EM>never</EM> the same as
5010 the address used to send messages to the list.
5013 Unfortunately, email list participation commands are more a matter
5014 of convention than standard, and thus may vary from list to list.
5015 Increasingly, list management software is adding information to
5016 the copy of the postings as they're copied to the list members that
5017 explains how to do the various list management functions.
5020 Alpine will recognize this information and offer the management commands
5021 they represent in a simple display. One or more of the following
5022 operations will be made available:
5024 <DL>
5025 <DT>Help</DT>
5026 <DD>
5027 A method to get help on subscribing, unsubscribing, 
5028 an explanation of what the list is about, or special instructions
5029 for participation.  This may be in the form of a reply in response
5030 to an email message, or instructions on how to connect to a Web site.
5031 </DD>
5033 <DT>Unsubscribe</DT>
5034 <DD>
5035 A method to get your email addressed removed from the list of
5036 recipients of the email list.
5037 </DD>
5039 <DT>Subscribe</DT>
5040 <DD>
5041 A method to get your email address added to the list of recipients
5042 of the email list.  It may be in the form of a message sent to 
5043 a special address or you may be connected to a web site.
5044 <DD>
5045 </DD>
5047 <DT>Post</DT>
5048 <DD>
5049 A method used to post to the email list.  However, it might also 
5050 indicate that no posting is allowed directly to the list.
5051 </DD>
5053 <DT>Owner</DT>
5054 <DD>
5055 A method to contact the list owner for special questions you might
5056 have regarding the list.
5057 </DD>
5059 <DT>Archive</DT>
5060 <DD>
5061 A method to view an archive of previous messages posted to the list.
5062 This may be in the form of a mail folder on a remote computer, an
5063 IMAP mailbox or even a Web site.
5064 </DD>
5065 </DL>
5068 &lt;End of help on this topic&gt;
5069 </BODY>
5070 </HTML>
5071 ============= h_quota_command =============
5072 <HTML>
5073 <HEAD>
5074 <TITLE>Quota Screen Explained</TITLE>
5075 </HEAD>
5076 <BODY>
5077 <H1>Quota Screen Explained</H1>
5079 <P> This screen summarizes the quota report for this mailbox in the
5080 IMAP server. For each resource that you have a quota, this reports summarizes
5081 its use and limit.
5083 <P> Your IMAP server administrator may have set a quota based either on 
5084 the total size of your mailbox (STORAGE), or the number of messages in 
5085 your mailbox (MESSAGES), or some other criteria. This will be reported
5086 to you indicating the type of quota, its total use and its limit.
5088 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5089 1024 bytes. Each of the characters that you see in this help text is one 
5090 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5091 by Alpine are normally less than 4 kibibytes in size (which includes 
5092 headers and text). Other email programs may send messages with bigger 
5093 sizes when they send messages, since they send plain text and an 
5094 alternative part in HTML.
5096 <P> A convenient way to save space for the STORAGE type of quota is by 
5097 deleting attachments. This is done on each individual message by pressing 
5098 the &quot;V&quot; command while reading the message text, then moving the cursor 
5099 to the position of the attachment that is to be deleted, then pressing
5100 &quot;D&quot; to delete such attachment, going back to reading the 
5101 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5102 save the message in the same folder you are reading from. The saved 
5103 message will not have the attachment that was marked deleted. Now you
5104 can delete and expunge the message with the unwanted attachment.
5107 &lt;End of help on this topic&gt;
5108 </BODY>
5109 </HTML>
5110 ============= h_mail_thread_index =============
5111 <HTML>
5112 <HEAD>
5113 <TITLE>THREAD INDEX COMMANDS</TITLE>
5114 </HEAD>
5115 <BODY>                 
5116 <H1>THREAD INDEX COMMANDS</H1>
5117 <!--chtml if pinemode="function_key"-->
5118 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>
5119 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5120 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>
5121 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>
5122 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>
5123 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>
5124 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>
5125 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>
5126 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>
5127 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>
5128 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>
5129 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>
5130 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>
5131 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>
5132 <BR>
5133 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5134 -----------------------------<BR>
5135 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>
5136 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>
5137 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>
5138 <BR>
5139 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5140 -----------------------------<BR>
5141 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
5142 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5143 <BR>
5144 <!--chtml else-->
5145 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>
5146 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5147 &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>
5148 &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>
5149 &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>
5150 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>
5151 &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>
5152 &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>
5153 &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>
5154 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>
5155 &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>
5156 <BR>
5157 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5158 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5159 &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>
5160 &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>
5161 &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>
5162 &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>
5163 &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>
5164 &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>
5165 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5166 <!--chtml endif-->
5169 NOTE:
5170 <OL>
5171  <LI>For help on a particular command, highlight the bold text associated
5172 with it above and hit Return.
5173  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5174 </OL>
5176 <H2>Description of the THREAD INDEX Screen</H2>
5178 The THREAD INDEX displays summary information from each
5179 thread (conversation) in the current folder.
5180 This is useful if you want to quickly
5181 scan new threads, or find a particular thread without having to go
5182 through the text of each message, or to quickly get rid of junk
5183 threads, etc.
5184 The current thread is always highlighted.
5185 Each line of the THREAD INDEX contains the following columns: <P>
5186 <DL>
5187  <DT>STATUS:</DT>
5188  <DD> The markings on the left side of the thread tell you about its
5189 status.  You may see one or more of the following codes on any given
5190 thread:
5191 <UL>
5192   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5193   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5194   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5195   <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.
5196   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5197         message in the thread was sent to you as a cc:. This symbol will only show up if
5198         the feature
5199         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5200   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5201         &quot;select&quot; command.  (Some systems may optionally allow selected
5202         messages to be denoted by the index line being displayed in bold
5203         type instead.)
5204   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5205       to mark at least one message in this thread as &quot;important&quot;.
5206 </UL></DD><P>
5208  <DT>THREAD NUMBER:</DT>
5209  <DD>Threads in a folder are numbered, from one through the number
5210 of threads in the folder, to help you know where you are in the folder.
5211 </DD><P>
5213  <DT>DATE STARTED:</DT>
5214  <DD>The date the thread was started. This is actually from the Date header
5215 of the first message in the thread. It doesn't take different time zones
5216 into account.</DD><P>
5218  <DT>WHO STARTED THE THREAD:</DT>
5219  <DD>This is usually the name of the sender of the first message in the thread, taken from
5220 the From header of the message.
5221 If there is no personal name given in that
5222 address, then the email address is used instead.
5223 If the message is from you (or from one of your
5224 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5225 then the recipient's name is shown here instead, with the characters
5226 &quot;To: &quot; inserted before the name.
5227 (The idea of this is that if you started the thread you would rather see who
5228 the mail was sent to instead of that the mail was from you.)
5229 In Newsgroups, if you are
5230 the sender and there are no email recipients, the newsgroup name will be
5231 listed after the &quot;To: &quot;.
5232 </DD><P>
5234  <DT>SIZE:</DT>
5235  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5237  <DT>SUBJECT:</DT>
5238  <DD>As much of the thread's subject line as will fit on the screen.
5239 This is the subject of the first message in the thread.</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_index =============
5250 <HTML>
5251 <HEAD>
5252 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5253 </HEAD>
5254 <BODY>                 
5255 <H1>MESSAGE INDEX COMMANDS</H1>
5256 <!--chtml if pinemode="function_key"-->
5257 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>
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_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>
5262 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>
5263 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>
5264 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>
5265 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>
5266 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>
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;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>
5271 <BR>
5272 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5273 -----------------------------<BR>
5274 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>
5275 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>
5276 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>
5277 <BR>
5278 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5279 -----------------------------<BR>
5280 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
5281 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>
5282 <BR>
5283 <!--chtml else-->
5284 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>
5285 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5286 &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>
5287 &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>
5288 &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>
5289 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>
5290 &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>
5291 &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>
5292 &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>
5293 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>
5294 &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>
5295 Miscellaneous&nbsp;Operations<BR>
5296 ------------------------<BR>
5297 &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>
5298 &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>
5299 &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>
5300 &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>
5301 &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>
5302 &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>
5303 &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>
5304 &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>
5305 <!--chtml endif-->
5308 NOTE:
5309 <OL>
5310  <LI>For help on a particular command, highlight the bold text associated
5311 with it above and hit Return.
5312  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5313 </OL>
5315 <H2>Description of the MESSAGE INDEX Screen</H2>
5317 The MESSAGE INDEX displays summary information from each
5318 message in the current folder.
5319 This is useful if you want to quickly
5320 scan new messages, or find a particular message without having to go
5321 through the text of each message, or to quickly get rid of junk
5322 messages, etc.
5324 The current message is always highlighted
5325 and many commands operate on the current message.
5326 For example, the Delete command will delete the current message.
5327 If the folder is sorted by either Threads or OrderedSubject, then, depending
5328 on some of your configuration settings, a single line in the index may
5329 refer to an entire thread or to a subthread.
5330 If that is the case, then the commands that normally operate on the current
5331 message will operate on the thread or subthread instead.
5332 For example, the Delete command will delete the whole collapsed thread
5333 instead of just a single message.
5335 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5336 you can change this with the 
5337 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5338 in the SETUP CONFIGURATION screen): <P>
5339 <DL>
5340  <DT>STATUS:</DT>
5341  <DD> The markings on the left side of the message tell you about its
5342 status.  You may see one or more of the following codes on any given
5343 message:
5344 <UL>
5345   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5346          yet eXpunged the folder.
5347   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5348   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5349          to be answered.
5350   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5351          forward a message.
5352   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5353         directly to your account, your copy is not part of a cc: or a
5354         mailing list.
5355   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5356         message was sent to you as a cc:. This symbol will only show up if
5357         the feature
5358         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5359   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5360         &quot;select&quot; command.  (Some systems may optionally allow selected
5361         messages to be denoted by the index line being displayed in bold
5362         type.)
5363   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5364       to mark this message as &quot;important&quot;.
5365 </UL></DD><P>
5367  <DT>MESSAGE NUMBER:</DT>
5368  <DD>Messages in a folder are numbered, from one through the number
5369 of messages in the folder, to help you know where you are in the folder.
5370 These numbers are always in increasing order, even if you sort the folder
5371 in a different way.</DD><P>
5373  <DT>DATE SENT:</DT>
5374  <DD>The date the message was sent.  By default, messages are
5375 ordered by arrival time, not by date sent.  Most of the time, arrival time
5376 and date sent (effectively departure time) are similar.  Sometimes,
5377 however, the index will appear to be out of order because a message took a
5378 long time in delivery or because the sender is in a different time
5379 zone than you are. This date is just the date from the Date header
5380 field in the message.</DD><P>
5382  <DT>WHO SENT THE MESSAGE:</DT>
5383  <DD>This is usually the name of the sender of the message, taken from
5384 the From header of the message.
5385 If there is no personal name given in that
5386 address, then the email address is used instead.
5387 If the message is from you (or from one of your
5388 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5389 then the recipient's name is shown here instead, with the characters
5390 &quot;To: &quot; inserted before the name.
5391 (The idea of this is that if you sent the mail you would rather see who
5392 the mail was sent to instead of that the mail was from you.
5393 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5394 above.
5395 In particular, use the FROM token or the FROMORTONOTNEWS token
5396 in place of the FROMORTO token.)
5397 In Newsgroups, if you are
5398 the sender and there are no email recipients, the newsgroup name will be
5399 listed after the &quot;To: &quot;. </DD><P>
5401  <DT>SIZE:</DT>
5402  <DD>The number in parentheses is the number of characters in the message.
5403 It may have a suffix of K, M, or G which means the number should be
5404 multiplied by one thousand, one million, or one billion to get the
5405 size of the message.</DD><P>
5407  <DT>SUBJECT:</DT>
5408  <DD>As much of the message's subject line as will fit on the screen.</DD>
5409 </DL>
5411 <P><UL>
5412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5413 </UL>
5415 &lt;End of help on this topic&gt;
5416 </BODY>
5417 </HTML>
5418 ============= h_mail_view ========================
5419 <HTML>
5420 <HEAD>
5421 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5422 </HEAD>
5423 <BODY>
5424 <H1>MESSAGE TEXT SCREEN</H1>
5425 <!--chtml if pinemode="function_key"-->
5426 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>
5427 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5428 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>
5429 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>
5430 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>
5431 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>
5432 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>
5433 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>
5434 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>
5435 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>
5436 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>
5437 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>
5438 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>
5439 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>
5440 <BR>
5441 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5442 ------------------------------<BR>
5443 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5444 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5445 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5446 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5447 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5448 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5449 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5450 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5451 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5452 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5453 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5454 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5455 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5456 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5457 <!--chtml else-->
5458 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5459 ---------------------------------<BR>
5460 <BR>
5461 &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>
5462 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>
5463 &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>
5464 &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>
5465 &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>
5466 &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>
5467 &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>
5468 &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>
5469 &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>
5470 <BR>
5471 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5472 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5473 &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>
5474 &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>
5475 &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>
5476 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>
5477 <BR>
5478 General&nbsp;Alpine&nbsp;Commands<BR>
5479 ---------------------<BR>
5480 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5481 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5482 &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>
5483 &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>
5484 &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>
5485 <!--chtml endif-->
5488 NOTE:
5489 <OL>
5490  <LI>For help on a particular command, highlight the bold text associated
5491 with it above and hit Return.
5492  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5493 </OL>
5495 <H2>Description of the MESSAGE TEXT Screen</H2>
5497 The top line of the view message screen displays status
5498 information about the currently open collection and folder and about the
5499 current message.  It shows the name of the collection in angle brackets
5500 and then the name of the folder.  The line also displays the number
5501 of messages in the folder, the number of the current message and the
5502 percentage of the current message that has been displayed on the screen.
5503 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5504 right corner.
5505 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5506 in the corner.
5509 NOTE: to rapidly move to the end of a message, hit the
5510 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5511 (or Ctrl-W) key followed
5512 by Ctrl-V.  Similarly,
5513 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5514 followed by Ctrl-Y will take you to the beginning of
5515 a message.
5517 <H2>Explanation of Alternate Character Sets</H2>
5519 Alpine attempts to stay out of the way so that it won't prevent you from
5520 viewing mail in any character set.  It will simply send the message to
5521 your display device.  If the device is capable of displaying the
5522 message as it was written it will do so.  If not, the display may be
5523 partially or totally incorrect.
5524 If the message contains characters that are not representable in your 
5525 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5526 variable in your configuration, then a warning message will be printed
5527 to your screen at the beginning of the message display.
5528 It is probably best to use UNIX Alpine in a terminal emulator
5529 capable of displaying UTF-8 characters.
5530 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5531 more information about character set settings.
5533 <P><UL>
5534 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5535 </UL>
5537 &lt;End of help on this topic&gt;
5538 </BODY>
5539 </HTML>
5540 ======= h_index_cmd_select =======
5541 <HTML>
5542 <HEAD>
5543 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5544 </HEAD>
5545 <BODY>
5546 <H1>Selecting: Select and WhereIs/Select</H1>
5548 Aggregate operations give you the ability to process a group of messages
5549 at once.  Acting on multiple messages requires two steps: (1) selecting a
5550 set of messages and then; (2) applying a command to that set. The first
5551 part is handled by the select command.  Select allows you to
5552 select messages based on their status (read, answered, etc.), contents,
5553 date, size, or keywords.
5554 You may also select based on one of your Rules or based on threads,
5555 and there are quick options to select a specific message or range of messages,
5556 to select the current message, or to select all messages.
5559 We describe the various selection criteria briefly:
5562 <DL>
5563 <DT>select All</DT>
5564 <DD> Marks all the messages in the folder as selected.
5565 </DD>
5567 <DT>select Cur</DT>
5568 <DD> Selects the currently highlighted message or currently highlighted
5569 set of messages if in a threaded view.
5570 </DD>
5572 <DT>select by Number</DT>
5573 <DD> Select by message number. This may be a comma-separated list instead or
5574 a single entry.
5575 Each element in the list may be either a single message number or a range
5576 of numbers with a dash between the lowest and highest member of the range.
5577 Some examples are 7 to select only message number 7; 2-5 to select messages
5578 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5579 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5580 substitute for the highest numbered message in the folder, while the
5581 character &quot;.&quot; represents the message number holding the position
5582 of the cursor in the folder.
5583 If in a separate thread index where the numbers refer to threads instead of
5584 to messages, then you will be selecting all of the messages in the
5585 referenced threads instead of selecting by message number.
5586 </DD>
5588 <DT>select by Date</DT>
5589 <DD> Select by either the date stored in the Date headers of each message,
5590 or by the date when the messages arrived.
5591 This does not adjust for different time zones, but just checks to see what
5592 day the message was sent on.
5593 You may type in a date. If you do, the date should be in the form
5594 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5595 For example,
5596 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5598 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5599 If the date you want is close to the current date, it is probably
5600 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5601 is displayed, instead of typing in the date yourself.
5602 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5603 the date of the currently highlighted message. 
5605 There are six possible settings that are selected using the
5606 &quot;^W&nbsp;Toggle When&quot; command.
5607 Three of them select messages based on the Date headers.
5608 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5609 and &quot;SENT ON&quot;.
5610 SINCE is all messages with the selected date or later.
5611 BEFORE is all messages earlier than the selected date (not including the day
5612 itself).
5613 ON is all messages sent on the selected date.
5614 The other three select messages in the same way but they use the arrival
5615 times of the messages instead of the Date headers included in the messages.
5616 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5617 and &quot;ARRIVED ON&quot;.
5618 When you save a message from one folder to another the arrival time is
5619 preserved.
5620 </DD>
5622 <DT>select by Text</DT>
5623 <DD> Selects messages based on the message contents.
5624 This allows you to select a set of messages based on whether or not the
5625 message headers or message body contain specified text.
5626 You may look for text in the Subject, the From header,
5627 the To header, or the Cc header.
5628 You may also choose Recipient, which searches for the text in
5629 either the To or the Cc header;
5630 or Participant, which means To or Cc or From.
5631 Besides those specific header searches, you may also search the entire
5632 header and text of the message with &quot;All Text&quot;, or just the
5633 body of the message.
5635 To search for the absence of text, first type the &quot;! Not&quot; command
5636 before typing the specific type of text search.
5637 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5638 search for all messages that do not contain a particular word in their
5639 Subjects.
5641 If you choose a Subject search, you may use the subject from the current
5642 message by typing the &quot;^X Cur Subject&quot; command.
5643 You may then edit it further if you wish.
5644 For example, you might select the subject of a reply and edit the
5645 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5646 the original message being replied to.
5647 All of the other header searches allow you to use addresses from the
5648 headers of the current message if you want to.
5649 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5650 &quot;^W Cur Cc&quot;.
5651 In each case, if there is more than one address, only the first is offered.
5652 </DD>
5654 <DT>select by Status</DT>
5655 <DD> Selects messages based on their status.
5656 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5657 messages.
5658 Or, if you first type the &quot;! Not&quot; command, you get not New,
5659 or not Important, and so on.
5660 If you select Deleted messages, you will get all messages with their
5661 Deleted flag set.
5662 Likewise for Important messages, all messages that you have flagged as
5663 being Important with the
5664 <A HREF="h_common_flag">Flag</A> command.
5665 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5666 because they try to match what you see on the screen by default.
5667 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5668 and Unanswered.
5669 If you have looked at the message, or deleted it, or answered it; then it
5670 is not considered &quot;New &quot;.
5671 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5673 &quot;Answered&quot; is another one that is a little different.
5674 It means that the message has been Answered <EM>and</EM> is not deleted.
5675 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5676 the opposite of &quot;Answered&quot;!
5677 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5678 both Unanswered <EM>and</EM> not deleted.
5680 The other two types were added later because the special nature of the
5681 New flag was not what was wanted by all users.
5682 New does match what you see in the index by default, but if you use
5683 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5684 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5685 be exactly what you want.
5686 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5687 they are deleted or answered, and
5688 &quot;Recent&quot; selects all of the messages that have been added to
5689 the folder since you started this Alpine session.
5690 (That's not technically quite true. If there are multiple mail clients
5691 reading an IMAP mailbox, each message will be marked as Recent in only
5692 one of the client's sessions.)
5693 </DD>
5695 <DT>select by siZe</DT>
5696 <DD> Selects messages based on their size being smaller than or larger
5697 than the size you specify.
5698 The size is the number of bytes.
5699 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5700 the number.
5701 For example, 7K is the same as 7000.
5702 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5703 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5704 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5705 and Larger.
5706 </DD>
5708 <DT>select by Keyword</DT>
5709 <DD> Selects messages that either have or do not have
5710 (using the &quot;!&nbsp;Not&quot; command)
5711 a particular <A HREF="h_config_keywords">Keyword</A> set.
5712 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5713 command to select one from your list of keywords.
5715 <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.
5716 </DD>
5718 <DT>select by Rule</DT>
5719 <DD> Selects messages that either match or don't match
5720 (using the &quot;!&nbsp;Not&quot; command)
5721 one of the Rules you have defined.
5722 The most likely method of filling in the Rule is to use the
5723 &quot;^T&nbsp;To&nbsp;List&quot;
5724 command to select one of your Rules.
5725 All of the Rules you have defined will be in the list, including
5726 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5727 They may not all make sense for this purpose, but they are all there for
5728 flexibility.
5729 You might find it useful to define some rules solely for the purpose
5730 of being used by the Select command.
5731 There is a special category for such Rules. They are called Search Rules.
5733 Unfortunately, Alpine does not allow all possible Rules to be defined.
5734 For example, there is no logical OR operation.
5735 OR is accomplished in the Filter Rules or the other types of Rules by
5736 simply defining two rules, one that matches the first part of the OR
5737 and another that matches the second part.
5738 But you can't do that here, since you only have a single Rule to work with.
5739 Likewise, the order of Rules is usually important.
5740 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5741 a message, then that stops the search for a further match.
5742 This means that you may be confused if you try to use Select by Rule to
5743 check your Filter rules because the order is important when filtering but
5744 is not considered here.
5745 </DD>
5747 <DT>select by tHread</DT>
5748 <DD> Selects all of the messages in the current thread.
5749 </DD>
5750 </DL>
5752 After you have an initial selection, the next and subsequent selection
5753 commands modify the selection.
5754 The select command changes. It first gives
5755 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5756 &quot;unselect Current&quot;,
5757 &quot;Broaden selection&quot; (implements a logical OR), and
5758 &quot;Narrow selection&quot; (implements a logical AND).
5759 After you choose either Broaden or Narrow, you then choose one of the
5760 selection criteria listed above (by Text or Number or ...).
5761 You may use select as many times as you wish to get the selected set right.
5764 The WhereIs command has a feature (Ctrl-X) to
5765 select all the messages that match the WhereIs search. WhereIs searches
5766 through just the text that appears on the MESSAGE INDEX screen.
5767 This method is often slower than using the select command itself, unless the
5768 line you are looking for is not too far away in the index.
5771 The availability of the aggregate operations commands is determined by the
5772 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5773 Feature-List option in your Alpine
5774 configuration, which defaults to set.
5775 The features
5776 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5778 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5779 affect the behavior of the Select command.
5782 &lt;End of help on this topic&gt;
5783 </BODY>
5784 </HTML>
5785 ======= h_select_rule =======
5786 <HTML>
5787 <HEAD>
5788 <TITLE>Select: Rule</TITLE>
5789 </HEAD>
5790 <BODY>
5791 <H1>Select: Rule</H1>
5793 You are selecting messages that either match or don't match
5794 one of the Rules you have defined.
5795 You may either type the nickname of the Rule at the prompt, or use the
5796 &quot;^T&nbsp;To&nbsp;List&quot;
5797 command to select one of your Rules.
5798 All of the Rules you have defined will be in the list, including
5799 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5800 They may not all make sense for this purpose, but they are all there for
5801 flexibility.
5802 Rules may be added by using the Setup/Rules screen off of the main Alpine
5803 menu.
5805 Unfortunately, Alpine does not allow all possible Rules to be defined.
5806 For example, there is no logical OR operation.
5807 OR is accomplished in the Filter Rules or the other types of Rules by
5808 simply defining two rules, one that matches the first part of the OR
5809 and another that matches the second part.
5810 But you can't do that here, since you only have a single Rule to work with.
5811 Likewise, the order of Rules is usually important.
5812 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5813 a message, then that stops the search for a further match.
5814 This means that you may be confused if you try to use Select by Rule to
5815 check your Filter rules because the order is important when filtering but
5816 is not considered here.
5819 &lt;End of help on this topic&gt;
5820 </BODY>
5821 </HTML>
5822 ======= h_select_text =======
5823 <HTML>
5824 <HEAD>
5825 <TITLE>Select: Text</TITLE>
5826 </HEAD>
5827 <BODY>
5828 <H1>Select: Text</H1>
5830 You are selecting messages based on the contents of the message.
5831 This allows you to select a set of messages based on whether or not the
5832 message headers or message body contain specified text.
5833 You may look for text in the Subject, the From header,
5834 the To header, or the Cc header.
5835 You may also choose Recipient, which searches for the text in
5836 either the To or the Cc header;
5837 or Participant, which means either the To header, or the Cc header,
5838 or the From header.
5839 Besides those specific header searches, you may also search the entire
5840 header and text of the message with &quot;All Text&quot;, or just the
5841 body of the message with &quot;Body&quot;.
5843 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5844 before typing the specific type of text search.
5845 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5846 search for all messages that do not contain a particular word in their
5847 Subjects.
5849 If you choose a Subject search, you may use the subject from the current
5850 message by typing the &quot;^X Cur Subject&quot; command.
5851 You may then edit it further if you wish.
5852 For example, you might select the subject of a reply and edit the
5853 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5854 the original message being replied to.
5855 All of the other header searches allow you to use addresses from the
5856 headers of the current message if you want to.
5857 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5858 &quot;^W Cur Cc&quot;.
5859 In each case, if there is more than one address, only the first is offered.
5862 &lt;End of help on this topic&gt;
5863 </BODY>
5864 </HTML>
5865 ======= h_select_status =======
5866 <HTML>
5867 <HEAD>
5868 <TITLE>Select: Status</TITLE>
5869 </HEAD>
5870 <BODY>
5871 <H1>Select: Status</H1>
5873 You are selecting messages based on the status of the message.
5874 For example, whether or not the message has been marked Deleted or Important,
5875 or whether or not it has been Answered or is New.
5876 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5877 opposite: not Deleted, not Important, and so on.
5879 If you select Deleted messages, you will get all messages with their
5880 Deleted flag set.
5881 Likewise for Important messages, all messages that you have flagged as
5882 being Important with the
5883 <A HREF="h_common_flag">Flag</A> command.
5884 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5885 because they try to match what you see on the screen by default.
5886 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5887 and Unanswered.
5888 If you have looked at the message, or deleted it, or answered it; then it
5889 is not considered &quot;New &quot;.
5890 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5892 &quot;Answered&quot; is another one that is a little different.
5893 It means that the message has been Answered <EM>and</EM> is not deleted.
5894 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5895 the opposite of &quot;Answered&quot;!
5896 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5897 both Unanswered <EM>and</EM> not deleted.
5899 (The New and Answered options may seem counter-intuitive.
5900 The reason it is done this way is
5901 because, by default, a Deleted message will show up with the &quot;D&quot;
5902 symbol in the MAIL INDEX screen even if it is New or Answered.
5903 The Delete symbol overrides the New and Answered symbols, because you
5904 usually don't care about the message anymore once you've deleted it.
5905 Similarly, you usually only care about whether a message is Answered or
5906 not if it is not Deleted.
5907 Once it is Deleted you've put it out of your mind.)
5909 The other two options were added later because the special nature of the
5910 New flag was not what was wanted by all users.
5911 New does match what you see in the index by default, but if you use
5912 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5913 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5914 be exactly what you expect.
5915 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5916 they are deleted or answered, and
5917 &quot;Recent&quot; selects all of the messages that have been added to
5918 the folder since you started this Alpine session.
5919 (That's not technically quite true. If there are multiple mail clients
5920 reading an IMAP mailbox, each message will be marked as Recent in only
5921 one of the client's sessions.
5922 That behavior can be convenienent for some purposes, like filtering, but
5923 it isn't usually what you expect when selecting.)
5926 &lt;End of help on this topic&gt;
5927 </BODY>
5928 </HTML>
5929 ======= h_index_cmd_apply =======
5930 <HTML>
5931 <HEAD>
5932 <TITLE>Apply Command</TITLE>
5933 </HEAD>
5934 <BODY>
5935 <H1>Apply Command</H1>
5937 Apply
5938 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5939 is the second step of most aggregate operations.  Apply
5940 becomes active any time there is a defined set of selected messages.  The
5941 following commands can be applied to a selected message set: delete,
5942 undelete, reply, forward,
5943 <!--chtml if pinemode="os_windows"-->
5944 <!--chtml else--> 
5945 pipe,
5946 <!--chtml endif-->
5947 print, take address, save, export, bounce, and flag.
5950 The behavior of some of these commands in an aggregate sense is not easy to
5951 explain.  Try them out to see what they do.
5952 The feature
5953 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5954 affects the behavior of the Apply command, as does the feature
5955 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5958 &lt;End of help on this topic&gt;
5959 </BODY>
5960 </HTML>
5961 ======= h_index_cmd_zoom =======
5962 <HTML>
5963 <HEAD>
5964 <TITLE>ZoomMode Command</TITLE>
5965 </HEAD>
5966 <BODY>
5967 <H1>ZoomMode Command</H1>
5969 Another action you might want to take on a set of selected messages is to
5970 zoom in on them.  Like apply, zoom only becomes active when messages have
5971 been selected.
5972 ZoomMode
5973 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5974 is a toggle command that allows you to
5975 zoom-in (and only see the selected messages) and zoom-out (to see all
5976 messages in the folder).  Neither apply nor zoom removes the markings that
5977 define the selected set; you need to use a select command in order
5978 to do that.
5981 &lt;End of help on this topic&gt;
5982 </BODY>
5983 </HTML>
5984 ======= h_index_collapse_expand =======
5985 <HTML>
5986 <HEAD>
5987 <TITLE>Collapse/Expand Command</TITLE>
5988 </HEAD>
5989 <BODY>
5990 <H1>Collapse/Expand Command</H1>
5992 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5993 the folder is sorted by either Threads or OrderedSubject, and the
5994 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5995 is set to something other than &quot;none&quot;.
5996 By default, this command collapses or expands the subthread that starts at
5997 the currently highlighted message, if any.
5998 If the subthread is already collapsed, then this command expands it.
5999 If the subthread is expanded, then this command collapses it.
6000 If there are no more messages below the current message in the
6001 thread tree (that is, there are no replies to the current message) then
6002 this command does nothing.
6005 The behavior of this command is affected by the option
6006 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
6007 Normally, this command Collapses or Expands the subthread that
6008 starts at the currently highlighted message.
6009 If the above option is set, then this command Collapses or Expands the
6010 entire current thread instead of just the subthread.
6011 The current thread is simply the top-level thread that contains the
6012 current message.
6015 &lt;End of help on this topic&gt;
6016 </BODY>
6017 </HTML>
6018 ======= h_index_cmd_sort =======
6019 <HTML>
6020 <HEAD>
6021 <TITLE>Sort Command</TITLE>
6022 </HEAD>
6023 <BODY>
6024 <H1>Sort Command</H1>
6026 In Alpine's generic configuration, messages are presented in the order in
6027 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
6028 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
6029 You can also re-sort the folder on demand with the sort
6030 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
6031 command.
6032 Your sorting options are:
6034 <UL>
6035  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
6036  <LI> <A HREF="h_index_sort_date">D</A>ate
6037  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6038  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6039  <LI> t<A HREF="h_index_sort_thread">H</A>read
6040  <LI> <A HREF="h_index_sort_from">F</A>rom
6041  <LI> si<A HREF="h_index_sort_size">Z</A>e
6042  <LI> scor<A HREF="h_index_sort_score">E</A>,
6043  <LI> <A HREF="h_index_sort_to">T</A>o
6044  <LI> <A HREF="h_index_sort_cc">C</A>c
6045 </UL>
6048 The Reverse option will toggle the order the index is currently
6049 sorted by, but will not change the relative sort order.
6052 Sorting a folder does not actually rearrange the way the folder is saved,
6053 it just re-arranges how the messages are presented to you.  This means
6054 that Alpine has to do the work of sorting every time you change sort order.
6055 Sometimes, especially with PC-Alpine or with large folders, this could take
6056 a while.
6059 &lt;End of help on this topic&gt;
6060 </BODY>
6061 </HTML>
6062 ======= h_index_sort_default =======
6063 <HTML>
6064 <HEAD>
6065 <TITLE>SORT OPTION: Default</TITLE>
6066 </HEAD>
6067 <BODY>
6068 <H1>SORT OPTION: Default</H1>
6070 The <EM>Default</EM> sort option just means to use the default sort order
6071 set in the
6072 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6073 option in Setup/Config.
6076 &lt;End of help on this topic&gt;
6077 </BODY>
6078 </HTML>
6079 ======= h_index_sort_arrival =======
6080 <HTML>
6081 <HEAD>
6082 <TITLE>SORT OPTION: Arrival</TITLE>
6083 </HEAD>
6084 <BODY>
6085 <H1>SORT OPTION: Arrival</H1>
6087 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6088 in the order that they exist in the folder.  This is usually the same as the
6089 order in which they arrived.  This option is comparable to not sorting
6090 the messages at all.
6093 &lt;End of help on this topic&gt;
6094 </BODY>
6095 </HTML>
6096 ======= h_index_sort_date =======
6097 <HTML>
6098 <HEAD>
6099 <TITLE>SORT OPTION: Date</TITLE>
6100 </HEAD>
6101 <BODY>
6102 <H1>SORT OPTION: Date</H1>
6104 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6105 according to the date and time they were
6106 sent.
6109 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6110 identical to sorting by &quot;Arrival&quot;.
6113 &lt;End of help on this topic&gt;
6114 </BODY>
6115 </HTML>
6116 ======= h_index_sort_subj =======
6117 <HTML>
6118 <HEAD>
6119 <TITLE>SORT OPTION: Subject</TITLE>
6120 </HEAD>
6121 <BODY>
6122 <H1>SORT OPTION: Subject</H1>
6124 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6125 by subject. 
6128 Messages with the same subject are
6129 first grouped together, and then the groups of like-subject messages
6130 are arranged alphabetically.
6133 Alpine ignores leading &quot;Re:&quot; and
6134 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6135 likeness and alphabetical order of subject lines.
6138 &lt;End of help on this topic&gt;
6139 </BODY>
6140 </HTML>
6141 ======= h_index_sort_ordsubj =======
6142 <HTML>
6143 <HEAD>
6144 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6145 </HEAD>
6146 <BODY>
6147 <H1>SORT OPTION: OrderedSubject</H1>
6149 The <EM>OrderedSubject</EM> sort option arranges messages in the
6150 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6151 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6154 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6155 messages by the date of the oldest message in the group.
6158 This sort method provides for pseudo threading of conversations within
6159 a folder.
6160 You may want to try sorting by Thread instead.
6163 &lt;End of help on this topic&gt;
6164 </BODY>
6165 </HTML>
6166 ======= h_index_sort_thread =======
6167 <HTML>
6168 <HEAD>
6169 <TITLE>SORT OPTION: Thread</TITLE>
6170 </HEAD>
6171 <BODY>
6172 <H1>SORT OPTION: Thread</H1>
6174 The <EM>Thread</EM> sort option arranges messages in the
6175 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6176 they are part of a conversation (discussion thread) taking
6177 place within a mailbox or newsgroup.  This indication is
6178 based on information in the message's header -- specifically
6179 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6182 &lt;End of help on this topic&gt;
6183 </BODY>
6184 </HTML>
6185 ======= h_index_sort_from =======
6186 <HTML>
6187 <HEAD>
6188 <TITLE>SORT OPTION: From</TITLE>
6189 </HEAD>
6190 <BODY>
6191 <H1>SORT OPTION: From</H1>
6193 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6194 by the name of the author of the message.
6197 Messages with the same author are grouped together. Groups of
6198 messages are then put into alphabetical order according to message
6199 author.
6202 &lt;End of help on this topic&gt;
6203 </BODY>
6204 </HTML>
6205 ======= h_index_sort_size =======
6206 <HTML>
6207 <HEAD>
6208 <TITLE>SORT OPTION: Size</TITLE>
6209 </HEAD>
6210 <BODY>
6211 <H1>SORT OPTION: Size</H1>
6213 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6214 by their relative sizes.
6217 &lt;End of help on this topic&gt;
6218 </BODY>
6219 </HTML>
6220 ======= h_index_sort_score =======
6221 <HTML>
6222 <HEAD>
6223 <TITLE>SORT OPTION: Score</TITLE>
6224 </HEAD>
6225 <BODY>
6226 <H1>SORT OPTION: Score</H1>
6228 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6229 by their scores.
6232 Messages with the same score are sorted in arrival order.
6233 Scores are something you create using the
6234 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6237 &lt;End of help on this topic&gt;
6238 </BODY>
6239 </HTML>
6240 ======= h_index_sort_to =======
6241 <HTML>
6242 <HEAD>
6243 <TITLE>SORT OPTION: To</TITLE>
6244 </HEAD>
6245 <BODY>
6246 <H1>SORT OPTION: To</H1>
6248 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6249 by the names of the recipients of the message.
6252 Messages with the same recipients are grouped together. Groups of
6253 messages are then put into alphabetical order according to message
6254 recipients.
6257 &lt;End of help on this topic&gt;
6258 </BODY>
6259 </HTML>
6260 ======= h_index_sort_cc =======
6261 <HTML>
6262 <HEAD>
6263 <TITLE>SORT OPTION: Cc</TITLE>
6264 </HEAD>
6265 <BODY>
6266 <H1>SORT OPTION: Cc</H1>
6268 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6269 the names of the carbon copy addresses of the message.
6272 &lt;End of help on this topic&gt;
6273 </BODY>
6274 </HTML>
6275 ======= h_index_cmd_whereis =======
6276 <HTML>
6277 <HEAD>
6278 <TITLE>WhereIs Command</TITLE>
6279 </HEAD>
6280 <BODY>
6281 <H1>WhereIs Command</H1>
6283 The WhereIs
6284 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6285 command lets you search the MESSAGE INDEX for a word.
6286 It scans through whatever you see, usually the name of the author
6287 and the Subject line.
6288 WhereIs has special subcommands to let you find the beginning of the
6289 index (Ctrl-Y -- first message)
6290 or the end of the index (Ctrl-V -- last message).
6292 Note that WhereIs only searches through the visible text on the screen.
6293 For example, if only part of the Subject of a message is shown because it
6294 is long, then only the visible portion of the Subject is searched.
6295 Also note that WhereIs does not &quot;see&quot; the 
6296 &quot;X&quot; in column one of Index entries for selected messages
6297 so it can't be used to search for
6298 selected messages (use &quot;Zoom&quot; instead).
6300 If the feature
6301 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6302 is turned on,
6303 WhereIs can also be used as a quick way to select messages that match the
6304 string being searched for.
6305 Instead of typing carriage return to search for the next match, type
6306 Ctrl-X to select all matches.
6307 Once again, this only selects matches that are (or would be if the right
6308 index line was on the screen) visible.
6309 Truncated From lines or Subjects will cause matches to be missed.
6310 Although WhereIs is sometimes convenient for quick matching, the Select
6311 command is usually more powerful and usually faster.
6314 &lt;End of help on this topic&gt;
6315 </BODY>
6316 </HTML>
6317 ======= h_view_cmd_whereis =======
6318 <HTML>
6319 <HEAD>
6320 <TITLE>WhereIs Command</TITLE>
6321 </HEAD>
6322 <BODY>
6323 <H1>WhereIs Command</H1>
6325 The WhereIs
6326 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6327 command does a &quot;find in current message&quot; operation.  You
6328 type in text and Alpine will try to find it in the message you are
6329 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6330 or end (Ctrl-V) of the message.
6331 That is, to rapidly move to the end of a message, hit the 
6332 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6333 (or Ctrl-W) key followed
6334 by Ctrl-V.  Similarly,
6335 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6336 followed by Ctrl-Y will take you to the beginning of a message.
6339 &lt;End of help on this topic&gt;
6340 </BODY>
6341 </HTML>
6342 ======= h_view_cmd_hilite =======
6343 <HTML>
6344 <HEAD>
6345 <TITLE>View Hilite and Next item/Previous item</TITLE>
6346 </HEAD>
6347 <BODY>
6348 <H1>View Hilite and Next item/Previous item</H1>
6350 Sometimes messages may be in the form of formatted HTML text
6351 or they may contain URLs or Web server hostnames.
6352 When any of the features
6353 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6354 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6355 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6357 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6358 are enabled, Alpine will represent such selectable items in the text
6359 in bold typeface.  One of the selectable items will be displayed in
6360 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6361 Press the Return key to view the currently selected item.
6364 The Up and Down Arrows keys can be used to change the selected item
6365 (also see the feature
6366 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6367 If there are no selectable items in the direction of the arrow you
6368 pressed, Alpine will scroll the display in that direction until one
6369 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6370 items in the message text, use the Previous and Next item commands,
6371 <!--chtml if pinemode="function_key"-->F5 and F6
6372 <!--chtml else-->^B and ^F<!--chtml endif-->.
6375 &lt;End of help on this topic&gt;
6376 </BODY>
6377 </HTML>
6378 ======= h_view_cmd_viewattch =======
6379 <HTML>
6380 <HEAD>
6381 <TITLE>ViewAttch Command</TITLE>
6382 </HEAD>
6383 <BODY>
6384 <H1>ViewAttch Command</H1>
6387 The View/Save Attachment
6388 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6389 command allows you to handle MIME attachments to a message you have
6390 received.  Alpine shows you a list of the message attachments -- you just
6391 choose the attachment you want.  You may either view or save the
6392 selected attachment.
6395 Because many attachments require external programs for display, there
6396 is some system configuration that has to happen before you can
6397 actually display attachments.  Hopefully much of that will have been
6398 done already by your system administrator.  MIME configuration is
6399 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6400 on configuration in the
6401 <A HREF="h_news">release notes</A> for more information.)
6404 &lt;End of help on this topic&gt;
6405 </BODY>
6406 </HTML>
6407 ======= h_index_cmd_expunge =======
6408 <HTML>
6409 <HEAD>
6410 <TITLE>Expunge/Exclude Command</TITLE>
6411 </HEAD>
6412 <BODY>
6413 <H1>Expunge/Exclude Command</H1>
6415 Expunge/Exclude
6416 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6417 is the command Alpine uses to actually remove all messages
6418 marked for deletion.  With regular email files, expunge literally deletes
6419 the text from the current folder.  With newsgroups or shared mailboxes,
6420 you don't have permission to actually remove the message, so it is an
6421 exclude -- Alpine removes the message from your view of the folder even
6422 though it is not technically gone.
6424 <P> A selective expunge command is available in IMAP folders that support 
6425 the UID EXPUNGE extension in <A 
6426 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6427 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6428 as a subcommand of the apply command. If some selected messages are marked 
6429 deleted, then the apply command will offer the eXpunge command, which when 
6430 executed will only expunge those messages that are selected and deleted.
6432 <P> 
6433 Observe that the expunge command (when not used from the apply command) 
6434 will expunge/exclude all deleted messages from the folder, and so all 
6435 messages marked deleted will be expunged, regardless of if they are 
6436 selected or not. In other words, there is no protection against 
6437 potentially expunging more messages than only those that have been 
6438 selected and deleted.
6441 The configuration features
6442 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6444 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6445 affect the behavior of the Expunge command.
6448 &lt;End of help on this topic&gt;
6449 </BODY>
6450 </HTML>
6451 ======= h_common_compose =======
6452 <HTML>
6453 <HEAD>
6454 <TITLE>Compose Command</TITLE>
6455 </HEAD>
6456 <BODY>
6457 <H1>Compose Command</H1>
6459 The Compose command takes you into the Alpine message composer where you
6460 can start a new message for sending.  This is where you type in the
6461 message's text and specify its recipient list (the &quot;To:&quot;
6462 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6463 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6464 be attached to the message.
6467 When you type this command, Alpine will also automatically check for any
6468 interrupted (i.e., a message that was being composed when your modem
6469 or network connection was broken) or previously postponed messages and
6470 offer you a chance to continue working on those.
6473 <UL>   
6474 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6475 </UL><P>
6476 &lt;End of help on this topic&gt;
6477 </BODY>
6478 </HTML>
6479 ======= h_common_index =======
6480 <HTML>
6481 <HEAD>
6482 <TITLE>Message Index Command</TITLE>
6483 </HEAD>
6484 <BODY>
6485 <H1>Message Index Command</H1>
6487 The Index command takes you to the MESSAGE INDEX screen that displays a
6488 summary caption for each message in the currently-open folder. One
6489 message will be highlighted; this is the &quot;Current&quot; message.
6490 The message commands available from this screen (e.g. View, Reply,
6491 Forward, Delete, Print, Save, etc) apply to the current message.
6494 &lt;End of help on this topic&gt;
6495 </BODY>
6496 </HTML>
6497 ======= h_common_folders =======
6498 <HTML>
6499 <HEAD>
6500 <TITLE>Folder List Command</TITLE>
6501 </HEAD>
6502 <BODY>
6503 <H1>Folder List Command</H1>
6505 This Folder List command takes you to the FOLDER LIST screen that displays
6506 the names of all your message folders and allows you to view, rename,
6507 delete, and add folders.  You can open (view) a different folder than the
6508 one currently open by highlighting the desired one (using the arrow keys
6509 or their control-key equivalents) and pressing RETURN.
6512 If you have multiple folder collections defined (see the Help text for
6513 the FOLDER LIST screen to learn more about Collections), you may need
6514 to press Return to expand the collection and display all of the
6515 folders in it.
6518 &lt;End of help on this topic&gt;
6519 </BODY>
6520 </HTML>
6521 ======= h_main_addrbook =======
6522 <HTML>
6523 <HEAD>
6524 <TITLE>Address Book Command</TITLE>
6525 </HEAD>
6526 <BODY>
6527 <H1>Address Book Command</H1>
6529 This command, available only from the MAIN MENU, takes you
6530 to the ADDRESS BOOK management screen.  From here, your personal address
6531 book(s) may be updated.
6534 &lt;End of help on this topic&gt;
6535 </BODY>
6536 </HTML>
6537 ======= h_main_setup =======
6538 <HTML>
6539 <HEAD>
6540 <TITLE>Setup Command</TITLE>
6541 </HEAD>
6542 <BODY>
6543 <H1>Setup Command</H1>
6545 The Setup command, available only from the MAIN MENU, prompts you for
6546 one of several configuration screens, including the SETUP CONFIGURATION 
6547 screen, by which you may activate optional Alpine features.
6550 &lt;End of help on this topic&gt;
6551 </BODY>
6552 </HTML>
6553 ======= h_main_release_notes =======
6554 <HTML>
6555 <HEAD>
6556 <TITLE>Release Notes Command</TITLE>
6557 </HEAD>
6558 <BODY>
6559 <H1>Release Notes Command</H1>
6561 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6562 as well as pointers to further information such as history and legal notes.
6565 &lt;End of help on this topic&gt;
6566 </BODY>
6567 </HTML>
6568 ======= h_main_kblock =======
6569 <HTML>
6570 <HEAD>
6571 <TITLE>Keyboard Lock Command</TITLE>
6572 </HEAD>
6573 <BODY>
6574 <H1>Keyboard Lock Command</H1>
6576 This command allows your Alpine session to be protected
6577 during a temporary absence from your terminal.
6580 &lt;End of help on this topic&gt;
6581 </BODY>
6582 </HTML>
6583 ======= h_main_journal =======
6584 <HTML>
6585 <HEAD>
6586 <TITLE>Journal Command</TITLE>
6587 </HEAD>
6588 <BODY>
6589 <H1>Journal Command</H1>
6591 This command displays a list of all the status messages Alpine has
6592 displayed (on the third line from the bottom of the screen). This may
6593 be useful if a message disappeared before you had a chance to read it.
6596 &lt;End of help on this topic&gt;
6597 </BODY>
6598 </HTML>
6599 ======= h_common_role =======
6600 <HTML>
6601 <HEAD>
6602 <TITLE>Role Command</TITLE>
6603 </HEAD>
6604 <BODY>
6605 <H1>Role Command</H1>
6607 The Role command is similar to the Compose command except that it starts
6608 off by letting you select a <A HREF="h_rules_roles">role</A>
6609 to be used for the composition.
6610 You may set up alternate roles by using Setup/Rules/Roles.
6613 &lt;End of help on this topic&gt;
6614 </BODY>
6615 </HTML>
6616 ======= h_common_conditional_cmds =======
6617 <HTML>
6618 <HEAD>
6619 <TITLE>Conditional Commands</TITLE>
6620 </HEAD>
6621 <BODY>
6622 <H1>Conditional Commands</H1>
6624 The presence or absence of certain commands, particularly in the
6625 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6626 whether or not specific features are set in your Alpine configuration.  
6627 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6628 Alpine's MAIN MENU.)  To see if a desired command's availability is
6629 conditioned on a feature setting, see the command's help text (highlight
6630 the phrase associated with the command and hit Return).
6633 Also note that some
6634 commands may be administratively disabled by your system manager;
6635 if they don't work, please check with your local help desk.
6638 <UL>   
6639 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6640 </UL><P>
6641 &lt;End of help on this topic&gt;
6642 </BODY>
6643 </HTML>
6644 ======= h_common_pipe =======
6645 <HTML>
6646 <HEAD>
6647 <TITLE>Pipe Command</TITLE>
6648 </HEAD>
6649 <BODY>
6650 <H1>Pipe Command</H1>
6652 Pipe
6653 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6654 allows you to send a message to a specified Unix command for external
6655 processing.
6656 This command's availability is controlled by the
6657 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6658 feature.
6659 By default, the processed text of the message is sent to the command
6660 you specify and the output is captured by Alpine and shown to you.
6661 When you run the pipe command, there are some sub-commands which may be
6662 used to alter this behavior.
6663 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6666 &lt;End of help on this topic&gt;
6667 </BODY>
6668 </HTML>
6669 ======= h_common_goto =======
6670 <HTML>
6671 <HEAD>
6672 <TITLE>Goto Command</TITLE>
6673 </HEAD>
6674 <BODY>
6675 <H1>Goto Command</H1>
6677 Goto
6678 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6679 is the command that lets you bypass Alpine's folder selection screens
6680 and jump directly to a new folder.  You can select any folder in the
6681 world: one in your current collection, one in a different collection or
6682 one in a collection you've never even used before.
6685 Alpine will help you as much as possible to narrow in on the folder you want.
6686 However, if the folder is outside of your defined collections, you are
6687 going to have to enter the exact folder location using the correct
6688 <A HREF="h_valid_folder_names">syntax</A>
6689 for a remote folder and/or fully-qualified path name.
6692 &lt;End of help on this topic&gt;
6693 </BODY>
6694 </HTML>
6695 ======= h_common_nextnew =======
6696 <HTML>
6697 <HEAD>
6698 <TITLE>NextNew Command</TITLE>
6699 </HEAD>
6700 <BODY>
6701 <H1>NextNew Command</H1>
6703 When you press the TAB key, Alpine advances to the next
6704 &quot;interesting&quot; message.
6705 This will be the next message you have not seen before, or the next message
6706 you have flagged Important, whichever comes first.
6707 Unread messages that have been deleted are not considered interesting.
6708 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6709 articles after you have read them if you want to remove them from future
6710 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6711 more information.)
6714 The NextNew command is affected by the feature
6715 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6716 which causes Alpine to only consider Unread messages interesting, not messages
6717 flagged Important.
6720 This command behaves a little differently when it finds there are no more
6721 interesting messages left in the current folder.
6722 If the current folder is one of your Incoming Message Folders
6723 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6724 or it is a newsgroup, then Alpine will try to find the next folder or
6725 newsgroup that contains <EM>Recent</EM> messages and will ask you
6726 if you want to open that folder.
6727 This behavior may be modified by using the
6728 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6729 feature that causes Alpine to look for Unseen messages instead of Recent
6730 messages.
6731 The NextNew command's behavior is also affected by the configuration features
6732 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6734 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6737 &lt;End of help on this topic&gt;
6738 </BODY>
6739 </HTML>
6740 ======= h_common_jump =======
6741 <HTML>
6742 <HEAD>
6743 <TITLE>Jump Command</TITLE>
6744 </HEAD>
6745 <BODY>
6746 <H1>Jump Command</H1>
6748 This is Alpine's way of allowing you to go straight to a specific message.
6749 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6750 configured such that typing in any number automatically jumps you to that
6751 message 
6752 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6753 in the SETUP CONFIGURATION).
6756 &lt;End of help on this topic&gt;
6757 </BODY>
6758 </HTML>
6759 ======= h_common_flag =======
6760 <HTML>
6761 <HEAD>
6762 <TITLE>Flag Command</TITLE>
6763 </HEAD>
6764 <BODY>
6765 <H1>Flag Command</H1>
6767 Flag
6768 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6769 is the command that allows users to manipulate the status flags that
6770 appear on the left side of the MESSAGE INDEX screen.  The most common
6771 use of this is to mark a message as important. This is something of a
6772 note to yourself to get back to that message.  You may also use the
6773 flag command to set (or unset) the flags that indicate that a message
6774 is new, answered, deleted, or forwarded.<P>
6776 Provided the mail server supports it,
6777 you may also manipulate user-defined keywords
6778 for a message using the flag command.
6779 These keywords will be available if you use the Flag Details screen that you
6780 can get to after typing the
6781 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6782 command.
6783 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6784 which are always present.
6785 You may add new keywords by using the Add KW command from the Flag Details screen
6786 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6788 The availability of the flag command is determined by the
6789 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6790 feature in your Alpine configuration. Also, it is possible that Flag could be
6791 administratively disabled by your system manager; if it doesn't work,
6792 please check with your local help desk before reporting a bug.
6793 The behavior of the flag command may be modified by the
6794 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6795 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6798 &lt;End of help on this topic&gt;
6799 </BODY>
6800 </HTML>
6801 ======= h_common_hdrmode =======
6802 <HTML>
6803 <HEAD>
6804 <TITLE>HdrMode Command</TITLE>
6805 </HEAD>
6806 <BODY>
6807 <H1>HdrMode Command</H1>
6809 Every email message comes with some header lines that you normally
6810 don't see (and don't want to see).
6811 These include anywhere from 3-20 lines (or more) added by the
6812 Internet mail transport system to record the route your message took,
6813 for diagnostic purposes.
6814 These are normally of no import and simply
6815 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6816 This also includes other non-standard headers the message may contain.
6817 If you want to see these headers, there is a way to reveal them.
6820 The Header Mode
6821 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6822 command is a toggle that controls Alpine's handling of these header
6823 lines.  Normally, full headers is &quot;off&quot; and you only see a
6824 few lines about who a message is to and who it is from.  When you
6825 press
6826 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6827 to turn full headers on, Alpine will show you
6828 the normal header lines as well as delivery headers, comment headers,
6829 MIME headers, and any other headers present.
6832 Several different Alpine commands honor the header mode -- it affects how
6833 messages are displayed, how they appear in forward and reply email, how
6834 they are printed, how they are saved, and how they are exported.
6835 <!--chtml if pinemode="os_windows"-->
6836 <!--chtml else--> 
6837 The pipe command is also affected.
6838 <!--chtml endif-->
6841 The presence or absence of the Header Mode command is determined by the
6842 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6843 Feature-List option in your Alpine configuration.
6846 If you have also turned on the
6847 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6848 option then the HdrMode command actually rotates through three states
6849 instead of just two.
6850 The first is the normal view with long quotes suppressed.
6851 The second is the normal view but with the long quotes included.
6852 The last enables the display of all headers in the message.
6853 When using Export, Pipe, Print, Forward, or Reply the quotes are
6854 never suppressed, so the first two states are identical.
6857 The behavior of the Header Mode command may be altered slightly by
6858 turning on the
6859 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6860 Feature-List option in your Alpine configuration.
6861 In particular, it will cause the Header Mode to be persistent when moving
6862 from message to message instead of resetting to the default for each message.
6865 <UL>   
6866 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6867 </UL><P>
6868 &lt;End of help on this topic&gt;
6869 </BODY>
6870 </HTML>
6871 ======= h_common_print =======
6872 <HTML>
6873 <HEAD>
6874 <TITLE>Print Command</TITLE>
6875 </HEAD>
6876 <BODY>
6877 <H1>Print Command</H1>
6879 The Print
6880 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6881 command allows you to print a copy of a message.
6882 There are many SETUP CONFIGURATION features that affect the
6883 Print command, including
6884 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6885 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6886 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6887 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6888 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6889 You set up for printing by using the Printer option of the Setup command
6890 on the MAIN MENU.
6894 &lt;End of help on this topic&gt;
6895 </BODY>
6896 </HTML>
6897 ======= h_common_take =======
6898 <HTML>
6899 <HEAD>
6900 <TITLE>TakeAddr Command</TITLE>
6901 </HEAD>
6902 <BODY>
6903 <H1>TakeAddr Command</H1>
6906 With the Take Address
6907 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6908 command, you can extract email addresses from an
6909 incoming message and save them in an address book.  This is an easy way
6910 to add to your address book and avoid having to remember the email
6911 addresses of the people who write to you.
6914 If the message is just to you individually, then you will only need to
6915 provide a nickname.  If the message contains more than one email address,
6916 then you will see an address
6917 selection screen that lets you choose the address you want to save into
6918 your address book, or lets you choose several of them add to a
6919 personal distribution list.
6922 Once you've added an entry to your address book, you can use it from the
6923 message composer by typing the nickname of the entry into one of the
6924 header fields (for example, into the To: field), or you can use ^T from
6925 the header field to select the entry from your address book.
6928 If the configuration feature
6929 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6930 is set, the behavior of the Take command is altered slightly.
6933 &lt;End of help on this topic&gt;
6934 </BODY>
6935 </HTML>
6936 ======= h_ge_import =======
6937 <HTML>
6938 <HEAD>
6939 <TITLE>Import File Selection</TITLE>
6940 </HEAD>
6941 <BODY>
6942 <H1>Import File Selection</H1>
6944 You are importing a file that you previously
6945 exported from Alpine.
6946 You are now being asked for the name of that file.
6947 The easiest way to select a file is probably with the &quot;^T&quot;
6948 &quot;To Files&quot; command.
6949 Alternatively, you may type in a file name.
6950 It may be an absolute pathname.
6951 Otherwise, it is a file located in your home directory
6952 or current working directory
6953 <!--chtml if pinemode="running"-->
6954 (which, at least for your current Alpine &quot;session,&quot; 
6955 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6956 <!--chtml endif-->, depending on the
6957 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6958 In any case, you finish by typing a carriage return to accept the
6959 file name that is displayed.
6960 When the feature
6961 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6962 is turned on you may use TAB to complete partially typed in names.
6964 You may cancel the import operation by typing &quot;^C&quot; after exiting
6965 this help.
6967 &lt;End of help on this topic&gt;
6968 </BODY>
6969 </HTML>
6970 ======= h_ge_allparts =======
6971 <HTML>
6972 <HEAD>
6973 <TITLE>Export Message File Selection</TITLE>
6974 </HEAD>
6975 <BODY>
6976 <H1>Export Message File Selection</H1>
6978 You are Exporting a message from an Alpine mail folder
6979 to a plain text file.
6980 You also have the option of exporting all of the attachments associated
6981 with the message.
6982 You are now being asked for the name of the file to export <EM>to</EM>.
6983 The easiest way to select a file is probably with the &quot;^T&quot;
6984 &quot;To Files&quot; subcommand.
6985 After returning from that subcommand you will still be allowed to
6986 edit the name you have selected.
6987 Alternatively, you may type in a file name.
6988 It may be an absolute pathname.
6989 Otherwise, it is a file located in your home directory
6990 or current working directory
6991 <!--chtml if pinemode="running"-->
6992 (which, at least for your current Alpine &quot;session,&quot; 
6993 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6994 <!--chtml endif-->, depending on the
6995 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6996 In any case, you finish by typing a carriage return to accept the
6997 file name that is displayed.
6998 When the feature
6999 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7000 is turned on you may use TAB to complete partially typed in names.
7002 The message you are exporting appears to have some attachments.
7003 If you wish to save <EM>all</EM> of the attachments at once,
7004 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
7005 saving of the attachments.
7006 You may turn it back off by typing &quot;^P&quot; again, which will now
7007 be labeled &quot;NoAllParts&quot; instead.
7008 If you want to save the parts the command displayed should be
7009 &quot;NoAllParts&quot;!
7010 When you choose to save attachments like this, the attachments will be saved
7011 in a newly created directory.
7012 That directory will have the same name as the file name you choose here,
7013 with the letters &quot;.d&quot; appended.
7014 If that directory already exists, then the letters &quot;.d_1&quot; will
7015 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
7016 is found.
7017 For example, if you select the file name
7019 <CENTER><SAMP>filename</SAMP></CENTER>
7021 to export the message to, then the directory used for the attachments will be
7023 <CENTER><SAMP>filename.d</SAMP></CENTER>
7025 or perhaps
7027 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
7029 The attachments will then be put into files inside that directory.
7030 The names for the attachment files will be derived from the attachments
7031 if possible.
7032 This is done in the same way as the default values are derived if you
7033 save them one at a time.
7034 (The &quot;filename&quot; parameter from the Content-Disposition header
7035 is the first choice. If that doesn't exist, the &quot;name&quot;
7036 parameter from the Content-Type header is used.)
7037 If a name for a particular attachment is not available, then the
7038 part number of the attachment is used, with the characters &quot;part_&quot;
7039 prepended.
7040 An example of that would be
7042 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7044 If you want to save only some of the attachments or if you want more control
7045 over the directory and filename where an attachment is saved you may
7046 cancel out of this command and View the attachment list.
7047 From there you can save each attachment individually.
7049 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7050 this help.
7052 &lt;End of help on this topic&gt;
7053 </BODY>
7054 </HTML>
7055 ======= h_ge_export =======
7056 <HTML>
7057 <HEAD>
7058 <TITLE>Export File Selection</TITLE>
7059 </HEAD>
7060 <BODY>
7061 <H1>Export File Selection</H1>
7063 You are Exporting or Saving something from within the Alpine world
7064 (a message, an attachment, etc.)
7065 to a plain text file.
7066 You are now being asked for the name of the file to export <EM>to</EM>.
7067 The easiest way to select a file is probably with the &quot;^T&quot;
7068 &quot;To Files&quot; subcommand.
7069 After returning from that subcommand you will still be allowed to
7070 edit the name you have selected.
7071 Alternatively, you may type in a file name.
7072 It may be an absolute pathname.
7073 Otherwise, it is a file located in your home directory
7074 or current working directory
7075 <!--chtml if pinemode="running"-->
7076 (which, at least for your current Alpine &quot;session,&quot; 
7077 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7078 <!--chtml endif-->, depending on the
7079 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7080 In any case, you finish by typing a carriage return to accept the
7081 file name that is displayed.
7082 When the feature
7083 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7084 is turned on you may use TAB to complete partially typed in names.
7086 If the object you are exporting is a message with some attachments,
7087 you may wish to save all of the attachments by typing the &quot;^P&quot;
7088 &quot;AllParts&quot; command to turn on saving of the attachments.
7089 This subcommand will only be visible if the message actually has attachments.
7090 You may also View the attachment list and save individual attachments from
7091 there.
7093 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7094 the Control-R subcommand to toggle if saving will be done in binary mode,
7095 meaning that the attachment will be decoded, but will not be transformed
7096 to UTF-8 for further processing (either in internal filters, or user
7097 supplied filters.) This is useful in case you either want to preserve
7098 the text as it was encoded originally to you, or the attachment was
7099 incorrectly attached (the attachment is not of text type) and you need
7100 the original text to process the attachment.
7102 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7103 this help.
7105 &lt;End of help on this topic&gt;
7106 </BODY>
7107 </HTML>
7108 ======= h_common_save =======
7109 <HTML>
7110 <HEAD>
7111 <TITLE>Save and Export Commands</TITLE>
7112 </HEAD>
7113 <BODY>
7114 <H1>Save and Export Commands</H1>
7116 Save
7117 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7118 and Export
7119 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7120 are the two alternatives Alpine gives you to keep a copy of the message
7121 you are reading. If you want to keep the message within Alpine's email
7122 world, use &quot;Save&quot;; if you want to use the message in another
7123 program, use &quot;Export&quot;.
7126 When you Save a message, it is put into an existing folder or into a new
7127 folder in one of your existing folder collections.  The message stays in
7128 email format and can be read by Alpine again.  Alpine may use a special format
7129 for its mail folders -- never edit an Alpine folder by hand or with any
7130 program other than Alpine.  The exact behavior of the Save command can be
7131 configured with the
7132 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7133 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7134 and 
7135 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7136 feature list settings.
7137 The name of the folder offered as a default is controlled by the option
7138 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7141 When you use Export, the message is placed in a plain text file in your
7142 home directory 
7143 <!--chtml if pinemode="running"-->
7144 (which, in the present configuration of your system, is
7145  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7146 <!--chtml endif-->
7147 or current working directory
7148 <!--chtml if pinemode="running"-->
7149 (which, at least for your current Alpine &quot;session,&quot; 
7150 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7151 <!--chtml endif-->, depending on the
7152 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7153 configuration setting.  In the normal case, only minimal
7154 headers are exported with the message; however, if the full header mode 
7155 (whose availability may be disabled  by setting the feature 
7156 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7157 in SETUP CONFIGURATION) is
7158 toggled on, then complete headers are exported along with the message
7159 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7160 defined, they may affect the contents of the exported file.)
7163 &lt;End of help on this topic&gt;
7164 </BODY>
7165 </HTML>
7166 ======= h_common_bounce =======
7167 <HTML>
7168 <HEAD>
7169 <TITLE>Bounce Command</TITLE>
7170 </HEAD>
7171 <BODY>
7172 <H1>Bounce Command</H1>
7174 The Bounce 
7175 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7176 command allows you to re-send, or &quot;remail&quot;, a
7177 message, as if you were never in the loop.  It is analogous to crossing
7178 out your address on a postal letter, writing a different address on the
7179 envelope, and putting it into the mailbox. Bounce is used primarily to
7180 redirect email that was sent to you in error.
7181 Also, some owners of email
7182 lists need the bounce command to handle list traffic.
7183 Bounce is not anonymous.
7184 A ReSent-From header is added to the message so that the recipient may
7185 tell that you Bounced it to them.
7188 The presence or absence of the Bounce command is determined by the
7189 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7190 feature in your Alpine configuration.
7191 The feature
7192 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7193 affects the behavior of the Bounce command.
7194 Also, it is possible that Bounce could be
7195 administratively disabled by your system manager; if it doesn't work,
7196 please check with your local help desk before reporting a bug.
7199 &lt;End of help on this topic&gt;
7200 </BODY>
7201 </HTML>
7202 ======= h_common_reply =======
7203 <HTML>
7204 <HEAD>
7205 <TITLE>Reply and Forward Commands</TITLE>
7206 </HEAD>
7207 <BODY>
7209 <H1>Reply and Forward Commands</H1>
7211 Replying 
7212 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7213 and Forwarding 
7214 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7215 are your two alternatives for following up on the
7216 message you are reading.  You would use reply if you want to get email
7217 back to the author of the message and/or the other people who have
7218 already seen it.  You use forward if you want somebody new to see the
7219 message.
7222 In the normal case, the only thing that you must supply when forwarding a
7223 message is the name/email address of the new recipient.
7224 Alpine will include the text of the forwarded message.
7225 Alpine will also include any attachments to the message.
7226 There is space above the forwarded text for you to include additional comments.
7229 When replying, you usually have to answer some questions.
7230 If the message is to multiple people and/or specified with a Reply-To: header,
7231 then you will have to decide who should get the reply.
7232 You also need to decide whether or not to include the previous
7233 message in your reply.
7234 Some of this is configurable.
7235 Specifically, see the
7236 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7237 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7238 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7240 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7241 configuration features.
7244 Both the Reply and Forward commands react to the full header mode toggle.
7245 If the full header mode is on, then all the header and delivery lines are
7246 included with the text of the message in your reply/forward.
7249 Other configuration features that affect the Reply command are
7250 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7251 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7252 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7255 &lt;End of help on this topic&gt;
7256 </BODY>
7257 </HTML>
7258 ======= h_common_delete =======
7259 <HTML>
7260 <HEAD>
7261 <TITLE>Delete and Undelete Commands</TITLE>
7262 </HEAD>
7263 <BODY>
7264 <H1>Delete and Undelete Commands</H1>
7266 Delete 
7267 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7268 and Undelete 
7269 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7270 allow you to change the Deleted flag for the current message.
7271 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7272 removes the mark.
7273 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7274 at the left hand edge of the index line.
7275 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7276 in the upper right hand corner of the screen.
7277 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7278 get rid of the message.
7279 The eXpunge command (available from the MESSAGE INDEX screen) actually
7280 removes all of the deleted messages in a folder.
7281 Once a message is eXpunged, it can't be retrieved.
7284 The Delete command is affected by the setting of the configuration feature
7285 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7288 &lt;End of help on this topic&gt;
7289 </BODY>
7290 </HTML>
7291 ======= h_common_postpone =======
7292 <HTML>
7293 <HEAD>
7294 <TITLE>Postpone Command</TITLE>
7295 </HEAD>
7296 <BODY>
7297 <H1>Postpone Command</H1>
7299 The postpone
7300 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7301 command allows you to temporarily stop working on the current
7302 message so you may read
7303 other messages or compose another message.  When you want to resume a
7304 message later, start to compose and answer &quot;yes&quot; to the
7305 &quot;Continue postponed composition?&quot; question.  You may
7306 postpone as many messages as you like.
7309 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7310 in the Setup/Config screen, then the Postpone command will prompt you for
7311 the folder in which to store your outgoing message.
7314 &lt;End of help on this topic&gt;
7315 </BODY>
7316 </HTML>
7317 ======= h_compose_cancel =======
7318 <HTML>
7319 <HEAD>
7320 <TITLE>Cancel Command</TITLE>
7321 </HEAD>
7322 <BODY>
7323 <H1>Cancel Command</H1>
7325 Cancel
7326 <!--chtml if pinemode="function_key"-->
7327 (F2)
7328 <!--chtml else-->
7329 (^C) 
7330 <!--chtml endif-->
7332 The Cancel command returns you to Alpine's normal mail processing and
7333 causes the message currently under composition to be thrown out.
7334 The message text <EM>will be lost</EM>.
7337 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
7338 will be preserved in the file named
7339 <!--chtml if pinemode="os_windows"-->
7340 &quot;DEADLETR&quot;.
7341 <!--chtml else-->
7342 &quot;dead.letter&quot; in your home directory.
7343 <!--chtml endif-->
7344 If you unintentionally cancel a message, look there for its text.
7347 &lt;End of help on this topic&gt;
7348 </BODY>
7349 </HTML>
7350 ======= h_compose_addrcomplete =======
7351 <HTML>
7352 <HEAD>
7353 <TITLE>Address Completion</TITLE>
7354 </HEAD>
7355 <BODY>
7356 <H1>Address Completion</H1>
7358 When entering addresses in the address fields of the composer (To, Cc, etc.)
7359 the TAB key may be used to help complete the address.
7360 Type a partial nickname and tap the TAB key to complete the typing.
7361 The unambiguous part of the name will be filled in automatically.
7362 Typing TAB twice in succession will bring up a selection list of possibilities,
7363 making it easy to find and choose the correct address.
7366 The matching algorithm is rather ad hoc.
7367 The search starts with a search of your address book.
7368 It counts as a match if the nickname, address, or fullname field of an
7369 entry begins with the text typed in so far. It is also a match if
7370 a later word in the fullname (for example, the middle name or last name)
7371 begins with the entered text.
7373 Next comes an LDAP search.
7374 The search will happen for any servers that have the
7375 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7376 feature set. You can set or unset the feature for each server independently
7377 in the Setup/Directory screen.
7379 Finally, if you are replying to or forwarding a message, that message is
7380 searched for likely candidate addresses that match the typed-in text.
7383 &lt;End of help on this topic&gt;
7384 </BODY>
7385 </HTML>
7386 ======= h_compose_richhdr =======
7387 <HTML>
7388 <HEAD>
7389 <TITLE>Rich Header Command</TITLE>
7390 </HEAD>
7391 <BODY>
7392 <H1>Rich Header Command</H1>
7394 The Rich Header command allows you to toggle between the list of 
7395 all message headers available for editing and those that are most
7396 common.
7399 Use this toggle to expose headers that are not normally visible by
7400 default.
7401 This set usually includes the
7402 &quot;Bcc:&quot;,
7403 &quot;Fcc:&quot;,
7404 &quot;Lcc:&quot;,
7405 and &quot;Newsgroups&quot;
7406 headers.
7407 If you are posting to a newsgroup the set of defaults is a little different.
7408 Obviously, in that case, the Newsgroups header is of interest so is not
7409 hidden.
7410 For news posting the hidden set includes the
7411 &quot;To:&quot;,
7412 &quot;Cc:&quot;,
7413 &quot;Bcc:&quot;,
7414 &quot;Fcc:&quot;,
7415 and &quot;Lcc:&quot;
7416 headers.
7417 You won't normally want to edit these, which is why they are hidden,
7418 but it is sometimes useful to be able to set them manually.
7421 The default sets of headers listed above can be altered.
7422 Any header that you have added to the
7423 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7424 option, but not to the
7425 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7426 option will appear when you use the Rich Headers command to
7427 make the Rich Headers visible.
7428 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7429 even without toggling the Rich Headers command.)
7432 &lt;End of help on this topic&gt;
7433 </BODY>
7434 </HTML>
7435 ======= h_compose_send =======
7436 <HTML>
7437 <HEAD>
7438 <TITLE>Send Command</TITLE>
7439 </HEAD>
7440 <BODY>
7441 <H1>Send Command</H1>
7443 The Send command
7444 <!--chtml if pinemode="function_key"-->
7445 (F3)
7446 <!--chtml else-->
7447 (^X) 
7448 <!--chtml endif-->
7449 tells Alpine you are finished composing.
7450 Before actually sending it, though, Alpine will ask you to confirm 
7451 your intention, and, at the same time, redisplayed the message text
7452 with the recipients at the top of the screen to give you the opportunity
7453 to review and verify that the message is addressed to the people
7454 you intended.
7456 If the feature
7457 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7458 then this confirmation prompt and any options it allows are skipped.
7461 This confirmation prompt may also offer, depending
7462 on your particular Setup/Config, options allowing you to set
7463 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7464 include attachments in the &quot;Fcc&quot; (if you had previously
7465 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7466 observe details of the
7467 <A HREF="h_config_verbose_post">message submission process</A>,
7468 choose the filter through which the
7469 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7470 or turn of flowed text generation.
7473 &lt;End of help on this topic&gt;
7474 </BODY>
7475 </HTML>
7476 ======= h_compose_markcutpaste =======
7477 <HTML>
7478 <HEAD>
7479 <TITLE>Mark, Cut and Paste Commands</TITLE>
7480 </HEAD>
7481 <BODY>
7482 <H1>Mark, Cut and Paste Commands</H1>
7484 You can define a &quot;block&quot; of text, which can subsequently
7485  be deleted or
7486 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7487 then moving the cursor to the end of the desired text block.  You can then
7488 &quot;cut&quot; the block out 
7489 <!--chtml if pinemode="function_key"-->
7490 &quot;F9&quot;,
7491 <!--chtml else-->
7492 &quot;Ctrl-K&quot;,
7493 <!--chtml endif-->
7494 move the cursor, and &quot;paste&quot; it
7495 <!--chtml if pinemode="function_key"-->
7496 &quot;F10&quot;,
7497 <!--chtml else-->
7498 &quot;Ctrl-U&quot;,
7499 <!--chtml endif-->
7500 in the new location.  Also, you can paste more than once, allowing you
7501 to use this feature to copy a block of text.<P>
7503 If you press 
7504 <!--chtml if pinemode="function_key"-->
7505 &quot;F9&quot;
7506 <!--chtml else-->
7507 &quot;^K&quot;
7508 <!--chtml endif-->
7509 without having marked anything, Alpine will delete
7510 a single line.  If you delete a group of lines together, Alpine keeps them
7511 in the same buffer, so 
7512 <!--chtml if pinemode="function_key"-->
7514 <!--chtml else-->
7516 <!--chtml endif-->
7517 will restore them as a block.  About
7518 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7519 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7520 &quot;type the character ^&quot;.
7523 &lt;End of help on this topic&gt;
7524 </BODY>
7525 </HTML>
7526 ======= h_compose_justify =======
7527 <HTML>
7528 <HEAD>
7529 <TITLE>Justify Command</TITLE>
7530 </HEAD>
7531 <BODY>
7532 <H1>Justify Command</H1>
7534 The Justify
7535 <!--chtml if pinemode="function_key"-->
7536 (F4)
7537 <!--chtml else-->
7538 (^J) 
7539 <!--chtml endif-->
7540 command reformats the text in the paragraph the cursor is in.
7541 Paragraphs are separated by one blank line or a line beginning with a space.
7542 This is useful when you have been editing a paragraph and the lines become
7543 uneven.  The text is left aligned or justified and the right is ragged.  If
7544 the text is already justified as typed with auto-wrap, no justification will
7545 be done.
7548 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7549 block of text, the Justify command is modified.
7550 Instead of automatically justifying the current paragraph you will be
7551 asked if you want to justify the paragraph, justify the selected region,
7552 or adjust the quote level of the selected region.
7553 Adjusting the quote level only works if you are using standard
7554 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7555 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7558 When composing a reply containing included text, the justify command
7559 will reformat text to the right of the 
7560 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7561 adding or removing indented lines as needed.  Paragraphs are separated
7562 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7563 line containing the indent string and one or more blank spaces.
7564 Included text that was previously indented (or &quot;quoted&quot;) is
7565 not preserved.
7568 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7569 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7570 use the standard
7571 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7574 &lt;End of help on this topic&gt;
7575 </BODY>
7576 </HTML>
7577 ======= h_compose_spell =======
7578 <HTML>
7579 <HEAD>
7580 <TITLE>Spell Check Command</TITLE>
7581 </HEAD>
7582 <BODY>
7583 <H1>Spell Check Command</H1>
7585 The &quot;To Spell&quot;
7586 <!--chtml if pinemode="function_key"-->
7587 (F12)
7588 <!--chtml else-->
7589 (^T) 
7590 <!--chtml endif-->
7591 command calls an external spell checking program to look over the
7592 message you are composing.  By default, Alpine uses
7594 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7596 if it knows where to find &quot;aspell&quot;.
7597 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7598 then the command used is
7600 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7602 Otherwise, the ancient &quot;spell&quot; command is used.
7604 For PC-Alpine, you must install the aspell library code that you
7605 may get from
7606 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7609 &lt;End of help on this topic&gt;
7610 </BODY>
7611 </HTML>
7612 ======= h_compose_alted =======
7613 <HTML>
7614 <HEAD>
7615 <TITLE>Alt Editor Command</TITLE>
7616 </HEAD>
7617 <BODY>
7618 <H1>Alt Editor Command</H1>
7620 The &quot;Alt Editor&quot; command's availability depends on the
7621 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7624 When the variable specifies a valid editor on your system, this
7625 command will launch it with the current text of your message
7626 already filled in.
7629 &lt;End of help on this topic&gt;
7630 </BODY>
7631 </HTML>
7632 ======= h_compose_readfile =======
7633 <HTML>
7634 <HEAD>
7635 <TITLE>Read File Command</TITLE>
7636 </HEAD>
7637 <BODY>
7638 <H1>Read File Command</H1>
7640 The &quot;Read File&quot;
7641 <!--chtml if pinemode="function_key"-->
7642 (F5)
7643 <!--chtml else-->
7644 (^R) 
7645 <!--chtml endif-->
7646 command allows you to copy in text from an existing file. You will be
7647 prompted for the name of a file to be inserted into the message.  The file
7648 name is relative to your home directory 
7649 <!--chtml if pinemode="running"-->
7650 (which, in the present configuration of your system, is
7651  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7652 <!--chtml endif-->
7653 or current working directory
7654 <!--chtml if pinemode="running"-->
7655 (which, at least for your current Alpine &quot;session,&quot; 
7656 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7657 <!--chtml endif-->, depending on the
7658 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7659 configuration setting; or, the file name must be specified as a full path name 
7660 <!--chtml if pinemode="os_windows"-->
7661 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7662 <!--chtml else-->
7663 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7664 <!--chtml endif-->
7665 (without the quotation marks).
7668 The file will be inserted where the cursor is located.  <B>The
7669 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7670 Unix machine but have files on a PC or Mac, the files must be transferred
7671 to the system Alpine is running on before they can be read.  Please ask your
7672 local computer support people about the correct way to transfer a file to 
7673 your Alpine system.
7676 &lt;End of help on this topic&gt;
7677 </BODY>
7678 </HTML>
7679 ======= h_config_tray_icon =======
7680 <HTML>
7681 <HEAD>
7682 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7683 </HEAD>
7684 <BODY>
7685 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7687 PC-Alpine only.
7689 This option restores a behavior of previous versions of PC-Alpine.
7690 These
7691 versions, when started, installed a PC-Alpine icon in the notification 
7692 tray of Window's Taskbar.  The primary use of this icon was to indicate
7693 new mail arrival by turning red (while the Taskbar icon remained green).
7694 Additionally, the icon now changes to yellow to signify that a mail folder
7695 has been closed unexpectedly.
7698 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7699 color its Taskbar entry's icon red (as well as the icon in the Window
7700 Title).  This feature is only provided for backwards compatibility.
7703 &lt;End of help on this topic&gt;
7704 </BODY>
7705 </HTML>
7706 ======= h_common_suspend =======
7707 <HTML>
7708 <HEAD>
7709 <TITLE>Suspend Command</TITLE>
7710 </HEAD>
7711 <BODY>
7712 <H1>Suspend Command</H1>
7714 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7715 enabled, you can, at almost any time, temporarily halt your Alpine session,
7716 <!--chtml if pinemode="os_windows"-->
7717 minimizing it into an icon.
7718 <!--chtml else-->
7719 and return to your system prompt.
7720 <!--chtml endif-->
7723 &lt;End of help on this topic&gt;
7724 </BODY>
7725 </HTML>
7726 ======= h_pipe_command =======
7727 <HTML>
7728 <HEAD>
7729 <TITLE>Pipe Command SubOptions</TITLE>
7730 </HEAD>
7731 <BODY>
7732 <H1>Pipe Command SubOptions</H1>
7734 By default, when you use the Pipe command, the processed text of the
7735 message is sent to the Unix command
7736 you specify and the output is captured by Alpine and shown to you.
7737 (This command is available in PC-Alpine, as well, but there aren't many
7738 Windows commands that work well with piping.)
7739 There are some sub-commands that may be used to alter this behavior.
7740 These are toggles that switch the behavior between two possibilities.
7741 They can be combined in any way you wish.
7743 By default, the prompt at the bottom of the screen looks like
7745 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7749 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7751 if you are piping more than one message.
7753 The sub-command options are:
7754 <DL>
7755    <DT>Shown Text or Raw Text</DT>
7756    <DD>This option toggles between sending the shown (processed) text
7757 of the message to the Unix command, and sending the
7758 raw (unprocessed) text of the message to the Unix command.
7759 The default is to send the shown text.
7760 The raw version of the message will contain all of the headers and any
7761 MIME encoding that the message contains.
7762 If you've selected the Raw Text then the prompt will have the additional word
7763 &quot;RAW&quot; in it, like
7765 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7767 You can experiment with this option by piping to something simple like the
7768 Unix &quot;cat&quot; command.
7769    </DD>
7770    <DT>Captured Output or Free Output</DT>
7771    <DD>This option toggles between having Alpine capture the output of
7772 the Unix pipe command for display, and not capturing it.
7773 If the command you are piping to is a filter that will produce output
7774 you want to view, then you want to capture that output
7775 for display (the default).
7776 If the Unix command doesn't produce output or handles the display itself,
7777 then you want free output.
7778 When you've selected the Free Output option the prompt will change to
7780 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7782    </DD>
7783    <DT>No Delimiter or With Delimiter</DT>
7784    <DD>This option controls whether or not a Unix mailbox style delimiter
7785 will come before the text of the message.
7786 This is the delimiter used in the common Unix mailbox format.
7787 It's the single line that begins with the five characters
7788 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7789 You'll usually only want to include this if the Unix command requires
7790 input in the format of a traditional Unix mailbox file.
7791 When you've selected the With Delimiter option the prompt will change to
7793 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7795    </DD>
7796    <DT>To Same Pipe or To Individual Pipes</DT>
7797    <DD>This option only shows up if you are running an aggregate
7798 pipe command.
7799 That is, the command was Apply Pipe, not just Pipe.
7800 You have the option of piping all of the selected messages through a
7801 single pipe to a single instance of the Unix command,
7802 or piping each individual message through a separate pipe to separate
7803 instances of the Unix command.
7804 The default is that all of the output will go through a single pipe
7805 to a single instance of the command.
7806 You can try this option with a command like &quot;less&quot;, with Free
7807 Output enabled.
7808 When you've selected the Individual Pipes option the prompt will change to
7810 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7812    </DD>
7813 </DL>
7816 As mentioned earlier, the options can be combined in any way you wish.
7817 You may leave them all off, turn them all on, or turn some of them on
7818 and some of them off.
7819 If you use the pipe command a second time in the same session the default
7820 options will be what you used the last time.
7823 &lt;End of help on this topic&gt;
7824 </BODY>
7825 </HTML>
7826 ========== h_emptydir_subfolder_name =========
7827 <HTML>
7828 <HEAD>
7829 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7830 </HEAD>
7831 <BODY>
7832 <H1>Enter Subfolder Name</H1>
7834 <P> 
7835 This is the name of a new subfolder in the directory you are creating.
7836 Because empty directories are hidden and therefore not useful, you must also
7837 create a subfolder in the directory you are creating in order that the
7838 directory remains visible.
7840 Alternatively, you may turn off the configuration feature
7841 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7842 so that empty directories remain visible.
7843 If you do that, you will not be required to create the subfolder when you
7844 create a directory.
7847 &lt;End of help on this topic&gt;
7848 </BODY>
7849 </HTML>
7850 ========== h_incoming_add_folder_name =========
7851 <HTML>
7852 <HEAD>
7853 <TITLE>ENTER FOLDER NAME</TITLE>
7854 </HEAD>
7855 <BODY>
7856 <H1>Enter Folder Name</H1>
7858 <P> 
7859 This is the name of the folder on the previously specified server.
7860 By default the folder name is interpreted as defining a section of your personal
7861 folder area.  This area and how you specify it are defined by the
7862 server, if one is specified.
7865 To define a folder outside the default area, prefix
7866 the path with the namespace to use when interpreting the
7867 given path.  If a namespace is specified, the folder name begins with the
7868 sharp (#) character followed by the name of the namespace
7869 and then the namespace's path-element-delimiter.  Aside from the
7870 name's format, namespaces can also imply access rights, content
7871 policy, audience, location, and, occasionally, access methods.
7874 Each server exports its own set (possibly of size one) of 
7875 namespaces.
7876 For a more detailed explanation read about
7877 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7880 To specify the default for INBOX on the server you can usually just enter
7881 &quot;INBOX&quot;, and the server will understand the special meaning of
7882 that word.
7885 &lt;End of help on this topic&gt;
7886 </BODY>
7887 </HTML>
7888 ========== h_incoming_add_folder_host =========
7889 <HTML>
7890 <HEAD>
7891 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7892 </HEAD>
7893 <BODY>
7894 <H1>Enter Incoming Folder Server</H1>
7896 You are being asked for the name of the server for use with this incoming
7897 folder.
7898 If the folder is on the machine where Alpine is running, then just enter
7899 RETURN without typing a server name.
7902 If the folder is on an IMAP server then type the server's name followed
7903 by RETURN.
7904 You may use the ^X command if the server is the same as the server that
7905 the INBOX is on.
7908 You may have to add optional extra information to the server name.
7909 For example, if the IMAP server is using a non-standard port number you
7910 would specify that by appending a colon (:) followed by the port number
7911 to the server name
7914 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7917 or you may need to specify a different protocol if the server is not an
7918 IMAP server. For example:
7921 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7924 for a POP server or
7927 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7930 for an NNTP news server.
7931 For an explanation of all of the possibilities, see
7932 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7933 for folders.
7936 There is a special command (^W) if you want to set up a folder that gets its
7937 mail from a
7938 <A HREF="h_maildrop">Mail Drop</A>.
7939 If you type that command, you will be prompted for the information for
7940 both the Mail Drop folder and the destination folder.
7943 &lt;End of help on this topic&gt;
7944 </BODY>
7945 </HTML>
7946 ========== h_incoming_add_inbox =========
7947 <HTML>
7948 <HEAD>
7949 <TITLE>ENTER INBOX SERVER</TITLE>
7950 </HEAD>
7951 <BODY>
7952 <H1>Enter INBOX Server</H1>
7954 You are being asked for the name of the server for use with
7955 the INBOX folder.
7956 Type the server's name followed by RETURN.
7959 You may have to add optional extra information to the server name.
7960 For example, if the server is using a non-standard port number you
7961 would specify that by appending a colon (:) followed by the port number
7962 to the server name
7965 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7968 or you may need to specify a different protocol if the server is not an
7969 IMAP server. For example:
7972 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7975 for a POP server.
7978 For an explanation of all of the possibilities, see
7979 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7980 for folders.
7983 If the INBOX folder is on the machine where Alpine is running, then just enter
7984 RETURN without typing a server name.
7987 There is a special command (^W) if you want to set up a folder that gets its
7988 mail from a
7989 <A HREF="h_maildrop">Mail Drop</A>.
7990 If you type that command, you will be prompted for the information for
7991 both the Mail Drop folder and the destination folder, which will be used
7992 as your INBOX folder.
7995 &lt;End of help on this topic&gt;
7996 </BODY>
7997 </HTML>
7998 ========== h_incoming_add_maildrop_destn =========
7999 <HTML>
8000 <HEAD>
8001 <TITLE>ENTER DESTINATION SERVER</TITLE>
8002 </HEAD>
8003 <BODY>
8004 <H1>Enter Destination Server</H1>
8006 You are being asked for the name of the server where the destination
8007 folder is for use with this Mail Drop incoming folder.
8008 That is, you are using a Mail Drop for this incoming folder and
8009 you've already entered
8010 the server and folder name for the Mail Drop.
8011 Now you need to enter the server for the destination folder
8012 where the mail should be copied to.
8013 Mail will come from the Mail Drop and be copied to the destination folder.
8016 Type the server's name followed by RETURN.
8017 If the folder is local to this computer, just type RETURN without entering
8018 a server name.
8021 You may have to add optional extra information to the server name.
8022 For example, if the server is using a non-standard port number you
8023 would specify that by appending a colon (:) followed by the port number
8024 to the server name
8027 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8030 For an explanation of all of the possibilities, see
8031 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8032 for folders.
8035 &lt;End of help on this topic&gt;
8036 </BODY>
8037 </HTML>
8038 ========== h_inbox_add_maildrop_destn =========
8039 <HTML>
8040 <HEAD>
8041 <TITLE>ENTER DESTINATION SERVER</TITLE>
8042 </HEAD>
8043 <BODY>
8044 <H1>Enter Destination Server</H1>
8046 You are being asked for the name of the server where the destination
8047 folder is for use with your Mail Drop INBOX.
8048 That is, you are using a Mail Drop for your INBOX and you've already entered
8049 the server and folder name for the Mail Drop.
8050 Now you need to enter the server for the destination folder
8051 where the mail should be copied to.
8052 Mail will come from the Mail Drop and be copied to the destination folder.
8055 Type the server's name followed by RETURN.
8056 If the folder is local to this computer, just type RETURN without entering
8057 a server name.
8060 You may have to add optional extra information to the server name.
8061 For example, if the server is using a non-standard port number you
8062 would specify that by appending a colon (:) followed by the port number
8063 to the server name
8066 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8069 For an explanation of all of the possibilities, see
8070 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8071 for folders.
8074 &lt;End of help on this topic&gt;
8075 </BODY>
8076 </HTML>
8077 ========== h_inbox_add_maildrop =========
8078 <HTML>
8079 <HEAD>
8080 <TITLE>ENTER MAILDROP SERVER</TITLE>
8081 </HEAD>
8082 <BODY>
8083 <H1>Enter Mail Drop Server</H1>
8085 You are being asked for the name of the Mail Drop server for use with
8086 your INBOX.
8089 Type the server's name followed by RETURN.
8092 You may have to add optional extra information to the server name.
8093 For example, if the server is using a non-standard port number you
8094 would specify that by appending a colon (:) followed by the port number
8095 to the server name
8098 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8101 or you may need to specify a different protocol if the server is not an
8102 IMAP server. For example:
8105 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8108 for a POP server or
8111 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8114 for an NNTP news server.
8115 For an explanation of all of the possibilities, see
8116 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8117 for folders.
8120 &lt;End of help on this topic&gt;
8121 </BODY>
8122 </HTML>
8123 ========== h_incoming_add_maildrop =========
8124 <HTML>
8125 <HEAD>
8126 <TITLE>ENTER MAILDROP SERVER</TITLE>
8127 </HEAD>
8128 <BODY>
8129 <H1>Enter Mail Drop Server</H1>
8131 You are being asked for the name of the Mail Drop server for use with
8132 this incoming folder.
8135 Type the server's name followed by RETURN.
8136 You may use the ^X command if the server is the same as the server that
8137 the INBOX is on.
8140 You may have to add optional extra information to the server name.
8141 For example, if the server is using a non-standard port number you
8142 would specify that by appending a colon (:) followed by the port number
8143 to the server name
8146 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8149 or you may need to specify a different protocol if the server is not an
8150 IMAP server. For example:
8153 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8156 for a POP server or
8159 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8162 for an NNTP news server.
8163 For an explanation of all of the possibilities, see
8164 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8165 for folders.
8168 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8169 RETURN without typing a server name.
8172 &lt;End of help on this topic&gt;
8173 </BODY>
8174 </HTML>
8175 ========== h_maildrop =========
8176 <HTML>
8177 <HEAD>
8178 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8179 </HEAD>
8180 <BODY>
8181 <H1>What is a Mail Drop?</H1>
8183 In some situaions it may make sense to have your mail delivered to one
8184 folder (the Mail Drop) and then when you want to read mail that has been
8185 delivered to the Mail Drop folder Alpine will move it to another
8186 destination folder.
8187 Often the Mail Drop will be a remote folder and messages will be moved from
8188 there to a local destination folder.
8191 One example where this might make sense is if the Mail Drop folder is accessible
8192 only with the POP protocol.
8193 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8194 mail from there to a local (on the same machine Alpine is running on)
8195 destination folder, where you'll read it.
8198 A Mail Drop may only be used as your Inbox or as an
8199 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8202 There is no attempt to synchronize the contents of the destination folder
8203 with the contents of the Mail Drop folder.
8204 All that happens is that all of the messages in the Mail Drop folder are
8205 copied to the destination folder and then they are deleted and expunged (if possible)
8206 from the Mail Drop folder.
8207 The next time a check for new mail is made, any messages in the Mail 
8208 Drop folder are once again copied to the destination folder and deleted
8209 and expunged from the Mail Drop folder.
8210 (If the Mail Drop folder is a news group, then the messages can't be
8211 expunged from the newsgroup. Instead, only Recent messages are copied from
8212 the newsgroup to the destination folder.)
8215 Configuration of a Mail Drop is a little different from configuration of
8216 a folder that does not use a Mail Drop because you have to specify two
8217 folder names instead of one.
8218 The two folders may be any types of folders that Alpine can normally use.
8219 They don't have to be a remote folder and a local folder, that is
8220 simply the most common usage.
8221 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8222 Drop to check for new mail.
8223 The new-mail checks will happen at the frequency set with the
8224 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8225 but with a minimum time
8226 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8227 between checks.
8228 Because of this minimum you may notice that new mail does not
8229 appear promptly when you expect it.
8230 The reason for this is to protect the server from over-zealous opening and
8231 closing of the Mail Drop folder.
8232 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8233 the end of the folder index, then the check will happen, regardless of how
8234 long it has been since the previous check.
8236 If there is new mail, that mail will be copied to the destination folder
8237 and then will be deleted from the Mail Drop.
8238 Note that using a Mail Drop with a local destination folder does not make
8239 sense if you read mail from more than one machine, because the mail is
8240 downloaded to the destination folder (which is accessible from only one
8241 machine) and deleted from the Mail Drop.
8243 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8246 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8249 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8251 The brackets are not literal.
8253 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8255 is a single character that does not appear in the MailDropFolder name.
8256 If the name doesn't contain spaces then it can be a space character.
8257 The two folder names are full technical
8258 <A HREF="h_valid_folder_names">folder names</A>
8259 as used by Alpine.
8260 Here are a couple examples to give you an idea what is being talked about:
8263 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8265 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8268 A #move folder may only be used as an
8269 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8270 an Inbox.
8271 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8272 on the
8273 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8274 option)
8275 the Add command has a subcommand &quot;Use Mail Drop&quot;
8276 which may be helpful for defining the folder in your Alpine configuration.
8277 The same is true when you edit the
8278 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8279 option in Setup/Config.
8280 Each of these configuration methods will also create the DestinationFolder
8281 if it doesn't already exist.
8282 If you are having problems, make sure the DestinationFolder exists.
8285 &lt;End of help on this topic&gt;
8286 </BODY>
8287 </HTML>
8288 ========== h_save =========
8289 <HTML>
8290 <HEAD>
8291 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8292 </HEAD>
8293 <BODY>
8294 <H1>Choose a Folder to Save Into</H1>
8296 After Exiting from this help text,
8297 type the name of the folder you want to save into and press RETURN.
8299 Press ^T to get a list of your folders to choose from.
8300 Press ^C to cancel the Save.
8302 If you have Folder Collections defined you may use
8303 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8304 the collection being saved to.
8306 If Tab Completion is enabled (it is enabled by default)
8307 you may type a Tab character to have Alpine complete the folder name for you.
8309 If Partial Match Lists is enabled (it is enabled by default) you may type
8310 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8312 If the Ctrl-R subcommand is present that means you can decide to Delete or
8313 not Delete the message you are saving after you save it.
8314 The label on that key gives the action to switch to.
8315 If it says Delete and you type Ctrl-R the label displayed will change to
8316 No Delete and the source message will be deleted after the save. If it
8317 says No Delete and you type Ctrl-R the label displayed will change to
8318 Delete and the message will not be deleted.
8319 You can control the default for the Delete parameter with the
8320 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8322 Similarly, if the Ctrl-W subcommand is present that means you can decide
8323 to Preserve the order of the messages being saved or not.
8324 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8325 will be in the same order as you see them in the source folder now.
8326 The opposite action (which is usually the default) is that you don't care
8327 about the order.
8328 The Saved messages may or may not be in the same order in the destination folder.
8329 There may be a performance penalty for choosing to save the messages in order.
8330 You can control the default for the Preserve Order parameter with the
8331 configuration feature
8332 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8335 If you haven't disabled the Save Input History and you've already done a
8336 Save earlier in this session then you may use the Up and Down arrows to retrieve
8337 a folder name used in a previous Save.
8340 &lt;End of help on this topic&gt;
8341 </BODY>
8342 </HTML>
8343 ============= h_simple_index ========================
8344 <HTML>
8345 <HEAD>
8346 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8347 </HEAD>
8348 <BODY>
8349 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8350 <!--chtml if pinemode="function_key"-->
8351 <PRE>
8352 Navigating the List of Messages               General Alpine Commands
8353 -------------------------------               -----------------------
8354  F5   Move to previous message                 F1   Show this help text
8355  F6   Move to next message
8356  F7   Show previous screen of messages
8357  F8   Show next screen of messages
8359 Message Selection Commands
8360 --------------------------
8361  F3   Exit the Message Select menu (canceling Send command)
8362  F4   Select the currently highlighted message
8363  F9   Mark the currently highlighted message as deleted
8364  F10  Undelete (remove deletion mark from) the highlighted message
8365 </PRE>
8366 <!--chtml else-->
8367 <PRE>
8368 Navigating the List of Messages               General Alpine Commands
8369 -------------------------------               -----------------------
8370   P  Move to previous message                  ?  Show this help text
8371   N  Move to next message
8372   -  Show previous screen of messages
8373  Spc (space bar) Show next screen of messages
8375 Message Selection Commands
8376 --------------------------
8377   E  Exit the Message Select menu (canceling Send command)
8378   S  Select the currently highlighted message
8379   D  Mark the currently highlighted message as deleted
8380   U  Undelete (remove deletion mark from) the highlighted message
8381 </PRE>
8382 <!--chtml endif-->
8384 <H2>Description of the Select Postponed Message Screen</H2>
8386 This screen allows you to select one of several previously postponed
8387 messages in order to continue composition.  Your options are very limited
8388 -- the screen is not meant to let you manipulate these messages.  However,
8389 you may now delete messages from this list.  Once you choose a message,
8390 Alpine reads it in and puts you into the regular message composer.
8393 Messages do not stay in this postponed state automatically.  If you select
8394 a message and then want to postpone it again, use the normal postpone
8395 (Ctrl-O) command in the composer.
8398 If you exit this screen without selecting a message, the Compose command
8399 that got you here is canceled.  Other than messages explicitly marked
8400 &quot;Deleted&quot;, no messages will be removed.
8403 &lt;End of help on this topic&gt;
8404 </BODY>
8405 </HTML>
8406 ============= h_collection_screen ========================
8407 <HTML>
8408 <HEAD>
8409 <TITLE>COLLECTION LIST screen</TITLE>
8410 </HEAD>
8411 <BODY>
8412 <H1>COLLECTION LIST screen</H1>
8414 The COLLECTION LIST screen is used to select one of your  
8415 collection definitions to display the folders they contain.  See
8416 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8417 detailed explanation of collections.<P>
8419 To manage your collection definitions (Add, Change, Delete, etc.), use
8420 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8421 MAIN MENU.
8424 &lt;End of help on this topic&gt;
8425 </BODY>
8426 </HTML>
8427 ============= h_collection_maint ========================
8428 <HTML>
8429 <HEAD>
8430 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8431 </HEAD>
8432 <BODY>
8433 <H1>SETUP COLLECTION LIST screen</H1>
8435 The SETUP COLLECTION LIST screen lets you manage your collection
8436 definitions.  See 
8437 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8438 for detailed explanation of collections.<P>
8440 Maintenance commands include:
8441 <DL>
8442 <DT>Change
8443 <!--chtml if pinemode="function_key"-->
8444 (F4)
8445 <!--chtml else-->
8447 <!--chtml endif-->
8448 </DT>
8450 <DD>Modify attributes of the selected collection definition.
8452 <DT>Add Cltn
8453 <!--chtml if pinemode="function_key"-->
8454 (F9)
8455 <!--chtml else-->
8457 <!--chtml endif-->
8458 </DT>
8460 <DD>Create a new collection definition.
8461 </DD>
8463 <DT>Del Cltn
8464 <!--chtml if pinemode="function_key"-->
8465 (F10)
8466 <!--chtml else-->
8468 <!--chtml endif-->
8469 </DT>
8471 <DD>Delete the selected collection definition.<BR>
8472 NOTE: The folders and directories referred to by the
8473 collection definition are <EM>NOT</EM> deleted.  Folders must
8474 be deleted, if that's what you wish to do, from the 
8475 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8476 individual folders in a collection.
8477 </DD>
8479 <DT>Shuffle
8480 <!--chtml if pinemode="function_key"-->
8481 (F11)
8482 <!--chtml else-->
8484 <!--chtml endif-->
8485 </DT>
8487 <DD>Change the order of the displayed collections.  Alpine will offer
8488 to move the currently selected collection one position UP
8489 or DOWN.
8490 </DD>
8491 </DL>
8494 &lt;End of help on this topic&gt;
8495 </BODY>
8496 </HTML>
8497 ============ h_what_are_collections ==========
8498 <HTML>
8499 <HEAD>
8500 <TITLE>Folder Collections Explained</TITLE>
8501 </HEAD>
8502 <BODY>
8503 <H1>Folder Collections Explained</H1>
8506 Those of you with simple mail configurations will just see a list of all the
8507 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8508 The special folders for INBOX, sent mail and saved messages
8509 will appear at the top of the list.  All others are in alphabetical order.
8511 If you
8512 or your system administrator have defined more than one collection or if
8513 you have a collection (for newsgroups or email folders) defined on your 
8514 system, then you will see the COLLECTION LIST screen first when choosing 
8515 FOLDER LIST from Alpine's MAIN MENU.
8517 <H2>Why have multiple folder collections?</H2>
8519 For Alpine users who only maintain email folders (and not too many) on one host, 
8520 a single folder collection is probably sufficient.<P>
8522 However, people who have more than one email account - for example, one 
8523 at their university, and one with their personal Internet Service Provider - 
8524 will have different sets of folders on different hosts, and they may want to
8525 access them all from the same installation of Alpine, rather than use different 
8526 software and/or log into other hosts to manipulate messages in different 
8527 accounts.  (If in doubt whether one of your email accounts can be accessed 
8528 with Alpine, contact the technical support people for that account.)  Even people
8529 who have only one email account on one host, but have dozens or
8530 hundreds of email folders, may want to arrange these folders together in a 
8531 meaningful way.<BR>
8532 That is where multiple collections come in.
8534 <H2>Types of Collections</H2>
8535 <DL>
8536 <DT>INCOMING FOLDERS</DT>
8537 <DD>&quot;Incoming Message Folders&quot; 
8538 is a special collection typically used to supplement your single INBOX.  
8539 All the folders here are meant to be ones that receive incoming messages, 
8540 which you intend to check more or less frequently.  
8541 You may have multiple folders like this because you or your systems 
8542 administrator have set up an external program or you may have set up
8543 Alpine to filter incoming 
8544 messages into different folders, based on certain criteria such as 
8545 sender, recipient, or subject; or because you have multiple accounts and 
8546 wish to check their INBOXes easily.  This collection is established by 
8547 setting the 
8548 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8549 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8550 MAIN MENU.
8551 </DD>
8553 <DT>NEWS</DT>
8554 <DD>You can also define a collection specifically for
8555 newsgroups.  Alpine does this for you implicitly when you 
8556 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8557 in your Alpine configuration.  The news collection appears last in the 
8558 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8559 and Alpine knows not to save messages there.
8560 </DD>
8562 <DT>DEFAULT COLLECTION</DT>
8563 <DD>This is the default collection for your saved and sent messages folders.
8564 </DD>
8565 </DL>
8569 <H2>Defining Collections</H2>
8571 In the absence of any folder-collection definitions, Alpine will assume a
8572 single default folder collection.
8573 <!--chtml if pinemode="os_windows"-->
8574 <!--chtml else-->
8575 If necessary, Alpine will create the directory
8576 &quot;mail&quot; in your Unix home directory 
8577 to hold your folders.
8578 <!--chtml endif-->
8580 You can use the 
8581 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8582 the MAIN MENU, to manage your collection list.  
8584 &lt;End of help on this topic&gt;
8585 </BODY>
8586 </HTML>
8587 ===== h_select_address_screen =====
8588 <HTML>
8589 <HEAD>
8590 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8591 </HEAD>
8592 <BODY>
8593 <H1>SELECT AN ADDRESS SCREEN</H1>
8594 <H2>COMMANDS</H2>
8595 <!--chtml if pinemode="function_key"-->
8596 <PRE>
8597 Available  Commands                        
8598 -------------------------------            
8599 F1  Show Help Text
8600 F3  Exit without selecting anything
8601 F4  Select the highlighted address
8602 F5  Move highlight to previous address
8603 F6  Move highlight to next address
8604 F7  Previous page of addresses
8605 F8  Next page of addresses
8606 F11 Print
8607 F12 WhereIs
8608 </PRE>
8609 <!--chtml else-->
8610 <PRE>
8611 Navigation                     General Alpine Commands
8612 -------------------------      -----------------------
8613  P  Prev Address                ?  Display this help text
8614  N  Next Address                E  Exit without selecting anything
8615  -  Previous page               %  Print
8616 Spc (space bar) Next page
8617  W  WhereIs
8619 Select Command
8620 ------------------------------------------------
8621  S  Select the highlighted address
8622 </PRE>
8623 <!--chtml endif-->
8625 <H2>Description of the Select Address Screen</H2>
8627 This screen gives you an easy way to select an address from all of
8628 the address book entries that match the prefix typed so far.
8630 <P><UL>
8631 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8632 </UL>
8634 &lt;End of help on this topic&gt;
8635 </BODY>
8636 </HTML>
8637 ===== h_select_rule_screen =====
8638 <HTML>
8639 <HEAD>
8640 <TITLE>SELECT A RULE SCREEN</TITLE>
8641 </HEAD>
8642 <BODY>
8643 <H1>SELECT A RULE SCREEN</H1>
8644 <H2>COMMANDS</H2>
8645 <!--chtml if pinemode="function_key"-->
8646 <PRE>
8647 Available  Commands                        
8648 -------------------------------            
8649 F1  Show Help Text
8650 F3  Exit without selecting anything
8651 F4  Select the highlighted rule
8652 F5  Move highlight to previous rule
8653 F6  Move highlight to next rule
8654 F7  Previous page of rules
8655 F8  Next page of rules
8656 F11 Print
8657 F12 WhereIs
8658 </PRE>
8659 <!--chtml else-->
8660 <PRE>
8661 Navigation                     General Alpine Commands
8662 -------------------------      -----------------------
8663  P  Prev Rule                   ?  Display this help text
8664  N  Next Rule                   E  Exit without selecting anything
8665  -  Previous page               %  Print
8666 Spc (space bar) Next page
8667  W  WhereIs
8669 Select Command
8670 ------------------------------------------------
8671  S  Select the highlighted rule
8672 </PRE>
8673 <!--chtml endif-->
8675 <H2>Description of the Select Rule Screen</H2>
8677 This screen just gives you an easy way to select a rule from all of your
8678 defined rules.
8679 The list of rules presented is the list of nicknames of all of the rules
8680 defined using Setup/Rules.
8681 For selecting messages, it is likely that the Indexcolor rules and possibly
8682 the Roles rules will be most useful.
8683 The others are there also, in case you find a use for them.
8685 In order for this to be useful for selecting messages, the nicknames of
8686 the rules have to be different.
8687 Alpine actually just gets the nickname of the rule that you select and then
8688 looks up that rule using the nickname.
8689 So if there are duplicate nicknames, the first rule that has that
8690 nickname will be used.
8692 <P><UL>
8693 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8694 </UL>
8696 &lt;End of help on this topic&gt;
8697 </BODY>
8698 </HTML>
8699 ===== h_select_priority_screen =====
8700 <HTML>
8701 <HEAD>
8702 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8703 </HEAD>
8704 <BODY>
8705 <H1>SELECT A PRIORITY SCREEN</H1>
8706 <H2>COMMANDS</H2>
8707 <!--chtml if pinemode="function_key"-->
8708 <PRE>
8709 Available  Commands                        
8710 -------------------------------            
8711 F1  Show Help Text
8712 F3  Exit without selecting anything
8713 F4  Select the highlighted priority
8714 F5  Move highlight to previous priority
8715 F6  Move highlight to next priority
8716 F7  Previous page of priorities
8717 F8  Next page of priorities
8718 F11 Print
8719 F12 WhereIs
8720 </PRE>
8721 <!--chtml else-->
8722 <PRE>
8723 Navigation                     General Alpine Commands
8724 -------------------------      -----------------------
8725  P  Prev Priority               ?  Display this help text
8726  N  Next Priority               E  Exit without selecting anything
8727  -  Previous page               %  Print
8728 Spc (space bar) Next page
8729  W  WhereIs
8731 Select Command
8732 ------------------------------------------------
8733  S  Select the highlighted priority
8734 </PRE>
8735 <!--chtml endif-->
8737 <H2>Description of the Select Priority Screen</H2>
8739 This screen gives you a way to select a priority for the message you are sending.
8740 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8741 Some mail programs will display an indication of the priority level to
8742 the recipient of the message, some will ignore it.
8743 Even in cases where the mail programs of both the sender and the recipient
8744 agree on the meaning of this header, keep in mind that it is
8745 something that the sender sets so it is only an indication
8746 of the priority that the sender attaches to the mail.
8747 Alpine can be made to display an indication of this priority in incoming
8748 messages by use of one of the tokens
8749 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8750 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8751 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8753 <P><UL>
8754 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8755 </UL>
8757 &lt;End of help on this topic&gt;
8758 </BODY>
8759 </HTML>
8760 ===== h_select_keyword_screen =====
8761 <HTML>
8762 <HEAD>
8763 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8764 </HEAD>
8765 <BODY>
8766 <H1>SELECT A KEYWORD SCREEN</H1>
8767 <H2>COMMANDS</H2>
8768 <!--chtml if pinemode="function_key"-->
8769 <PRE>
8770 Available  Commands                        
8771 -------------------------------            
8772 F1  Show Help Text
8773 F3  Exit without selecting anything
8774 F4  Select the highlighted keyword
8775 F5  Move highlight to previous keyword
8776 F6  Move highlight to next keyword
8777 F7  Previous page of keywords
8778 F8  Next page of keywords
8779 F11 Print
8780 F12 WhereIs
8781 </PRE>
8782 <!--chtml else-->
8783 <PRE>
8784 Navigation                     General Alpine Commands
8785 -------------------------      -----------------------
8786  P  Prev Keyword                ?  Display this help text
8787  N  Next Keyword                E  Exit without selecting anything
8788  -  Previous page               %  Print
8789 Spc (space bar) Next page
8790  W  WhereIs
8792 Select Command
8793 ------------------------------------------------
8794  S  Select the highlighted keyword
8795 </PRE>
8796 <!--chtml endif-->
8798 <H2>Description of the Select Keyword Screen</H2>
8800 This screen just gives you an easy way to select a keyword.
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_charset_screen =====
8814 <HTML>
8815 <HEAD>
8816 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8817 </HEAD>
8818 <BODY>
8819 <H1>SELECT A CHARACTER SET 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 highlighted character set
8828 F5  Move highlight to previous character set
8829 F6  Move highlight to next character set
8830 F7  Previous page of character sets
8831 F8  Next page of character sets
8832 F11 Print
8833 F12 WhereIs
8834 </PRE>
8835 <!--chtml else-->
8836 <PRE>
8837 Navigation                     General Alpine Commands
8838 -------------------------      -----------------------
8839  P  Prev Character Set          ?  Display this help text
8840  N  Next Character Set          E  Exit without selecting anything
8841  -  Previous page               %  Print
8842 Spc (space bar) Next page
8843  W  WhereIs
8845 Select Command
8846 ------------------------------------------------
8847  S  Select the highlighted character set
8848 </PRE>
8849 <!--chtml endif-->
8851 <H2>Description of the Select A Character Set Screen</H2>
8853 This screen just gives you an easy way to select a character set from the
8854 set of character sets Alpine knows about.
8855 The list presented will vary slightly depending on what option you are
8856 selecting the character set for.
8858 <P><UL>
8859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8860 </UL>
8862 &lt;End of help on this topic&gt;
8863 </BODY>
8864 </HTML>
8865 ===== h_select_multcharsets_screen =====
8866 <HTML>
8867 <HEAD>
8868 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8869 </HEAD>
8870 <BODY>
8871 <H1>SELECT CHARACTER SETS SCREEN</H1>
8872 <H2>COMMANDS</H2>
8873 <!--chtml if pinemode="function_key"-->
8874 <PRE>
8875 Available  Commands
8876 -------------------------------            
8877 F1  Show Help Text
8878 F3  Exit without selecting anything
8879 F4  Select the highlighted charset (or chosen charsets in ListMode)
8880 F5  Move highlight to previous charset
8881 F6  Move highlight to next charset
8882 F7  Previous page of charsets
8883 F8  Next page of charsets
8884 F9  Toggle choices when using ListMode
8885 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8886 F11 Print
8887 F12 WhereIs
8888 </PRE>
8889 <!--chtml else-->
8890 <PRE>
8891 Navigation                     General Alpine Commands
8892 -------------------------      -----------------------
8893  P  Prev Charset                ?  Display this help text
8894  N  Next Charset                E  Exit without selecting anything
8895  -  Previous page               %  Print
8896 Spc (space bar) Next page
8897  W  WhereIs
8899 Select Command
8900 ------------------------------------------------
8901  S  Select the highlighted charset (or chosen charsets in ListMode)
8902  L  Turn on ListMode (makes it easy to choose multiple charsets)
8903  1  Turn off ListMode
8904  X  Toggle choices when using ListMode
8905 </PRE>
8906 <!--chtml endif-->
8908 <H2>Description of the Select Character Set Screen</H2>
8910 This screen just gives you an easy way to select a character set or a list of
8911 character sets.
8912 The list of character sets presented is the list of all character sets known to
8913 Alpine.
8914 You may select other character sets by typing them in directly.
8916 <P><UL>
8917 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8918 </UL>
8920 &lt;End of help on this topic&gt;
8921 </BODY>
8922 </HTML>
8923 ===== h_select_multkeyword_screen =====
8924 <HTML>
8925 <HEAD>
8926 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8927 </HEAD>
8928 <BODY>
8929 <H1>SELECT KEYWORDS SCREEN</H1>
8930 <H2>COMMANDS</H2>
8931 <!--chtml if pinemode="function_key"-->
8932 <PRE>
8933 Available  Commands
8934 -------------------------------            
8935 F1  Show Help Text
8936 F3  Exit without selecting anything
8937 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8938 F5  Move highlight to previous keyword
8939 F6  Move highlight to next keyword
8940 F7  Previous page of keywords
8941 F8  Next page of keywords
8942 F9  Toggle choices when using ListMode
8943 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8944 F11 Print
8945 F12 WhereIs
8946 </PRE>
8947 <!--chtml else-->
8948 <PRE>
8949 Navigation                     General Alpine Commands
8950 -------------------------      -----------------------
8951  P  Prev Keyword                ?  Display this help text
8952  N  Next Keyword                E  Exit without selecting anything
8953  -  Previous page               %  Print
8954 Spc (space bar) Next page
8955  W  WhereIs
8957 Select Command
8958 ------------------------------------------------
8959  S  Select the highlighted keyword (or chosen keywords in ListMode)
8960  L  Turn on ListMode (makes it easy to choose multiple keywords)
8961  1  Turn off ListMode
8962  X  Toggle choices when using ListMode
8963 </PRE>
8964 <!--chtml endif-->
8966 <H2>Description of the Select Keyword Screen</H2>
8968 This screen just gives you an easy way to select a keyword or a list of
8969 keywords.
8970 The list of keywords presented is the list of all keywords defined in your 
8971 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8972 If you have given a keyword a nickname, that nickname is displayed
8973 instead of the actual keyword.
8975 <P><UL>
8976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8977 </UL>
8979 &lt;End of help on this topic&gt;
8980 </BODY>
8981 </HTML>
8982 ===== h_select_incoming_to_monitor =====
8983 <HTML>
8984 <HEAD>
8985 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8986 </HEAD>
8987 <BODY>
8988 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8989 <H2>COMMANDS</H2>
8990 <!--chtml if pinemode="function_key"-->
8991 <PRE>
8992 Available  Commands
8993 -------------------------------            
8994 F1  Show Help Text
8995 F3  Exit without selecting anything
8996 F4  Select the marked folders
8997 F5  Move highlight to previous folder
8998 F6  Move highlight to next folder
8999 F7  Previous page of folders
9000 F8  Next page of folders
9001 F9  Toggle choices on or off
9002 F11 Print
9003 F12 WhereIs
9004 </PRE>
9005 <!--chtml else-->
9006 <PRE>
9007 Navigation                     General Alpine Commands
9008 -------------------------      -----------------------
9009  P  Prev Folder                 ?  Display this help text
9010  N  Next Folder                ^C  exit without changing anything
9011  -  Previous page               %  Print
9012 Spc (space bar) Next page
9013  W  WhereIs
9015 Select Command
9016 ------------------------------------------------
9017  S  Select the marked folders
9018  X  Toggle choices on or off
9019 </PRE>
9020 <!--chtml endif-->
9022 <H2>Description of the Select Folders to Check Screen</H2>
9024 This screen is only useful if the feature
9025 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
9026 is set.
9027 By default, when you set that feature all of your incoming folders
9028 will be checked periodically for Unseen messages.
9029 By using this screen, you may restrict the set of monitored folders to
9030 a subset of all of the incoming folders.
9032 Mark the folders you want to monitor for Unseen messages with
9033 an &quot;X&quot;.
9034 When you've finished marking all your selections use the Select
9035 command to register your choices.
9036 To return to the default of checking all incoming folders
9037 delete all folders or unmark all folders.
9039 <P><UL>
9040 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9041 </UL>
9043 &lt;End of help on this topic&gt;
9044 </BODY>
9045 </HTML>
9046 ===== h_role_select =====
9047 <HTML>
9048 <HEAD>
9049 <TITLE>ROLES SCREEN</TITLE>
9050 </HEAD>
9051 <BODY>
9052 <H1>ROLES SCREEN</H1>
9053 <H2>ROLES COMMANDS</H2>
9054 <!--chtml if pinemode="function_key"-->
9055 <PRE>
9056 Available  Commands                        
9057 -------------------------------            
9058 F1  Show Help Text
9059 F3  Exit without a selection
9060 F4  Select a role to use in composition
9061 F5  Move to previous role
9062 F6  Move to next role
9063 F7  Previous page of roles
9064 F8  Next page of roles
9065 F11 Change Default Role
9066 F12 Whereis (search role nicknames)
9067 </PRE>
9068 <!--chtml else-->
9069 <PRE>
9070 Navigation                     General Alpine Commands
9071 -------------------------      -----------------------
9072  P  Prev Role                     ?  Display this help text
9073  N  Next Role                     E  Exit without a selection
9074  -  Previous page
9075 Spc (space bar) Next page
9076  W  WhereIs (search for word in role nicknames)
9078 Select Role Commands
9079 ------------------------------------------------
9080  [Return]  Select highlighted role
9081  D         Change Default Role
9082 </PRE>
9083 <!--chtml endif-->
9085 <H2>Description of the Roles Screen</H2>
9087 With this screen you select a role to be used in the composition of a
9088 message.
9089 Use the Previous and Next commands to highlight the role you wish to
9090 use.
9091 When you type carriage return you will be placed in the composer using the highlighted role.
9093 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9094 available unless you set them up.
9095 You may do so by using the Setup/Rules command on the MAIN MENU.
9097 By using the D command, you may set a default role that will persist until
9098 you change it or until you exit Alpine.
9099 The D command toggles through three states: set the default role, unset the
9100 default role, and leave the default role as it is.
9101 <P><UL>
9102 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9103 </UL>
9105 &lt;End of help on this topic&gt;
9106 </BODY>
9107 </HTML>
9108 ===== h_role_abook_select =====
9109 <HTML>
9110 <HEAD>
9111 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9112 </HEAD>
9113 <BODY>
9114 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9115 <H2>COMMANDS</H2>
9116 <!--chtml if pinemode="function_key"-->
9117 <PRE>
9118 Available  Commands                        
9119 -------------------------------            
9120 F1  Show Help Text
9121 F3  Exit screen without selecting anything
9122 F4  Select highlighted address book
9123 F5  Move to previous address book
9124 F6  Move to next address book
9125 F7  Previous page of address books
9126 F8  Next page of address books
9127 F12 Whereis
9128 </PRE>
9129 <!--chtml else-->
9130 <PRE>
9131 Navigation                     General Alpine Commands
9132 -------------------------      -----------------------
9133  P  Previous addrbook          ?  Display this help text
9134  N  Next addrbook
9135  -  Previous page
9136 Spc (space bar) Next page
9137  W  WhereIs
9139 Select Role Commands
9140 ------------------------------------------------
9141  S  Select highlighted address book
9142  E  Exit screen without selecting anything
9143 </PRE>
9144 <!--chtml endif-->
9146 <H2>Description of the Select Address Book Screen</H2>
9148 This screen helps you select one of your address books.
9149 Use the Previous and Next commands to highlight the address book you wish to
9150 select.
9151 <P><UL>
9152 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9153 </UL>
9155 &lt;End of help on this topic&gt;
9156 </BODY>
9157 </HTML>
9158 ======== h_rule_patterns =============
9159 <HTML>
9160 <HEAD>
9161 <TITLE>PATTERNS</TITLE>
9162 </HEAD>
9163 <BODY>
9164 <H1>PATTERNS</H1>
9165 Patterns are used with Roles, Filtering, Index Coloring,
9166 Scoring, Other Rules, and Search Rules.
9167 Patterns are compared with a message to see if there is a match.
9168 For Filtering, the messages being checked are all the messages in the
9169 folder, one at a time.
9170 For Index Line Coloring, each message that is visible on the screen is
9171 checked for matches with the Index Coloring Patterns.
9172 Roles are used with the Reply, Forward, and Compose commands.
9173 For Reply, the message used to compare the Pattern with is the message
9174 being replied to;
9175 for Forward, the message used to compare the Pattern with is the message
9176 being forwarded;
9177 and for Compose, there is no message, so the parts of the Pattern that depend
9178 on a message (everything other than Current Folder Type and the
9179 Beginning of Month and Year)
9180 are not used.
9181 Only the Current Folder Type matters for Compose (plus the Beginning of
9182 Month or Year, which you wouldn't usually use for a Role).
9183 For Scoring, the message being scored is compared with all of the Score
9184 Patterns, and the Score Values from the ones that match are added together to 
9185 get the message's score.
9186 For Other Rules, there is no message. Only the Current Folder Type is checked
9187 for Other Rules.
9189 Each Pattern has several possible parts, all of which are optional.
9190 In order for there to be a match, <EM>ALL</EM> of the
9191 <EM>defined</EM> parts of the Pattern must match the message.
9192 If a part is not defined it is considered a match, but note that a filtering
9193 Pattern must have at least one defined part or it will be ignored.
9194 For example, if the To pattern is not defined it will be
9195 displayed as
9197 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9199 That is considered a match because it is not defined.
9200 This means that the Pattern with nothing defined is a match if the
9201 Current Folder Type matches, but there is an exception that was mentioned
9202 in the previous paragraph.
9203 Because filtering is a potentially destructive action, filtering Patterns
9204 with nothing other than Current Folder Type defined are ignored.
9205 If you really want a filtering Pattern to match all messages (subject to
9206 Current Folder Type) the best way to do it is to define a Score interval
9207 that includes all possible scores.
9208 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9209 This can be used even if you haven't defined any rules to Set Scores.
9211 There are six predefined header patterns called the To, From, Sender, Cc, News,
9212 and Subject patterns.
9213 Besides those six predefined header patterns, you may add
9214 additional header patterns with header fieldnames of your choosing.
9215 You add an extra header pattern by placing the cursor on one of the
9216 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9217 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9218 and the Partic pattern is a header pattern that stands for
9219 Participant (From OR To OR Cc).
9220 (Defining the Recip pattern does not have the same effect as defining both
9221 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9222 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9223 Instead of comparing this pattern's text against only the contents of
9224 a particular header field, the text for the AllText pattern is compared
9225 with text anywhere in the message's header or body, and the text for the
9226 BodyText pattern is compared with text anywhere in the message's body.
9228 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9229 &quot;!&quot; &quot;toggle NOT&quot; command.
9230 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9231 &quot;!&quot; at the beginning of the pattern line.
9232 When the &quot;!&quot; is present, it reverses the meaning of the match.
9233 That is, if the pattern matches then it is considered to NOT be a match, and
9234 if it does not match it is considered to be a match.
9236 Don't make the mistake of putting the &quot;!&quot; in the data field for
9237 a pattern.
9238 For example, if you type the characters &quot;!urgent&quot; into the Subject
9239 pattern, the pattern will look like:
9241 <PRE>
9242  Subject pattern = !urgent
9243 </PRE>
9245 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9246 In order to match messages that do not have &quot;urgent&quot; in
9247 their Subject field, first type the characters &quot;urgent&quot; followed
9248 by carriage return for the value of the Subject pattern, then negate it
9249 by typing the &quot;!&quot; command.
9250 It should look like
9252 <PRE>
9253  ! Subject pattern = urgent
9254 </PRE>
9256 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9257 be a complete email address, part of an address, or a random set of
9258 characters to match against.
9259 It may also be a list of such patterns, which means you
9260 are looking for a match against the first pattern in the list <EM>OR</EM>
9261 the second pattern <EM>OR</EM> the third and so on.
9262 For example, a Subject pattern equal to
9264 <PRE>
9265  Subject pattern = urgent
9266                    emergency
9267                    alert
9268 </PRE>
9270 would match all messages with a subject that contained at least one
9271 of those words.
9272 It would also match subjects containing the words &quot;alerts&quot; or
9273 &quot;Urgently&quot;.
9275 The same example with &quot;NOT&quot; turned on would be
9277 <PRE>
9278  ! Subject pattern = urgent
9279                      emergency
9280                      alert
9281 </PRE>
9283 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9284 those words.
9285 You can use the &quot;Add Value&quot; command to add new words to the list,
9286 or you can enter them as a comma-separated list.
9288 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9289 present for a match.
9290 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9291 pattern2 must be present,
9292 and that is exactly what using a list does.)
9294 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9295 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9296 when checking for matches for Scoring.
9297 There are five similar settings that relate to the status of the message.
9298 These settings rely on the message being New or not, Deleted or not,
9299 Answered or not, Important or not, and Recent or not.
9300 There are also some other miscellaneous settings.
9301 The first is the Age of the message in days.
9302 Another is the Size of the message, in bytes.
9303 The third is a setting that detects whether or not the Subject of a
9304 message contains raw 8-bit characters (unencoded characters with the most
9305 significant bit set).
9306 There is a setting that detects whether or not this is the first time
9307 Alpine has been run this month (doesn't depend on individual messages),
9308 and another that detects whether or not this is the first time Alpine has
9309 been run this year.
9310 Other parts of the Pattern detect whether or not the From address of a
9311 message appears in your address book, whether or not certain keywords
9312 are set for a message, and whether or not certain character sets are
9313 used in a message.
9315 <H2>Parts of a Pattern</H2>
9317 <H3>Header patterns</H3>
9319 A header pattern is simply text that is searched for in the corresponding
9320 header field.
9321 For example, if a Pattern has a From header pattern with the value
9322 &quot;@company.com&quot;, then only messages that have a From header
9323 that contains the text &quot;@company.com&quot; will be possible
9324 matches.
9325 Matches don't have to be exact.
9326 For example, if the relevant field of a message contains the text
9327 &quot;mailbox@domain&quot; somewhere
9328 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9329 &quot;mailbox@domain&quot; are all matches.
9331 All parts of the Pattern must match so, for example,
9332 if a message matches a defined
9333 From pattern, it still must be checked against the other parts of the
9334 Pattern that have been defined.
9335 The To header pattern is a slightly special case.
9336 If the message being checked has a Resent-To header
9337 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9338 there are used in place of the addresses in the To header.
9339 This is only true for the To header.
9340 Resent-cc and Resent-From headers are never used unless you add them
9341 with the eXtraHdrs command.
9343 The meaning of a header pattern may be negated with the
9344 &quot;!&quot; &quot;toggle NOT&quot; command.
9345 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9346 &quot;!&quot; at the beginning of the pattern line.
9347 It would look something like
9349 <PRE>
9350  ! From pattern = susan@example.com
9351 </PRE>
9353 When the &quot;!&quot; is present, it reverses the meaning of the match.
9355 If you want to check for the presence of a header field but don't care
9356 about its value, then
9357 the empty pattern that you get by entering a pair of
9358 double quotes (&quot;&quot;) should match any message that
9359 has the corresponding header field.
9361 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9363 AllText patterns are just like header patterns except that the text is
9364 searched for anywhere in the message's headers or body, not just in the
9365 contents of a particular header field.
9368 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9370 BodyText patterns are just like header patterns except that the text is
9371 searched for anywhere in the message's body, not just in the
9372 contents of a particular header field.
9375 If there is more than one header pattern or AllText pattern or BodyText pattern
9376 for which you want to take the
9377 same action there is a shorthand notation that may be used.
9378 Any of these patterns may be a list of patterns instead of
9379 just a single pattern.
9380 If any one of the patterns in the list matches the message
9381 then it is considered a match.
9382 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9383 you to use the same role when replying to messages, you might have
9384 a To pattern that looks like
9386 <PRE>
9387  To pattern = company1.com
9388               company2.com
9389 </PRE>
9391 This means that if the mail you are replying to was addressed to
9392 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9393 then this Pattern is a match and the same actions will be taken.
9395 The meaning of an AllText or BodyText pattern may be negated with the
9396 &quot;!&quot; &quot;toggle NOT&quot; command.
9397 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9398 &quot;!&quot; at the beginning of the pattern line.
9399 When the &quot;!&quot; is present, it reverses the meaning of the match.
9401 A technicality: Since comma is the character used to separate multiple values
9402 in any of the fields that may have multiple values (such as header patterns,
9403 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9404 you must escape comma with a
9405 backslash (&#92;) if you want to include a literal comma in one of those fields.
9406 In other words, if you type a backslash followed by a comma it will
9407 be interpreted as a comma by Alpine, instead of as a separator between
9408 pattern values.
9409 All other backslashes (those not followed by a comma) are literal
9410 backslashes and should not be escaped.
9411 It's unlikely you'll ever need to enter a literal comma or backslash in
9412 any of the patterns.
9414 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9416 The &quot;Current Folder Type&quot; may be set to one of four different
9417 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9418 &quot;Specific&quot;.
9419 If the value is set to &quot;News&quot;, then the
9420 Pattern will only match if the currently open folder is a newsgroup.
9421 The value &quot;Email&quot; only matches if the current folder is not news and
9422 the value &quot;Any&quot; causes any folder to match.
9423 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9424 then you must fill in a value for &quot;Folder&quot;, which is on the line
9425 below the &quot;Specific&quot; line.
9426 In this case you will only get a match if the currently open folder is
9427 the specific folder you list.
9428 You may give a list of folders instead of just a single
9429 folder name, in which case the Pattern will match if the open folder is
9430 any one of the folders in the list.
9431 The name of each folder in the list may be either &quot;INBOX&quot;,
9432 the technical specification
9433 of the folder (like what appears in your configuration file) or, if the
9434 folder is one of your incoming folders, it may be the nickname you've given
9435 the folder.
9436 Here are some samples of specific folder names:
9438 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9440 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9442 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9444 The easiest way to fill in the &quot;Folder&quot; field is to use
9445 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9446 highlighted, or to use the &quot;Take&quot; command with the configuration
9447 feature
9448 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9449 turned on.
9451 When reading a newsgroup, there may be a performance penalty
9452 incurred when collecting the information necessary to check whether
9453 or not a Pattern matches a message.
9454 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9455 If you have Patterns with a Current Folder Type of either
9456 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9457 Index Line Coloring or Scoring, you may experience
9458 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9460 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9462 The &quot;Age Interval&quot; may be set to an interval of message
9463 ages that should be considered a match.
9464 Like the other parts of the Pattern, if it is unset it will be ignored.
9465 The Age Interval looks like
9467 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9469 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9470 than or equal to zero.
9471 The special value &quot;INF&quot; may be used for
9472 the max value. It represents infinity.
9474 Actually, this option may be defined as a list of intervals instead
9475 of just a single interval.
9476 The list is separated by commas.
9477 It can look like
9479 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9481 When there is an Age Interval defined, it is a match if the age, in days, of
9482 the message is contained in any of the intervals.
9483 The intervals include both endpoints.
9485 Even though this option is called Age, it isn't actually
9486 the <EM>age</EM> of the message.
9487 Instead, it is how many days ago the message arrived in one of your folders.
9488 If the current time is a little past midnight, then a message that arrived
9489 just before midnight arrived yesterday, even though the message is only
9490 a few minutes old.
9491 By default, the date being used is not the date in the Date
9492 header of the message.
9493 It is the date that the message arrived in one of your folders.
9494 When you Save a message from one folder to another that arrival date
9495 is preserved.
9496 If you would like to use the date in the Date header that is possible.
9497 Turn on the option
9498 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9499 near the bottom of the rule definition.
9500 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9502 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9504 The &quot;Size Interval&quot; may be set to an interval of message
9505 sizes that should be considered a match.
9506 Like the other parts of the Pattern, if it is unset it will be ignored.
9507 The Size Interval looks like
9509 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9511 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9512 than or equal to zero.
9513 The special value &quot;INF&quot; may be used for
9514 the max value. It represents infinity.
9516 Actually, this option may be defined as a list of intervals instead
9517 of just a single interval.
9518 The list is separated by commas.
9519 It can look like
9521 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9523 When there is a Size Interval defined, it is a match if the size, in bytes, of
9524 the message is contained in any of the intervals.
9525 The intervals include both endpoints.
9527 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9529 The &quot;Score Interval&quot; may be set to an interval of message
9530 scores that should be considered a match.
9531 Like the other parts of the Pattern, if it is unset it will be ignored.
9532 The Score Interval looks like
9534 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9536 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9537 negative integers, with min_score less than or equal to max_score.
9538 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9539 the min and max values to represent negative and positive infinity.
9541 Actually, a list of intervals may be used if you wish.
9542 A list would look like
9544 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9546 When there is a Score Interval defined, it is a match if the score for
9547 the message is contained in any of the intervals in the list.
9548 The intervals include the endpoints.
9549 The score for a message is calculated by looking at every Score rule defined and
9550 adding up the Score Values for the ones that match the message.
9551 When deciding whether or not a Pattern matches a message for purposes of
9552 calculating the score, the Score Interval is ignored.
9554 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9556 There are five separate message status settings.
9557 By default, all five are set to the value &quot;Don't care&quot;, which
9558 will match any message.
9559 The value &quot;Yes&quot; means that the particular status must be true
9560 for a match, and the value &quot;No&quot; means that the particular
9561 status must not be true for a match.
9562 For example, one of the five Message Status settings is whether a message
9563 is marked Important or not.
9564 A &quot;Yes&quot; means that the message must be Important to be
9565 considered a match and &quot;No&quot; means that the message must not be
9566 Important to be considered a match.
9567 The same is true of the other four message status settings that depend
9568 on whether or not the message is New; whether the message has 
9569 been Answered or not; whether the message has been Deleted or not, and
9570 whether the message is Recent or not. 
9572 The nomenclature for New and Recent is a bit confusing:
9574 New means that the message is Unseen.
9575 It could have been in your mailbox for a long time but if you haven't looked
9576 at it, it is still considered New.
9577 That matches the default Alpine index display that shows an N for such a
9578 message.
9580 Recent means that the message was added to this folder since the last time
9581 you opened the folder.
9582 Alpine also shows an N by default for these types of messages.
9583 If you were to run two copies of Alpine that opened a folder one right after
9584 the other, a message would only show up as Recent in (at most) the first
9585 Alpine session.
9587 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9589 Keywords are similar to Message Status, but they are chosen by the user.
9590 Provided the mail server allows for it, you may add a set of possible keywords
9591 to a folder and then you may set those keywords or not for each message
9592 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9593 The syntax of this part of the Pattern is similar to the header patterns.
9594 It is a list of keywords.
9595 The Keyword part of the Pattern is a match if the message has any of
9596 the keywords in the list set.
9597 Like other parts of the Pattern, if this is unset it will be ignored.
9599 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9601 A message may use one or more character sets.
9602 This part of the Pattern matches messages that make use of one or more of
9603 the character sets specified in the pattern.
9604 It will be considered a match if a message uses any of the character
9605 sets in the list you give here.
9608 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9609 GB2312) you may also use some shorthand names that Alpine provides.
9610 These names are more understandable shorthand names for sets of 
9611 character set names.
9612 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9613 Selecting one of these shorthand names is equivalent to selecting all of
9614 the character sets that make up the set.
9615 You can see all of these shorthand names and the lists of character sets
9616 they stand for by typing the &quot;T&quot; command with the Character
9617 Set pattern highlighted.
9618 The syntax of this part of the Pattern is similar to the header patterns
9619 and the Message Keywords pattern.
9620 It is a list of character sets (or shorthand names).
9621 The Character Set part of the Pattern is a match if the message uses any
9622 of the character sets in the list.
9623 Like other parts of the Pattern, if this is unset it will be ignored.
9625 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9627 It seems that lots of unwanted email contains unencoded 8-bit characters
9628 in the Subject.
9629 Normally, characters with the 8th bit set are not allowed in the Subject
9630 header unless they are MIME-encoded.
9631 This option gives you a way to match messages that have Subjects that
9632 contain unencoded 8-bit characters.
9633 By default, the value of this option is &quot;Don't care&quot;, which
9634 will match any message.
9635 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9636 the Subject of the message in order for there to be a match,
9637 and the value &quot;No&quot; is the opposite.
9638 Setting this option will affect performance in large folders because the
9639 subject of each message in the folder has to be checked.
9641 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9643 This option gives you a way to take some action once per month.
9644 By default, the value of this option is &quot;Don't care&quot;, which
9645 will always match.
9646 The value &quot;Yes&quot; means that this must be the first time Alpine has
9647 been run this month in order to count as a match,
9648 and the value &quot;No&quot; is the opposite.
9650 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9652 This option gives you a way to take some action once per year.
9653 By default, the value of this option is &quot;Don't care&quot;, which
9654 will always match.
9655 The value &quot;Yes&quot; means that this must be the first time Alpine has
9656 been run this year in order to count as a match,
9657 and the value &quot;No&quot; is the opposite.
9659 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9661 This option gives you a way to match messages that have an address
9662 that is in one of your address books.
9663 Only the simple entries in your address books are searched.
9664 Address book distribution lists are ignored!
9665 By default, the value of this option is &quot;Don't care&quot;, which
9666 will match any message.
9667 The value &quot;Yes, in any address book&quot; means the address
9668 from the message must be in at least one of your
9669 address books in order to be a match.
9670 The value &quot;No, not in any address book&quot;
9671 means none of the addresses may
9672 be in any of your address books in order to be a match.
9673 The values &quot;Yes, in specific address books&quot; and
9674 &quot;No, not in any of specific address books&quot; are similar but instead
9675 of depending on all address books you are allowed to give a list of address
9676 books to look in.
9677 The addresses from the message that are checked for are determined by the
9678 setting you have for &quot;Types of addresses to check for in address book&quot;.
9679 If you set this to &quot;From&quot; the From address from the message will
9680 be looked up in the address book.
9681 If you set it to only &quot;To&quot; then the To addresses will be used.
9682 If any of the To addresses are in the address book then it is considered
9683 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9684 You could set it to both From and To, in which case all of the From and To
9685 addresses are used.
9686 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9687 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9688 exists or the From address if there is no Reply-To address.
9689 Same for the Sender address.
9690 Setting this option may affect performance in large folders because the
9691 From and Reply-To of each message in the folder have to be checked.
9693 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9695 This is a command that is run with its standard input set to the message
9696 being checked and its standard output discarded.
9697 The full directory path should be specified.
9698 The command will be run and then its exit status will be checked against
9699 the Exit Status Interval, which defaults to just the value zero.
9700 If the exit status of the command falls in the interval, it is considered
9701 a match, otherwise it is not a match.
9704 This option may actually be a list of commands.
9705 The first one that exists and is executable is used.
9706 That makes it possible to use the same configuration with Unix Alpine and
9707 PC-Alpine.
9710 If none of the commands in the list exists and is executable then the rule
9711 is <EM>not</EM> a match.
9712 If it is possible that the command may not exist, you should be careful
9713 to structure your rules so that nothing destructive
9714 happens when the command does not exist.
9715 For example, you might have a filter that filters away spam when there is
9716 a match but does nothing when there is not a match.
9717 That would continue to work correctly if the command didn't exist.
9718 However, if you have a filter that filters away spam when there is not
9719 a match and keeps it when there is a match, that would filter everything
9720 if the categorizer command didn't exist.
9722 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9723 setup for the bogofilter filter.
9726 &lt;End of help on this topic&gt;
9727 </BODY>
9728 </HTML>
9729 ===== h_rules_roles =====
9730 <HTML>
9731 <HEAD>
9732 <TITLE>SETUP ROLES SCREEN</TITLE>
9733 </HEAD>
9734 <BODY>
9735 <H1>SETUP ROLES SCREEN</H1>
9736 <H2>SETUP ROLES COMMANDS</H2>
9737 <!--chtml if pinemode="function_key"-->
9738 <PRE>
9739 Available  Commands -- Group 1         Available Commands -- Group 2   
9740 -------------------------------        ------------------------------  
9741 F1  Show Help Text                      F1  Show Help Text             
9742 F2  See commands in next group          F2  See commands in next group
9743 F3  Back to MAIN Alpine menu
9744 F4  Change configuration for role
9745 F5  Move to previous role               F5  Include file in role config
9746 F6  Move to next role                   F6  Exclude file from config
9747 F7  Previous page of roles
9748 F8  Next page of roles
9749 F9  Add new role                        F9  Replicate existing role
9750 F10 Delete existing role
9751 F11 Shuffle the order of roles
9752 F12 Whereis (search role nicknames)
9753 </PRE>
9754 <!--chtml else-->
9755 <PRE>
9756 Navigation                     General Alpine Commands
9757 -------------------------      -----------------------
9758  P  Prev Role                     ?  Display this help text
9759  N  Next Role                     E  Back to MAIN Alpine menu
9760  -  Previous page
9761 Spc (space bar) Next page
9762  W  WhereIs (search for word in role nicknames)
9764 Setup Roles Commands
9765 ------------------------------------------------
9766  A  Add new role                  $  Shuffle the order of roles
9767  D  Delete existing role          C  Change configuration for highlighted role
9768  R  Replicate existing role
9769  I  Include file in role config   X  Exclude file from role config
9770 </PRE>
9771 <!--chtml endif-->
9773 <H2>Description of the Setup Roles Screen</H2>
9775 This screen lets you add, delete, modify, or change the order of the rules
9776 that determine the role you are playing when composing a message.
9778 You may play different roles depending on who you are replying to.
9779 For example, if you are replying to a message addressed to help-desk you
9780 may be acting as a Help Desk Worker.
9781 That role may require that you use a different return address and/or
9782 a different signature.
9784 Roles are optional.
9785 If you set up roles they work like this:  Each role has a set of
9786 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9787 considered for a particular use; a &quot;Pattern&quot;,
9788 which is used to decide which of the eligible roles is used; and a set
9789 of &quot;Actions&quot;, which are taken when that role is used.
9790 When you reply to a message, the message you are replying to is compared
9791 with the Patterns of the roles marked as eligible for use when replying.
9792 The comparisons start with the first eligible role and keep going until there
9793 is a match.
9794 If a match is found, the matching role's Actions are taken.
9796 It is also possible to set a default role and to change that role during
9797 your Alpine session.
9798 When you start Alpine no default role will be set.
9799 You may set or change the current default role by using the &quot;D&quot;
9800 command in the role selection screen.
9801 You'll see that screen while composing a message and being asked to select
9802 a role.
9803 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9804 compose a message.
9805 You may find a default role useful if you normally perform the duties of one
9806 of your roles for a while, then you switch to another role and stay in the
9807 new role for another period of time.
9808 It may be easier than using the Role Command to select the role each time you
9809 compose a message.
9811 <H2>Role Uses</H2>
9813 There are three types of use to be configured;
9814 one for Replying, one for Forwarding, and one for Composing.
9815 These indicate whether or not you want a role to be considered when you
9816 type the Reply, Forward, or Compose commands.
9817 (The Role command is an alternate form of the Compose command, and it is
9818 not affected by these settings.)
9819 Each of these Use types has three possible values.
9820 The value &quot;Never&quot;
9821 means that the role will never be considered as a candidate for use with
9822 the corresponding command.
9823 For example, if you set a role's Reply Use to Never, then when you Reply to
9824 a message, that role won't even be considered.
9825 (That isn't quite true. If the message you are replying to matches some other
9826 role that requires confirmation,
9827 then there will be a ^T command available which allows you to select a role
9828 from all of your roles, not just the reply-eligible roles.)
9831 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9832 both mean that you do want to consider this role when using the corresponding
9833 command.
9834 For either of these settings the role's Pattern will
9835 be checked to see if it matches the message.
9836 For Reply Use, the message used to compare the Pattern with is the message
9837 being replied to.
9838 For Forward Use, the message used to compare the Pattern with is the message
9839 being forwarded.
9840 For Compose Use, there is no message, so the parts of the Pattern that depend
9841 on a message (everything other than Current Folder Type) are ignored.
9842 In all cases, the Current Folder Type is checked if defined.
9843 If there is a match then this role will either be used without confirmation
9844 or will be the default when confirmation is asked for, depending on
9845 which of the two options is selected.
9846 If confirmation is requested, you will have a chance to
9847 choose No Role instead of the offered role, or to
9848 change the role to any one of your other roles (with the ^T command).
9850 <H2>Role Patterns</H2>
9852 In order to determine whether or not a message matches a role the message is
9853 compared with the Role's Pattern.
9854 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9855 Scoring, Other Rules, and Search Rules, so are described in only one place,
9856 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9858 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9859 a role that has all header patterns unset, the AllText pattern unset,
9860 the BodyText pattern unset,
9861 the Score Interval unset, and the Current Folder Type set to
9862 &quot;Any&quot; may be used as a default role.
9863 It should be put last in the list of roles since the matching
9864 starts at the beginning and proceeds until one of the roles is a match.
9865 If no roles at all match, then Alpine will
9866 use its regular methods of defining the role.
9867 If you wanted to, you could define a different &quot;default&quot; role
9868 for Replying, Forwarding, and Composing by setting the
9869 &quot;Use&quot; fields appropriately.
9871 <H2>Role Actions</H2>
9873 Once a role match is found, the role's Actions are taken.
9874 For each role there are several possible actions that may be defined.
9875 They are actions to set the From address, the Reply-To address,
9876 the Fcc, the Signature, the Template file, and Other Headers.
9878 <H3>Set From</H3>
9880 The From address is the address used on the From line of the message
9881 you are sending.
9883 <H3>Set Reply-To</H3>
9885 The Reply-To address is the address used on the Reply-To line of the message
9886 you are sending.
9887 You don't need a Reply-To address unless it is different from the From address.
9889 <H3>Set Other Headers</H3>
9891 If you want to set the value of the From or Reply-To headers, use
9892 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9893 If you want to set the values of other headers, use this field.
9894 This field is similar to the
9895 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9896 Each header you specify here must include the header tag
9897 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9898 and may optionally include a value for that header.
9899 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9900 for a header here will replace any value that already exists.
9901 For example, if you are Replying to a message there will be at least one
9902 address in the To header (the address you are Replying to).
9903 However, if you Reply using a role that sets the To header, that role's
9904 To header value will be used instead.
9906 <H3>Set Fcc</H3>
9908 The Fcc is used as the Fcc for the message you are sending.
9910 <H3>Set Signature or Set LiteralSig</H3>
9912 The Signature is the name of a file to be used as the signature file when
9913 this role is being used.
9914 If the name of the file has a vertical bar following it (|)
9915 then it is assumed that the file is a program that should be run to
9916 produce the signature.
9917 If the LiteralSig is set, then it is used instead of the signature file.
9918 LiteralSig is just a different way to store the signature.
9919 It is stored in the pine configuration file instead of in a separate
9920 signature file.
9921 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9922 either in the role or as the default signature in the Setup/Config screen,
9923 then the signature file is ignored.
9925 <H3>Set Template</H3>
9927 A Template is the name of a file to be included in the message when this
9928 role is being used.
9929 If the name of the file has a vertical bar following it (|)
9930 then it is assumed that the file is a program that should be run to
9931 produce the template.
9934 Both signature files and template files may be stored remotely on an IMAP
9935 server.
9936 In order to do that you just give the file a remote name.
9937 This works just like the regular
9938 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9939 option that is configured from the Setup/Configuration screen.
9940 A remote signature file name might look like:
9942 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9944 Once you have named the remote signature or template file you create its
9945 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9946 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9947 line of the role editor.
9950 Both signature files and template files (or the output of signature programs
9951 and template file programs) may contain special tokens
9952 that are replaced with contents
9953 that depend on the message being replied to or forwarded.
9954 See the help for the individual fields inside the role editor for more
9955 information on tokens.
9957 <H3>Use SMTP Server</H3>
9959 If this field has a value, then it will be used as the SMTP server
9960 to send mail when this role is being used (unless the SMTP server variable
9961 is set in the system-wide fixed configuration file).
9962 It has the same semantics as the
9963 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9964 variable in the Setup/Config screen.
9965 When you postpone the composition this SMTP server list will be saved
9966 with the postponed composition and it cannot be changed later.
9967 Because of that, you may want to make this a list of SMTP servers
9968 with the preferred server at the front of the list and alternate servers
9969 later in the list.
9972 If any of the actions are left unset, then the action depends on what
9973 is present in the &quot;Initialize settings using role&quot; field.
9974 If you've listed the nickname of another one of your roles there, then the
9975 corresponding action from that role will be used here.
9976 If that action is also blank, or if there is no nickname specified,
9977 then Alpine will do whatever it normally does to set these actions.
9978 This depends on other configuration options and features you've set.
9980 <H2>Command Descriptions</H2>
9982 <H3>Add</H3>
9984 The Add command is used to add a new role definition to your set of
9985 roles.
9986 The new role will be added after the highlighted role.
9988 <H3>Delete</H3>
9990 The Delete command deletes the currently highlighted role.
9992 <H3>Change</H3>
9994 The Change command lets you edit the nickname, Uses, Pattern,
9995 and Actions of the currently highlighted role.
9997 <H3>Shuffle</H3>
9999 The Shuffle command allows you to change the order of the roles.
10000 You may move the currently highlighted role up or down in the list.
10001 The order of the roles is important since the roles are tested for a
10002 match starting with the first role and continuing until a match is found.
10003 You should place the roles with more specific Patterns near the beginning
10004 of the list, and those with more general Patterns near the end so that
10005 the more specific matches will happen when appropriate.
10007 <H3>Replicate</H3>
10009 The Replicate command is used to copy an existing role and modify it.
10010 The new role will be added after the highlighted role.
10012 <H3>IncludeFile</H3>
10014 The IncludeFile command allows you to add a roles file to your configuration.
10015 Usually, your roles will be contained in your Alpine configuration file.
10016 If you wish, some or all of your roles may be stored in a separate file.
10017 If a roles file already exists (maybe it was made by somebody else using
10018 Alpine), you may insert it before the currently highlighted role.
10019 You may also insert an empty file or a file that does not yet exist.
10020 Once you have an empty roles file in your configuration, you may use
10021 the Shuffle command to move roles into it.
10022 In fact, that's the only way to get the initial role into the file.
10024 <H3>eXcludeFile</H3>
10026 The eXcludeFile command removes a roles file from your roles configuration.
10027 A limitation of the program is that in order to exclude a roles file
10028 that file must have at least one role
10029 in it, otherwise you won't be able to highlight a line in the file.
10030 So you may have to add a dummy role to the file in order to exclude the file.
10031 <P><UL>
10032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10033 </UL>
10035 &lt;End of help on this topic&gt;
10036 </BODY>
10037 </HTML>
10038 ===== h_rules_other =====
10039 <HTML>
10040 <HEAD>
10041 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10042 </HEAD>
10043 <BODY>
10044 <H1>SETUP OTHER RULES SCREEN</H1>
10045 <H2>SETUP OTHER RULES COMMANDS</H2>
10046 <!--chtml if pinemode="function_key"-->
10047 <PRE>
10048 Available  Commands -- Group 1         Available Commands -- Group 2   
10049 -------------------------------        ------------------------------  
10050 F1  Show Help Text                      F1  Show Help Text             
10051 F2  See commands in next group          F2  See commands in next group
10052 F3  Back to MAIN Alpine menu
10053 F4  Change configuration for rule
10054 F5  Move to previous rule               F5  Include file in rule config
10055 F6  Move to next rule                   F6  Exclude file from config
10056 F7  Previous page of rules
10057 F8  Next page of rules
10058 F9  Add new rule                        F9  Replicate existing rule
10059 F10 Delete existing rule
10060 F11 Shuffle the order of rules
10061 F12 Whereis (search rule nicknames)
10062 </PRE>
10063 <!--chtml else-->
10064 <PRE>
10065 Navigation                     General Alpine Commands
10066 -------------------------      -----------------------
10067  P  Prev rule                     ?  Display this help text
10068  N  Next rule                     E  Back to MAIN Alpine menu
10069  -  Previous page
10070 Spc (space bar) Next page
10071  W  WhereIs (search for word in rule nicknames)
10073 Setup Other Rules Commands
10074 ------------------------------------------------
10075  A  Add new rule                  $  Shuffle the order of rules
10076  D  Delete existing rule          C  Change configuration for highlighted rule
10077  R  Replicate existing rule
10078  I  Include file in rule config   X  Exclude file from rule config
10079 </PRE>
10080 <!--chtml endif-->
10082 <H2>Description of the Setup Other Rules Screen</H2>
10084 This is where you may set various actions that do not fit well into the
10085 other Rules categories.
10087 <H2>Patterns</H2>
10089 Other Rules are a little different from the rest of the Rules because
10090 they depend only on the current folder, and not on a particular message.
10091 In order to determine whether or not a rule's actions should be applied
10092 the current folder is compared with the rule's Pattern, which consists
10093 of only the Current Folder Type.
10094 Current Folder Type works the same for Other Rules as it does for Roles,
10095 Filtering, Index Coloring, and Scoring.
10096 Keep in mind that the only part of the Pattern that applies to Other
10097 Rules is the Current Folder Type when looking at the description of
10098 Patterns given
10099 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10101 <H2>The Actions</H2>
10103 <H3>Set Sort Order</H3>
10105 When you enter a new folder, these rules will be checked to see if you
10106 have set a sort order that is different from your default sort order.
10107 The default is set in the Setup/Config screen with
10108 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10109 If the Sort Order action is set, then the folder will be displayed sorted in
10110 that sort order instead of in the default order.
10112 A possible point of confusion arises when you change the configuration
10113 of the Sort Order for the currently open folder.
10114 The folder will normally be re-sorted when you go back to viewing the
10115 index.
10116 However, if you have manually sorted the folder with the
10117 Sort
10118 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10119 command, then it will not be re-sorted until the next time it is opened.
10121 <H3>Set Index Format</H3>
10123 When you enter a new folder, these rules will be checked to see if you
10124 have set an Index Format that is different from your default Index Format,
10125 which is set with the
10126 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10127 If so, the index will be displayed with this format instead of the default.
10129 <H3>Set Startup Rule</H3>
10131 When you enter a new folder, these rules will be checked to see if you
10132 have set a startup rule that is different from the default startup rule.
10133 The default for incoming folders is set in the Setup/Config screen with
10134 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10135 The default for folders other than INBOX that are not part of your
10136 incoming collection
10137 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10138 is to start with the last message in the folder.
10139 If the Startup Rule is set to something other than &quot;default&quot;,
10140 then the rule will determine which message will be the current message when
10141 the folder is first opened.
10143 The various startup rule possibilities work the same here as they do in
10144 the incoming collection, so check
10145 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10146 for more help.
10148 <H2>Command Descriptions</H2>
10150 <H3>Add</H3>
10152 The Add command is used to add a new rule definition to your set of
10153 rules.
10154 The new rule will be added after the highlighted rule.
10156 <H3>Delete</H3>
10158 The Delete command deletes the currently highlighted rule.
10160 <H3>Change</H3>
10162 The Change command lets you edit the nickname, Pattern,
10163 and Action of the currently highlighted rule.
10165 <H3>Shuffle</H3>
10167 The Shuffle command allows you to change the order of the rules.
10168 You may move the currently highlighted rule up or down in the list.
10169 The order of the rules is important since the rules are tested for a
10170 match starting with the first rule and continuing until a match is found.
10171 You should place the rules with more specific Patterns near the beginning
10172 of the list, and those with more general Patterns near the end so that
10173 the more specific matches will happen when appropriate.
10175 <H3>Replicate</H3>
10177 The Replicate command is used to copy an existing rule definition and modify it.
10178 The new rule will be added after the highlighted rule.
10180 <H3>IncludeFile</H3>
10182 The IncludeFile command allows you to add a rules file to your configuration.
10183 Usually, your rules will be contained in your Alpine configuration file.
10184 If you wish, some or all of your rules may be stored in a separate file.
10185 If a rules file already exists (maybe it was made by somebody else using
10186 Alpine), you may insert it before the currently highlighted rule.
10187 You may also insert an empty file or a file that does not yet exist.
10188 Once you have an empty rules file in your configuration, you may use
10189 the Shuffle command to move rules into it.
10190 In fact, that's the only way to get the initial rule into the file.
10192 <H3>eXcludeFile</H3>
10194 The eXcludeFile command removes a rules file from your rules configuration.
10195 A limitation of the program is that in order to exclude a rules file
10196 that file must have at least one rule
10197 in it, otherwise you won't be able to highlight a line in the file.
10198 So you may have to add a dummy rule to the file in order to exclude the file.
10199 <P><UL>
10200 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10201 </UL>
10203 &lt;End of help on this topic&gt;
10204 </BODY>
10205 </HTML>
10206 ===== h_rules_srch =====
10207 <HTML>
10208 <HEAD>
10209 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10210 </HEAD>
10211 <BODY>
10212 <H1>SETUP SEARCH RULES SCREEN</H1>
10213 <H2>SETUP SEARCH RULES COMMANDS</H2>
10214 <!--chtml if pinemode="function_key"-->
10215 <PRE>
10216 Available  Commands -- Group 1         Available Commands -- Group 2   
10217 -------------------------------        ------------------------------  
10218 F1  Show Help Text                      F1  Show Help Text             
10219 F2  See commands in next group          F2  See commands in next group
10220 F3  Back to MAIN Alpine menu
10221 F4  Change configuration for rule
10222 F5  Move to previous rule               F5  Include file in rule config
10223 F6  Move to next rule                   F6  Exclude file from config
10224 F7  Previous page of rules
10225 F8  Next page of rules
10226 F9  Add new rule                        F9  Replicate existing rule
10227 F10 Delete existing rule
10228 F11 Shuffle the order of rules
10229 F12 Whereis (search rule nicknames)
10230 </PRE>
10231 <!--chtml else-->
10232 <PRE>
10233 Navigation                     General Alpine Commands
10234 -------------------------      -----------------------
10235  P  Prev rule                     ?  Display this help text
10236  N  Next rule                     E  Back to MAIN Alpine menu
10237  -  Previous page
10238 Spc (space bar) Next page
10239  W  WhereIs (search for word in rule nicknames)
10241 Setup Search Rules Commands
10242 ------------------------------------------------
10243  A  Add new rule                  $  Shuffle the order of rules
10244  D  Delete existing rule          C  Change configuration for highlighted rule
10245  R  Replicate existing rule
10246  I  Include file in rule config   X  Exclude file from rule config
10247 </PRE>
10248 <!--chtml endif-->
10250 <H2>Description of the Setup Search Rules Screen</H2>
10252 One of the commands that becomes available when that feature is turned on
10253 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10254 screen to select a set of messages.
10255 One way of selecting messages is to use a Rule.
10256 All of the messages that match (or don't match if you wish)
10257 a Rule's Pattern will be selected.
10259 Any of your Rules may be used for this purpose.
10260 You might already have Rules set up for filtering, index line color, scores, or roles;
10261 and you may use any of those Rules with the Select command.
10262 However, you might find it more convenient to set up a separate set of Rules
10263 just for this purpose without having to worry about what other effects
10264 they may cause.
10265 That is the purpose of these Select Rules.
10268 Each rule has a &quot;Pattern&quot;
10269 that is used to decide which messages are selected when you use it with
10270 the Select command.
10272 <H2>Patterns</H2>
10274 In order to determine whether or not a message should be selected
10275 the message is compared with the rule's Pattern.
10276 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10277 Scoring, Other Rules, and Search Rules, so are described in only one place,
10278 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10280 <H2>Command Descriptions</H2>
10282 <H3>Add</H3>
10284 The Add command is used to add a new rule definition to your set of
10285 rules.
10286 The new rule will be added after the highlighted rule.
10288 <H3>Delete</H3>
10290 The Delete command deletes the currently highlighted rule.
10292 <H3>Change</H3>
10294 The Change command lets you edit the nickname and Pattern
10295 of the currently highlighted rule.
10297 <H3>Shuffle</H3>
10299 The Shuffle command allows you to change the order of the rules.
10300 This affects only the order they are presented in when you use the
10301 ^T subcommand of the Select by Rule command.
10302 You may move the currently highlighted rule up or down in the list.
10304 <H3>Replicate</H3>
10306 The Replicate command is used to copy an existing rule definition and modify it.
10307 The new rule will be added after the highlighted rule.
10309 <H3>IncludeFile</H3>
10311 The IncludeFile command allows you to add a rules file to your configuration.
10312 Usually, your rules will be contained in your Alpine configuration file.
10313 If you wish, some or all of your rules may be stored in a separate file.
10314 If a rules file already exists (maybe it was made by somebody else using
10315 Alpine), you may insert it before the currently highlighted rule.
10316 You may also insert an empty file or a file that does not yet exist.
10317 Once you have an empty rules file in your configuration, you may use
10318 the Shuffle command to move rules into it.
10319 In fact, that's the only way to get the initial rule into the file.
10321 <H3>eXcludeFile</H3>
10323 The eXcludeFile command removes a rules file from your rules configuration.
10324 A limitation of the program is that in order to exclude a rules file
10325 that file must have at least one rule
10326 in it, otherwise you won't be able to highlight a line in the file.
10327 So you may have to add a dummy rule to the file in order to exclude the file.
10328 <P><UL>
10329 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10330 </UL>
10332 &lt;End of help on this topic&gt;
10333 </BODY>
10334 </HTML>
10335 ===== h_rules_incols =====
10336 <HTML>
10337 <HEAD>
10338 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10339 </HEAD>
10340 <BODY>
10341 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10342 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10343 <!--chtml if pinemode="function_key"-->
10344 <PRE>
10345 Available  Commands -- Group 1         Available Commands -- Group 2   
10346 -------------------------------        ------------------------------  
10347 F1  Show Help Text                      F1  Show Help Text             
10348 F2  See commands in next group          F2  See commands in next group
10349 F3  Back to MAIN Alpine menu
10350 F4  Change configuration for rule
10351 F5  Move to previous rule               F5  Include file in rule config
10352 F6  Move to next rule                   F6  Exclude file from config
10353 F7  Previous page of rules
10354 F8  Next page of rules
10355 F9  Add new rule                        F9  Replicate existing rule
10356 F10 Delete existing rule
10357 F11 Shuffle the order of rules
10358 F12 Whereis (search rule nicknames)
10359 </PRE>
10360 <!--chtml else-->
10361 <PRE>
10362 Navigation                     General Alpine Commands
10363 -------------------------      -----------------------
10364  P  Prev rule                     ?  Display this help text
10365  N  Next rule                     E  Back to MAIN Alpine menu
10366  -  Previous page
10367 Spc (space bar) Next page
10368  W  WhereIs (search for word in rule nicknames)
10370 Setup Index Color Commands
10371 ------------------------------------------------
10372  A  Add new rule                  $  Shuffle the order of rules
10373  D  Delete existing rule          C  Change configuration for highlighted rule
10374  R  Replicate existing rule
10375  I  Include file in rule config   X  Exclude file from rule config
10376 </PRE>
10377 <!--chtml endif-->
10379 <H2>Description of the Setup Index Line Colors Screen</H2>
10381 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10382 This action is only available if your terminal is capable of displaying
10383 color and color display has been enabled with the
10384 <A HREF="h_config_color_style">Color Style</A> option within the
10385 Setup Color screen.
10386 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10387 This screen lets you add, delete, modify, or change the order of the rules
10388 that cause the lines in the MESSAGE INDEX to be displayed in different
10389 colors.
10391 Each rule has a &quot;Pattern&quot;,
10392 which is used to decide which of the rules is used; and the color that
10393 is used if the Pattern matches a particular message.
10395 <H2>Index Color Patterns</H2>
10397 In order to determine whether or not a message matches an Index Color Rule
10398 the message is compared with the rule's Pattern.
10399 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10400 Scoring, Other Rules, and Search Rules, so are described in only one place,
10401 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10404 If none of the Index Color rules is a match for a particular index line,
10405 then the color used is set using
10406 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10408 <H2>Index Line Color</H2>
10410 This is the color that index lines are colored when there is a matching
10411 Pattern.
10412 This colors the whole index line, except possibly the status letters,
10413 which may be colored separately using
10414 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10416 <H2>Command Descriptions</H2>
10418 <H3>Add</H3>
10420 The Add command is used to add a new rule definition to your set of
10421 rules.
10422 The new rule will be added after the highlighted rule.
10424 <H3>Delete</H3>
10426 The Delete command deletes the currently highlighted rule.
10428 <H3>Change</H3>
10430 The Change command lets you edit the nickname, Pattern,
10431 and Index Line Color of the currently highlighted rule.
10433 <H3>Shuffle</H3>
10435 The Shuffle command allows you to change the order of the rules.
10436 You may move the currently highlighted rule up or down in the list.
10437 The order of the rules is important since the rules are tested for a
10438 match starting with the first rule and continuing until a match is found.
10439 You should place the rules with more specific Patterns near the beginning
10440 of the list, and those with more general Patterns near the end so that
10441 the more specific matches will happen when appropriate.
10443 <H3>Replicate</H3>
10445 The Replicate command is used to copy an existing rule definition and modify it.
10446 The new rule will be added after the highlighted rule.
10448 <H3>IncludeFile</H3>
10450 The IncludeFile command allows you to add a rules file to your configuration.
10451 Usually, your rules will be contained in your Alpine configuration file.
10452 If you wish, some or all of your rules may be stored in a separate file.
10453 If a rules file already exists (maybe it was made by somebody else using
10454 Alpine), you may insert it before the currently highlighted rule.
10455 You may also insert an empty file or a file that does not yet exist.
10456 Once you have an empty rules file in your configuration, you may use
10457 the Shuffle command to move rules into it.
10458 In fact, that's the only way to get the initial rule into the file.
10460 <H3>eXcludeFile</H3>
10462 The eXcludeFile command removes a rules file from your rules configuration.
10463 A limitation of the program is that in order to exclude a rules file
10464 that file must have at least one rule
10465 in it, otherwise you won't be able to highlight a line in the file.
10466 So you may have to add a dummy rule to the file in order to exclude the file.
10467 <P><UL>
10468 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10469 </UL>
10471 &lt;End of help on this topic&gt;
10472 </BODY>
10473 </HTML>
10474 ===== h_rules_filter =====
10475 <HTML>
10476 <HEAD>
10477 <TITLE>SETUP FILTERING SCREEN</TITLE>
10478 </HEAD>
10479 <BODY>
10480 <H1>SETUP FILTERING SCREEN</H1>
10481 <H2>SETUP FILTERING COMMANDS</H2>
10482 <!--chtml if pinemode="function_key"-->
10483 <PRE>
10484 Available  Commands -- Group 1         Available Commands -- Group 2   
10485 -------------------------------        ------------------------------  
10486 F1  Show Help Text                      F1  Show Help Text             
10487 F2  See commands in next group          F2  See commands in next group
10488 F3  Back to MAIN Alpine menu
10489 F4  Change configuration for filter
10490 F5  Move to previous filter             F5  Include file in filter config
10491 F6  Move to next filter                 F6  Exclude file from config
10492 F7  Previous page of filters
10493 F8  Next page of filters
10494 F9  Add new filter                      F9  Replicate existing filter
10495 F10 Delete existing filter
10496 F11 Shuffle the order of filters
10497 F12 Whereis (search filter nicknames)
10498 </PRE>
10499 <!--chtml else-->
10500 <PRE>
10501 Navigation                     General Alpine Commands
10502 -------------------------      -----------------------
10503  P  Prev Filter                   ?  Display this help text
10504  N  Next Filter                   E  Back to MAIN Alpine menu
10505  -  Previous page
10506 Spc (space bar) Next page
10507  W  WhereIs (search for word in filter nicknames)
10509 Setup Filters Commands
10510 ------------------------------------------------
10511  A  Add new filter                $  Shuffle the order of filters
10512  D  Delete existing filter        C  Change configuration for highlighted filter
10513  R  Replicate existing filter
10514  I  Include file in filter config X  Exclude file from filter config
10515 </PRE>
10516 <!--chtml endif-->
10518 <H2>Description of the Setup Filtering Screen</H2>
10520 This screen lets you add, delete, modify, or change the order of the rules
10521 that determine the filtering Alpine does on folders you view.
10523 The software that actually delivers mail (the stuff that happens
10524 before Alpine is involved) for you is in a better position to do mail filtering
10525 than Alpine itself.
10526 If possible, you may want to look into using that sort of mail filtering to
10527 deliver mail to different folders, delete it, or forward it.
10528 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10530 Filtering is a way to automatically move certain messages from one folder
10531 to another or to delete messages.
10532 It can also be used to set message status (Important, Deleted, New,
10533 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10534 Alpine doesn't have the ability to forward mail to another address or
10535 to deliver vacation messages.
10537 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10538 When a folder is opened, when new mail arrives in an open folder, or
10539 when mail is Expunged from a folder; each
10540 message is compared with the Patterns of your filtering rules.
10541 The comparisons start with the first rule and keep going until there
10542 is a match.
10543 If a match is found, the message may be deleted or moved, depending on
10544 the setting of the Filter Action.
10545 If the message is not deleted, it may have its status altered.
10548 <EM>NOTE:</EM>
10549 When setting up a Pattern used to delete messages,
10550 it is recommended that you test the Pattern first with a &quot;Move&quot;
10551 folder specified in
10552 case unintended matches occur.  Messages that are deleted will be removed 
10553 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10554 next Expunge command or once the folder being filtered has been closed.
10556 <H2>Filter Patterns</H2>
10558 In order to determine whether or not a message matches a filter the message is
10559 compared with the Filter's Pattern.
10560 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10561 Scoring, Other Rules, and Search Rules, so are described in only one place,
10562 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10564 Since filtering is a potentially destructive action, if you have a filtering
10565 Pattern with nothing other than Current Folder Type set, that filtering
10566 rule is ignored.
10568 <H2>Filter Actions</H2>
10570 Once a filter match is found for a particular message, there are some actions
10571 that may be taken.
10572 First, the message may have its status changed.
10573 This is the same message status that you can manipulate manually using the
10574 <a href="h_common_flag">Flag Command</a>.
10575 There are always four elements of message status that you can control.
10576 You can set or clear the Important status, the New status, the Deleted
10577 status, and the Answered status.
10578 Of course, if the filter is going to delete the message,
10579 then there is no point in setting message status.
10580 You may also be able to set user-defined keywords for a message.
10581 Read a little about keywords in the help text for the
10582 <A HREF="h_common_flag">Flag</A> command.
10584 Second, the filter may delete or move the message.
10585 Deleting the message marks it Deleted and removes it from view.
10586 It is effectively gone forever (though it technically is still there until
10587 the next expunge command, which may happen implicitly).
10588 Moving the message moves it from the open folder into the folder
10589 listed on the &quot;Folder List&quot; line of the filter configuration.
10590 If you list more than one folder name (separated by commas) then the message
10591 will be copied to each of those folders.
10592 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10593 message is removed from the current folder.
10594 If you just want to set the messages status without deleting it from
10595 the folder, then set the filter action to
10596 &quot;Just Set Message Status&quot;.
10598 (There is no way to do a Copy instead of a Move, due to the difficulties
10599 involved in keeping track of whether or not a message has
10600 already been copied.)
10602 <H2>Command Descriptions</H2>
10604 <H3>Add</H3>
10606 The Add command is used to add a new filter definition to your set of
10607 filters.
10608 The new filter will be added after the highlighted filter.
10610 <H3>Delete</H3>
10612 The Delete command deletes the currently highlighted filter.
10614 <H3>Change</H3>
10616 The Change command lets you edit the nickname, Pattern,
10617 and Folder of the currently highlighted filter.
10619 <H3>Shuffle</H3>
10621 The Shuffle command allows you to change the order of the filters.
10622 You may move the currently highlighted filter up or down in the list.
10623 The order of the filters is important since the filters are tested for a
10624 match starting with the first filter and continuing until a match is found.
10625 You should place the filters with more specific Patterns near the beginning
10626 of the list, and those with more general Patterns near the end so that
10627 the more specific matches will happen when appropriate.
10629 <H3>Replicate</H3>
10631 The Replicate command is used to copy an existing filter and modify it.
10632 The new filter will be added after the highlighted filter.
10634 <H3>IncludeFile</H3>
10636 The IncludeFile command allows you to add a filters file to your configuration.
10637 Usually, your filters will be contained in your Alpine configuration file.
10638 If you wish, some or all of your filters may be stored in a separate file.
10639 If a filters file already exists (maybe it was made by somebody else using
10640 Alpine), you may insert it before the currently highlighted filter.
10641 You may also insert an empty file or a file that does not yet exist.
10642 Once you have an empty filters file in your configuration, you may use
10643 the Shuffle command to move filters into it.
10644 In fact, that's the only way to get the initial filter into the file.
10646 <H3>eXcludeFile</H3>
10648 The eXcludeFile command removes a filters file from your filters configuration.
10649 A limitation of the program is that in order to exclude a filters file
10650 that file must have at least one filter
10651 in it, otherwise you won't be able to highlight a line in the file.
10652 So you may have to add a dummy filter to the file in order to exclude the file.
10653 <P><UL>
10654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10655 </UL>
10657 <H3>Performance Considerations</H3>
10658 The number and type of patterns being tested can 
10659 adversely effect performance.  Issues to be aware
10660 of include:
10662 <UL>
10663   <LI> The more filters you have defined the longer it will take to run down
10664 the list.  Deleting unused filters is a good idea.
10665   <LI> Filtering in newsgroups served by an NNTP server will be slow
10666 if your patterns include tests other than &quot;From:&quot;
10667 or &quot;Subject:&quot;.
10668 </UL>
10670 &lt;End of help on this topic&gt;
10671 </BODY>
10672 </HTML>
10673 ===== h_rules_score =====
10674 <HTML>
10675 <HEAD>
10676 <TITLE>SETUP SCORING SCREEN</TITLE>
10677 </HEAD>
10678 <BODY>
10679 <H1>SETUP SCORING SCREEN</H1>
10680 <H2>SETUP SCORING COMMANDS</H2>
10681 <!--chtml if pinemode="function_key"-->
10682 <PRE>
10683 Available  Commands -- Group 1         Available Commands -- Group 2   
10684 -------------------------------        ------------------------------  
10685 F1  Show Help Text                      F1  Show Help Text             
10686 F2  See commands in next group          F2  See commands in next group
10687 F3  Back to MAIN Alpine menu
10688 F4  Change configuration for rule
10689 F5  Move to previous rule               F5  Include file in rule config
10690 F6  Move to next rule                   F6  Exclude file from config
10691 F7  Previous page of rules
10692 F8  Next page of rules
10693 F9  Add new rule                        F9  Replicate existing rule
10694 F10 Delete existing rule
10695 F11 Shuffle the order of rules
10696 F12 Whereis (search rule nicknames)
10697 </PRE>
10698 <!--chtml else-->
10699 <PRE>
10700 Navigation                     General Alpine Commands
10701 -------------------------      -----------------------
10702  P  Prev rule                     ?  Display this help text
10703  N  Next rule                     E  Back to MAIN Alpine menu
10704  -  Previous page
10705 Spc (space bar) Next page
10706  W  WhereIs (search for word in rule nicknames)
10708 Setup Scoring Commands
10709 ------------------------------------------------
10710  A  Add new rule                  $  Shuffle the order of rules
10711  D  Delete existing rule          C  Change configuration for highlighted rule
10712  R  Replicate existing rule
10713  I  Include file in rule config   X  Exclude file from rule config
10714 </PRE>
10715 <!--chtml endif-->
10717 <H2>Description of the Setup Scoring Screen</H2>
10719 Most people will not use scores at all, but if you do use them, here's how
10720 they work in Alpine.
10721 Using this screen, you may define Scoring rules.
10722 The score for a message is calculated by looking at every Score rule defined
10723 and adding up the Score Values for the ones that match the message.
10724 If there are no matches for a message, it has a score of zero.
10725 Message scores may be used a couple of ways in Alpine.
10727 <H3>Sorting by Score</H3>
10729 One of the methods you may use to sort message indexes is to sort by
10730 score.
10731 The scores of all the messages in a folder will be calculated and then
10732 the index will be ordered by placing the messages in order of ascending or
10733 descending score.
10735 <H3>Scores for use in Patterns</H3>
10737 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10738 category labeled &quot;Score Interval&quot;.
10739 When a message is being compared with a Pattern to check for a match, if
10740 the Score Interval is set only messages that have a score somewhere in
10741 the interval are a match.
10743 <H2>Scoring Rule Patterns</H2>
10745 In order to determine whether or not a message matches a scoring rule
10746 the message is compared with the rule's Pattern.
10747 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10748 Scoring, Other Rules, and Search Rules, so are described in only one place,
10749 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10752 Actually, Scoring rule Patterns are slightly different from the other types of
10753 Patterns because Scoring rule Patterns don't contain a Score Interval.
10754 In other words, when calculating the score for a message, which is done
10755 by looking at the Scoring rule Patterns, scores aren't used.
10757 <H2>Score Value</H2>
10759 This is the value that will be added to the score for a message if the
10760 rule's Pattern is a match.
10761 Each individual Score Value is an integer between -100 and 100, and the
10762 values from matching rules are added together to get a message's score.
10763 There is also a way to extract the value from a particular header of each
10764 message. See the help text for Score Value for further information.
10766 <H2>Command Descriptions</H2>
10768 <H3>Add</H3>
10770 The Add command is used to add a new scoring rule definition.
10771 The new rule will be added after the highlighted rule.
10773 <H3>Delete</H3>
10775 The Delete command deletes the currently highlighted scoring rule.
10777 <H3>Change</H3>
10779 The Change command lets you edit the nickname, Pattern,
10780 and Score Value of the currently highlighted scoring rule.
10782 <H3>Shuffle</H3>
10784 The Shuffle command allows you to change the order of the scoring rules.
10785 You may move the currently highlighted rule up or down in the list.
10786 The order of the rules is important since the rules are tested for a
10787 match starting with the first rule and continuing until a match is found.
10788 You should place the rules with more specific Patterns near the beginning
10789 of the list, and those with more general Patterns near the end so that
10790 the more specific matches will happen when appropriate.
10792 <H3>Replicate</H3>
10794 The Replicate command is used to copy an existing rule and modify it.
10795 The new rule will be added after the highlighted rule.
10797 <H3>IncludeFile</H3>
10799 The IncludeFile command allows you to add a rules file to your configuration.
10800 Usually, your rules will be contained in your Alpine configuration file.
10801 If you wish, some or all of your rules may be stored in a separate file.
10802 If a rules file already exists (maybe it was made by somebody else using
10803 Alpine), you may insert it before the currently highlighted rule.
10804 You may also insert an empty file or a file that does not yet exist.
10805 Once you have an empty rules file in your configuration, you may use
10806 the Shuffle command to move rules into it.
10807 In fact, that's the only way to get the initial rule into the file.
10809 <H3>eXcludeFile</H3>
10811 The eXcludeFile command removes a rules file from your rules configuration.
10812 A limitation of the program is that in order to exclude a rules file
10813 that file must have at least one rule
10814 in it, otherwise you won't be able to highlight a line in the file.
10815 So you may have to add a dummy rule to the file in order to exclude the file.
10816 <P><UL>
10817 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10818 </UL>
10820 &lt;End of help on this topic&gt;
10821 </BODY>
10822 </HTML>
10823 ===== h_direct_config =====
10824 <HTML>
10825 <HEAD>
10826 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10827 </HEAD>
10828 <BODY>
10829 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10830 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10831 <!--chtml if pinemode="function_key"-->
10832 <PRE>
10833 Available  Commands                        
10834 -------------------------------            
10835 F1  Show Help Text                         
10836 F3  Back to MAIN Alpine menu                 
10837 F4  Change configuration for directory server  
10838 F5  Move to previous directory server          
10839 F6  Move to next directory server              
10840 F7  Previous page of directory servers         
10841 F8  Next page of directory servers
10842 F9  Add new directory server
10843 F10 Delete existing directory server
10844 F11 Shuffle the order of directory servers
10845 F12 Whereis (search directory server titles)   
10846 </PRE>
10847 <!--chtml else-->
10848 <PRE>
10849 Navigation                     General Alpine Commands
10850 -------------------------      -----------------------
10851  P  Prev Directory Server         ?  Display this help text
10852  N  Next Directory Server         E  Back to MAIN Alpine menu
10853  -  Previous page
10854 Spc (space bar) Next page
10855  W  WhereIs (search for word in directory server titles)
10857 Setup LDAP Directory Server Commands
10858 ------------------------------------------------
10859  A  Add new directory server      $  Shuffle the order of directory servers
10860  D  Delete existing dir server    C  Change configuration for highlighted server
10861 </PRE>
10862 <!--chtml endif-->
10864 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10866 This screen lets you add, delete, modify, or change the order of your
10867 directory servers. You may also set some optional behavior for each server.
10868 The &quot;Add Dir&quot; command brings up a blank form to 
10869 fill in. You will have to supply at least the name of the LDAP server.
10870 You will often have to supply a search base to be used with that server,
10871 as well. Once the form has been brought up on your screen, there is help
10872 available for each of the options you may set.
10874 The &quot;Del Dir&quot; command allows you to remove a directory server
10875 from your configuration.
10877 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10878 The difference is that instead of bringing up a form for a new server
10879 configuration, you are changing the configuration of an existing entry.
10880 For example, you might want to correct a typing error, change a
10881 nickname, or change one of the options set for that server.
10883 The &quot;Shuffle&quot; command is used to change the order of directory
10884 servers.
10885 <P><UL>
10886 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10887 </UL>
10889 &lt;End of help on this topic&gt;
10890 </BODY>
10891 </HTML>
10892 ============= h_address_display ========================
10893 <HTML>
10894 <HEAD>
10895 <TITLE>SEARCH RESULTS INDEX</TITLE>
10896 </HEAD>
10897 <BODY>
10898 <H1>SEARCH RESULTS INDEX</H1>
10899 This screen shows the results, if any, of your Directory Server search.  
10900 Commands (besides those for screen navigation) are:
10901 <DL>
10902 <DT>View
10903 <!--chtml if pinemode="function_key"-->
10904 (F4)
10905 <!--chtml else-->
10907 <!--chtml endif-->
10908 </DT>
10909 <DD>See the full information for the selected entry.
10911 <DT>Compose
10912 <!--chtml if pinemode="function_key"-->
10913 (F9)
10914 <!--chtml else-->
10916 <!--chtml endif--></DT>
10917 <DD>Compose a message with the selected entry as the recipient.
10919 <DT>Role
10920 <!--chtml if pinemode="function_key"-->
10921 (F2)
10922 <!--chtml else-->
10924 <!--chtml endif--></DT>
10925 <DD>Compose a message with the selected entry as the recipient. This differs
10926 from Compose in that you may select a role before beginning your composition.
10928 <DT>Forward
10929 <!--chtml if pinemode="function_key"-->
10930 (F10)
10931 <!--chtml else-->
10933 <!--chtml endif--></DT>
10934 <DD>Send the full information for the selected entry as an 
10935 email message to someone else.
10937 <DT>Save
10938 <!--chtml if pinemode="function_key"-->
10939 (F11)
10940 <!--chtml else-->
10942 <!--chtml endif-->
10943 </DT>
10944 <DD>Save to your address book:
10945 <UL>
10946 <LI>the result of the search (as just found through your query) for the 
10947 selected entry; or 
10948 <LI>the selected entry for repeated Directory Server searching when used 
10949 in the future.
10950 </UL>
10951 or<BR>
10952 Export to a file (external to Alpine):
10953 <UL>
10954 <LI>the full information for the selected entry; or
10955 <LI>the email address from the selected entry; or
10956 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10957 </UL>
10958 <DT>WhereIs
10959 <!--chtml if pinemode="function_key"-->
10960 (F12)
10961 <!--chtml else-->
10963 <!--chtml endif-->
10964 </DT>
10965 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10966 displayed text, not the full records for each entry.)  
10967 </DL>
10968 &lt;End of help on this topic&gt;
10969 </BODY>
10970 </HTML>
10971 ============= h_address_select ========================
10972 <HTML>
10973 <HEAD>
10974 <TITLE>SEARCH RESULTS INDEX</TITLE>
10975 </HEAD>
10976 <BODY>
10977 <H1>SEARCH RESULTS INDEX</H1>
10978 This screen shows the results, if any, of your Directory Server search.  
10979 Commands (besides those for screen navigation) are:
10980 <DL>
10981 <DT>Select
10982 </DT>
10983 <DD>Select this entry for use.
10985 <DT>ExitSelect
10986 <DD>Exit without selecting any of the entries.
10988 <DT>WhereIs
10989 </DT>
10990 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10991 displayed text, not the full records for each entry.)  
10992 </DL>
10993 &lt;End of help on this topic&gt;
10994 </BODY>
10995 </HTML>
10996 ===== h_folder_maint =====
10997 <HTML>
10998 <HEAD>
10999 <TITLE>Help for Folder List</TITLE>
11000 </HEAD>
11001 <BODY>
11002 <H1>FOLDER LIST COMMANDS</H1>
11003 <!--chtml if pinemode="function_key"-->
11004 <PRE>
11005 Available Commands -- Group 1        Available Commands -- Group 2
11006 -------------------------------      ------------------------------
11007 F1  Show Help Text                    F1  Show Help Text               
11008 F2  See commands in next group        F2  See commands in next group  
11009 F3  MAIN MENU Screen                  F3  Quit Alpine                    
11010 F4  Select folder and view it         F4  MAIN MENU Screen
11011 F5  Move to previous folder
11012 F6  Move to next folder               F6  Specify a folder to go to
11013 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
11014 F8  Show next screen of listing       F8  Compose a message
11015 F9  Add a new folder                  F9  Print folder listing
11016 F10 Delete selected folder
11017 F11 Rename selected folder
11018 F12 Whereis (search folder names)
11020 Available Commands -- Group 3
11021 F1  Show Help Text
11022 F2  See commands in next group
11023 F5  Go to next new message
11024     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
11025 F8  Compose a message using roles
11026 F9  Export folder to a file
11027 F10 Import the file back to a folder
11028 </PRE>
11029 <!--chtml else-->
11030 <PRE>
11031 Navigating the Folder Screen            Operations on the Selected Folder
11032 ----------------------------            ---------------------------------
11033  P   Move to previous folder              V  View Index of selected folder
11034  N   Move to next folder                  D  Delete
11035  -   Show previous page of listing        R  Rename
11036 Spc  (space bar) Show next page           E  Export to file
11037                                           U  Import from file to folder
11039 FOLDER LIST Screen Commands              General Alpine Command
11040 ---------------------------              -----------------------
11041  A  Add a folder                          O  Show all other available commands
11042  G  Specify a folder to go to             ?  Show Help text
11043  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11044  W  Whereis (search folder names)         Q  Quit Alpine
11045  %  Print folder listing                  C  Compose a message
11046                                           #  Compose a message using roles
11047 </PRE>
11048 <!--chtml endif-->
11050 These commands are only available in the FOLDER LIST screen when the 
11051 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11052 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11053 <DT>Select:</DT>
11054 <DD>Select folders by certain criteria:<UL>
11055 <LI>All: of limited use, since there is no Apply command.
11056 <LI>by Property: <UL>
11057         <LI>folder contains messages not yet seen 
11058         <LI>folder contains new messages
11059         <LI>folder contains exactly as many, more, or fewer messages 
11060 than a given number
11061         </UL>
11062 <LI>by Text: <UL>
11063         <LI>contained in name of folder (Name Select)
11064         <LI>contained in messages in folder (Content Select)
11065         </UL>
11066 </UL></DD>
11068 <DT>Select current:</DT>
11069 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11070 add one or more folders to a set created with the Select command described 
11071 above.)</DD>
11072 <DT>Zoom mode:</DT>
11073 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11074 </DL>
11076 If the feature
11077 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11078 is set then the TAB key will display the number of recent messages and
11079 the total number of messages in the highlighted folder.
11081 The &quot;Export&quot; command causes the lowest common denominator style
11082 mailbox to be written to a file.
11083 If the file already exists, you are asked if you want to delete it.
11084 If you say No, then the operation is aborted.
11085 Export might be a reasonable way to store a backup or an archival copy of
11086 a folder.
11087 The exported-to file is a local file on the system where you are running Alpine.
11088 The &quot;Import&quot; command is the opposite of the Export command.
11089 It reads a file created by Export and asks where it should save it in your
11090 folders.
11091 This could be a new folder or an existing folder.
11092 If the folder already exists, the messages from the exported file will be
11093 appended to the folder.
11095 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11097 The purpose of the FOLDER LIST screen is to help you browse and manage
11098 the folders and directories (also known as &quot;hierarchy&quot;)
11099 contained within a collection.
11102 Folders and directories are arranged alphabetically across lines of
11103 the screen.  Directories, if present, are denoted by a special
11104 character at the end of the name known as the hierarchy delimiter
11105 (typically, &quot;/&quot;).  By default, folders and directories are
11106 mixed together.  The
11107 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11108 configuration option can be used to group directories toward the 
11109 beginning or end of the list.
11112 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11113 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11114 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11115 selected item.  Folder and directory management is provided via the
11116 Rename, Delete and Add commands.
11118 <P><CENTER>About Folders</CENTER>
11119 What are Folders?<P>
11121 Folders are simply files where messages are kept.  Every message has to be
11122 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11123 folder for sent mail and a folder for saved messages.<P>
11125 You may create as many other folders as you wish.  They must be given
11126 names that can be filenames on the filesystem.  
11129 You can move messages from one folder to another by opening the original
11130 folder and saving messages into the other folder just as you can save
11131 message from your INBOX to any other folder.<P>
11133 Folders are typically just files in the filesystem.  However, the files
11134 that are
11135 folders have some special formatting in them (so that Alpine knows where one
11136 message ends and another begins) and should <EM>not</EM> be edited outside of
11137 Alpine.  If you want copies of your messages in text files that you can edit
11138 or otherwise manipulate, use the Export command to copy them from Alpine into
11139 your regular file area.
11142 FOR MORE INFORMATION: See the section on
11143 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11145 <CENTER>About Directories</CENTER>
11147 A directory is simply a container used to group folders within a
11148 folder list.  You can create as many directories as you like.  And 
11149 directories can even contain directories themselves.
11152 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11153 to note that not all IMAP servers support directories.  If you find that
11154 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11155 then it's likely that directories are not supported by the server serving
11156 in that collection.
11159 Similarly, servers that do provide for directories may not do so in
11160 the same way.  On some servers, for example, each folder name you
11161 create is at the same time capable of being a directory.  When this
11162 happens, Alpine will display both the folder name and the name of the
11163 directory (with trailing hierarchy delimiter) in the folder list.
11166 Another issue with IMAP access, though with a much smaller set of servers,
11167 is that not all servers accept the request to list out the available
11168 folders and directories in the same way.  If you find yourself having
11169 trouble viewing folders on your server, you might investigate the
11170 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11171 feature.
11173 <UL>
11174 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11175 </UL>
11177 &lt;End of help on this topic&gt;
11178 </BODY>
11179 </HTML>
11180 ========= h_valid_folder_names ========
11181 <HTML>
11182 <HEAD>
11183 <TITLE>Explanation of Valid Folder Names</TITLE>
11184 </HEAD>
11185 <BODY>
11186 <H1>Folder Name Syntax Explained</H1>
11188 Once your folder collections are defined, you can usually refer to
11189 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11190 display.  However, understanding the complete syntax for folder names,
11191 both local and remote, is handy when using the Goto command and when
11192 you are adding new folder collections via the Setups/collectionList screen.
11194 An Alpine folder name looks like
11197 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11200 The square brackets ([]) mean that the part is optional.
11203 If there is no remote-specification, then the folder name is interpreted
11204 locally on the computer running Alpine.
11205 Local folder names depend on the operating system used by the computer 
11206 running Alpine, as well as the configuration of that system.  For example,
11207 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11208 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11209 system running Unix.
11212 Alpine users have the option of using folders that are stored on some other
11213 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11214 Access Protocol), or in the case of news, via NNTP (the Network News
11215 Transport Protocol).  To be able to access remote folders in Alpine, the
11216 remote host must be running the appropriate server software (imapd or
11217 nntpd) and you must correctly specify the name of the folder to Alpine,
11218 including the domain name of the remote machine. For example,
11220 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11222 could be a remote folder specification, and so could
11224 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11227 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11229 Note that in the case of remote folders, the directory/file path in the specification is 
11230 determined by the operating system of the remote computer, <B>not</B> by
11231 the operating system of the computer on which you are running Alpine.
11233 As you can tell, the name of the computer is in &#123;} brackets
11234 followed immediately by the name of the folder.  (In each of these cases the
11235 optional namespace is missing.)  If, as in these
11236 examples, there is no remote access protocol specified, then IMAP is
11237 assumed.  Check
11238 <A HREF="h_folder_server_syntax">here</A>
11239 for a more detailed look at what options can be placed between the brackets.
11240 If there are no brackets at all, then the folder name is interpreted locally
11241 on the computer on which you are running Alpine.
11244 To the right of the brackets when a server name is present, or at the
11245 start of the foldername if no server is present, the sharp sign,
11246 &quot;#&quot;, holds special meaning.  It indicates a folder name
11247 outside the area reserved for your personal folders.  In fact, it's
11248 used to indicate both the name of the folder, and a special phrase
11249 telling Alpine how to interpret the name that follows.
11252 So, for example, Alpine can be used to access a newsgroup that might be 
11253 available on your computer using:
11255 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11257 The sharp sign indicates the folder name is outside your personal
11258 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11259 interpret the remainder of the name as a newsgroup.
11262 Similarly, to access a newsgroup on your IMAP server, you might
11263 use something like:
11265 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11268 There are a number of such special phrases (or &quot;namespaces&quot;)
11269 available.  For a more detailed explanation read about
11270 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11273 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11274 names.  The name INBOX refers to your &quot;principal incoming
11275 message folder&quot; and will be mapped to the actual file name used for your
11276 INBOX on any given host.  Therefore, a name like
11277 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11278 store incoming mail for you on that particular host.
11281 &lt;End of help on this topic&gt;
11282 </BODY>
11283 </HTML>
11284 ======= h_folder_name_namespaces =======
11285 <HTML>
11286 <HEAD>
11287 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11288 </HEAD>
11289 <BODY>
11290 <H1>Folder Name Namespaces Explained</H1>
11292 An Alpine folder name looks like
11295 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11298 The local part of a folder name has an optional &quot;Namespace&quot; which
11299 tells Alpine how to interpret the rest of the name.
11301 <P> 
11302 By default the folder name is interpreted as defining a section of your personal
11303 folder area.  This area and how you specify it are defined by the
11304 server, if one is specified, or, typically, the home
11305 directory, if no server is defined.
11308 If a namespace is specified, it begins with the
11309 sharp, &quot;#&quot;, character followed by the name of the namespace
11310 and then the namespace's path-element-delimiter.  Aside from the
11311 path's format, namespaces can also imply access rights, content
11312 policy, audience, location, and, occasionally, access methods.
11315 Each server exports its own set (possibly of size one) of 
11316 namespaces.  Hence, it's likely communication with your server's
11317 administrator will be required for specific configurations.  Some of
11318 the more common namespaces, however, include:
11320 <DL>
11321 <DT>#news.</DT>
11322 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11323 names are hierarchically defined with each level delimited by a period.
11325 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11327 </DD>
11328 <DT>#public/</DT>
11329 <DD>This specifies a folder area that the server may export to the general
11330 public.
11331 </DD>
11332 <DT>#shared/</DT>
11333 <DD>This specifies a folder area that the server may export to groups
11334 of users.
11335 </DD>
11336 <DT>#ftp/</DT>
11337 <DD>This specifies a folder area that is the same as that it may have 
11338 exported via the &quot;File Transfer Protocol&quot;.
11339 </DD>
11340 <DT>#mh/</DT>
11341 <DD>This specifies the personal folder area associated with folders
11342 and directories that were created using the MH message handling system.
11343 </DD>
11344 <DT>#move/</DT>
11345 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11347 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11349 The #move namespace is followed by two folder names separated by a delimiter
11350 character.
11351 The delimiter character may be any character that does not appear in
11352 the MailDropFolder name.
11353 The meaning of #move is that mail will be copied from the MailDropFolder to
11354 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11355 Periodic checks at frequency
11356 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11357 time between checks set by
11358 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11359 are made for new mail arriving in the MailDropFolder.
11360 An example that copies mail from a POP inbox to a local folder follows
11362 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11364 To you it appears that mail is being delivered to the local folder when it
11365 is copied from the MailDropFolder, and you read mail from the local folder.
11367 Note that if the DestinationFolder does not exist then the messages are not
11368 copied from the MailDropFolder.
11369 A #move folder may only be used as an
11370 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11371 an Inbox.
11372 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11373 on the
11374 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11375 option)
11376 the Add command has a subcommand &quot;Use Mail Drop&quot;
11377 which may be helpful for defining the folder in your Alpine configuration.
11378 The same is true when you edit the
11379 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11380 option in Setup/Config.
11381 Each of these configuration methods will also create the DestinationFolder
11382 if it doesn't already exist.
11383 If you are having problems, make sure the DestinationFolder exists.
11384 You may find some more useful information about Mail Drops at
11385 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11386 </DD>
11387 </DL>
11390 In addition, the server may support access to other user's folders,
11391 provided you have suitable permissions.  Common methods use a prefix
11392 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11393 indicate the root of the other user's folder area.
11396 No, nothing's simple.
11399 &lt;End of help on this topic&gt;
11400 </BODY>
11401 </HTML>
11402 ============= h_whatis_vcard ========================
11403 <HTML>
11404 <HEAD>
11405 <TITLE>VCARD EXPLAINED</TITLE>
11406 </HEAD>
11407 <BODY>
11408 <H1>What is the vCard format?</H1>
11409 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11410 information about and among people and organizations electronically.  
11411 More information about vCard can be found (as of May 1998) on the WWW site 
11412 of the Internet Mail Consortium at the URL:
11414 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11416 &lt;End of help on this topic&gt;
11417 </BODY>
11418 </HTML>
11419 ===== h_folder_open =====
11420 <HTML>
11421 <HEAD>
11422 <TITLE>Explanation of Folder Selection</TITLE>
11423 </HEAD>
11424 <BODY>
11425 <BR>
11426 <BR>
11427 This screen is designed to allow you to quickly and easily survey your
11428 folders and select one to open.
11429 <!--chtml if pinemode="function_key"-->
11430 <PRE>
11431 Navigating the List of Folders             General Alpine Commands
11432 ------------------------------             -----------------------
11433  P   Move to previous folder               ?   Show this help text
11434  N   Move to next folder
11435  -   Show previous screen of folders
11436 Spc  (space bar) Show next screen
11437  W   WhereIs (search folder names)
11439 Folder Selection Commands
11440 -------------------------
11441  E   Exit the Folder Select menu (without selecting a folder)
11442  S   Select the currently highlighted folder
11443 </PRE>
11444 <!--chtml else-->
11445 <PRE>
11446 Navigating the List of Folders             General Alpine Commands
11447 ------------------------------             -----------------------
11448 F5   Move to previous folder               F1  Show this help text
11449 F6   Move to next folder
11450 F7   Show previous screen of folders
11451 F8   Show next screen of folders
11452 F12  WhereIs (search folder names)
11454 Folder Selection Commands
11455 -------------------------
11456 F3   Exit the Folder Select menu (without selecting a folder)
11457 F4   Select the currently highlighted folder
11458 </PRE>
11459 <!--chtml endif-->
11461 FOR MORE INFORMATION: See the section on
11462 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11464 &lt;End of help on this topic&gt;
11465 </BODY>
11466 </HTML>
11467 ===== h_folder_subscribe =====
11468 <HTML>
11469 <HEAD>
11470 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11471 </HEAD>
11472 <BODY>
11473 <H1>FOLDER SUBSCRIBE HELP</H1>
11475 This screen is designed to help you subscribe to newsgroups you are
11476 not currently subscribed to.  The screen display is a list of all
11477 available newsgroups (or possibly a partial list if you specified a
11478 partial name when entering the screen).  Groups you have already
11479 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11480 select a single new group to subscribe to by moving the cursor to that
11481 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11482 you may change into ListMode with the &quot;ListMode&quot; command.
11483 The display will change slightly so that each group has a checkbox in
11484 front of it.  Use the cursor and the Set/Unset command to place an
11485 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11488 When you are finished marking groups, the &quot;Subscribe&quot;
11489 command will subscribe you to those groups you have marked.  Note, you
11490 may not unsubscribe to groups with this command.  Instead of the
11491 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11492 UnSbscrbe command.
11495 <!--chtml if pinemode="function_key"-->
11496 <PRE>
11497 Navigating the List of Newsgroups          General Alpine Commands
11498 ---------------------------------          -----------------------
11499 F5   Move to previous group                F1   Show this help text
11500 F6   Move to next group
11501 F7   Show previous screen of groups
11502 F8   Show next screen of groups
11503 F12  WhereIs (search group names)
11504 F9   Use ListMode
11506 Group Selection Commands
11507 -------------------------
11508 F3  Exit the News Subscribe menu (without selecting any groups)
11509 F4  Subscribe to the currently highlighted newsgroup
11510 </PRE>
11511 <!--chtml else-->
11512 <PRE>
11513 Navigating the List of Newsgroups          General Alpine Commands
11514 ---------------------------------          -----------------------
11515  P   Move to previous group                ?   Show this help text
11516  N   Move to next group
11517  -   Show previous screen of groups
11518 Spc  (space bar) Show next screen
11519  W   WhereIs (search group names)
11520  L   Use ListMode
11522 Group Selection Commands
11523 -------------------------
11524  E   Exit the News Subscribe menu (without selecting any groups)
11525  S   Subscribe to the currently highlighted newsgroup
11526 </PRE>
11527 <!--chtml endif-->
11529 When in ListMode, there is an additional command for marking groups to
11530 subscribe to:
11532 <!--chtml if pinemode="function_key"-->
11533 <PRE>
11534 ListMode Commands
11535 -------------------------
11536 F9  Set or unset the highlighted group
11537 </PRE>
11538 <!--chtml else-->
11539 <PRE>
11540 ListMode Commands
11541 -------------------------
11542 X   Set or unset the highlighted group
11543 </PRE>
11544 <!--chtml endif-->
11546 &lt;End of help on this topic&gt;
11547 </BODY>
11548 </HTML>
11549 ===== h_folder_postnews =====
11550 <HTML>
11551 <HEAD>
11552 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11553 </HEAD>
11554 <BODY>
11555 This screen is designed to allow you to quickly and easily survey
11556 the available newsgroups and select one to post news to.
11558 <!--chtml if pinemode="function_key"-->
11559 <PRE>
11560 Navigating the List of Newsgroups          General Alpine Commands
11561 ---------------------------------          -----------------------
11562 F5   Move to previous group                F1  Show this help text
11563 F6   Move to next group
11564 F7   Show previous screen of groups
11565 F8   Show next screen of groups
11566 F12  WhereIs (search group names)
11568 Group Selection Commands
11569 -------------------------
11570 F3   Exit the Selection menu (without selecting a group)
11571 F4   Select the currently highlighted newsgroup
11572 </PRE>
11573 <!--chtml else-->
11574 <PRE>
11575 Navigating the List of Newsgroups          General Alpine Commands
11576 ---------------------------------          -----------------------
11577  P   Move to previous group                ?  Show this help text
11578  N   Move to next group
11579  -   Show previous screen of groups
11580 Spc  (space bar) Show next screen of groups
11581  W   WhereIs (search group names)
11583 Group Selection Commands
11584 -------------------------
11585  E   Exit the Selection menu (without selecting a group)
11586  S   Select the currently highlighted newsgroup
11587 </PRE>
11588 <!--chtml endif-->
11590 &lt;End of help on this topic&gt;
11591 </BODY>
11592 </HTML>
11593 ===== h_folder_save =====
11594 <HTML>
11595 <HEAD>
11596 <TITLE>Folder Select for Save Explained</TITLE>
11597 </HEAD>
11598 <BODY>
11599 This screen is designed to allow you to quickly and easily survey your
11600 folders and select one to use for saving the current message.
11603 <!--chtml if pinemode="function_key"-->
11604 <PRE>
11605 Navigating the List of Folders             General Alpine Commands
11606 ------------------------------             -----------------------
11607 F5   Move to previous folder               F1  Show this help text
11608 F6   Move to next folder
11609 F7   Show previous screen of folders
11610 F8   Show next screen of folders
11611 F12  WhereIs (search folder names)
11613 Folder Selection Commands
11614 -------------------------
11615 F3   Exit the Folder Select menu (without selecting a folder)
11616 F4   Select the currently highlighted folder
11617 F11  AddNew folder (just like Select, but you type in a new folder name)
11618 </PRE>
11619 <!--chtml else-->
11620 <PRE>
11621 Navigating the List of Folders             General Alpine Commands
11622 ------------------------------             -----------------------
11623  P   Move to previous folder               ?  Show this help text
11624  N   Move to next folder
11625  -   Show previous screen of folders
11626 Spc  (space bar) Show next screen of folders
11627  W   WhereIs (search folder names)
11629 Folder Selection Commands
11630 -------------------------
11631  E   Exit the Folder Select menu (without selecting a folder)
11632  S   Select the currently highlighted folder
11633  A   AddNew folder (just like Select, but you type in a new folder name)
11634 </PRE>
11635 <!--chtml endif-->
11637 FOR MORE INFORMATION: See the section on
11638 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11640 &lt;End of help on this topic&gt;
11641 </BODY>
11642 </HTML>
11643 ===== h_folder_fcc =====
11644 <HTML>
11645 <HEAD>
11646 <TITLE>Folder Select for Fcc Explained</TITLE>
11647 </HEAD>
11648 <BODY>
11649 This screen is designed to allow you to quickly and easily survey your
11650 folders and select one to use as the file carbon copy (fcc) for the
11651 current message.
11654 <!--chtml if pinemode="function_key"-->
11655 <PRE>
11656 Navigating the List of Folders             General Alpine Commands
11657 ------------------------------             -----------------------
11658 F5   Move to previous folder               F1  Show this help text
11659 F6   Move to next folder
11660 F7   Show previous screen of folders
11661 F8   Show next screen of folders
11662 F12  WhereIs (search folder names)
11664 Folder Selection Commands
11665 -------------------------
11666 F3   Exit the Folder Select menu (without selecting a folder)
11667 F4   Select the currently highlighted folder
11668 F11  AddNew folder (just like Select, but you type in a new folder name)
11669 </PRE>
11670 <!--chtml else-->
11671 <PRE>
11672 Navigating the List of Folders             General Alpine Commands
11673 ------------------------------             -----------------------
11674  P   Move to previous folder               ?  Show this help text
11675  N   Move to next folder
11676  -   Show previous screen of folders
11677 Spc  (space bar) Show next screen of folders
11678  W   WhereIs (search folder names)
11680 Folder Selection Commands
11681 -------------------------
11682  E   Exit the Folder Select menu (without selecting a folder)
11683  S   Select the currently highlighted folder
11684  A   AddNew folder (just like Select, but you type in a new folder name)
11685 </PRE>
11686 <!--chtml endif-->
11688 FOR MORE INFORMATION: See the section on
11689 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11691 &lt;End of help on this topic&gt;
11692 </BODY>
11693 </HTML>
11694 ===== h_folder_pattern_roles =====
11695 <HTML>
11696 <HEAD>
11697 <TITLE>Folder Select for Current Folder Explained</TITLE>
11698 </HEAD>
11699 <BODY>
11700 This screen is designed to allow you to quickly and easily survey your
11701 folders and select one to use as the specific Current Folder
11702 in a Pattern.
11705 <!--chtml if pinemode="function_key"-->
11706 <PRE>
11707 Navigating the List of Folders             General Alpine Commands
11708 ------------------------------             -----------------------
11709 F5   Move to previous folder               F1  Show this help text
11710 F6   Move to next folder
11711 F7   Show previous screen of folders
11712 F8   Show next screen of folders
11713 F12  WhereIs (search folder names)
11715 Folder Selection Commands
11716 -------------------------
11717 F3   Exit the Folder Select menu (without selecting a folder)
11718 F4   Select the currently highlighted folder
11719 F11  AddNew folder (just like Select, but you type in a new folder name)
11720 </PRE>
11721 <!--chtml else-->
11722 <PRE>
11723 Navigating the List of Folders             General Alpine Commands
11724 ------------------------------             -----------------------
11725  P   Move to previous folder               ?  Show this help text
11726  N   Move to next folder
11727  -   Show previous screen of folders
11728 Spc  (space bar) Show next screen of folders
11729  W   WhereIs (search folder names)
11731 Folder Selection Commands
11732 -------------------------
11733  E   Exit the Folder Select menu (without selecting a folder)
11734  S   Select the currently highlighted folder
11735  A   AddNew folder (just like Select, but you type in a new folder name)
11736 </PRE>
11737 <!--chtml endif-->
11739 FOR MORE INFORMATION: See the section on
11740 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11742 &lt;End of help on this topic&gt;
11743 </BODY>
11744 </HTML>
11745 ===== h_folder_stayopen_folders =====
11746 <HTML>
11747 <HEAD>
11748 <TITLE>Folder Select Explained</TITLE>
11749 </HEAD>
11750 <BODY>
11751 This screen is designed to allow you to quickly and easily survey your
11752 folders and select one to use as a Stay-Open folder.
11755 <!--chtml if pinemode="function_key"-->
11756 <PRE>
11757 Navigating the List of Folders             General Alpine Commands
11758 ------------------------------             -----------------------
11759 F5   Move to previous folder               F1  Show this help text
11760 F6   Move to next folder
11761 F7   Show previous screen of folders
11762 F8   Show next screen of folders
11763 F12  WhereIs (search folder names)
11765 Folder Selection Commands
11766 -------------------------
11767 F3   Exit the Folder Select menu (without selecting a folder)
11768 F4   Select the currently highlighted folder
11769 F11  AddNew folder (just like Select, but you type in a new folder name)
11770 </PRE>
11771 <!--chtml else-->
11772 <PRE>
11773 Navigating the List of Folders             General Alpine Commands
11774 ------------------------------             -----------------------
11775  P   Move to previous folder               ?  Show this help text
11776  N   Move to next folder
11777  -   Show previous screen of folders
11778 Spc  (space bar) Show next screen of folders
11779  W   WhereIs (search folder names)
11781 Folder Selection Commands
11782 -------------------------
11783  E   Exit the Folder Select menu (without selecting a folder)
11784  S   Select the currently highlighted folder
11785  A   AddNew folder (just like Select, but you type in a new folder name)
11786 </PRE>
11787 <!--chtml endif-->
11789 FOR MORE INFORMATION: See the section on
11790 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11792 &lt;End of help on this topic&gt;
11793 </BODY>
11794 </HTML>
11795 ===== h_folder_action_roles =====
11796 <HTML>
11797 <HEAD>
11798 <TITLE>Folder Select Explained</TITLE>
11799 </HEAD>
11800 <BODY>
11801 This screen is designed to allow you to quickly and easily survey your
11802 folders and select one to use as the folder into which messages
11803 matching this filter will be moved.
11806 <!--chtml if pinemode="function_key"-->
11807 <PRE>
11808 Navigating the List of Folders             General Alpine Commands
11809 ------------------------------             -----------------------
11810 F5   Move to previous folder               F1  Show this help text
11811 F6   Move to next folder
11812 F7   Show previous screen of folders
11813 F8   Show next screen of folders
11814 F12  WhereIs (search folder names)
11816 Folder Selection Commands
11817 -------------------------
11818 F3   Exit the Folder Select menu (without selecting a folder)
11819 F4   Select the currently highlighted folder
11820 F11  AddNew folder (just like Select, but you type in a new folder name)
11821 </PRE>
11822 <!--chtml else-->
11823 <PRE>
11824 Navigating the List of Folders             General Alpine Commands
11825 ------------------------------             -----------------------
11826  P   Move to previous folder               ?  Show this help text
11827  N   Move to next folder
11828  -   Show previous screen of folders
11829 Spc  (space bar) Show next screen of folders
11830  W   WhereIs (search folder names)
11832 Folder Selection Commands
11833 -------------------------
11834  E   Exit the Folder Select menu (without selecting a folder)
11835  S   Select the currently highlighted folder
11836  A   AddNew folder (just like Select, but you type in a new folder name)
11837 </PRE>
11838 <!--chtml endif-->
11840 FOR MORE INFORMATION: See the section on
11841 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11843 &lt;End of help on this topic&gt;
11844 </BODY>
11845 </HTML>
11846 ===== h_abook_config =====
11847 <HTML>
11848 <HEAD>
11849 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11850 </HEAD>
11851 <BODY>
11852 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11853 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11854 <!--chtml if pinemode="function_key"-->
11855 <PRE>
11856 Available  Commands                        
11857 -------------------------------            
11858 F1  Show Help Text                         
11859 F3  Back to MAIN Alpine menu                 
11860 F4  Change configuration for address book  
11861 F5  Move to previous address book          
11862 F6  Move to next address book              
11863 F7  Previous page of address books         
11864 F8  Next page of address books             
11865 F9  Add new address book                   
11866 F10 Delete existing address book           
11867 F11 Shuffle the order of address books     
11868 F12 Whereis (search address book titles)   
11869 </PRE>
11870 <!--chtml else-->
11871 <PRE>
11872 Navigation                     General Alpine Commands
11873 -----------------------        -----------------------
11874  P  Prev Address Book           ?  Display this help text
11875  N  Next Address Book           E  Back to MAIN Alpine menu
11876  -  Previous page
11877 Spc (space bar) Next page
11878  W  WhereIs (search for word in address book titles)
11880 Setup Address Books Commands
11881 ------------------------------------------------
11882  A  Add new address book          $  Shuffle the order of address books
11883  D  Delete existing address book  C  Change configuration for address book
11884 </PRE>
11885 <!--chtml endif-->
11887 <H2>Description of the Setup Address Books Screen</H2>
11889 This screen lets you add, delete, modify, or change the order of your
11890 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11891 fill in.  If you are adding a remote address book on an IMAP server
11892 you should fill in the name of the IMAP server.  Otherwise, leave
11893 that field blank.  (Note that remote IMAP address books are an Alpine
11894 concept and are unlikely to interoperate with other mail clients.)
11895 For a remote address book, fill in the name of the remote folder
11896 in the Folder field.  This should be a folder that is used only for
11897 this one purpose, not a general purpose folder you expect to store
11898 messages in.
11899 <P>If you are adding a local address book, fill in the
11900 Folder Name field with a local file name (e.g., .addressbook).
11902 <B>Please note:</B> Remote address books stored on an IMAP server are 
11903 of an entirely different format (namely, a special-purpose 
11904 &quot;mail folder&quot;) than that of the local addressbook familiar 
11905 to Alpine users.  Therefore, 
11906 you cannot use &quot;add a remote address book&quot; to make an existing 
11907 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11908 Alpine running on a different host.  
11911 The &quot;Del Abook&quot; command allows you to remove an address book
11912 from your configuration.  It will also ask you if you wish to remove
11913 the data for that address book, which would erase all traces of the
11914 address book if you answer Yes.
11917 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11918 The difference is that instead of adding a new address book to your
11919 configuration, you are changing the configuration of an existing entry.
11920 For example, you might want to correct a typing error or change a
11921 nickname.  The &quot;Change&quot; command is not a move command.  If you
11922 change the folder name or server name the data will not be moved for you.
11925 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11926 an address book toward another address book in the same group then
11927 the order of those two address books will be swapped.  If you shuffle
11928 the last Personal address book down towards the Global address book
11929 section, it will become a Global address book.  If you shuffle
11930 the first Global address book up it will become a Personal address
11931 book.  The main difference between Personal and Global address
11932 books is that Global address books are forced read-only.
11933 <P><UL>
11934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11935 </UL>
11937 &lt;End of help on this topic&gt;
11938 </BODY>
11939 </HTML>
11940 ===== h_abook_top =====
11941 <HTML>
11942 <HEAD>
11943 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11944 </HEAD>
11945 <BODY>
11946 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11947 <!--chtml if pinemode="function_key"-->
11948 <PRE>
11949 Available  Commands -- Group 1         Available Commands -- Group 2
11950 -------------------------------        ------------------------------
11951 F1  Show Help Text                      F1  Show Help Text
11952 F2  See commands in next group          F2  See commands in next group
11953 F3  Exit to MAIN MENU                   F3  Quit Alpine
11954 F4  View/Edit selected address book
11955 F5  Move to previous address book       F5  FOLDER LIST screen
11956 F6  Move to next address book           F6  Specify a folder to go to
11957 F7  Previous page                       F7  MESSAGE INDEX screen
11958 F8  Next page                           F9  Print list of address books
11959 F12 Whereis (search for word)
11960 </PRE>
11961 <!--chtml else-->
11962 <PRE>
11963 Navigation                       General Alpine Commands
11964 -----------------------          -----------------------
11965  P  Previous Entry                ?  Display this help text
11966  N  Next Entry                    O  Show all other available commands
11967  -  Previous page                 &lt;  Back to MAIN Alpine menu
11968 Spc (space bar) Next page         Q  Quit Alpine
11969  W  WhereIs (search for word)     L  FOLDER LIST screen
11970                                   G  Specify a folder to go to
11971 Address Book Commands             I  MESSAGE INDEX screen
11972 ------------------------------------------------
11973  &gt;  View/Edit selected address book
11974               or
11975  &gt;  Search on selected directory server
11977  %  Print list of address books and directory servers
11978 </PRE>
11979 <!--chtml endif-->
11981 <H2>Description of the Address Book List Screen</H2>
11983 From this screen you may choose which address book you wish to view
11984 or edit. For more information on address books, view one of your
11985 address books (with
11986 <!--chtml if pinemode="function_key"-->
11988 <!--chtml else-->
11989 &quot;&gt;&quot;
11990 <!--chtml endif-->)
11991 and see the Help Text there.<P>
11993 You may also choose a directory server on which to search for entries.
11994 You do that by highlighting the directory server line and using
11995 <!--chtml if pinemode="function_key"-->
11997 <!--chtml else-->
11998 &quot;&gt;&quot;
11999 <!--chtml endif-->.<P>
12001 If you wish to define new address books or directory servers go to the Main
12002 menu and choose Setup. You may then either choose to setup AddressBooks or
12003 Directory (among other things). It's possible that the Directory option
12004 will not be there if the Alpine you are using does not contain LDAP directory
12005 lookup functionality.
12007 <P><UL>
12008 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12009 </UL><P>
12010 &lt;End of help on this topic&gt;
12011 </BODY>
12012 </HTML>
12013 ===== h_abook_opened =====
12014 <HTML>
12015 <HEAD>
12016 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
12017 </HEAD>
12018 <BODY>
12019 <H1>THE ALPINE ADDRESS BOOK</H1>
12020 <H2>ADDRESS BOOK COMMANDS</H2>
12021 <PRE>
12022 <!--chtml if pinemode="function_key"-->
12023 Available  Commands -- Group 1         Available Commands -- Group 2   
12024 -------------------------------        ------------------------------  
12025 F1  Show Help Text                      F1  Show Help Text             
12026 F2  See commands in next group          F2  See commands in next group
12027 F3  Exit this screen                    F3  Quit Alpine                  
12028 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
12029 F5  Move to previous entry              F5  FOLDER LIST screen         
12030 F6  Move to next entry                  F6  Specify a folder to go to  
12031 F7  Previous page of address book       F7  MESSAGE INDEX screen        
12032 F8  Next page of address book           F8  Compose to entry using roles
12033 F9  Add new entry to address book       F9  Print address book         
12034 F10 Delete selected entry               F10 TakeAddr to another addrbook
12035 F11 Compose to selected entry           F11 Save or Export addrbook selections
12036 F12 Whereis (search address book)       F12 Forward entry by mail       
12038 Available Commands -- Group 3                                           
12039 ------------------------------                                          
12040 F3  Select                              F6  Zoom (or unZoom)            
12041 F5  Select Current                      F7  Apply Command to Selection  
12042 <!--chtml else-->
12043 Address Book Navigation        General Alpine Commands
12044 -----------------------        -----------------------
12045  P  Prev Address                  ?  Display this help text
12046  N  Next Address                  O  Show all other available commands
12047  -  Previous page of address book M  Back to MAIN MENU
12048 Spc (space bar) Next page         Q  Quit Alpine
12049  W  WhereIs (search for word      C  Compose message to selected addr
12050      or name in address book)     #  Compose to addr using roles
12051  &lt;  To List of Address Books if   L  FOLDER LIST screen
12052      more than one, else to MAIN  G  Specify a folder to go to
12053                                   I  MESSAGE INDEX screen
12055 Address Book Commands
12056 ----------------------------------------------------
12057  &gt;  View/Update selected entry    D  Delete selected entries
12058  %  Print address book            S  Save or Export address book selections
12059  F  Forward entries by mail       @  Add new entry to address book
12061  ;  Select command                Z  Toggle Zoom Mode
12062  :  Select highlighted entry      A  Apply command to selected entries
12064 <!--chtml endif-->
12065 </PRE>
12066 Note:  The presence or absence of the final four commands above is
12067 controlled by the option 
12068 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12071 <H2>Description of the Address Book Screen</H2>
12073 This screen lets you edit and manage entries in your address book.  It
12074 also acts as a short-cut for composing messages to people in the address
12075 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12076 message starts &quot;pre-addressed&quot; to whatever address book entry is
12077 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
12078 role to use in your composition.
12080 Alpine's address book helps you keep a list of addresses you send email to so
12081 you do not have to remember addresses that are often complex.  Each entry
12082 in the address book has five fields, all of them optional.  The three
12083 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12085         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12086         This is what you type in as you are addressing the message in the
12087         composer.  If there is a matching entry in your address book(s),
12088         Alpine will extract the corresponding FullName and Address fields to
12089         generate the actual address for your message.
12091         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12092 of the
12093         person or organization.  Usually the full names are put in last
12094         name first so they sort nicely in alphabetical order.  Whatever
12095         you put as the name here will appear on the message when it is
12096         finally delivered.  Examples:<PRE>
12097            Garcia Marquez, Gabriel
12098            Henscheid, Eckhard
12099            Alpine-Info mailing list
12100            Library materials renewal requests
12101            Kim An-guk
12102            &quot;George III, King of Great Britain, 1738-1820&quot;
12103 </PRE>
12104 (In the second-to-last example, no comma is used in the name so that 
12105 the family name appears first in the address book and when the entry is 
12106 used in the composer.
12107 In the last example, retaining the commas is intended; 
12108 double-quotation marks surround the name to 
12109 prevent the transposition of its parts when the entry is used in 
12110 the composer.)
12112         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12113         a valid Internet address that conforms to the Internet message
12114         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12116 The two fields that aren't usually visible are:<DL>
12118   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12119         message to this address to be saved in.  If this field is set, and
12120         this address is the first one in the message's To: header, then
12121         Alpine will use this folder name for the FCC in lieu of the normal
12122         FCC folder name.
12124   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12125         </DL>
12127 Due to screen width limitations, these last two fields do not show up in
12128 the normal ADDRESS BOOK display.  You may select the 
12129 &quot;View/Update&quot; command to
12130 view or modify them.  You may use the configuration variable
12131 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12132 to add these fields to your ADDRESS BOOK 
12133 display, or to modify the format of the display.
12135 <H2>Sorting the Address book</H2>
12137 By default, address book entries are sorted alphabetically on the full
12138 name with distribution lists sorted to the end.  Sorting can be changed by
12139 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12140 --assuming you have &quot;write&quot; permission for the address book file.
12142 Unlike the sorting of folders (which only changes presentation), sorting an
12143 address book actually changes the file as it is kept on the computer.  For
12144 this reason you won't be able to sort a shared or system-wide address
12145 book.
12147 <H2>Adding New Entries</H2>
12149 The easiest way to add new entries to your address book is to use the
12150 &quot;TakeAddr&quot; command when viewing a message.
12151 This command allows you to take addresses from the header and body of the
12152 message and put them into your address book, without having to type
12153 them in.
12156 To manually add a new entry from within the address book screen, use the AddNew
12157 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12158 Use this command both for adding a simple alias and for adding a
12159 distribution list.
12161 <H2>Distribution Lists</H2>
12163 Address book entries can be simple cases of aliases (a single nickname is linked
12164 to a single email address) or distribution lists (a single nickname
12165 pointing at more than one email address).  Each distribution list has a
12166 nickname, a full name and a list of addresses.  The addresses may be
12167 actual addresses or they may be other nicknames in your address book.
12168 They may even refer to other distribution lists.
12169 There's really no difference between a simple alias and a distribution list,
12170 other than the number of addresses.
12171 Therefore, you can turn a simple alias with one address into a distribution
12172 list simply by adding more addresses.
12173 To add entries to an existing list or alias
12174 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
12175 a single address from the list if the cursor is placed on the address;
12176 it will delete the entire distribution list if the cursor is on the
12177 nickname/fullname line.  View/Update may also be used to delete addresses
12178 from a list.
12180 Address field entries in distribution lists may take any one of three
12181 forms: a nickname existing in any of the defined address books, a normal
12182 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12183 fullname/address combination, e.g. &quot;John Smith
12184 &lt;jsmith@art.example.com&gt;&quot;.
12186 Distribution lists in Alpine address books can only be used by the person or
12187 people who have access to that address book.  They are not usually used to
12188 implement discussion groups, but can be used to facilitate small
12189 discussion groups if all the participants have access to the same shared
12190 address book.
12192 <H2>FCC and Comments</H2>
12194 As mentioned above, each entry in the address book also has two other optional
12195 fields, Fcc and Comments.  The command to look at or change either of these
12196 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
12197 Comments field is just for your own use.  The Fcc field overrides the
12198 default Fcc if this address is the first one on the To line.  The WhereIs
12199 command may be used to search for particular strings in the address book,
12200 including fields that are not visible (like Comment and Fcc by default).
12202 <H2>Aggregate Operations</H2>
12204 If the feature
12205 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12206 is turned on (the default), then the four commands &quot;Select&quot;,
12207 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12208 are available.  The two selection commands allow you to mark a set of
12209 address book entries as being selected.  If you have more than one address
12210 book, the selections may be in more than one of those address books.
12211 The &quot;Zoom&quot; command will toggle between displaying only the selected
12212 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12213 apply one of the regular address book commands to all of the selected
12214 entries.  Usually the address book commands apply to only the entry
12215 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12216 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12217 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12219 <H2>Exporting and Forwarding Address book entries</H2>
12221 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
12222 address book entry is placed in a plain text file in your home directory
12223 <!--chtml if pinemode="running"-->
12224 (which, in the present configuration of your system, is
12225  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12226 <!--chtml endif-->
12227 or current working directory
12228 <!--chtml if pinemode="running"-->
12229 (which, at least for your current Alpine &quot;session,&quot; 
12230 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12231 <!--chtml endif-->, depending on the 
12232 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12233 configuration setting.  If you have some entries selected and use the
12234 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12235 placed in the text file.
12237 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12238 address book entry is placed in a special attachment and you are put into
12239 the composer.  You can fill in some comments in the body of the message,
12240 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12241 may use the TakeAddr command on that message to insert the address book
12242 entry you sent in their own address book.  If you have some entries
12243 selected and use the Apply Forward command all of the selected entries
12244 will be forwarded in a single message.  You may
12245 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.
12246 The recipient must be using Alpine in order to receive this correctly.
12247 One way for the recipient to handle this might be to create an empty
12248 address book and then &quot;Take&quot; your forwarded address book entries into
12249 that empty address book.
12251 <H2>Multiple and/or Site-Wide Address books</H2>
12253 You may have more than one personal address book.  In addition, there may
12254 be one or more global address books.  This capability allows you to have
12255 multiple personal address books (some of which may be shared) and it also
12256 allows system administrators to implement site-wide address books that
12257 contain entries for users on multiple machines within the organization.
12258 <P><DL>
12259 <DT>Searching
12260   <DD> If you enter a nickname when composing a message, your
12261   personal address books will be searched through in order, and then the
12262   global address book(s) searched. If more than one address book has an entry
12263   for the nickname, Alpine uses the first one that it finds, so an entry in
12264   your personal address book would override a global address book entry. If
12265   after searching all the address books there is still no match, (Unix) Alpine
12266   then searches the local host password file on the assumption that you have
12267   entered a local user name rather than an address book nickname.
12268   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12269   command, but global address books are always searched after personal
12270   address books.
12272   <P><DT>Tab completion
12273   <DD> If the
12274   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12275   feature is turned on (the default) then the Tab key may be used
12276   in the composer to complete partially typed nicknames in the To
12277   or Cc lines. You type the first few letters of a nickname and then
12278   press the Tab key. It there is only one nickname that matches it will
12279   be filled in by Alpine. If there is more than one the unambiguous part
12280   of the nicknames will be filled in. For example, if your address book or
12281   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12282   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12283   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12284   If you then type a second Tab character you will be presented with a list
12285   of matching nicknames to select from. Alternatively, you could type another
12286   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12287   in the entire &quot;barbecue&quot; entry.
12289   <P><DT>Defining
12290   <DD> You define multiple personal address books in the 
12291   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12292   from the MAIN MENU.  
12293   You may add as many as you like.  Global address books are usually
12294   site-wide address books defined by the System administrator, but
12295   you may define global address books of your own just like you define
12296   personal address books.
12298   <P><DT>Creating and updating
12299   <DD> Personal address books are normally created empty
12300   and populated by explicit additions from within Alpine, e.g. via the
12301   TakeAddr command.  Unlike personal address books, global address books may
12302   not be modified/updated from within Alpine; that is, they are Read-Only.
12303   Thus, global address books are created, populated and updated outside of
12304   Alpine. They might be hand-edited, generated by a program from another
12305   database, or by copying an existing address book.  They might also be
12306   some other user's personal address book, and so be modified normally by
12307   that user but accessed Read-Only by you.  See the Alpine Technical
12308   Notes document (included in the Alpine distribution) for more information on
12309   this.
12311   <P><DT>Accessing
12312   <DD>There are two different types of address books in Alpine.
12313   A local address book is stored in a regular file and the normal file
12314   access permissions apply.  A remote address book is stored on an IMAP
12315   server in a special folder that contains only messages pertaining to
12316   that address book.  The last message in the remote folder contains a
12317   copy of the address book data, and that data is copied to a local cache
12318   file in your home directory.  From there it is accessed just like a local
12319   address book.  The name of the cache file is kept track of in a special
12320   file called the
12321   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12322   the name of which is stored in
12323   your Alpine configuration file the first time you use a remote address book.
12324   Just as local Alpine address books use a format that only Alpine understands,
12325   remote Alpine address books do the same and other mail reading programs
12326   are unlikely to be able to understand them.<P>
12327   While global address books are explicitly intended to be shared, there is
12328   nothing to prevent you from sharing a personal address book with other
12329   Alpine users. This might be useful in the case of a small workgroup.
12330   However, it is recommended that updates to shared personal address books
12331   be done when other Alpine users are not accessing the address book. Alpine
12332   does not do any file-locking to manage concurrent updates to the
12333   addressbook, but it does check to see if the file has been modified before
12334   making any changes.  Consequently, inadvertent concurrent updates will
12335   only cause other Alpine users to have to restart their address book
12336   operation, which will cause Alpine to reopen the updated file.
12338   <P><DT>Converting to Remote
12339   <DD>The easiest way to convert an existing local
12340   address book into a remote address book is to create an empty new remote
12341   personal address book by typing &quot;A&quot; to execute the
12342   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12343   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12344   address book.
12345   After you have added the empty
12346   remote address book, go into the screen for the address book you wish
12347   to copy and &quot;Select&quot; &quot;All&quot;.
12348   This selects every entry in that
12349   address book.  Then type the command &quot;Apply Save&quot;.
12350   You will be asked for the address book to save to.  You may use ^P and ^N
12351   to get to the new empty address book, then hit RETURN and the addresses
12352   will be copied.
12353   At this point you'll probably want to unselect all the entries in the local
12354   address book before proceeding. You do that with
12355   &quot;Select&quot; &quot;unselect All&quot;.
12357 </DL>
12358 <UL>
12359 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12360 </UL>
12361 <P><UL>
12362 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12363 </UL>
12365 &lt;End of help on this topic&gt;
12366 </BODY>
12367 </HTML>
12368 ===== h_abook_select_addr =====
12369 <HTML>
12370 <HEAD>
12371 <TITLE>Addressbook Selection Explained</TITLE>
12372 </HEAD>
12373 <BODY>
12374 <H1>SELECT ADDRESS</H1>
12375 <!--chtml if pinemode="function_key"-->
12376 <PRE>
12377 Navigating the List of Messages               General Alpine Commands
12378 -------------------------------               -----------------------
12379 F5   Move to previous entry                   F1  Show this help text
12380 F6   Move to next entry
12381 F7   Show previous screen of address book
12382 F8   Show next screen of address book
12383 F12  WhereIs (search through address book)
12385 Address Selection Commands
12386 --------------------------
12387 F3   Exit the Address Select screen (without selecting an address)
12388 F4   Select the currently highlighted entry
12389 </PRE>
12390 <!--chtml else-->
12391 <PRE>
12392 Navigating the List of Messages               General Alpine Commands
12393 -------------------------------               -----------------------
12394  P   Move to previous entry                    ?  Show this help text
12395  N   Move to next entry
12396  -   Show previous screen of address book
12397 Spc  (space bar) Show next screen of address book
12398  W   WhereIs (search through address book)
12400 Address Selection Commands
12401 --------------------------
12402  E   Exit the Address Select screen (without selecting an address)
12403  S   Select the currently highlighted entry
12404 </PRE>
12405 <!--chtml endif-->
12408 This screen is designed to let you easily scan your address book(s) in
12409 order to select an entry for the message you are composing.  You cannot
12410 edit your address book in any way at this time, for address book
12411 maintenance, select the address book command when not composing a message.
12414 If you are composing a message and know the nickname of the person/list you
12415 want, you can bypass this screen by simply typing in the nickname on the
12416 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12417 selecting an entry does not cancel your message.
12420 FOR MORE INFORMATION on addressing see
12421 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12422 <A HREF="h_abook_opened">Address Book Screen's</A>
12423 help text.
12425 &lt;End of help on this topic&gt;
12426 </BODY>
12427 </HTML>
12428 ===== h_abook_select_top =====
12429 <HTML>
12430 <HEAD>
12431 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12432 </HEAD>
12433 <BODY>
12434 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12435 <!--chtml if pinemode="function_key"-->
12436 <PRE>
12437 Navigating the List of Address Books       General Alpine Commands
12438 ------------------------------------       -----------------------
12439 F4   View the highlighted address book
12440 F5   Move to previous address book         F1  Show this help text
12441 F6   Move to next address book
12442 F7   Show previous screen of address books
12443 F8   Show next screen of address books
12444 F12  WhereIs (search through address books)
12446 Address Selection Commands
12447 --------------------------
12448 F3   Exit the Address Select screen (without selecting an address)
12449 F4   Select the currently selected entries (if using ListMode)
12450 F9   Change to ListMode
12451 </PRE>
12452 <!--chtml else-->
12453 <PRE>
12454 Navigating the List of Address Books       General Alpine Commands
12455 ------------------------------------       -----------------------
12456  &gt;   View the highlighted address book
12457  P   Move to previous address book         ?  Show this help text
12458  N   Move to next address book
12459  -   Show previous screen of address books
12460 Spc  (space bar) Show next screen of address books
12461  W   WhereIs (search through address books)
12463 Address Selection Commands
12464 --------------------------
12465  E   Exit the Address Select screen (without selecting an address)
12466  S   Select the currently selected entries (if using ListMode)
12467  L   Change to ListMode
12468 </PRE>
12469 <!--chtml endif-->
12472 This screen is designed to let you easily scan your address book(s) in
12473 order to select entries for the message you are composing.  You cannot
12474 edit your address book in any way at this time.  For address book
12475 maintenance, select the address book command when not composing a message.
12478 If you are composing a message and know the nickname of the person/list you
12479 want, you can bypass this screen by simply typing in the nickname on the
12480 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12481 selecting an entry does not cancel your message.
12484 The ListMode command will add a column at the left edge of the screen.
12485 You mark the entries that you wish to select with the &quot;X&quot; command.
12486 This allows you to choose more than one entry at a time.
12489 An alternative method of composing a message to entries in your
12490 address book(s) is to first use the &quot;Select&quot; command from
12491 the address book maintenance screen and then the &quot;Apply&quot;
12492 &quot;ComposeTo&quot; command to start the composer composing to the
12493 selected entries.
12496 FOR MORE INFORMATION on addressing see
12497 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12498 <A HREF="h_abook_opened">Address Book Screen's</A>
12499 help text.
12501 &lt;End of help on this topic&gt;
12502 </BODY>
12503 </HTML>
12504 ===== h_abook_select_listmode =====
12505 <HTML>
12506 <HEAD>
12507 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12508 </HEAD>
12509 <BODY>
12510 <H1>COMPOSER: SELECT ADDRESSES</H1>
12511 <!--chtml if pinemode="function_key"-->
12512 <PRE>
12513 Navigating the List of Messages                 General Alpine Commands
12514 -------------------------------                 -----------------------
12515 F5   Move to previous entry                     F1  Show this help text
12516 F6   Move to next entry
12517 F7   Show previous screen of address book
12518 F8   Show next screen of address book
12519 F12  WhereIs (search through address book)
12521 Address Selection Commands
12522 --------------------------
12523 F3   Exit the Address Select screen (without selecting an address)
12524 F4   Select the currently highlighted entry
12525 F9   Change to ListMode
12526 </PRE>
12527 <!--chtml else-->
12528 <PRE>
12529 Navigating the List of Messages                 General Alpine Commands
12530 -------------------------------                 -----------------------
12531  P   Move to previous entry                     ?  Show this help text
12532  N   Move to next entry
12533  -   Show previous screen of address book
12534 Spc  (space bar) Show next screen of address book
12535  W   WhereIs (search through address book)
12537 Address Selection Commands
12538 --------------------------
12539  E   Exit the Address Select screen (without selecting an address)
12540  S   Select the currently highlighted entry
12541  L   Change to ListMode
12542 </PRE>
12543 <!--chtml endif-->
12546 This screen is designed to let you easily scan your address book(s) in
12547 order to select entries for the message you are composing.  You cannot
12548 edit your address book in any way at this time, for address book
12549 maintenance, select the address book command when not composing a message.
12552 If you are composing a message and know the nickname of the person/list you
12553 want, you can bypass this screen by simply typing in the nickname on the
12554 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12555 selecting an entry does not cancel your message.
12558 The ListMode command will add a column at the left edge of the screen.
12559 You mark the entries that you wish to select with the &quot;X&quot; command.
12560 This allows you to choose more than one entry at a time.
12563 An alternative method of composing a message to entries in your
12564 address book(s) is to first use the &quot;Select&quot; command from
12565 the address book maintenance screen and then the &quot;Apply&quot;
12566 &quot;ComposeTo&quot; command to start the composer composing to the
12567 selected entries.
12570 FOR MORE INFORMATION on addressing see
12571 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12572 <A HREF="h_abook_opened">Address Book Screen's</A>
12573 help text.
12575 &lt;End of help on this topic&gt;
12576 </BODY>
12577 </HTML>
12578 ===== h_abook_select_checks =====
12579 <HTML>
12580 <HEAD>
12581 <TITLE>Address Selection from Composer Explained</TITLE>
12582 </HEAD>
12583 <BODY>
12584 <H1>COMPOSER: SELECT ADDRESSES</H1>
12585 <!--chtml if pinemode="function_key"-->
12586 <PRE>
12587 Navigating the List of Messages                 General Alpine Commands
12588 -------------------------------                 -----------------------
12589 F5   Move to previous entry                     F1  Show this help text
12590 F6   Move to next entry
12591 F7   Show previous screen of address book
12592 F8   Show next screen of address book
12593 F12  WhereIs (search through address book)
12595 Address Selection Commands
12596 --------------------------
12597 F3   Exit the Address Select screen (without selecting an address)
12598 F4   Select the currently highlighted entry
12599 F8   Either Sets or Unsets all entries in this address book
12600 F9   Set or Unset the highlighted entry
12601 </PRE>
12602 <!--chtml else-->
12603 <PRE>
12604 Navigating the List of Messages                 General Alpine Commands
12605 -------------------------------                 -----------------------
12606  P   Move to previous entry                     ?  Show this help text
12607  N   Move to next entry
12608  -   Show previous screen of address book
12609 Spc  (space bar) Show next screen of address book
12610  W   WhereIs (search through address book)
12612 Address Selection Commands
12613 --------------------------
12614  E   Exit the Address Select screen (without selecting an address)
12615  S   Select the currently highlighted entry
12616  X   Set or Unset the highlighted entry
12617  A   Either Sets or Unsets all entries in this address book
12618 </PRE>
12619 <!--chtml endif-->
12622 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12623 command.  Type &quot;S Select&quot; to select all of the entries you
12624 have marked, just as if you had typed them in by hand.
12627 An alternative method of composing a message to entries in your
12628 address book(s) is to first use the &quot;Select&quot; command from
12629 the address book maintenance screen and then the &quot;Apply&quot;
12630 &quot;ComposeTo&quot; command to start the composer composing to the
12631 selected entries.
12634 FOR MORE INFORMATION on addressing see
12635 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12636 <A HREF="h_abook_opened">Address Book Screen's</A>
12637 help text.
12639 &lt;End of help on this topic&gt;
12640 </BODY>
12641 </HTML>
12642 ===== h_abook_select_nicks_take =====
12643 <HTML>
12644 <HEAD>
12645 <TITLE>Take Address Nickname Selection Explained</TITLE>
12646 </HEAD>
12647 <BODY>
12648 <H1>TAKEADDR: SELECT NICKNAME</H1>
12649 <!--chtml if pinemode="function_key"-->
12650 <PRE>
12651 Navigating the List of Messages                 General Alpine Commands
12652 -------------------------------                 -----------------------
12653 F5   Move to previous entry                     F1  Show this help text
12654 F6   Move to next entry
12655 F7   Show previous screen of address book
12656 F8   Show next screen of address book
12657 F12  WhereIs (search through address book)
12659 Message Selection Commands
12660 --------------------------
12661 F3   Exit the Nickname Select screen (without selecting an address)
12662 F4   Select the currently highlighted entry
12663 </PRE>
12664 <!--chtml else-->
12665 <PRE>
12666 Navigating the List of Messages                 General Alpine Commands
12667 -------------------------------                 -----------------------
12668  P   Move to previous entry                     ?  Show this help text
12669  N   Move to next entry
12670  -   Show previous screen of address book
12671 Spc  (space bar) Show next screen of address book
12672  W   WhereIs (search through address book)
12674 Message Selection Commands
12675 --------------------------
12676  E   Exit the Nickname Select screen (without selecting an address)
12677  S   Select the currently highlighted entry
12678 </PRE>
12679 <!--chtml endif-->
12682 This screen is designed to let you modify or add to an existing
12683 address book entry.  You have already selected the name(s) and
12684 address(es) through &quot;Take Address&quot;.  This screen simply lets
12685 you scan your address books and select the nickname to be
12686 changed/augmented.  If you want to add a new entry, then you are in
12687 the wrong place-- Select &quot;Exit&quot; command.
12690 FOR MORE INFORMATION on addressing see
12691 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12692 <A HREF="h_abook_opened">Address Book Screen's</A>
12693 help text.
12695 &lt;End of help on this topic&gt;
12696 </BODY>
12697 </HTML>
12698 ===== h_abook_select_nick =====
12699 <HTML>
12700 <HEAD>
12701 <TITLE>Nickname Selection Explained</TITLE>
12702 </HEAD>
12703 <BODY>
12704 <H1>SELECT NICKNAME</H1>
12705 <!--chtml if pinemode="function_key"-->
12706 <PRE>
12707 Navigating the List of Messages                 General Alpine Commands
12708 -------------------------------                 -----------------------
12709 F5   Move to previous entry                     F1  Show this help text
12710 F6   Move to next entry
12711 F7   Show previous screen of address book
12712 F8   Show next screen of address book
12713 F12  WhereIs (search through address book)
12715 Message Selection Commands
12716 --------------------------
12717 F3   Exit the Nickname Select screen (without selecting an address)
12718 F4   Select the currently highlighted entry
12719 </PRE>
12720 <!--chtml else-->
12721 <PRE>
12722 Navigating the List of Messages                 General Alpine Commands
12723 -------------------------------                 -----------------------
12724  P   Move to previous entry                     ?  Show this help text
12725  N   Move to next entry
12726  -   Show previous screen of address book
12727 Spc  (space bar) Show next screen of address book
12728  W   WhereIs (search through address book)
12730 Message Selection Commands
12731 --------------------------
12732  E   Exit the Nickname Select screen (without selecting an address)
12733  S   Select the currently highlighted entry
12734 </PRE>
12735 <!--chtml endif-->
12738 This screen is designed to let you look at the nicknames in your address
12739 books before choosing a new one.
12742 FOR MORE INFORMATION on addressing see
12743 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12744 <A HREF="h_abook_opened">Address Book Screen's</A>
12745 help text.
12747 &lt;End of help on this topic&gt;
12748 </BODY>
12749 </HTML>
12750 ===== h_takeaddr_screen =====
12751 <HTML>
12752 <HEAD>
12753 <TITLE>Take Address Screen Explained</TITLE>
12754 </HEAD>
12755 <BODY>
12756 <H1>TAKE ADDRESS COMMANDS</H1>
12757 <!--chtml if pinemode="function_key"-->
12758 <PRE>
12759 Navigating the List of Addresses       Address Selection Commands        
12760 --------------------------------       --------------------------        
12761  F5  Move to previous entry            F3  Exit without taking address
12762  F6  Move to next entry                F4  Take current address(es)
12763  F7  Show previous page of address list
12764  F8  Show next page of address list
12765  F2  WhereIs (search list)
12766                                --------------
12767 Mode Toggle            F9  Set/Unset current address
12768 -----------            F10 Set all
12769  F12 Toggle between List and single mode       F11 Unset all
12770 </PRE>
12771 <!--chtml else-->
12772 <PRE>
12773 Navigating the List of Addresses       Address Selection Commands
12774 --------------------------------       --------------------------
12775  P  Move to previous entry              &lt;  Exit without taking address
12776  N  Move to next entry                  T  Take address
12777  -  Show previous page of address list
12778 Spc (space bar) Show next page of address list
12779  W  WhereIs (search list)              List Mode
12780                                        ---------
12781 Single Mode                             X  Set/Unset current address
12782 -----------                             A  Set all addresses
12783  L  Switch to list mode                 U  Unset all addresses
12784                                         S  Switch to single mode
12785 </PRE>
12786 <!--chtml endif-->
12788 <H2>Description of the Take Address Screen</H2>
12790 This screen is designed to let you select one or more address/name
12791 combinations from the current message and put them into your address book.
12792 The cursor is initially placed on the line with the message author.
12793 Other lines include the names of people and/or mailing lists who also
12794 received the message.  Other people &quot;involved&quot; in the
12795 message (e.g. the person named as Reply-To:) are also listed here.
12798 The simple case is adding a new, single entry into your address book. To
12799 do this, simply highlight the correct line and press 
12800 <!--chtml if pinemode="function_key"-->
12802 <!--chtml else-->
12803 &quot;T&quot;.
12804 <!--chtml endif-->
12805 To create a new list or add to an existing list, switch the screen display
12806 into List Mode by pressing
12807 <!--chtml if pinemode="function_key"-->
12808 F12.
12809 <!--chtml else-->
12810 &quot;L&quot;.
12811 <!--chtml endif-->
12812 In List Mode, you select the
12813 group of addresses you wish to manipulate by marking them with an
12814 &quot;X&quot;.
12815 The Set/Unset
12816 <!--chtml if pinemode="function_key"-->
12817 (F9)
12818 <!--chtml else-->
12819 (&quot;X&quot;)
12820 <!--chtml endif-->
12821 command will turn the &quot;X&quot; on for the
12822 highlighted address if it was off or turn it off if it was previously on.
12823 The SetAll command will select all of the addresses, and the UnSetAll
12824 command will turn off all the selections.  Once you've gotten the
12825 selection the way you want it, you may create a new list by pressing
12826 <!--chtml if pinemode="function_key"-->
12828 <!--chtml else-->
12829 &quot;T&quot;.
12830 <!--chtml endif-->
12833 In both the simple and list cases, after choosing to take the address,
12834 you will be asked for the nickname of the entry.  Typing in a new name
12835 creates the new entry/list.  Entering an existing nickname will replace
12836 the entry (simple case) or add to the list (list case).  Alternatively,
12837 you can press Ctrl-T at the nickname prompt and select an existing
12838 nickname from your address book.
12841 You will normally start in Single Mode, unless you used the Apply command
12842 to startup the TakeAddr screen, in which case you will start in List Mode.
12843 You may switch between the two modes at any time.  If you've already
12844 selected several addresses in List Mode, those will be remembered when you
12845 switch to Single Mode and then back to List Mode.  The set of addresses
12846 that are pre-selected when you start in List Mode are the From addresses
12847 of all of the messages you are operating on.  You may, of course, easily
12848 erase those selections with the UnSetAll command.
12851 If you have more than one writable address book, you will be prompted for
12852 the name of the address book you wish to add the new entry to before
12853 anything else. You can use ^N and ^P to choose among the defined address
12854 books, or type in the address book name.
12857 FOR MORE INFORMATION on addressing see
12858 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12859 <A HREF="h_abook_opened">Address Book Screen's</A>
12860 help text.
12862 &lt;End of help on this topic&gt;
12863 </BODY>
12864 </HTML>
12865 ===== h_takeexport_screen =====
12866 <HTML>
12867 <HEAD>
12868 <TITLE>Take Export Screen Explained</TITLE>
12869 </HEAD>
12870 <BODY>
12871 <H1>TAKE EXPORT COMMANDS</H1>
12872 <!--chtml if pinemode="function_key"-->
12873 <PRE>
12874 Navigating the List of Addresses       Address Selection Commands        
12875 --------------------------------       --------------------------        
12876  F5  Move to previous entry            F3  Exit without taking address
12877  F6  Move to next entry                F4  Take current address(es)
12878  F7  Show previous page of address list
12879  F8  Show next page of address list
12880  F2  WhereIs (search list)
12881                                --------------
12882 Mode Toggle            F9  Set/Unset current address
12883 -----------            F10 Set all
12884  F12 Toggle between List and single mode       F11 Unset all
12885 </PRE>
12886 <!--chtml else-->
12887 <PRE>
12888 Navigating the List of Addresses       Address Selection Commands
12889 --------------------------------       --------------------------
12890  P  Move to previous entry              &lt;  Exit without taking address
12891  N  Move to next entry                  T  Take address
12892  -  Show previous page of address list
12893 Spc (space bar) Show next page of address list
12894  W  WhereIs (search list)              List Mode
12895                                        ---------
12896 Single Mode                             X  Set/Unset current address
12897 -----------                             A  Set all addresses
12898  L  Switch to list mode                 U  Unset all addresses
12899                                         S  Switch to single mode
12900 </PRE>
12901 <!--chtml endif-->
12903 <H2>Description of the Take Export Screen</H2>
12905 This screen is designed to let you select one or more addresses
12906 from the current message and put them into a file.
12907 Only the user@domain_name part of each address is put into the file.
12910 To put a single entry into a file simply highlight the correct line and press 
12911 <!--chtml if pinemode="function_key"-->
12913 <!--chtml else-->
12914 &quot;T&quot;.
12915 <!--chtml endif-->
12916 To put more than one entry into a file
12917 switch the screen display
12918 into List Mode by pressing
12919 <!--chtml if pinemode="function_key"-->
12920 F12.
12921 <!--chtml else-->
12922 &quot;L&quot;.
12923 <!--chtml endif-->
12924 In List Mode, you select the
12925 group of addresses you wish to manipulate by marking them with an
12926 &quot;X&quot;.
12927 The Set/Unset
12928 <!--chtml if pinemode="function_key"-->
12929 (F9)
12930 <!--chtml else-->
12931 (&quot;X&quot;)
12932 <!--chtml endif-->
12933 command will turn the &quot;X&quot; on for the
12934 highlighted address if it was off or turn it off if it was previously on.
12935 The SetAll command will select all of the addresses, and the UnSetAll
12936 command will turn off all the selections.  Once you've gotten the
12937 selection the way you want it, you may put the addresses in a file by typing
12938 <!--chtml if pinemode="function_key"-->
12940 <!--chtml else-->
12941 &quot;T&quot;.
12942 <!--chtml endif-->
12945 You will be asked for the name of a file to put the addresses in.
12946 If the file already exists, you will be asked whether you want to Overwrite
12947 (replace) the contents of the file or Append to the contents of the file.
12950 &lt;End of help on this topic&gt;
12951 </BODY>
12952 </HTML>
12953 ============= h_abook_view ========================
12954 <HTML>
12955 <HEAD>
12956 <TITLE>Address Book View Explained</TITLE>
12957 </HEAD>
12958 <BODY>
12959 This function allows you to view the contents of an address book entry. You
12960 can only view one entry at a time.
12962 <DL>
12963 <DT>Help
12964 <!--chtml if pinemode="function_key"-->
12965 (F1)
12966 <!--chtml else-->
12968 <!--chtml endif-->
12969 </DT>
12970 <DD>
12971 Display this help text.
12973 <DT>Abook
12974 <!--chtml if pinemode="function_key"-->
12975 (F3)
12976 <!--chtml else-->
12977 (&lt;)
12978 <!--chtml endif-->
12979 </DT>
12980 <DD>
12981 Go back to index of address book entries.
12983 <DT>Update
12984 <!--chtml if pinemode="function_key"-->
12985 (F4)
12986 <!--chtml else-->
12988 <!--chtml endif-->
12989 </DT>
12990 <DD>
12991 Update (modify) this entry.
12993 <DT>ComposeTo
12994 <!--chtml if pinemode="function_key"-->
12995 (F5)
12996 <!--chtml else-->
12998 <!--chtml endif-->
12999 </DT>
13000 <DD>Compose a message to the address(es) in this entry.
13002 <DT>Role
13003 <!--chtml if pinemode="function_key"-->
13004 (F6)
13005 <!--chtml else-->
13007 <!--chtml endif-->
13008 </DT>
13009 <DD>Compose a message to the address(es) in this entry using roles.
13011 <DT>Prev Page
13012 <!--chtml if pinemode="function_key"-->
13013 (F7)
13014 <!--chtml else-->
13016 <!--chtml endif-->
13017 </DT>
13018 <DD>
13019 Show the previous page of the current entry.
13021 <DT>Next Page
13022 <!--chtml if pinemode="function_key"-->
13023 (F8)
13024 <!--chtml else-->
13025 (Space)
13026 <!--chtml endif-->
13027 </DT>
13028 <DD>
13029 Show the next page of the current entry.
13031 <DT>Print
13032 <!--chtml if pinemode="function_key"-->
13033 (F9)
13034 <!--chtml else-->
13036 <!--chtml endif-->
13037 </DT>
13038 <DD>Print the current entry.  You can select the
13039 printer or the print command via the &quot;Setup&quot; command
13040 on the MAIN MENU.
13042 <DT>WhereIs
13043 <!--chtml if pinemode="function_key"-->
13044 (F10)
13045 <!--chtml else-->
13047 <!--chtml endif-->
13048 </DT>
13049 <DD>Search the entry for a string of letters.  If it is
13050 found, move to it.  The string can be one word or a phrase.
13051 If there are multiple occurrences, the cursor moves to the
13052 first occurrence beyond the current cursor position.
13054 <DT>Fwd Email
13055 <!--chtml if pinemode="function_key"-->
13056 (F11)
13057 <!--chtml else-->
13059 <!--chtml endif-->
13060 </DT>
13061 <DD>Begin composition of a new mail message with the displayed
13062 text already inserted in the message body.
13064 </DL>
13066 &lt;End of help on this topic&gt;
13067 </BODY>
13068 </HTML>
13069 ============= h_ldap_view ========================
13070 <HTML>
13071 <HEAD>
13072 <TITLE>LDAP Response View Explained</TITLE>
13073 </HEAD>
13074 <BODY>
13075 This function allows you to view the contents of a directory entry. You
13076 can only view one entry at a time.
13078 <DL>
13079 <DT>Help
13080 <!--chtml if pinemode="function_key"-->
13081 (F1)
13082 <!--chtml else-->
13084 <!--chtml endif-->
13085 </DT>
13086 <DD>
13087 Display this help text.
13089 <DT>Results Index
13090 <!--chtml if pinemode="function_key"-->
13091 (F3)
13092 <!--chtml else-->
13093 (&lt;)
13094 <!--chtml endif-->
13095 </DT>
13096 <DD>Go back to index of search results.
13098 <DT>ComposeTo
13099 <!--chtml if pinemode="function_key"-->
13100 (F5)
13101 <!--chtml else-->
13103 <!--chtml endif-->
13104 </DT>
13105 <DD>Compose a message to the address(es) in this entry.
13107 <DT>Role
13108 <!--chtml if pinemode="function_key"-->
13109 (F6)
13110 <!--chtml else-->
13112 <!--chtml endif-->
13113 </DT>
13114 <DD>Compose a message to the address(es) in this entry using roles.
13116 <DT>Prev Page
13117 <!--chtml if pinemode="function_key"-->
13118 (F7)
13119 <!--chtml else-->
13121 <!--chtml endif-->
13122 </DT>
13123 <DD>
13124 Show the previous page of the current entry.
13126 <DT>Next Page
13127 <!--chtml if pinemode="function_key"-->
13128 (F8)
13129 <!--chtml else-->
13130 (Space)
13131 <!--chtml endif-->
13132 </DT>
13133 <DD>
13134 Show the next page of the current entry.
13136 <DT>Print
13137 <!--chtml if pinemode="function_key"-->
13138 (F9)
13139 <!--chtml else-->
13141 <!--chtml endif-->
13142 </DT>
13143 <DD>Print the current entry on paper.  You can select the
13144 printer or the print command via the &quot;Setup&quot; command
13145 on the MAIN MENU.
13147 <DT>WhereIs
13148 <!--chtml if pinemode="function_key"-->
13149 (F10)
13150 <!--chtml else-->
13152 <!--chtml endif-->
13153 </DT>
13154 <DD>Search the entry for a string of letters.  If it is
13155 found, move to it.  The string can be one word or a phrase.
13156 If there are multiple occurrences, the cursor moves to the
13157 first occurrence beyond the current cursor position.
13159 <DT>Fwd Email
13160 <!--chtml if pinemode="function_key"-->
13161 (F11)
13162 <!--chtml else-->
13164 <!--chtml endif-->
13165 </DT>
13166 <DD>Begin composition of a new mail message with the displayed
13167 text already inserted in the message body.
13169 <DT>Save
13170 <!--chtml if pinemode="function_key"-->
13171 (F12)
13172 <!--chtml else-->
13174 <!--chtml endif-->
13175 </DT>
13176 <DD>Save the displayed entry to one of your address books or export
13177 it to a file.
13178 </DL>
13180 &lt;End of help on this topic&gt;
13181 </BODY>
13182 </HTML>
13183 ===== h_attachment_screen =====
13184 <HTML>
13185 <HEAD>
13186 <TITLE>Attachment Index Screen Explained</TITLE>
13187 </HEAD>
13188 <BODY>
13189 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13190 message's attachments, and allows various operations on them.  The
13191 first attachment is usually the message text, but does not include the
13192 header portion of the message.
13194 Available commands include:
13196 <DL>
13198 <DT>Help</DT>
13199 <DD>Show this help text.
13201 <DT>Msg #<I>num</I></DT>
13202 <DD>Leave this screen without displaying or saving any attachments.
13204 <DT>View</DT>
13205 <DD>View the currently selected attachment.
13207 <DT>Prev Attach</DT>
13208 <DD>Move to previous attachment.
13210 <DT>Next Attach</DT>
13211 <DD>Move to next attachment.
13213 <DT>Prev Page</DT>
13214 <DD>Previous page of the listed attachments.
13216 <DT>Next Page</DT>
13217 <DD>Next page of the listed attachments.
13219 <DT>Delete</DT>
13220 <DD>Mark the currently selected attachment for Deletion.
13221 This does not modify the current message by deleting the attachment from
13222 it, but instead the delete flag <EM>only</EM> has an effect when saving
13223 the message to a folder.
13224 Attachments marked for deletion are not copied to the destination folder
13225 along with the rest of the message when it is saved.
13226 It is ok for the destination folder to be the same as the current folder.
13227 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13229 <DT>Undelete</DT>
13230 <DD>Turn off the Delete flag for the selected attachment.
13232 <DT>Save</DT>
13233 <DD>Save the selected attachment to a file.  If the attachment is of
13234 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13235 the specified mail folder.
13237 <DT>Export</DT>
13238 <DD>If the attachment is of
13239 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13240 copy the message to a file in the same way this command works on 
13241 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13243 <DT>Pipe</DT>
13244 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13245 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13247 <DT>WhereIs</DT>
13248 <DD>Find a matching string in the attachment list.
13250 <DT>AboutAttch</DT>
13251 <DD>Examine various aspects of the selected attachment.
13253 <DT>Print</DT>
13254 <DD>Print the selected attachment.
13256 <DT>Forward</DT>
13257 <DD>Forward the selected attachment as an attachment.
13258 </DL>
13262 All attachments can be saved or piped into a UNIX command, but some may
13263 not be readily displayed by either Alpine or an external tool.  In such
13264 cases, the reason why the message cannot be displayed is displayed on
13265 Alpine's message line.
13267 &lt;End of help on this topic&gt;
13268 </BODY>
13269 </HTML>
13270 ============= h_mail_text_att_view ========================
13271 <HTML>
13272 <HEAD>
13273 <TITLE>Attachment View Screen Explained</TITLE>
13274 </HEAD>
13275 <BODY>
13276 This function allows you to view the contents of a text attachment. You
13277 can only view one attachment at a time.
13279 Available commands include:
13281 <DL>
13283 <DT>Help</DT>
13284 <DD>Display this help text
13286 <DT>AttchIndex</DT>
13287 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13289 <DT>Prev Page</DT>
13290 <DD>Show the previous page of the current attachment.
13292 <DT>Next Page</DT>
13293 <DD>Show the next page of the current attachment by pressing the space bar.
13295 <DT>Delete</DT>
13296 <DD>Mark the viewed attachment for Deletion.  The delete
13297 flag <EM>only</EM> has affect when saving the message to a folder.
13298 Attachments marked for deletion are exluded from the messsage when
13299 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13300 this Alpine session.
13302 <DT>Undelete</DT>
13303 <DD>Turn off the Delete flag for the selected attachment.
13305 <DT>Save</DT>
13306 <DD>Copy the current attachment to a file.  If you just enter
13307 a filename, the attachment will be saved with that name in
13308 your home directory 
13309 <!--chtml if pinemode="running"-->
13310 (which, in the present configuration of your system, is
13311  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13312 <!--chtml endif-->
13313 or current working directory
13314 <!--chtml if pinemode="running"-->
13315 (which, at least for your current Alpine &quot;session,&quot; 
13316 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13317 <!--chtml endif-->, depending on the
13318 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13319 configuration setting.  You may enter the full
13320 path and filename to save it in another directory instead.
13322 <DT>Export</DT>
13323 <DD>If the attachment is of
13324 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13325 copy the message to a file in the same way this command works on 
13326 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13327 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13328 defined, they may affect the contents of the exported file.)
13330 <DT>Pipe</DT>
13331 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13333 <DT>WhereIs</DT>
13334 <DD>Search the attachment for a string of letters.  If it is
13335 found, move to it.  The string can be one word or a phrase.
13336 If there are multiple occurrences, the cursor moves to the
13337 first occurrence beyond the current cursor position.
13339 <DT>Print</DT>
13340 <DD>Print the current attachment on paper.  You can select the
13341 printer or the print command via the &quot;Setup&quot; command
13342 on the MAIN MENU.
13344 <DT>Forward</DT>
13345 <DD>Forward the selected attachment as an attachment.
13346 </DL>
13348 &lt;End of help on this topic&gt;
13349 </BODY>
13350 </HTML>
13351 ============= h_journal ==============
13352 <HTML>
13353 <HEAD>
13354 <TITLE>Recent Message Journal Explained</TITLE>
13355 </HEAD>
13356 <BODY>
13358 The following commands are available on this screen:
13360 <DL>
13361 <DT>Help</DT>
13362 <DD>Show this help text
13364 <DT>Exit</DT>
13365 <DD>Exit Viewer, and go back to mail processing
13367 <DT>Prev Page</DT>
13368 <DD>Show the previous page text
13370 <DT>Next Page</DT>
13371 <DD>Show the next page of text by pressing the space bar
13373 <DT>Print</DT>
13374 <DD>Print the displayed text on paper.  You can select the
13375 printer or the print command via the &quot;Setup&quot; command
13376 on the MAIN MENU.
13378 <DT>Fwd Email</DT>
13379 <DD>Begin composition of a new mail message with the displayed
13380 text already inserted in the message body.
13382 <DT>Save</DT>
13383 <DD>Copy the displayed text to a file.  If you just enter
13384 a filename, the text will be saved with that name in
13385 your 
13386 home directory 
13387 <!--chtml if pinemode="running"-->
13388 (which, in the present configuration of your system, is
13389  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13390 <!--chtml endif-->
13391 or current working directory
13392 <!--chtml if pinemode="running"-->
13393 (which, at least for your current Alpine &quot;session,&quot; 
13394 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13395 <!--chtml endif-->, depending on the
13396 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13397 configuration setting.   You may enter the full
13398 path and filename to save it in another directory instead.
13400 <DT>WhereIs</DT>
13401 <DD>Search the text for a string of letters.  If it is
13402 found, move to it.  The string can be one word or a phrase.
13403 If there are multiple occurrences, the cursor moves to the
13404 first occurrence beyond the current cursor position.
13405 </DL>
13407 &lt;End of help on this topic&gt;
13408 </BODY>
13409 </HTML>
13410 ============= h_debugjournal ==============
13411 <HTML>
13412 <HEAD>
13413 <TITLE>Debug Journal Explained</TITLE>
13414 </HEAD>
13415 <BODY>
13417 The following commands are available on this screen:
13419 <DL>
13420 <DT>Help</DT>
13421 <DD>Show this help text
13423 <DT>Exit</DT>
13424 <DD>Exit Viewer, and go back to mail processing
13426 <DT>Timestamps</DT>
13427 <DD>Turn on or off timestamps.
13429 <DT>DebugView</DT>
13430 <DD>Set the level of debugging you want to see. The level may be any number
13431 in the range 0-9. Higher numbers show more debugging detail. Note that the
13432 debugging information has already been captured. This setting just causes the
13433 debugging information that you see to be filtered. If you set this to
13434 the number &quot;5&quot; then you will be shown all of the debugging information
13435 at levels 5 and below.
13436 It's actually a bit more complicated than that. A fixed amount of memory
13437 is used to store the debug information.
13438 Since the amount of memory used is limited the debugging information
13439 has to be trimmed back when it gets too large.
13441 <DT>Prev Page</DT>
13442 <DD>Show the previous page text
13444 <DT>Next Page</DT>
13445 <DD>Show the next page of text by pressing the space bar
13447 <DT>Print</DT>
13448 <DD>Print the displayed text on paper.  You can select the
13449 printer or the print command via the &quot;Setup&quot; command
13450 on the MAIN MENU.
13452 <DT>Fwd Email</DT>
13453 <DD>Begin composition of a new mail message with the displayed
13454 text already inserted in the message body.
13456 <DT>Save</DT>
13457 <DD>Copy the displayed text to a file.  If you just enter
13458 a filename, the text will be saved with that name in
13459 your 
13460 home directory 
13461 <!--chtml if pinemode="running"-->
13462 (which, in the present configuration of your system, is
13463  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13464 <!--chtml endif-->
13465 or current working directory
13466 <!--chtml if pinemode="running"-->
13467 (which, at least for your current Alpine &quot;session,&quot; 
13468 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13469 <!--chtml endif-->, depending on the
13470 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13471 configuration setting.   You may enter the full
13472 path and filename to save it in another directory instead.
13474 <DT>WhereIs</DT>
13475 <DD>Search the text for a string of letters.  If it is
13476 found, move to it.  The string can be one word or a phrase.
13477 If there are multiple occurrences, the cursor moves to the
13478 first occurrence beyond the current cursor position.
13479 </DL>
13481 &lt;End of help on this topic&gt;
13482 </BODY>
13483 </HTML>
13484 ============= h_simple_text_view ==============
13485 <HTML>
13486 <HEAD>
13487 <TITLE>Simple Text View Screen Explained</TITLE>
13488 </HEAD>
13489 <BODY>
13491 The following commands are available on this screen:
13493 <DL>
13494 <DT>Help</DT>
13495 <DD>Show this help text
13497 <DT>Exit</DT>
13498 <DD>Exit Viewer, and go back to mail processing
13500 <DT>Prev Page</DT>
13501 <DD>Show the previous page text
13503 <DT>Next Page</DT>
13504 <DD>Show the next page of text by pressing the space bar
13506 <DT>Print</DT>
13507 <DD>Print the displayed text on paper.  You can select the
13508 printer or the print command via the &quot;Setup&quot; command
13509 on the MAIN MENU.
13511 <DT>Fwd Email</DT>
13512 <DD>Begin composition of a new mail message with the displayed
13513 text already inserted in the message body.
13515 <DT>Save</DT>
13516 <DD>Copy the displayed text to a file.  If you just enter
13517 a filename, the attachment will be saved with that name in
13518 your 
13519 home directory 
13520 <!--chtml if pinemode="running"-->
13521 (which, in the present configuration of your system, is
13522  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13523 <!--chtml endif-->
13524 or current working directory
13525 <!--chtml if pinemode="running"-->
13526 (which, at least for your current Alpine &quot;session,&quot; 
13527 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13528 <!--chtml endif-->, depending on the
13529 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13530 configuration setting.   You may enter the full
13531 path and filename to save it in another directory instead.
13533 <DT>WhereIs</DT>
13534 <DD>Search the attachment for a string of letters.  If it is
13535 found, move to it.  The string can be one word or a phrase.
13536 If there are multiple occurrences, the cursor moves to the
13537 first occurrence beyond the current cursor position.
13538 </DL>
13540 &lt;End of help on this topic&gt;
13541 </BODY>
13542 </HTML>
13543 ======= h_pine_for_windows ========
13544 <HTML>
13545 <HEAD>
13546 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13547 </HEAD>
13548 <BODY>
13549 <H1>Getting Help In PC-Alpine</H1>
13552 PC-Alpine offers general and specific help text. From the <A
13553 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13554 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13555 specific help for that screen is available from the toolbar Help menu or
13556 with the 
13557 <!--chtml if pinemode="function_key"-->
13558 &quot;F1&quot; key.
13559 <!--chtml else-->
13560 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13561 typing &quot;?&quot; would be mistaken as entering text.
13562 <!--chtml endif-->
13565 Although this version of Alpine is for Microsoft Windows, it is not
13566 considered a full &quot;Graphical User Interface&quot; application. 
13567 Yet, many of the controls that Windows users are accustomed to seeing, 
13568 such as scrollbars and toolbars, are available.
13571 PC-Alpine offers considerable mouse support.  You can view what is
13572 &quot;click-able&quot; by dragging your mouse over any screen; when the
13573 arrow cursor changes into a hand, you found something. Mouse-click
13574 possibilities include navigating between screens and folders and
13575 double-clicking on hyperlinks to open your Web browser.
13576 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13577 screen.  Examples of right-click options include &quot;copy&quot; after
13578 selecting text to copy and &quot;View in New Window&quot; when you click
13579 on a particular message in the Message Index. The menu choices available
13580 to you will vary based upon what screen is open, where on the screen your
13581 cursor is located, and even what action you have already taken.
13584 &lt;End of help on this topic&gt;
13585 </BODY>
13586 </HTML>
13587 ===== h_composer =====
13588 <HTML>
13589 <HEAD>
13590 <TITLE>COMPOSER COMMANDS</TITLE>
13591 </HEAD>
13592 <BODY>
13593 <H1>COMPOSER COMMANDS</H1>
13595 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>
13596 &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>
13597 &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>
13598 &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>
13599 &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>
13600 &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>
13601 &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>
13602 &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>
13603 &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>
13604 &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>
13605 ---------------------------------------|&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>
13606 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>
13607 &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>
13608 &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>
13609 &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>
13612 NOTE:
13613 <OL>
13614  <LI>For help on a particular command, highlight the bold text associated
13615 with it above and hit Return.
13616  <LI> The availability of certain commands
13617 is determined by Alpine configuration files and system capabilities.
13618 At some sites, certain commands may not be available due to security or
13619 support concerns.
13620  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13621 Ctrl-&#92;, ESC.
13622  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13623 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13624 </OL>
13627 HINT: To move rapidly to the bottom of a message you are composing,
13628 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13629 with the Mark and Cut commands to eliminate large amounts of unwanted
13630 text in a Reply.
13632 <H2>Description of Composer</H2>
13634 Alpine has a built-in editing program that allows you to compose messages
13635 without having to leave Alpine.  The editor is designed to be very simple to
13636 use so that you can get started writing email right away.
13639 Messages are usually just text, about 80 columns wide.  Using upper and
13640 lower case is encouraged.  On some systems the size limit of the message
13641 is about 100,000 characters, which is about 2,000 lines.  You can include
13642 punctuation and special characters found on most keyboards, but you can't
13643 include characters with diacritical marks and certain special symbols.
13646 Text automatically wraps as you type past the end of a line so you do not
13647 have to hit return.  Using the
13648 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13649 you can also reformat text explicitly, perhaps after you have
13650 deleted some text.
13653 You can include other text files with the 
13654 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13655 which will prompt you for the name of the file to insert at the
13656 current cursor postion.
13659 <UL>
13660 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13661 </UL>
13663 &lt;End of help on this topic&gt;
13664 </BODY>
13665 </HTML>
13666 ====== h_composer_browse =====
13667 <HTML>
13668 <HEAD>
13669 <TITLE>BROWSER</TITLE>
13670 </HEAD>
13671 <BODY>
13672 <H1>BROWSER</H1>
13673 This screen lets you browse your files and directories.  To go to another 
13674 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13675 choose &quot;Select&quot; (the default choice on the menu); 
13676 or choose &quot;Goto&quot; and enter the name of the directory.
13677 <!--chtml if pinemode="os_windows"-->
13678 <!--chtml else--> 
13679 In Unix Alpine, you may use 
13680 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13681 to another's home directory.  
13682 <!--chtml endif--><P>
13683 To select a file, move the cursor to it and 
13684 choose &quot;Select&quot; (the default choice on the menu).  
13686 <UL>
13687 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13688 inclusion in the 
13689 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13690 the 
13691 &quot;----- Message Text -----&quot; line
13692 while composing, then &quot;To Files&quot;):  Since the file 
13693 selected will become part of the message text, it must be in a format 
13694 suitable for that (Alpine does not check!), such as a plain text file.
13695 Files of other formats (for example, graphics, databases, software 
13696 programs) should be 
13697 <B>attached</B> to the message instead --
13698 by moving the cursor in the COMPOSE MESSAGE screen into the 
13699 message header area and pressing 
13700 <!--chtml if pinemode="function_key"-->
13702 <!--chtml else-->
13703 Ctrl-J.
13704 <!--chtml endif--> 
13706 <P><LI>
13707 Note <B>if</B> you are currently using the BROWSER for saving a message 
13708 attachment, or exporting a message, to a file: You can use the Add command to 
13709 provide the name for a new file to save/export to, and then select that name 
13710 to use it for the save/export operation.  Back at the prompt 
13711 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13712 either Overwrite or Append (it doesn't make a difference, since the file is 
13713 so far empty).  Note: If you cancel the 
13714 operation at that point, the file created with the Add command will remain 
13715 0 bytes in size.
13717 </UL>
13718 <P><UL>
13719 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13720 </UL>
13722 &lt;End of help on this topic&gt;
13723 </BODY>
13724 </HTML>
13725 ====== h_composer_ins =====
13726 <HTML>
13727 <HEAD>
13728 <TITLE>INSERT TEXT FILE</TITLE>
13729 </HEAD>
13730 <BODY>
13731 <H1>INSERT TEXT FILE</H1>
13733 Use this function to insert a text file. The file name
13734 given can be an absolute file path name for your system
13735 <!--chtml if pinemode="os_windows"-->
13736 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13737 with a relative pathname, or simply a file name without
13738 drive or directory specification.  
13739 <!--chtml else-->
13740 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13741 a file in your home directory, or a file path relative to your 
13742 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13743 your home directory or &quot;~user&quot; to refer to another
13744 account's home directory.
13745 <!--chtml endif-->
13747 No wild card characters may be used.  
13748 The file must reside on the system running Alpine.
13750 If the 
13751 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13752 feature is set, names are relative to your current working directory 
13753 <!--chtml if pinemode="running"-->
13754 (which, at least for your current Alpine &quot;session,&quot; 
13755 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13756 <!--chtml endif-->
13757 rather than your home directory
13758 <!--chtml if pinemode="running"-->
13759 (which, in the present configuration of your system, is
13760  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13761 <!--chtml endif-->
13763 <P><UL>
13764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13765 </UL>
13767 &lt;End of help on this topic&gt;
13768 </BODY>
13769 </HTML>
13770 ====== h_composer_ins_m =====
13771 <HTML>
13772 <HEAD>
13773 <TITLE>INSERT MESSAGE</TITLE>
13774 </HEAD>
13775 <BODY>
13776 <H1>INSERT MESSAGE</H1>
13778 Type in the number of a message in the currently open folder to insert it
13779 into your message.
13780 <P><UL>
13781 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13782 </UL>
13784 &lt;End of help on this topic&gt;
13785 </BODY>
13786 </HTML>
13787 ====== h_composer_search =====
13788 <HTML>
13789 <HEAD>
13790 <TITLE>Explanation of Composer Whereis Command </TITLE>
13791 </HEAD>
13792 <BODY>
13793 <H1>Help For Whereis Command</H1>
13795 Whereis is used to search the message for a word or part of a word.
13796 When searching in the composer, only the message part of your mail is
13797 searched, and the cursor is put on the first occurrence appearing
13798 after the location of the cursor.  The search will wrap to the
13799 beginning of the message when it no longer finds matches in the
13800 remainder of the message.
13802 To search for the same string a second time, press 
13803 <!--chtml if pinemode="function_key"-->
13804 &quot;F6&quot;
13805 <!--chtml else-->
13806 &quot;^W&quot;
13807 <!--chtml endif-->
13808 to begin search and then just press RETURN to accept the previous
13809 search string shown in square brackets rather than entering a new
13810 search string.<P>
13812 The &quot;Search&quot; prompt has several sub-command available:
13814 <DL>
13815 <DT>Get Help</DT>
13816 <DD> Takes you to this help page.
13818 <DT>Cancel</DT>
13819 <DD> Cancels the prompt.  No search takes place.
13821 <DT>First Line</DT>
13822 <DD> Takes you back to the composer with the cursor on the first character
13823 of the first line of text.
13825 <DT>Last Line</DT>
13826 <DD> Takes you back to the composer with the cursor on the last character
13827 of the last line of text.
13829 <DT>Replace (Optional)</DT>
13830 <DD> This sub-command is enabled by the 
13831 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13832 feature (which is on by default); see its help screen for details on how replacing works.
13834 </DL>
13836 &lt;End of help on this topic&gt;
13837 </BODY>
13838 </HTML>
13839 ====== h_sigedit_search =====
13840 <HTML>
13841 <HEAD>
13842 <TITLE>Explanation of Whereis Command </TITLE>
13843 </HEAD>
13844 <BODY>
13845 <H1>Help For Whereis Command</H1>
13847 Whereis is used to search for a word or part of a word.
13848 When searching the cursor is put on the first occurrence appearing
13849 after the location of the cursor.  The search will wrap to the
13850 beginning of the signature when it no longer finds matches in the
13851 remainder of the signature.
13853 To search for the same string a second time, press 
13854 <!--chtml if pinemode="function_key"-->
13855 &quot;F6&quot;
13856 <!--chtml else-->
13857 &quot;^W&quot;
13858 <!--chtml endif-->
13859 to begin search and then just press RETURN to accept the previous
13860 search string shown in square brackets rather than entering a new
13861 search string.<P>
13863 The &quot;Search&quot; prompt has several sub-command available:
13865 <DL>
13866 <DT>Get Help</DT>
13867 <DD> Takes you to this help page.
13869 <DT>Cancel</DT>
13870 <DD> Cancels the prompt.  No search takes place.
13872 <DT>First Line</DT>
13873 <DD> Takes you back to the composer with the cursor on the first character
13874 of the first line of text.
13876 <DT>Last Line</DT>
13877 <DD> Takes you back to the composer with the cursor on the last character
13878 of the last line of text.
13880 <DT>Replace (Optional)</DT>
13881 <DD> This sub-command is enabled by the 
13882 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13883 feature (which is on by default); see its help screen for details on how replacing works.
13885 </DL>
13887 &lt;End of help on this topic&gt;
13888 </BODY>
13889 </HTML>
13890 ======= h_composer_to ====
13891 <HTML>
13892 <HEAD>
13893 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13894 </HEAD>
13895 <BODY>
13896 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13898 <H2>The &quot;To:&quot; field</H2>
13899 The address you enter here must be a valid email address that is reachable
13900 from your site. 
13902 <H2>Email Address Format</H2>
13903 You may enter a full name and email address, 
13904 <!--chtml if pinemode="os_windows"-->
13905 <!--chtml else-->
13906 a local (meaning, on the same 
13907 host as the one you are running Alpine on) username that Alpine will
13908 complete for you, 
13909 <!--chtml endif-->
13910 the nickname of someone in a 
13911 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13912 mail alias defined by your system administrator.  When you move the cursor
13913 out of this field, the nicknames will be expanded to the addresses in your
13914 address book, and the local usernames will be expanded to include the 
13915 persons' actual names.  You may enter as many addresses as you wish, but they 
13916 must be separated by commas.  You can move around this and other header fields
13917 with the arrow keys and use many of the usual composer editing keys.
13919 <UL>
13920 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13921 </UL>
13924 <H2>MESSAGE HEADER COMMANDS</H2>
13925 <!--chtml if pinemode="function_key"-->
13926 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13927 ^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>
13928 ^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>
13929 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13930 ^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>
13931 ^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>
13932 ^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>
13933 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>
13934 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>
13935 ^@&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>
13936 ----------------------------------------|<BR>
13937 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13938 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>
13939 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>
13940 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>
13941 <!--chtml else-->
13942 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13943 ^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>
13944 ^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>
13945 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13946 ^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>
13947 ^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>
13948 ^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>
13949 ^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>
13950 ^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>
13951 ^@&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>
13952 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13953 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>
13954 ^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>
13955 ^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>
13956 ^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>
13957 <!--chtml endif-->
13960 NOTE:
13961 <OL>
13962  <LI>For help on a particular command, highlight the bold text associated
13963 with it above and hit Return.
13964  <LI> The availability of certain commands 
13965 is determined by Alpine configuration files and system capabilities.
13966 At some sites, certain commands may not be available due to security or
13967 support concerns.
13968 </OL>
13971 <UL>   
13972 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13973 </UL><P>
13974 &lt;End of help on this topic&gt;
13975 </BODY>
13976 </HTML>
13977 ======= h_composer_cc ====
13978 <HTML>
13979 <HEAD>
13980 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13981 </HEAD>
13982 <BODY>
13983 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13984 The Cc: field is just like the To: field, except it is used for addressees
13985 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13986 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13987 them to see the message.  The only difference the recipients see is that their 
13988 name is in the Cc: field, rather than the To: field.
13990 For help with Cc: field editing
13991 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13993 <UL>
13994 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13995 </UL>
13997 <UL>   
13998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13999 </UL><P>
14000 &lt;End of help on this topic&gt;
14001 </BODY>
14002 </HTML>
14003 ======= h_composer_bcc ====
14004 <HTML>
14005 <HEAD>
14006 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
14007 </HEAD>
14008 <BODY>
14009 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
14010 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
14011 a copy of the message to one or more people whose addresses you do not
14012 wish disclosed, either to reduce clutter or for confidentiality.
14014 The format of the Bcc: field is just the same as the To: and Cc: fields in
14015 the way the addresses are entered.  The recipients listed here will
14016 receive a copy of the message, but --assuming your site's mail transport
14017 software is properly configured-- their addresses will not show up in the
14018 headers of the message, as delivered to all of the recipients.  The To:
14019 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
14021 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
14022 will automatically generate and place in the To: field a pseudo-address of 
14023   &quot;undisclosed-recipients: ;&quot;
14024 or whatever string has been specified in the 
14025 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14026 variable.
14028 The reason for this is to avoid embarrassment caused by some Internet
14029 mail transfer software that interprets a &quot;missing&quot; To: header as 
14030 an error and replaces it with an Apparently-to: header that may contain
14031 the addresses you entered on the Bcc: line.  In addition, it may be
14032 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
14034 You can manipulate what text ends up on the (originally) empty To:
14035 field.  Just remember to put a colon and semicolon at the end of the
14036 field, which is a special notation denoting that it is not a real address.
14038 For information on message header editing
14039 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14041 <UL>
14042 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14043 </UL>
14045 <UL>   
14046 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14047 </UL><P>
14048 &lt;End of help on this topic&gt;
14049 </BODY>
14050 </HTML>
14051 ======= h_composer_lcc ====
14052 <HTML>
14053 <HEAD>
14054 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14055 </HEAD>
14056 <BODY>
14057 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14058 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14059 you wish to send a message to a list of people but avoid having all
14060 of their addresses visible, in order to reduce clutter when the
14061 message is received.
14063 It is similar to the 
14064 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14065 in that individual
14066 addressees are hidden, but Lcc is designed to work specifically with
14067 distribution lists you have created in your 
14068 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14069 the nickname of the list on the Lcc line will result in the full name of
14070 your Alpine Address Book list being placed on the To: line of the message,
14071 using a special notation that distinguishes it from a real address. You
14072 must leave the To: line blank for your list name to appear there.
14074 For example, if you have this list entered in your Address Book:<PRE>
14076         largo         Key Largo List       DISTRIBUTION LIST:
14077                                            bogie@mgm.com
14078                                            lauren@mgm.com
14079                                            walter@mgm.com</PRE>
14082 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14083 the result is:<PRE>
14085         To      : Key Largo List: ;
14086         Cc      :
14087         Bcc     :
14088         Fcc     : sent-mail
14089         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14090                   lauren@mgm.com,
14091                   walter@mgm.com
14092         Subject :</PRE>
14094 Each recipient listed on the Lcc: line receives a copy of the message
14095 without their address being visible (as though they were listed on the
14096 Bcc: line). The colon-semicolon notation used to put the full-name of the
14097 list on the To: line is a special address format that doesn't specify any
14098 actual addressees, but does give some information to the recipients of the
14099 message.
14101 Note: if after entering an LCC, you delete the list name that is placed
14102 on the To: line, then recipients will see <PRE>
14103        To: undisclosed-recipients: ;</PRE>
14105 (or whatever string is defined in the 
14106 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14107 variable) just as in the BCC case. 
14109 For help with Lcc: field editing
14110 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14112 <UL>
14113 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14114 </UL>
14116 <UL>   
14117 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14118 </UL><P>
14119 &lt;End of help on this topic&gt;
14120 </BODY>
14121 </HTML>
14122 ======= h_composer_from =======
14123 <HTML>
14124 <HEAD>
14125 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14126 </HEAD>
14127 <BODY>
14128 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14130 This header carries your return address.  It is the address toward which
14131 replies (and often, future unrelated correspondence) will be directed,
14132 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14133 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14134 sure this address is correct.
14136 For help with message header editing
14137 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14139 <UL>
14140 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14141 </UL>
14143 <UL>   
14144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14145 </UL><P>
14146 &lt;End of help on this topic&gt;
14147 </BODY>
14148 </HTML>
14149 ======= h_composer_reply_to =======
14150 <HTML>
14151 <HEAD>
14152 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14153 </HEAD>
14154 <BODY>
14155 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14157 Most people should not need this header. The Reply-To: header is used in
14158 cases where you would like replies to your messages to be directed to an
14159 address other than your normal &quot;From:&quot; address.  This is atypical, 
14160 but can happen when you use multiple machines and do not have the same account
14161 name on each one, or when you wish to direct certain replies to accounts
14162 or folders designated for specific classes of correspondence.
14164 For help with message header editing
14165 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14167 <UL>
14168 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14169 </UL>
14172 <UL>   
14173 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14174 </UL><P>
14175 &lt;End of help on this topic&gt;
14176 </BODY>
14177 </HTML>
14178 ======= h_composer_custom_addr ====
14179 <HTML>
14180 <HEAD>
14181 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14182 </HEAD>
14183 <BODY>
14184 <H1>CUSTOMIZED HEADER FIELD</H1>
14185 This is a customized header, i.e. not one that is part of Alpine's normal
14186 set of Compose headers.
14188 For help with message header editing
14189 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14191 <UL>
14192 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14193 </UL>
14195 <UL>   
14196 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14197 </UL><P>
14198 &lt;End of help on this topic&gt;
14199 </BODY>
14200 </HTML>
14201 ======= h_composer_custom_free ====
14202 <HTML>
14203 <HEAD>
14204 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14205 </HEAD>
14206 <BODY>
14207 <H1>CUSTOMIZED HEADER FIELD</H1>
14208 This is a customized header, i.e. not one that is part of Alpine's normal
14209 set of Compose headers.
14211 This field consists of arbitrary text.
14213 For help with message header editing
14214 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14216 <UL>   
14217 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14218 </UL><P>
14219 &lt;End of help on this topic&gt;
14220 </BODY>
14221 </HTML>
14222 ====== h_composer_news =====
14223 <HTML>
14224 <HEAD>
14225 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14226 </HEAD>
14227 <BODY>
14228 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14229 Use the newsgroups line to specify any and all USENET newsgroups to which
14230 your message should be posted.  When composing a message from scratch, this
14231 line may be hidden.  If so, just press the rich headers command
14232 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14233 to make it visible.
14235 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14236 people will be reading your message.  Also, you or your system manager
14237 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14238 in order for you to be able to post.
14240 For help with message header editing
14241 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14242 <P><UL>
14243 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14244 </UL>
14246 &lt;End of help on this topic&gt;
14247 </BODY>
14248 </HTML>
14249 ======= h_composer_fcc ====
14250 <HTML>
14251 <HEADER>
14252 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14253 </HEADER>
14254 <BODY>
14255 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14256 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14257 each outgoing message.  The default value can be configured with the
14258 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14259 the file carbon copy on any message you send by editing the FCC header.<p>
14261 You may type ^T to get a list of all your folders and select one to use as
14262 the FCC for this message.<P>
14264 For help with message header editing
14265 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14267 <UL>   
14268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14269 </UL><P>
14270 &lt;End of help on this topic&gt;
14271 </BODY>
14272 </HTML>
14273 ======= h_composer_subject ====
14274 <HTML>
14275 <HEADER>
14276 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14277 </HEADER>
14278 <BODY>
14279 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14281 The subject header provides a place to enter a few words that summarize
14282 the topic of the message you are sending.  You may leave this line blank,
14283 but it is considered a courtesy to use a meaningful subject.<p>
14285 For help with message header editing
14286 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14288 <UL>   
14289 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14290 </UL><P>
14291 &lt;End of help on this topic&gt;
14292 </BODY>
14293 </HTML>
14294 ======= h_composer_attachment ====
14295 <HTML>
14296 <HEAD>
14297 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14298 </HEAD>
14299 <BODY>
14300 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14302 The &quot;Attchmnt:&quot; field is where you specify what file or
14303 files you'd like attached to
14304 the message you are composing.  Those files must reside on the machine
14305 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14306 account on a Unix machine, you'll have to transfer it before attaching it.
14307 Contact local computer support people for assistance with transferring.
14310 The file name
14311 given can be an absolute file path name for your system
14312 <!--chtml if pinemode="os_windows"-->
14313 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14314 with a relative pathname, or simply a file name without
14315 drive or directory specification.  
14316 <!--chtml else-->
14317 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14318 a file in your home directory, or a file path relative to your 
14319 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14320 your home directory or &quot;~user&quot; to refer to another
14321 account's home directory.
14322 <!--chtml endif--><P>
14323 No wild card characters may be used.
14324 <P>If the 
14325 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14326 feature is set, names are relative to your current working directory 
14327 <!--chtml if pinemode="running"-->
14328 (which, at least for your current Alpine &quot;session,&quot; 
14329 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14330 <!--chtml endif-->
14331 rather than your home directory
14332 <!--chtml if pinemode="running"-->
14333 (which, in the present configuration of your system, is
14334  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14335 <!--chtml endif-->
14338 Alpine uses MIME encoding for attachments, so binaries and files of any
14339 length can safely be delivered to any MIME-capable mail reading program.
14340 If you send an attachment to someone who does not have a MIME-capable mail
14341 reading program yet, then the main message text will be readable, but
14342 attachments (even attachments that are just plain text) are not.
14345 Typing the filename on the Attchmnt: line achieves the same
14346 result as using the 
14347 <!--chtml if pinemode="function_key"-->
14349 <!--chtml else-->
14350 Ctrl-J
14351 <!--chtml endif--> command.
14354 If you Forward a message with attachments, you may delete them from your
14355 Forwarded message by editing the Attchmnt header line.
14358 For help with message header editing
14359 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14361 <UL>   
14362 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14363 </UL><P>
14364 &lt;End of help on this topic&gt;
14365 </BODY>
14366 </HTML>
14367 ======= h_composer_ctrl_j ====
14368 <HTML>
14369 <HEAD>
14370 <TITLE>COMPOSER ATTACH</TITLE>
14371 </HEAD>
14372 <BODY>
14373 After the
14374 <!--chtml if pinemode="function_key"-->
14376 <!--chtml else-->
14377 Ctrl-J
14378 <!--chtml endif--> command:
14379 At the &quot;File to attach:&quot; prompt, enter the name of the 
14380 existing file to attach to your message.  
14381 When the feature
14382 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14383 is set
14384 you need only enter the beginning of the filename (enough of it to uniquely 
14385 identify the file) and press TAB to complete it.
14387 Or, press ^T to use the BROWSER screen for 
14388 selecting the file.  <P>
14389 For more information on attaching files, see the help screen for the 
14390 composer's 
14391 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14392 but can be revealed using the 
14393 <!--chtml if pinemode="function_key"-->
14395 <!--chtml else-->
14396 Ctrl-R
14397 <!--chtml endif--> 
14398 command with the cursor positioned above the
14399 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14401 &lt;End of help on this topic&gt;
14402 </BODY>
14403 </HTML>
14404 ======= h_edit_nav_cmds =========
14405 <HTML>
14406 <HEAD>
14407 <TITLE>Composer Editing Commands Explained</TITLE>
14408 </HEAD>
14409 <BODY>
14410 <H1>EDITING and NAVIGATION COMMANDS</H1>
14411 <!--chtml if pinemode="function_key"-->
14412 <PRE>
14413 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14414 ^B (Left Arrow)    Back character       | ^D       Delete current character
14415 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14416 ^P (Up Arrow)      Previous line        |
14417 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14418 ^A                 Beginning of line    |            delete current line
14419 ^E                 End of line          | F10      Undelete line(s)
14420 F7                 Previous page        |
14421 F8                 Next page            |-------------------------------------
14422 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14423 ----------------------------------------|
14424 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14425 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14426 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14427 </PRE>
14428 <!--chtml else-->
14429 <PRE>
14430 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14431 ^B (Left Arrow)    Back character       | ^D       Delete current character
14432 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14433 ^P (Up Arrow)      Previous line        |
14434 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14435 ^A                 Beginning of line    |            delete current line
14436 ^E                 End of line          | ^U       Undelete line(s)
14437 ^Y                 Previous page        |
14438 ^V                 Next page            |-------------------------------------
14439 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14440 ----------------------------------------|
14441 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14442 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14443 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14444 </PRE>
14445 <!--chtml endif-->
14446 &lt;End of help on this topic&gt;
14447 </BODY>
14448 </HTML>
14449 ===== h_composer_sigedit =====
14450 <HTML>
14451 <HEAD>
14452 <TITLE>Signature Editor Commands Explained</TITLE>
14453 </HEAD>
14454 <BODY>
14455 <H1>SIGNATURE EDITOR COMMANDS</H1>
14456 <!--chtml if pinemode="function_key"-->
14457 <PRE>
14458 CURSOR MOTION KEYS                     |EDITING KEYS
14459   ^B (Left Arrow)   Back character     | ^D       Delete current character
14460   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14461   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14462   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14463   ^A                Beginning of line  |           delete current line
14464   ^E                End of line        | F10       Paste text, undelete lines
14465   F7                Previous page      |           cut with ^K, or unjustify
14466   F8                Next page          |-------------------------------------
14467   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14468 ---------------------------------------| F6       Whereis (search for string)
14469 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14470  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14471                  |  ^Z    Suspend      | ^L       Redraw Screen
14472  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14473 </PRE>
14474 <!--chtml else-->
14475 <PRE>
14476 CURSOR MOTION KEYS                     |EDITING KEYS
14477   ^B (Left Arrow)   Back character     | ^D       Delete current character
14478   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14479   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14480   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14481   ^A                Beginning of line  |           delete current line
14482   ^E                End of line        | ^U        Paste text, undelete lines
14483   ^Y                Previous page      |           cut with ^K, or unjustify
14484   ^V                Next page          |-------------------------------------
14485   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14486 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14487 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14488  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14489                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14490  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14491 </PRE>
14492 <!--chtml endif-->
14494 NOTE: The presence or absence of the following commands is determined
14495 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14496 some of these commands may be administratively disabled by your system
14497 manager; if they don't work, please check with your local help desk
14498 before reporting a bug.
14500 <UL>
14501  <LI>Suspend (suspends Alpine and gives a system prompt)
14502  <LI>Alternate editor (allows you to compose with your own editor)
14503 </UL>
14506 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14507 Ctrl-&#92;, ESC
14510 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14511 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14513 &lt;End of help on this topic&gt;
14514 </BODY>
14515 </HTML>
14516 ===== h_composer_commentedit =====
14517 <HTML>
14518 <HEAD>
14519 <TITLE>Comment Editor Commands Explained</TITLE>
14520 </HEAD>
14521 <BODY>
14522 <H1>COMMENT EDITOR COMMANDS</H1>
14523 <!--chtml if pinemode="function_key"-->
14524 <PRE>
14525 CURSOR MOTION KEYS                     |EDITING KEYS
14526   ^B (Left Arrow)   Back character     | ^D       Delete current character
14527   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14528   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14529   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14530   ^A                Beginning of line  |           delete current line
14531   ^E                End of line        | F10       Paste text, undelete lines
14532   F7                Previous page      |           cut with ^K, or unjustify
14533   F8                Next page          |-------------------------------------
14534   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14535 ---------------------------------------| F6       Whereis (search for string)
14536 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14537  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14538                  |  ^Z    Suspend      | ^L       Redraw Screen
14539  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14540 </PRE>
14541 <!--chtml else-->
14542 <PRE>
14543 CURSOR MOTION KEYS                     |EDITING KEYS
14544   ^B (Left Arrow)   Back character     | ^D       Delete current character
14545   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14546   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14547   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14548   ^A                Beginning of line  |           delete current line
14549   ^E                End of line        | ^U        Paste text, undelete lines
14550   ^Y                Previous page      |           cut with ^K, or unjustify
14551   ^V                Next page          |-------------------------------------
14552   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14553 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14554 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14555  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14556                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14557  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14558 </PRE>
14559 <!--chtml endif-->
14561 NOTE: The presence or absence of the following commands is determined
14562 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14563 some of these commands may be administratively disabled by your system
14564 manager; if they don't work, please check with your local help desk
14565 before reporting a bug.
14567 <UL>
14568  <LI>Suspend (suspends Alpine and gives a system prompt)
14569  <LI>Alternate editor (allows you to compose with your own editor)
14570 </UL>
14573 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14574 Ctrl-&#92;, ESC
14577 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14578 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14580 &lt;End of help on this topic&gt;
14581 </BODY>
14582 </HTML>
14583 ======= h_composer_abook_nick =======
14584 <HTML>
14585 <HEAD>
14586 <TITLE>Addressbook Nickname Explained</TITLE>
14587 </HEAD>
14588 <BODY>
14589 This is a short nickname for this address book entry.  If it is used in
14590 place of an address from the composer, the composer will fill in the
14591 address(es) for the entry that matches the nickname. 
14594 Look <A HREF="h_edit_nav_cmds">here</A>
14595 to see the available Editing and Navigation commands.
14597 &lt;End of help on this topic&gt;
14598 </BODY>
14599 </HTML>
14600 ======= h_composer_abook_full =======
14601 <HTML>
14602 <HEAD>
14603 <TITLE>Addressbook Fullname Explained</TITLE>
14604 </HEAD>
14605 <BODY>
14606 This is the full name field for this entry.  If this is going to be a
14607 distribution list (more than one address), it should be a descriptive
14608 phrase describing the list.  It will be included in the mail header if you
14609 put the list in the To: or CC: field, or in the To: line if you put the
14610 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14611 leave any of the other fields blank, too). If this address book entry is
14612 going to be a simple entry with just one address, then this field is the
14613 person's name. When you send mail to this entry, this is the field to the
14614 left of the brackets. That is, it is the most readable part of the 
14615 address. For example, in the sample address:
14616 <PRE>
14617        John Doe &lt;jdoe@some.domain&gt;
14618 </PRE>
14619 "John Doe" is the full name field. If you are sorting your address book
14620 with one of the options that uses full names, then it might be useful to
14621 enter the full name as "Last, First", for example:
14622 <PRE>
14623        Doe, John
14624 </PRE>
14625 so that it will be sorted using Doe instead of John. This will be changed
14626 back into John Doe when you use it.
14628 Look <A HREF="h_edit_nav_cmds">here</A>
14629 to see the available Editing and Navigation commands.
14631 &lt;End of help on this topic&gt;
14632 </BODY>
14633 </HTML>
14634 ======= h_composer_abook_fcc =======
14635 <HTML>
14636 <HEAD>
14637 <TITLE>Addressbook Fcc Explained</TITLE>
14638 </HEAD>
14639 <BODY>
14640 If this entry is the first one in the To: line of an outgoing message,
14641 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14642 you would normally get (which depends on which
14643 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14644 you've chosen). 
14646 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14647 that you don't want any Fcc associated with this entry.
14649 Look <A HREF="h_edit_nav_cmds">here</A>
14650 to see the available Editing and Navigation commands.
14652 &lt;End of help on this topic&gt;
14653 </BODY>
14654 </HTML>
14655 ====== h_config_combined_abook_display =====
14656 <HTML>
14657 <HEAD>
14658 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14659 </HEAD>
14660 <BODY>
14661 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14663 This feature affects the address book display screens.
14664 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14665 will cause the remaining address books and directory servers to disappear
14666 from the screen, leaving only the entries of the expanded address book.
14667 If this feature is set, then the other address books will remain on the screen,
14668 so that all of the address books can be present at once.
14671 The way that commands work won't be changed.
14672 For example, the Select All command will select all of the entries in the
14673 current address book, not all of the entries in all of the address books.
14674 The WhereIs command will change a little.
14675 It will search through all of the text on the screen plus all of the entries
14676 from expanded address books.
14679 When this feature is set, the setting of the feature
14680 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14681 has an effect.
14683 &lt;End of help on this topic&gt;
14684 </BODY>
14685 </HTML>
14686 ====== h_config_titlebar_color_style =====
14687 <HTML>
14688 <HEAD>
14689 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14690 </HEAD>
14691 <BODY>
14692 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14694 This option affects the colors used to display the titlebar (the top
14695 line on the screen) when viewing a message.
14698 The available options include:
14701 <DL>
14702 <DT>default</DT>
14703 <DD>The color of the titlebar will be the color you set for the
14704 <A HREF="h_config_title_color">Title Color</A>.
14705 The Title Color may be set by using the
14706 <A HREF="h_color_setup">Setup Kolor</A> screen.
14707 </DD>
14709 <DT>indexline</DT>
14710 <DD>The color of the titlebar will be the same as the color of the
14711 index line corresponding to the message being viewed.
14712 The rules that determine what color the index line will be may be set
14713 up by going to the Setup/Rules/Indexcolor screen.
14714 If the index line for a message is not colored explicitly by the
14715 Indexcolor rules, then the titlebar will be colored the same as for
14716 the &quot;default&quot; option above (which is not the same color that
14717 the index line itself will have).
14718 </DD>
14720 <DT>reverse-indexline</DT>
14721 <DD>This is similar to the &quot;indexline&quot; option except the
14722 foreground and background colors from the corresponding index line will
14723 be reversed.
14724 For example, if the index line color is red letters on a white background,
14725 then the titlebar will be white letters on a red background.
14726 If the index line for a message is not colored explicitly by the
14727 Indexcolor rules, then the titlebar will be colored the same as for
14728 the &quot;default&quot; option above (which is not the same color that
14729 the index line itself will have).
14730 </DD>
14731 </DL>
14735 <UL>   
14736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14737 </UL><P>
14738 &lt;End of help on this topic&gt;
14739 </BODY>
14740 </HTML>
14741 ====== h_config_index_color_style =====
14742 <HTML>
14743 <HEAD>
14744 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14745 </HEAD>
14746 <BODY>
14747 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14749 This option affects the colors used to display the current line in the
14750 MESSAGE INDEX screen.
14751 If you do not have Index Color Rules defined, then this option will
14752 have no effect in the index.
14753 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14755 If the option
14756 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14757 is turned on and the
14758 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14759 is set to something other than the default, then
14760 this option also affects the color used to display the current folder
14761 in the Incoming FOLDER LIST screen.
14764 The available options include:
14767 <DL>
14768 <DT>flip-colors</DT>
14769 <DD>This is the default.
14770 If an index line is colored because it matches one of your
14771 Index Color Rules, then its colors will be reversed when it is the currently
14772 highlighted line.
14773 For example, if the line is normally red text on a blue background, then
14774 when it is the current line it will be drawn as blue text on a red background.
14776 The rest of the option values all revert to this flip-colors behavior if
14777 there is no Reverse Color defined.
14778 </DD>
14780 <DT>reverse</DT>
14781 <DD>With this option the Reverse color is always used to highlight the
14782 current line.
14783 </DD>
14785 <DT>reverse-fg</DT>
14786 <DD>The foreground part of the Reverse Color is used to highlight
14787 the current line.
14788 If this would cause the text to be unreadable (because the foreground and
14789 background colors are the same) or if it would cause no change in the
14790 color of the index line, then the colors are flipped instead.
14792 Some people think this works particularly well if you use different
14793 background colors to emphasize &quot;interesting&quot; lines,
14794 but always with the same Normal foreground color,
14795 and you use a different foreground color for the Reverse Color.
14796 </DD>
14798 <DT>reverse-fg-no-ambiguity</DT>
14799 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14800 the resulting color will be exactly the same as the regular Reverse
14801 Color.
14802 That can lead to some possible confusion because an
14803 &quot;interesting&quot;
14804 line that is the current line will be displayed exactly the same as a
14805 non-interesting line that is current.
14806 You can't tell whether the line is just a regular current line or if it is
14807 an &quot;interesting&quot; current line by looking at the color.
14808 Setting the option to this value removes that ambiguity.
14809 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14810 interesting current line would look just like a non-interesting current line.
14811 In that case, the interesting line's colors are simply flipped (like in the
14812 default behavior).
14814 As an alternative way to preserve the line's interestingness in this case,
14815 you may find that using both a different foreground and a different
14816 background color for the interesting line will help.
14817 </DD>
14819 <DT>reverse-bg</DT>
14820 <DD>The background part of the Reverse Color is used to highlight
14821 the current line.
14822 If this would cause the text to be unreadable (because the foreground and
14823 background colors are the same) or if it would cause no change in the
14824 color of the index line, then the colors are flipped instead.
14826 Some people think this works particularly well if you use different
14827 foreground colors to emphasize &quot;interesting&quot; lines,
14828 but always with the same Normal background color,
14829 and you use a different background color for the Reverse Color.
14830 </DD>
14832 <DT>reverse-bg-no-ambiguity</DT>
14833 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14834 rule may also result in a color that is exactly the same as the regular
14835 Reverse Color.
14836 Setting the option to this value removes that ambiguity.
14837 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14838 current line has the same color as the Reverse Color.
14839 In that case, the interesting line's colors are simply flipped (like in the
14840 default behavior).
14841 </DD>
14842 </DL>
14846 <UL>   
14847 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14848 </UL><P>
14849 &lt;End of help on this topic&gt;
14850 </BODY>
14851 </HTML>
14852 ====== h_config_expanded_addrbooks =====
14853 <HTML>
14854 <HEAD>
14855 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14856 </HEAD>
14857 <BODY>
14858 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14860 If multiple address books (either personal or global) are defined, and you
14861 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14862 screen, then set this feature. This feature will have no effect unless the
14863 feature
14864 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14865 is also set.
14867 &lt;End of help on this topic&gt;
14868 </BODY>
14869 </HTML>
14870 ====== h_config_combined_folder_display =====
14871 <HTML>
14872 <HEAD>
14873 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14874 </HEAD>
14875 <BODY>
14876 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14878 This feature affects the folder list display screens.
14879 Normally, each folder list is viewed within its collection only.  This
14880 command allows folder lists to be viewed within a single screen that
14881 combines the contents of all collections.
14884 The way that commands work won't be changed.
14885 For example, the Select All command will select all of the folders in the
14886 current collection, not all of the entries in all of the collections.
14887 The WhereIs command will change a little.
14888 It will search through all of the folders in the current collection as well
14889 as all the folder in any other expanded collection.
14892 When this feature is set, the setting of the feature
14893 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14894 has an effect.
14896 &lt;End of help on this topic&gt;
14897 </BODY>
14898 </HTML>
14899 ====== h_config_combined_subdir_display =====
14900 <HTML>
14901 <HEAD>
14902 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14903 </HEAD>
14904 <BODY>
14905 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14907 This feature affects the Folder List screen when
14909 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14910 feature is enabled.  Normally, selecting a directory from the Folder
14911 List takes you into a new screen displaying only the contents of
14912 that directory.
14915 Enabling this feature will cause the contents of the selected
14916 directory to be
14917 displayed within the boundaries of the &quot;Collection&quot; it
14918 is a part of.  All previously displayed collections will remain
14919 in the screen.
14922 The way that commands work won't be changed.
14923 For example, the Select All command will select all of the folders in the
14924 directory, as opposed to all of the entries in all of the collections.
14925 The WhereIs command will change a little.
14926 It will search through all of the folders in the current collection as well
14927 as all the folder in any other expanded collection.
14930 &lt;End of help on this topic&gt;
14931 </BODY>
14932 </HTML>
14933 ====== h_config_separate_fold_dir_view =====
14934 <HTML>
14935 <HEAD>
14936 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14937 </HEAD>
14938 <BODY>
14939 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14941 This feature affects folder collections wherein a folder
14942 and directory can have the same name.  By default, Alpine displays them
14943 only once, denoting that it is both a folder and directory by appending
14944 the folder name with the hierarchy character enclosed
14945 in square brackets.
14949 Enabling this feature will cause Alpine to display such names
14950 separately marking the name representing a directory with a trailing
14951 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14954 The feature also alters the command set slightly.  By default, the
14955 right-arrow descends into the directory, while hitting the Return key will
14956 cause the folder by that name to be opened.
14959 With this feature set, the Return key will open the highlighted folder, or
14960 enter the highlighted directory.
14963 &lt;End of help on this topic&gt;
14964 </BODY>
14965 </HTML>
14966 ====== h_config_expanded_folders =====
14967 <HTML>
14968 <HEAD>
14969 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14970 </HEAD>
14971 <BODY>
14972 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14974 If multiple folder collections are defined, and you
14975 wish to have them all expanded implicitly upon entering the FOLDER LIST
14976 screen, then set this feature. This feature will have no effect unless the
14977 feature
14978 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14979 is also set.
14981 &lt;End of help on this topic&gt;
14982 </BODY>
14983 </HTML>
14984 ======= h_config_ldap_server =======
14985 <HTML>
14986 <HEAD>
14987 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14988 </HEAD>
14989 <BODY>
14990 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14991 This is the name of the host where an LDAP server is running.
14992 For redundancy, this may be a space-delimited set of server names, in which
14993 case the first server that answers is used.
14994 Each of the server names may be optionally followed by
14995 a colon and a port number.
14996 If this form is used then the port number configured below in the
14997 <EM>port</EM> field is not used.
14999 To find out whether your organization has its own LDAP server, 
15000 contact its computing support staff.
15001 <P><UL>
15002 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15003 </UL>
15005 &lt;End of help on this topic&gt;
15006 </BODY>
15007 </HTML>
15008 ======= h_config_ldap_base =======
15009 <HTML>
15010 <HEAD>
15011 <TITLE>LDAP OPTION: Search-Base</TITLE>
15012 </HEAD>
15013 <BODY>
15014 <H1>LDAP OPTION: Search-Base</H1>
15016 This is the search base to be used on this server.  It functions as a filter 
15017 by restricting your searches in the LDAP server database
15018 to the specified contents of the specified fields.  Without it, searches 
15019 submitted to this directory server may fail.  It might be something
15020 like:
15022 <PRE>
15023       O = &lt;Your Organization Name&gt;, C = US
15024 </PRE>
15025 or it might be blank.  
15026 (Some LDAP servers actually ignore anything specified here.)
15028 If in doubt what parameters you should specify here, 
15029 contact the maintainers of the LDAP server.
15030 <P><UL>
15031 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15032 </UL>
15034 &lt;End of help on this topic&gt;
15035 </BODY>
15036 </HTML>
15037 ======= h_config_ldap_port =======
15038 <HTML>
15039 <HEAD>
15040 <TITLE>LDAP OPTION: Port</TITLE>
15041 </HEAD>
15042 <BODY>
15043 <H1>LDAP OPTION: Port</H1>
15045 This is the TCP port number to be used with this LDAP server. If you leave
15046 this blank port 389 will be used.
15048 &lt;End of help on this topic&gt;
15049 </BODY>
15050 </HTML>
15051 ======= h_config_ldap_nick =======
15052 <HTML>
15053 <HEAD>
15054 <TITLE>LDAP OPTION: Nickname</TITLE>
15055 </HEAD>
15056 <BODY>
15057 <H1>LDAP OPTION: Nickname</H1>
15059 This is a nickname to be used in displays. If you don't supply a
15060 nickname the server name
15061 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15062 will be used instead.  This option is strictly for your convenience.
15064 &lt;End of help on this topic&gt;
15065 </BODY>
15066 </HTML>
15067 ======= h_config_ldap_binddn =======
15068 <HTML>
15069 <HEAD>
15070 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15071 </HEAD>
15072 <BODY>
15073 <H1>LDAP OPTION: Bind-DN</H1>
15075 You may need to authenticate to the LDAP server before you are able to use it.
15076 This is the Distinguished Name to bind to when authenticating to this server.
15077 Try leaving this blank until you know you need it.
15079 Alpine only knows about LDAP Simple authentication.
15080 It does not attempt LDAP SASL authentication.
15081 The DN and password will be sent in the clear unless TLS encryption is
15082 being used on this connection.
15083 Because of this, you may want to set the LDAP feature
15084 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15085 or the feature
15086 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15087 if you are going to be providing a password.
15088 <P><UL>
15089 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15090 </UL>
15092 &lt;End of help on this topic&gt;
15093 </BODY>
15094 </HTML>
15095 ======= h_config_ldap_opts_impl =======
15096 <HTML>
15097 <HEAD>
15098 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15099 </HEAD>
15100 <BODY>
15101 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15103 Set this to have lookups done to this server implicitly from the composer.
15104 If an address doesn't look like a fully-qualified address, it will be looked
15105 up in your address books, and if it doesn't match a nickname there, then it
15106 will be looked up on the LDAP servers that have this feature set.
15107 The lookups will also be done when using the address completion feature
15108 (TAB command) in the composer if any of the serves have this feature set.
15109 Also see the LDAP feature
15110 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15111 and the Setup/Config feature
15112 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15114 &lt;End of help on this topic&gt;
15115 </BODY>
15116 </HTML>
15117 ======= h_config_ldap_opts_tls =======
15118 <HTML>
15119 <HEAD>
15120 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15121 </HEAD>
15122 <BODY>
15123 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15125 When connecting to this server Alpine will attempt to use TLS encryption
15126 on the connection.
15127 Also see the closely related feature
15128 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15130 Note that if this option is set, then 
15131 <A HREF="h_config_ldap_opts_ldaps">
15132 &quot;Require-LDAPS-On-Connection&quot;</A>
15133 can not be enabled for this server. You must disable this feature in
15134 order to use 
15135 <A HREF="h_config_ldap_opts_ldaps">
15136 &quot;Require-LDAPS-On-Connection&quot;</A>
15138 &lt;End of help on this topic&gt;
15139 </BODY>
15140 </HTML>
15141 ======= h_config_ldap_opts_tlsmust =======
15142 <HTML>
15143 <HEAD>
15144 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15145 </HEAD>
15146 <BODY>
15147 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15149 When connecting to this server Alpine will attempt to use TLS encryption
15150 on the connection.
15151 If the StartTLS operation fails then the connection will not be used.
15153 Note that if this option is set, then 
15154 <A HREF="h_config_ldap_opts_ldaps">
15155 &quot;Require-LDAPS-On-Connection&quot;</A>
15156 can not be enabled for this server. You must disable this feature in
15157 order to use 
15158 <A HREF="h_config_ldap_opts_ldaps">
15159 &quot;Require-LDAPS-On-Connection&quot;</A>
15161 &lt;End of help on this topic&gt;
15162 </BODY>
15163 </HTML>
15164 ======= h_config_ldap_opts_ldaps =======
15165 <HTML>
15166 <HEAD>
15167 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15168 </HEAD>
15169 <BODY>
15170 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15172 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15173 on the connection.
15175 This feature can not be used along with 
15176 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15177  or
15178 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15179 If you want to connect using StartTLS to this server, you must disable
15180 this feature first.
15182 &lt;End of help on this topic&gt;
15183 </BODY>
15184 </HTML>
15185 ====== h_config_ldap_opts_rhs =====
15186 <HTML>
15187 <HEAD>
15188 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15189 </HEAD>
15190 <BODY>
15191 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15193 Normally implicit LDAP lookups from the composer are done only for the
15194 strings you type in from the composer screen. In other words, you type in
15195 something in the To or CC field and press return, then the string is looked up.
15196 First that string is looked up in your address books. If a match is found
15197 there, then the results of that match are looked up again. If you place
15198 a string in your address book that you want to have looked up on the LDAP
15199 directory server, you need to turn on this feature. If you set this feature
15200 for a server, you almost always will also want to set the
15201 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15202 feature. An example might serve to best illustrate this feature.
15204 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15205 entry with an
15206 address of pres@whitehouse.gov, then you might put an entry in your address
15207 book that looks like:
15209 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15210 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15212 Now, when you type &quot;bill&quot; into an
15213 address field in the composer Alpine will
15214 find the &quot;bill&quot; entry in your address book.
15215 It will replace &quot;bill&quot; with
15216 &quot;William Clinton&quot;.
15217 It will then search for an entry with that nickname
15218 in your address book and not find one. If this feature
15219 is set, Alpine will then attempt to lookup
15220 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15221 pres@whitehouse.gov.
15223 A better way to accomplish the same thing is probably to use the feature
15224 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15226 &lt;End of help on this topic&gt;
15227 </BODY>
15228 </HTML>
15229 ====== h_config_ldap_opts_ref =====
15230 <HTML>
15231 <HEAD>
15232 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15233 </HEAD>
15234 <BODY>
15235 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15237 Normally when you save the results of an LDAP directory lookup to your
15238 address book the results of the lookup are saved. If this feature is set
15239 and the entry being saved was found on this directory server, then the
15240 search criteria is saved instead of the results of the search. When this
15241 address book entry is used in the future, instead of copying the results
15242 from the address book the directory lookup will be done again. This could
15243 be useful if the copied result might become stale because the data on
15244 the directory server changes (for example, the entry's email address changes).
15245 You probably don't want to set this feature if the server is at all slow or
15246 unreliable.
15248 The way this actually works is that instead of saving the email address
15249 in your address book, Alpine saves enough information to look up the same
15250 directory entry again. In particular, it saves the server name and the
15251 distinguished name of the entry. It's possible that the server administrators
15252 might change the format of distinguished names on the server, or that the
15253 entry might be removed from the server. If Alpine notices this, you will be warned
15254 and a backup copy of the email address will be used. You may want to create
15255 a new entry in this case, since you will get the annoying warning every
15256 time you use the old entry. You may do that by Saving the entry to a new
15257 nickname in the same address book. You will be asked whether or not you
15258 want to use the backup email address.
15260 A related feature in the Setup/Config screen is
15261 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15263 &lt;End of help on this topic&gt;
15264 </BODY>
15265 </HTML>
15266 ======= h_config_ldap_opts_nosub =======
15267 <HTML>
15268 <HEAD>
15269 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15270 </HEAD>
15271 <BODY>
15272 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15274 Spaces in your input are normally handled specially.
15275 Each space character is replaced
15278 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15280 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15281 The reason this is done is so the input string
15283 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15285 (which is converted to &quot;Greg* Donald&quot;) will match
15286 the names &quot;Greg Donald&quot;,
15287 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15288 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15289 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15290 then it would also match the name &quot;Greg Donaldson&quot;.
15292 Turning on this feature will disable this substitution.
15294 &lt;End of help on this topic&gt;
15295 </BODY>
15296 </HTML>
15297 ====== h_config_ldap_searchtypes =======
15298 <HTML>
15299 <HEAD>
15300 <TITLE>LDAP OPTION: Search-Type</TITLE>
15301 </HEAD>
15302 <BODY>
15303 <H1>LDAP OPTION: Search-Type</H1>
15305 This affects the way that LDAP searches are done.
15306 In particular, this tells the server where to look for the string to be matched.
15307 If set to &quot;name&quot; then the string that is being searched for will
15308 be compared with the string in the
15309 &quot;Name&quot; field on the server
15310 (technically, it is the &quot;commonname&quot; field on the server).
15311 &quot;Surname&quot; means we're looking for a
15312 match in the &quot;Surname&quot; field on the
15313 server (actually the &quot;sn&quot; field).
15314 &quot;Givenname&quot; really is &quot;givenname&quot;
15315 and &quot;email&quot; is the electronic mail address (this is actually the field
15316 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15317 The other three types are combinations of
15318 the types listed so far. &quot;Name-or-email&quot;
15319 means the string should appear
15320 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15321 Likewise, &quot;surname-or-givenname&quot;
15322 means &quot;surname&quot; OR &quot;givenname&quot;
15323 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15325 This search TYPE is combined with the
15326 search <A HREF="h_config_ldap_searchrules">RULE</A>
15327 to form the actual search query.
15329 The usual default value for this
15330 option is &quot;sur-or-given-or-name-or-email&quot;.
15331 This type of search may be slow on some servers.
15332 Try &quot;name-or-email&quot;, which is often
15333 faster, or just &quot;name&quot; if the performance seems to be a problem.
15335 Some servers have been configured with different attribute names for
15336 these four fields.
15337 In other words, instead of using the attribute name &quot;mail&quot;
15338 for the email address field, the server might be configured to use something
15339 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15340 Alpine can be configured to use these different attribute names by using
15341 the four configuration options:
15342 <P><UL>
15343 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15344 </UL>
15345 <P><UL>
15346 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15347 </UL>
15348 <P><UL>
15349 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15350 </UL>
15351 <P><UL>
15352 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15353 </UL>
15355 &lt;End of help on this topic&gt;
15356 </BODY>
15357 </HTML>
15358 ====== h_config_ldap_searchrules =======
15359 <HTML>
15360 <HEAD>
15361 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15362 </HEAD>
15363 <BODY>
15364 <H1>LDAP OPTION: Search-Rule</H1>
15366 This affects the way that LDAP searches are done.
15367 If set to &quot;equals&quot; then
15368 only exact matches count.
15369 &quot;Contains&quot; means that the string you type in
15370 is a substring of what you are matching against.
15371 &quot;Begins-with&quot; and &quot;ends-with&quot;
15372 mean that the string starts or ends with the string you type in.
15374 Spaces in your input are normally handled specially, but you can turn that
15375 special handling off with the
15376 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15377 feature.
15379 The usual default value for this option is &quot;begins-with&quot;.
15381 &lt;End of help on this topic&gt;
15382 </BODY>
15383 </HTML>
15384 ======= h_config_ldap_email_attr =======
15385 <HTML>
15386 <HEAD>
15387 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15388 </HEAD>
15389 <BODY>
15390 <H1>LDAP OPTION: EmailAttribute</H1>
15392 This is the name of the attribute that is searched for when looking for
15393 an email address. The default value for this option is &quot;mail&quot; or
15394 &quot;electronicmail&quot;.
15395 If the server you are using uses a different attribute name for the email
15396 address, put that attribute name here.
15398 This will affect the search filter used if your Search-Type is one that
15399 contains a search for &quot;email&quot;.
15400 It will also cause the attribute value matching this attribute name to be used
15401 as the email address when you look up an entry from the composer.
15403 &lt;End of help on this topic&gt;
15404 </BODY>
15405 </HTML>
15406 ======= h_config_ldap_sn_attr =======
15407 <HTML>
15408 <HEAD>
15409 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15410 </HEAD>
15411 <BODY>
15412 <H1>LDAP OPTION: SurnameAttribute</H1>
15414 This is the name of the attribute that is searched for when looking for
15415 the surname of the entry. The default value for this option is &quot;sn&quot;.
15416 If the server you are using uses a different attribute name for the surname,
15417 put that attribute name here.
15418 This will affect the search filter used if your Search-Type is one that
15419 contains a search for &quot;surname&quot;.
15421 &lt;End of help on this topic&gt;
15422 </BODY>
15423 </HTML>
15424 ======= h_config_ldap_gn_attr =======
15425 <HTML>
15426 <HEAD>
15427 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15428 </HEAD>
15429 <BODY>
15430 <H1>LDAP OPTION: GivennameAttribute</H1>
15432 This is the name of the attribute that is searched for when looking for
15433 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15434 If the server you are using uses a different attribute name for the given name,
15435 put that attribute name here.
15436 This will affect the search filter used if your Search-Type is one that
15437 contains a search for &quot;givenname&quot;.
15439 &lt;End of help on this topic&gt;
15440 </BODY>
15441 </HTML>
15442 ======= h_config_ldap_cn_attr =======
15443 <HTML>
15444 <HEAD>
15445 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15446 </HEAD>
15447 <BODY>
15448 <H1>LDAP OPTION: NameAttribute</H1>
15450 This is the name of the attribute that is searched for when looking for
15451 the name of the entry. The default value for this option is &quot;cn&quot;, which
15452 stands for common name.
15453 If the server you are using uses a different attribute name for the name,
15454 put that attribute name here.
15455 This will affect the search filter used if your Search-Type is one that
15456 contains a search for &quot;name&quot;.
15458 &lt;End of help on this topic&gt;
15459 </BODY>
15460 </HTML>
15461 ======= h_config_ldap_time =======
15462 <HTML>
15463 <HEAD>
15464 <TITLE>LDAP OPTION: Timelimit</TITLE>
15465 </HEAD>
15466 <BODY>
15467 <H1>LDAP OPTION: Timelimit</H1>
15469 This places a limit on the number of seconds the LDAP search will continue.
15470 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15471 may place limits of their own on searches.
15473 &lt;End of help on this topic&gt;
15474 </BODY>
15475 </HTML>
15476 ======= h_config_ldap_size =======
15477 <HTML>
15478 <HEAD>
15479 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15480 </HEAD>
15481 <BODY>
15482 <H1>LDAP OPTION: Sizelimit</H1>
15484 This places a limit on the number of entries returned by the LDAP server.
15485 A value of 0 means no limit. The default is 0. Note that some servers
15486 may place limits of their own on searches.
15488 &lt;End of help on this topic&gt;
15489 </BODY>
15490 </HTML>
15491 ======= h_config_ldap_cust =======
15492 <HTML>
15493 <HEAD>
15494 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15495 </HEAD>
15496 <BODY>
15497 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15499 This one is for advanced users only! If you define this, then the
15500 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15501 However, the feature
15502 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15503 is still in effect.
15504 That is, the space substitution will take place even in a custom filter unless
15505 you disable it.
15507 If your LDAP service stops working and you suspect it might be because
15508 of your custom filter, just delete this filter and try using the
15509 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15510 Another option that sometimes causes trouble is the
15511 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15513 This variable may be set to the string representation of an LDAP search
15514 filter (see RFC1960). In the places where you want the address string to be
15515 substituted in, put a '%s' in this filter string. Here are some examples:
15517 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15518 is equivalent to the &quot;Custom-Search-Filter&quot;
15519 <PRE>
15520      (cn=%s*)
15521 </PRE>
15522 When you try to match against the string &quot;string&quot; the program replaces
15523 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15524 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15526 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15527 of &quot;contains&quot; is equivalent to
15528 <PRE>
15529      (|(cn=*%s*)(mail=*%s*))
15530 </PRE>
15532 If your server uses a different attribute <EM>name</EM> than
15533 Alpine uses by default,
15534 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15535 then you may be able to use one or more of the four attribute configuration
15536 options instead of defining a custom filter:
15537 <P><UL>
15538 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15539 </UL>
15540 <P><UL>
15541 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15542 </UL>
15543 <P><UL>
15544 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15545 </UL>
15546 <P><UL>
15547 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15548 </UL>
15550 &lt;End of help on this topic&gt;
15551 </BODY>
15552 </HTML>
15553 ======= h_composer_abook_comment =======
15554 <HTML>
15555 <HEAD>
15556 <TITLE>Addressbook Comment Explained</TITLE>
15557 </HEAD>
15558 <BODY>
15559 This is a comment to help you remember what this entry is. The WhereIs
15560 command searches comments so that it is easier to find an entry with a comment
15561 you know about attached to it. This field is not used in the outgoing message.
15563 Look <A HREF="h_edit_nav_cmds">here</A>
15564 to see the available Editing and Navigation commands.
15566 &lt;End of help on this topic&gt;
15567 </BODY>
15568 </HTML>
15569 ======= h_composer_abook_addrs =======
15570 <HTML>
15571 <HEAD>
15572 <TITLE>Addressbook Lists</TITLE>
15573 </HEAD>
15574 <BODY>
15575 <H1>Addressbook Lists</H1>
15577 This is a list of addresses to send to when sending to this address book
15578 entry.  Each member of the list may be an address or another nickname from
15579 any of your address books.  If it is an address, it is OK to include the
15580 full name field as well as the electronic address portion of that address.
15581 For example, the following are all legitimate entries in this field:
15583 <DL><DT>&nbsp;</DT>
15584 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15585 <DD>jdoe@some.domain
15586 <DD>John Doe &lt;jdoe@some.domain&gt;
15587 </DL>
15589 The addresses should be listed separated by commas, just like you would
15590 enter them from the composer.
15594 The only difference between a distribution list and a simple entry with a
15595 single address, is that a distribution list has more than one address   
15596 listed in the Addresses: field, whereas a simple personal entry has just  
15597 one address.
15601 For individual address book entries, if there is a full name in the
15602 Fullname: field (filling in the Fullname: field is not required), it is
15603 used.  If the full name is specified in the Address: field and not in the
15604 Fullname: field, then the full name from the Address: field is used.
15608 If you type the nickname of a distribution list from one of your address 
15609 books in the Lcc: field, then the full name of that list is used in the  
15610 To: field.  If you put a list in the To: or Cc: fields, that list will be
15611 expanded into all of its addresses.  If the list has a full name, then
15612 that will appear at the beginning of the addresses.
15614 <DL><DT>&nbsp;</DT>
15615 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15616 &lt;sal@here.there&gt;
15617 </DL>
15619 If the first address in the distribution list also has a full name, then
15620 the list full name and that full name are combined into something like the
15621 following:
15623 <DL><DT>&nbsp;</DT>
15624 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15625 </DL>
15628 If you specify a list via Lcc, the full name is used in the To: line.  If
15629 you specify a list in the To: or Cc: fields, then it uses the same method
15630 as for individual entries for filling in the full name.
15634 For help with editing and navigation commands, check the Help for the
15635 Nickname: field.
15638 &lt;End of help on this topic&gt;
15639 </BODY>
15640 </HTML>
15641 ======= h_config_role_nick =======
15642 <HTML>
15643 <HEAD>
15644 <TITLE>Nickname Explained</TITLE>
15645 </HEAD>
15646 <BODY>
15647 <H1>Nickname Explained</H1>
15649 This is a nickname to help you.
15650 You should have a different nickname for each role you define.
15651 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15652 pick a role to edit.
15653 It will also be used when you send a message to let you know you are
15654 sending with a different role than you use by default, and
15655 it will be useful for choosing a role when composing with the Role command
15656 or when composing with one of the Role Uses set to With Confirmation.
15657 This field is not used in the outgoing message.
15659 Look <A HREF="h_edit_nav_cmds">here</A>
15660 to see the available Editing and Navigation commands.
15662 &lt;End of help on this topic&gt;
15663 </BODY>
15664 </HTML>
15665 ======= h_config_role_comment =======
15666 <HTML>
15667 <HEAD>
15668 <TITLE>Comment Explained</TITLE>
15669 </HEAD>
15670 <BODY>
15671 <H1>Comment Explained</H1>
15673 This is a comment to help you.
15674 This comment does not play any functional role, it is simply an optional
15675 comment to help you remember what the rule is for.
15677 Look <A HREF="h_edit_nav_cmds">here</A>
15678 to see the available Editing and Navigation commands.
15680 &lt;End of help on this topic&gt;
15681 </BODY>
15682 </HTML>
15683 ======= h_config_other_nick =======
15684 <HTML>
15685 <HEAD>
15686 <TITLE>Nickname Explained</TITLE>
15687 </HEAD>
15688 <BODY>
15689 <H1>Nickname Explained</H1>
15691 This is a nickname to help you.
15692 You should have a different nickname for each rule you define.
15693 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15694 pick a rule to edit.
15696 Look <A HREF="h_edit_nav_cmds">here</A>
15697 to see the available Editing and Navigation commands.
15699 &lt;End of help on this topic&gt;
15700 </BODY>
15701 </HTML>
15702 ======= h_config_score_nick =======
15703 <HTML>
15704 <HEAD>
15705 <TITLE>Nickname Explained</TITLE>
15706 </HEAD>
15707 <BODY>
15708 <H1>Nickname Explained</H1>
15710 This is a nickname to help you.
15711 You should have a different nickname for each scoring rule you define.
15712 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15713 pick a rule to edit.
15715 Look <A HREF="h_edit_nav_cmds">here</A>
15716 to see the available Editing and Navigation commands.
15718 &lt;End of help on this topic&gt;
15719 </BODY>
15720 </HTML>
15721 ======= h_config_incol_nick =======
15722 <HTML>
15723 <HEAD>
15724 <TITLE>Nickname Explained</TITLE>
15725 </HEAD>
15726 <BODY>
15727 <H1>Nickname Explained</H1>
15729 This is a nickname to help you.
15730 You should have a different nickname for each color rule you define.
15731 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15732 pick a rule to edit.
15734 Look <A HREF="h_edit_nav_cmds">here</A>
15735 to see the available Editing and Navigation commands.
15737 &lt;End of help on this topic&gt;
15738 </BODY>
15739 </HTML>
15740 ======= h_config_filt_nick =======
15741 <HTML>
15742 <HEAD>
15743 <TITLE>Nickname Explained</TITLE>
15744 </HEAD>
15745 <BODY>
15746 <H1>Nickname Explained</H1>
15748 This is a nickname to help you.
15749 You should have a different nickname for each filtering rule you define.
15750 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15751 pick a rule to edit.
15753 Look <A HREF="h_edit_nav_cmds">here</A>
15754 to see the available Editing and Navigation commands.
15756 &lt;End of help on this topic&gt;
15757 </BODY>
15758 </HTML>
15759 ======= h_config_score_topat =======
15760 <HTML>
15761 <HEAD>
15762 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15763 </HEAD>
15764 <BODY>
15765 <H1>&quot;To:&quot; Pattern Explained</H1>
15767 Any text you enter as the &quot;To pattern&quot;
15768 will be compared to the recipients from the To: line of
15769 the message being scored.
15770 When the text you entered matches
15771 all or part of the To: line of a message, then the Score Value
15772 you have specified will be added to the score for the message.
15773 (Any other non-blank parts of the Pattern must match, too.)
15776 You may enter a complete email address, part of an address, or a
15777 list of addresses or partial addresses.
15778 For example:
15781 <PRE>
15782  To pattern = friend@public.com
15784  To pattern = rated.net
15786  To pattern = xxx@adults.com
15787               admin@msn.com
15788               fool@motleyfool.com
15789 </PRE>
15792 Each of those are valid To patterns.
15795 Messages match those patterns if any of the
15796 addresses in the To: line of the message contains the pattern.
15797 If the pattern is a list of patterns
15798 (like the last example above) then it is a match if any of the patterns in
15799 the list match any of the addresses in the To: line.
15800 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15801 present for a match.
15802 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15803 address2 must be present.
15804 That is exactly what using a list does.)
15807 Some messages may be &quot;bounced&quot; to you, and will
15808 have a &quot;Resent-To:&quot; header line.
15809 If the message contains a Resent-To: line
15810 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15811 Alpine will look for
15812 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15813 the original To: line.
15816 When entering a pattern, you may choose an address from your address book
15817 with the &quot;T&quot; command.
15820 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15821 &quot;!&quot; &quot;toggle NOT&quot; command.
15822 This changes the meaning of the To pattern so that it has the opposite meaning.
15823 It will be considered a match if there are no matches between the
15824 addresses in the To: line and the list of To patterns.
15826 Don't make the mistake of putting the &quot;!&quot; in the data field for
15827 the pattern.
15828 For example, if you type the characters &quot;!frizzle&quot; into the To
15829 pattern, the pattern will look like:
15831 <PRE>
15832  To pattern = !frizzle
15833 </PRE>
15835 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15836 In order to match messages that do not have &quot;frizzle&quot; in
15837 their To field, first type the characters &quot;frizzle&quot; followed
15838 by carriage return for the value of the To pattern, then negate it
15839 by typing the &quot;!&quot; command.
15840 It should end up looking like
15842 <PRE>
15843  ! To pattern = frizzle
15844 </PRE>
15846 You are not limited to using the six standard header patterns that are
15847 normally shown (To, From, Sender, Cc, News, and Subject).
15848 You may add any other header to a Pattern by
15849 using the &quot;eXtraHdr&quot; command to specify a different
15850 message header line; and then the Add or Change command to fill in
15851 a pattern for the new header line, just like you would for a standard header.
15853 A technicality: Since comma is the character used to separate multiple
15854 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15855 you want to include a literal comma in the field.
15856 In other words, if you type a backslash followed by a comma it will
15857 be interpreted as a comma by Alpine, instead of as a separator between
15858 pattern values.
15859 All other backslashes are literal backslashes and should not be escaped.
15861 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15862 for more information on Patterns.
15864 Look <A HREF="h_edit_nav_cmds">here</A>
15865 to see the available Editing and Navigation commands.
15867 &lt;End of help on this topic&gt;
15868 </BODY>
15869 </HTML>
15870 ======= h_config_incol_topat =======
15871 <HTML>
15872 <HEAD>
15873 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15874 </HEAD>
15875 <BODY>
15876 <H1>&quot;To:&quot; Pattern Explained</H1>
15878 Any text you enter as the &quot;To pattern&quot;
15879 will be compared to the recipients from the To: lines of
15880 the messages in the index.
15881 When the text you entered matches
15882 all or part of the To: line of a message, then the Index Line Color you have
15883 specified will be used for that line in the index.
15884 (Any other non-blank parts of the Pattern must match, too.)
15887 You may enter a complete email address, part of an address, or a
15888 list of addresses or partial addresses.
15889 For example:
15892 <PRE>
15893  To pattern = friend@public.com
15894  To pattern = rated.net
15895  To pattern = xxx@adults.com
15896               admin@msn.com
15897               fool@motleyfool.com
15898 </PRE>
15901 Each of those are valid To patterns.
15904 Messages match those patterns if any of the
15905 addresses in the To: line of the message contains the pattern.
15906 If the pattern is a list of patterns
15907 (like the last example above) then it is a match if any of the patterns in
15908 the list match any of the addresses in the To: line.
15909 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15910 present for a match.
15911 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15912 address2 must be present.
15913 That is exactly what using a list does.)
15916 Some messages may be &quot;bounced&quot; to you, and will
15917 have a &quot;Resent-To:&quot; header line.
15918 If the message contains a Resent-To: line
15919 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15920 Alpine will look for
15921 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15922 the original To: line.
15925 When entering a pattern, you may choose an address from your address book
15926 with the &quot;T&quot; command.
15929 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15930 &quot;!&quot; &quot;toggle NOT&quot; command.
15931 This changes the meaning of the To pattern so that it has the opposite meaning.
15932 It will be considered a match if there are no matches between the
15933 addresses in the To: line and the list of To patterns.
15935 Don't make the mistake of putting the &quot;!&quot; in the data field for
15936 the pattern.
15937 For example, if you type the characters &quot;!frizzle&quot; into the To
15938 pattern, the pattern will look like:
15940 <PRE>
15941  To pattern = !frizzle
15942 </PRE>
15944 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15945 In order to match messages that do not have &quot;frizzle&quot; in
15946 their To field, first type the characters &quot;frizzle&quot; followed
15947 by carriage return for the value of the To pattern, then negate it
15948 by typing the &quot;!&quot; command.
15949 It should end up looking like
15951 <PRE>
15952  ! To pattern = frizzle
15953 </PRE>
15956 You are not limited to using the six standard header patterns that are
15957 normally shown (To, From, Sender, Cc, News, and Subject).
15958 You may add any other header to a Pattern by
15959 using the &quot;eXtraHdr&quot; command to specify a different
15960 message header line; and then the Add or Change command to fill in
15961 a pattern for the new header line, just like you would for a standard header.
15963 A technicality: Since comma is the character used to separate multiple
15964 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15965 you want to include a literal comma in the field.
15966 In other words, if you type a backslash followed by a comma it will
15967 be interpreted as a comma by Alpine, instead of as a separator between
15968 pattern values.
15969 All other backslashes are literal backslashes and should not be escaped.
15971 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15972 for more information on Patterns.
15974 Look <A HREF="h_edit_nav_cmds">here</A>
15975 to see the available Editing and Navigation commands.
15977 &lt;End of help on this topic&gt;
15978 </BODY>
15979 </HTML>
15980 ======= h_config_other_topat =======
15981 <HTML>
15982 <HEAD>
15983 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15984 </HEAD>
15985 <BODY>
15986 <H1>&quot;To:&quot; Pattern Explained</H1>
15988 For some of the OTHER RULES actions, there is no message that is being
15989 compared against.
15990 If that is the case, then only the Current Folder Type is checked.
15991 In particular, this To pattern is ignored.
15992 Actions that fall into this category include both
15993 Sort Order and Index Format.
15995 A technicality: Since comma is the character used to separate multiple
15996 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15997 you want to include a literal comma in the field.
15998 In other words, if you type a backslash followed by a comma it will
15999 be interpreted as a comma by Alpine, instead of as a separator between
16000 pattern values.
16001 All other backslashes are literal backslashes and should not be escaped.
16003 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16004 for more information on Patterns.
16006 Look <A HREF="h_edit_nav_cmds">here</A>
16007 to see the available Editing and Navigation commands.
16009 &lt;End of help on this topic&gt;
16010 </BODY>
16011 </HTML>
16012 ======= h_config_filt_topat =======
16013 <HTML>
16014 <HEAD>
16015 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16016 </HEAD>
16017 <BODY>
16018 <H1>&quot;To:&quot; Pattern Explained</H1>
16020 Any text you enter as the &quot;To pattern&quot;
16021 will be compared to the recipients from the To: line of
16022 messages when Alpine opens folders.
16023 When the text you entered matches
16024 all or part of the To: line of a message, then the Filter Action you have
16025 specified will be carried out.
16026 (Any other non-blank parts of the Pattern must match, too.)
16029 You may enter a complete email address, part of an address, or a
16030 list of addresses or partial addresses.
16031 For example:
16034 <PRE>
16035  To pattern = friend@public.com
16036  To pattern = rated.net
16037  To pattern = xxx@adults.com
16038               admin@msn.com
16039               fool@motleyfool.com
16040 </PRE>
16043 Each of those are valid To patterns.
16046 Messages match those patterns if any of the
16047 addresses in the To: line of the message contains the pattern.
16048 If the pattern is a list of patterns
16049 (like the last example above) then it is a match if any of the patterns in
16050 the list match any of the addresses in the To: line.
16051 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16052 present for a match.
16053 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16054 address2 must be present.
16055 That is exactly what using a list does.)
16058 Some messages may be &quot;bounced&quot; to you, and will
16059 have a &quot;Resent-To:&quot; header line.
16060 If the message contains a Resent-To: line
16061 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16062 Alpine will look for
16063 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16064 the original To: line.
16067 When entering a pattern, you may choose an address from your address book
16068 with the &quot;T&quot; command.
16071 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16072 &quot;!&quot; &quot;toggle NOT&quot; command.
16073 This changes the meaning of the To pattern so that it has the opposite meaning.
16074 It will be considered a match if there are no matches between the
16075 addresses in the To: line and the list of To patterns.
16077 Don't make the mistake of putting the &quot;!&quot; in the data field for
16078 the pattern.
16079 For example, if you type the characters &quot;!frizzle&quot; into the To
16080 pattern, the pattern will look like:
16082 <PRE>
16083  To pattern = !frizzle
16084 </PRE>
16086 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16087 In order to match messages that do not have &quot;frizzle&quot; in
16088 their To field, first type the characters &quot;frizzle&quot; followed
16089 by carriage return for the value of the To pattern, then negate it
16090 by typing the &quot;!&quot; command.
16091 It should end up looking like
16093 <PRE>
16094  ! To pattern = frizzle
16095 </PRE>
16098 You are not limited to using the six standard header patterns that are
16099 normally shown (To, From, Sender, Cc, News, and Subject).
16100 You may add any other header to a Pattern by
16101 using the &quot;eXtraHdr&quot; command to specify a different
16102 message header line; and then the Add or Change command to fill in
16103 a pattern for the new header line, just like you would for a standard header.
16105 A technicality: Since comma is the character used to separate multiple
16106 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16107 you want to include a literal comma in the field.
16108 In other words, if you type a backslash followed by a comma it will
16109 be interpreted as a comma by Alpine, instead of as a separator between
16110 pattern values.
16111 All other backslashes are literal backslashes and should not be escaped.
16113 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16114 for more information on Patterns.
16116 Look <A HREF="h_edit_nav_cmds">here</A>
16117 to see the available Editing and Navigation commands.
16119 &lt;End of help on this topic&gt;
16120 </BODY>
16121 </HTML>
16122 ======= h_config_role_topat =======
16123 <HTML>
16124 <HEAD>
16125 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16126 </HEAD>
16127 <BODY>
16128 <H1>&quot;To:&quot; Pattern Explained</H1>
16130 Any text you enter as the &quot;To pattern&quot;
16131 will be compared to the recipients from the To: line of
16132 the message being replied to or forwarded.
16133 (Any other non-blank parts of the Pattern must match, too.)
16134 In the case of the Compose command, this pattern and the other header
16135 patterns are ignored.
16138 You may enter a complete email address, part of an address, or a
16139 list of addresses or partial addresses.
16140 For example:
16143 <PRE>
16144  To pattern = friend@public.com
16145  To pattern = rated.net
16146  To pattern = xxx@adults.com
16147               admin@msn.com
16148               fool@motleyfool.com
16149 </PRE>
16152 Each of those are valid To patterns.
16155 Messages match those patterns if any of the
16156 addresses in the To: line of the message contains the pattern.
16157 If the pattern is a list of patterns
16158 (like the last example above) then it is a match if any of the patterns in
16159 the list match any of the addresses in the To: line.
16160 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16161 present for a match.
16162 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16163 address2 must be present.
16164 That is exactly what using a list does.)
16167 Some messages may be &quot;bounced&quot; to you, and will
16168 have a &quot;Resent-To:&quot; header line.
16169 If the message contains a Resent-To: line
16170 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16171 Alpine will look for
16172 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16173 the original To: line.
16176 When entering a pattern, you may choose an address from your address book
16177 with the &quot;T&quot; command.
16180 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16181 &quot;!&quot; &quot;toggle NOT&quot; command.
16182 This changes the meaning of the To pattern so that it has the opposite meaning.
16183 It will be considered a match if there are no matches between the
16184 addresses in the To: line and the list of To patterns.
16186 Don't make the mistake of putting the &quot;!&quot; in the data field for
16187 the pattern.
16188 For example, if you type the characters &quot;!frizzle&quot; into the To
16189 pattern, the pattern will look like:
16191 <PRE>
16192  To pattern = !frizzle
16193 </PRE>
16195 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16196 In order to match messages that do not have &quot;frizzle&quot; in
16197 their To field, first type the characters &quot;frizzle&quot; followed
16198 by carriage return for the value of the To pattern, then negate it
16199 by typing the &quot;!&quot; command.
16200 It should end up looking like
16202 <PRE>
16203  ! To pattern = frizzle
16204 </PRE>
16207 You are not limited to using the six standard header patterns that are
16208 normally shown (To, From, Sender, Cc, News, and Subject).
16209 You may add any other header to a Pattern by
16210 using the &quot;eXtraHdr&quot; command to specify a different
16211 message header line; and then the Add or Change command to fill in
16212 a pattern for the new header line, just like you would for a standard header.
16214 A technicality: Since comma is the character used to separate multiple
16215 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16216 you want to include a literal comma in the field.
16217 In other words, if you type a backslash followed by a comma it will
16218 be interpreted as a comma by Alpine, instead of as a separator between
16219 pattern values.
16220 All other backslashes are literal backslashes and should not be escaped.
16222 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16223 for more information on Patterns.
16225 Look <A HREF="h_edit_nav_cmds">here</A>
16226 to see the available Editing and Navigation commands.
16228 &lt;End of help on this topic&gt;
16229 </BODY>
16230 </HTML>
16231 ======= h_config_role_frompat =======
16232 <HTML>
16233 <HEAD>
16234 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16235 </HEAD>
16236 <BODY>
16237 <H1>&quot;From:&quot; Pattern Explained</H1>
16239 This is just like the &quot;To pattern&quot; except that it is compared with
16240 the address in the From: line of the message
16241 instead of the addresses from the To: line.
16242 See the help for the To pattern for more information on header patterns.
16244 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16245 for more information on Patterns.
16247 Look <A HREF="h_edit_nav_cmds">here</A>
16248 to see the available Editing and Navigation commands.
16250 &lt;End of help on this topic&gt;
16251 </BODY>
16252 </HTML>
16253 ======= h_config_role_senderpat =======
16254 <HTML>
16255 <HEAD>
16256 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16257 </HEAD>
16258 <BODY>
16259 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16261 This is just like the &quot;To pattern&quot; except that it is compared with
16262 the address from the Sender: line of the message
16263 instead of the addresses from the To: line.
16264 See the help for the To pattern for more information on header patterns.
16266 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16267 for more information on Patterns.
16269 Look <A HREF="h_edit_nav_cmds">here</A>
16270 to see the available Editing and Navigation commands.
16272 &lt;End of help on this topic&gt;
16273 </BODY>
16274 </HTML>
16275 ======= h_config_role_ccpat =======
16276 <HTML>
16277 <HEAD>
16278 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16279 </HEAD>
16280 <BODY>
16281 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16283 This is just like the &quot;To pattern&quot; except that it is compared with
16284 the addresses from the Cc: line of the message
16285 instead of the addresses from the To: line.
16286 See the help for the To pattern for more information on header patterns.
16288 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16289 for more information on Patterns.
16291 Look <A HREF="h_edit_nav_cmds">here</A>
16292 to see the available Editing and Navigation commands.
16294 &lt;End of help on this topic&gt;
16295 </BODY>
16296 </HTML>
16297 ======= h_config_role_recippat =======
16298 <HTML>
16299 <HEAD>
16300 <TITLE>Recipient Pattern Explained</TITLE>
16301 </HEAD>
16302 <BODY>
16303 <H1>Recipient Pattern Explained</H1>
16305 This is just like the &quot;To pattern&quot; except that it is compared with
16306 the addresses from both the To: line and the Cc: line of the
16307 message instead of just the addresses from the To: line.
16308 In other words, it is considered a match if the pattern matches
16309 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16310 in the Cc: line.
16311 (Notice that defining the Recipient pattern does not have the same
16312 effect as defining both the To and Cc patterns.
16313 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16314 It is equivalent to having two different rules;
16315 one with a To pattern and the other with the same Cc pattern.)
16317 A technicality: Since comma is the character used to separate multiple
16318 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16319 you want to include a literal comma in the field.
16320 In other words, if you type a backslash followed by a comma it will
16321 be interpreted as a comma by Alpine, instead of as a separator between
16322 pattern values.
16323 All other backslashes are literal backslashes and should not be escaped.
16325 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16326 for more information on Patterns.
16328 Look <A HREF="h_edit_nav_cmds">here</A>
16329 to see the available Editing and Navigation commands.
16331 &lt;End of help on this topic&gt;
16332 </BODY>
16333 </HTML>
16334 ======= h_config_role_particpat =======
16335 <HTML>
16336 <HEAD>
16337 <TITLE>Participant Pattern Explained</TITLE>
16338 </HEAD>
16339 <BODY>
16340 <H1>Participant Pattern Explained</H1>
16342 This is just like the &quot;To pattern&quot; except that it is compared with
16343 the addresses from the From: line, the To: line, and the Cc: line of the
16344 message instead of just the addresses from the To: line.
16345 In other words, it is considered a match if the pattern matches
16346 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16347 in the To: line, <EM>OR</EM> an address in the Cc: line.
16348 (Notice that defining the Participant pattern does not have the same
16349 effect as defining all of the From, To, and Cc patterns.
16350 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16351 From <EM>AND</EM> To <EM>AND</EM> Cc.
16352 It is equivalent to having three different rules;
16353 one with a From pattern, another with the same To pattern, and a third with
16354 the same Cc pattern.)
16356 A technicality: Since comma is the character used to separate multiple
16357 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16358 you want to include a literal comma in the field.
16359 In other words, if you type a backslash followed by a comma it will
16360 be interpreted as a comma by Alpine, instead of as a separator between
16361 pattern values.
16362 All other backslashes are literal backslashes and should not be escaped.
16364 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16365 for more information on Patterns.
16367 Look <A HREF="h_edit_nav_cmds">here</A>
16368 to see the available Editing and Navigation commands.
16370 &lt;End of help on this topic&gt;
16371 </BODY>
16372 </HTML>
16373 ======= h_config_role_newspat =======
16374 <HTML>
16375 <HEAD>
16376 <TITLE>News Pattern Explained</TITLE>
16377 </HEAD>
16378 <BODY>
16379 <H1>News Pattern Explained</H1>
16381 If this pattern is non-blank, then for this rule to be considered a
16382 match, at least one of the newsgroups from
16383 the Newsgroups line of the message must match this pattern.
16384 If this pattern is a list of patterns, then at least one of the
16385 newsgroups must match at least one of the patterns.
16386 (Any other non-blank parts of the Pattern must match, too.)
16388 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16389 &quot;!&quot; &quot;toggle NOT&quot; command.
16390 This changes the meaning of the News pattern so that it has the opposite meaning.
16391 It will be considered a match if there are no matches between the
16392 addresses in the Newsgroups: line and the list of News patterns.
16394 Don't make the mistake of putting the &quot;!&quot; in the data field for
16395 the pattern.
16396 For example, if you type the characters &quot;!frizzle&quot; into the News
16397 pattern, the pattern will look like:
16399 <PRE>
16400  News pattern = !frizzle
16401 </PRE>
16403 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16404 In order to match messages that do not have &quot;frizzle&quot; in
16405 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16406 by carriage return for the value of the News pattern, then negate it
16407 by typing the &quot;!&quot; command.
16408 It should end up looking like
16410 <PRE>
16411  ! News pattern = frizzle
16412 </PRE>
16414 A technicality: Since comma is the character used to separate multiple
16415 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16416 you want to include a literal comma in the field.
16417 In other words, if you type a backslash followed by a comma it will
16418 be interpreted as a comma by Alpine, instead of as a separator between
16419 pattern values.
16420 All other backslashes are literal backslashes and should not be escaped.
16423 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16424 for more information on Patterns.
16426 Look <A HREF="h_edit_nav_cmds">here</A>
16427 to see the available Editing and Navigation commands.
16429 &lt;End of help on this topic&gt;
16430 </BODY>
16431 </HTML>
16432 ======= h_config_role_subjpat =======
16433 <HTML>
16434 <HEAD>
16435 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16436 </HEAD>
16437 <BODY>
16438 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16440 This is similar to the other parts of the Pattern.
16441 It is compared with
16442 the contents from the Subject of the message.
16444 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16445 for more information on Patterns.
16447 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16448 &quot;!&quot; &quot;toggle NOT&quot; command.
16449 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16450 It will be considered a match if there are no matches between the
16451 text in the Subject: line and the list of Subject patterns.
16454 If you wish to have a header pattern that is not one of the six standard
16455 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16457 A technicality: Since comma is the character used to separate multiple
16458 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16459 you want to include a literal comma in the field.
16460 In other words, if you type a backslash followed by a comma it will
16461 be interpreted as a comma by Alpine, instead of as a separator between
16462 pattern values.
16463 All other backslashes are literal backslashes and should not be escaped.
16465 Look <A HREF="h_edit_nav_cmds">here</A>
16466 to see the available Editing and Navigation commands.
16468 &lt;End of help on this topic&gt;
16469 </BODY>
16470 </HTML>
16471 ======= h_config_role_alltextpat =======
16472 <HTML>
16473 <HEAD>
16474 <TITLE>AllText Pattern Explained</TITLE>
16475 </HEAD>
16476 <BODY>
16477 <H1>AllText Pattern Explained</H1>
16479 This is similar to the header patterns.
16480 Instead of comparing with text in a particular header field it 
16481 is compared with all of the text in the message header and body.
16483 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16484 &quot;!&quot; &quot;toggle NOT&quot; command.
16485 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16486 It will be considered a match if there are no matches between the
16487 text of the message and the list of AllText patterns.
16489 Don't make the mistake of putting the &quot;!&quot; in the data field for
16490 the pattern.
16491 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16492 pattern, the pattern will look like:
16494 <PRE>
16495  AllText pattern = !frizzle
16496 </PRE>
16498 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16499 In order to match messages that do not have &quot;frizzle&quot; in
16500 the text of the message, first type the characters &quot;frizzle&quot; followed
16501 by carriage return for the value of the AllText pattern, then negate it
16502 by typing the &quot;!&quot; command.
16503 It should end up looking like
16505 <PRE>
16506  ! AllText pattern = frizzle
16507 </PRE>
16509 It is possible that you may notice degraded performance when using
16510 AllText Patterns.
16512 A technicality: Since comma is the character used to separate multiple
16513 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16514 you want to include a literal comma in the field.
16515 In other words, if you type a backslash followed by a comma it will
16516 be interpreted as a comma by Alpine, instead of as a separator between
16517 pattern values.
16518 All other backslashes are literal backslashes and should not be escaped.
16520 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16521 for more information on Patterns.
16523 Look <A HREF="h_edit_nav_cmds">here</A>
16524 to see the available Editing and Navigation commands.
16526 &lt;End of help on this topic&gt;
16527 </BODY>
16528 </HTML>
16529 ======= h_config_role_bodytextpat =======
16530 <HTML>
16531 <HEAD>
16532 <TITLE>BodyText Pattern Explained</TITLE>
16533 </HEAD>
16534 <BODY>
16535 <H1>BodyText Pattern Explained</H1>
16537 This is similar to the header patterns.
16538 Instead of comparing with text in a particular header field it 
16539 is compared with all of the text in the message body.
16541 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16542 &quot;!&quot; &quot;toggle NOT&quot; command.
16543 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16544 It will be considered a match if there are no matches between the
16545 text of the body of the message and the list of BodyText patterns.
16547 Don't make the mistake of putting the &quot;!&quot; in the data field for
16548 the pattern.
16549 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16550 pattern, the pattern will look like:
16552 <PRE>
16553  BdyText pattern = !frizzle
16554 </PRE>
16556 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16557 In order to match messages that do not have &quot;frizzle&quot; in
16558 their BodyText, first type the characters &quot;frizzle&quot; followed
16559 by carriage return for the value of the BodyText pattern, then negate it
16560 by typing the &quot;!&quot; command.
16561 It should end up looking like
16563 <PRE>
16564  ! BodyText pattern = frizzle
16565 </PRE>
16567 It is possible that you may notice degraded performance when using
16568 BodyText Patterns.
16570 A technicality: Since comma is the character used to separate multiple
16571 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16572 you want to include a literal comma in the field.
16573 In other words, if you type a backslash followed by a comma it will
16574 be interpreted as a comma by Alpine, instead of as a separator between
16575 pattern values.
16576 All other backslashes are literal backslashes and should not be escaped.
16578 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16579 for more information on Patterns.
16581 Look <A HREF="h_edit_nav_cmds">here</A>
16582 to see the available Editing and Navigation commands.
16584 &lt;End of help on this topic&gt;
16585 </BODY>
16586 </HTML>
16587 ======= h_config_role_charsetpat =======
16588 <HTML>
16589 <HEAD>
16590 <TITLE>Character Set Pattern Explained</TITLE>
16591 </HEAD>
16592 <BODY>
16593 <H1>Character Set Pattern Explained</H1>
16595 A message may use one or more character sets.
16596 This part of the Pattern matches messages that make use of
16597 certain specified character sets.
16598 It will be considered a match if a message uses any of the character
16599 sets in the list you give here.
16602 When filling in a value for this field, you may use
16603 the &quot;T&quot; command, which presents you with a large list of
16604 possible character sets to choose from.
16605 You may also just type in the name of a character set, and it need not
16606 be one that Alpine knows about.
16609 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16610 GB2312) you may also use some shorthand names that Alpine provides.
16611 These names are more understandable shorthand names for sets of 
16612 character set names.
16613 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16614 Selecting one of these shorthand names is equivalent to selecting all of
16615 the character sets that make up the set.
16616 You can see all of these shorthand names and the lists of character sets
16617 they stand for by typing the &quot;T&quot; command.
16620 For the purposes of this Pattern,
16621 Alpine will search through a message for all of the text parts and
16622 collect the character sets declared for each part.
16623 It will also look in the Subject line for a character set used there.
16624 Alpine does not actually look at the text of the message or the text
16625 of the Subject to determine if a declared character set is actually
16626 used, it looks only at the declarations themselves in the MIME part headers
16627 and in the Subject.
16630 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16631 &quot;!&quot; &quot;toggle NOT&quot; command.
16632 This changes the meaning of the Character Set pattern so that
16633 it has the opposite meaning.
16634 It will be considered a match if none of the character sets in the
16635 list are used in a message.
16637 Don't make the mistake of putting the &quot;!&quot; in the data field for
16638 the pattern.
16639 For example, if you type the characters &quot;!GB2312&quot; into the
16640 Character Set pattern, the pattern will look like:
16642 <PRE>
16643  Charset pattern = !GB2312
16644 </PRE>
16646 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16647 In order to match messages that do not have the
16648 character set &quot;GB2312&quot;
16649 set, first type the characters &quot;GB2312&quot; followed
16650 by carriage return for the value of the Character Set pattern, then negate it
16651 by typing the &quot;!&quot; command.
16652 It should end up looking like
16654 <PRE>
16655  ! Charset pattern = GB2312
16656 </PRE>
16658 A technicality: Since comma is the character used to separate multiple
16659 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16660 you want to include a literal comma in the field.
16661 In other words, if you type a backslash followed by a comma it will
16662 be interpreted as a comma by Alpine, instead of as a separator between
16663 pattern values.
16664 All other backslashes are literal backslashes and should not be escaped.
16666 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16667 for more information on Patterns.
16669 Look <A HREF="h_edit_nav_cmds">here</A>
16670 to see the available Editing and Navigation commands.
16672 &lt;End of help on this topic&gt;
16673 </BODY>
16674 </HTML>
16675 ======= h_config_role_keywordpat =======
16676 <HTML>
16677 <HEAD>
16678 <TITLE>Keyword Pattern Explained</TITLE>
16679 </HEAD>
16680 <BODY>
16681 <H1>Keyword Pattern Explained</H1>
16683 A folder may have user-defined keywords.
16684 These are similar to the Important flag, which the user may set using the
16685 Flag command.
16686 The difference is that the Important flag is always present for each folder.
16687 User-defined keywords are picked by the user.
16688 You may add new keywords by defining them in the
16689 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16690 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16691 the Flag command may be used to set or clear the keyword on individual messages.
16692 If you have given a keyword a nickname when configuring it,
16693 that nickname may be used instead of the actual keyword.
16696 When filling in a value for this field, it may be easiest to use
16697 the &quot;T&quot; command, which presents you with a list of the keywords
16698 you have defined to choose from.
16701 This part of the Pattern matches messages with certain keywords set.
16702 It will be considered a match if a message has any of the keywords in the
16703 list set.
16704 A keyword that you have not defined using the
16705 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16706 will not be a match.
16709 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16710 &quot;!&quot; &quot;toggle NOT&quot; command.
16711 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16712 It will be considered a match if none of the keywords in the list are set
16713 for a message.
16714 A keyword that you have not defined using the
16715 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16716 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16718 Don't make the mistake of putting the &quot;!&quot; in the data field for
16719 the pattern.
16720 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16721 pattern, the pattern will look like:
16723 <PRE>
16724  Keyword pattern = !frizzle
16725 </PRE>
16727 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16728 In order to match messages that do not have the keyword &quot;frizzle&quot;
16729 set, first type the characters &quot;frizzle&quot; followed
16730 by carriage return for the value of the Keyword pattern, then negate it
16731 by typing the &quot;!&quot; command.
16732 It should end up looking like
16734 <PRE>
16735  ! Keyword pattern = frizzle
16736 </PRE>
16738 A technicality: Since comma is the character used to separate multiple
16739 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16740 you want to include a literal comma in the field.
16741 In other words, if you type a backslash followed by a comma it will
16742 be interpreted as a comma by Alpine, instead of as a separator between
16743 pattern values.
16744 All other backslashes are literal backslashes and should not be escaped.
16746 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16747 for more information on Patterns.
16749 Look <A HREF="h_edit_nav_cmds">here</A>
16750 to see the available Editing and Navigation commands.
16752 &lt;End of help on this topic&gt;
16753 </BODY>
16754 </HTML>
16755 ======= h_config_role_arbpat =======
16756 <HTML>
16757 <HEAD>
16758 <TITLE>Extra Header Patterns Explained</TITLE>
16759 </HEAD>
16760 <BODY>
16761 <H1>Extra Header Patterns Explained</H1>
16763 The header patterns that come after the Participant pattern but before the 
16764 AllText pattern are extra header patterns that you have added to a rule's
16765 Pattern. These are just like the other header patterns except that
16766 the contents of the particular header listed on the left hand side will
16767 be used for comparisons.
16769 The &quot;eXtraHdr&quot; command may be used to add more of these
16770 header patterns to the rule you are editing.
16772 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16773 extra header pattern from the rule you are editing.
16775 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16776 &quot;!&quot; &quot;toggle NOT&quot; command.
16777 This changes the meaning of the pattern so that it has the opposite meaning.
16778 It will be considered a match if there are no matches between the
16779 text in the header line and the list of patterns.
16781 Don't make the mistake of putting the &quot;!&quot; in the data field for
16782 the pattern.
16783 For example, if you type the characters &quot;!frizzle&quot; into the
16784 pattern, the pattern will look like:
16786 <PRE>
16787  Xyz pattern = !frizzle
16788 </PRE>
16790 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16791 In order to match messages that do not have &quot;frizzle&quot; in
16792 their Xyz field, first type the characters &quot;frizzle&quot; followed
16793 by carriage return for the value of the pattern, then negate it
16794 by typing the &quot;!&quot; command.
16795 It should end up looking like
16797 <PRE>
16798  ! Xyz pattern = frizzle
16799 </PRE>
16802 A technicality: Since comma is the character used to separate multiple
16803 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16804 you want to include a literal comma in the field.
16805 In other words, if you type a backslash followed by a comma it will
16806 be interpreted as a comma by Alpine, instead of as a separator between
16807 pattern values.
16808 All other backslashes are literal backslashes and should not be escaped.
16810 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16811 for more information on Patterns.
16813 Look <A HREF="h_edit_nav_cmds">here</A>
16814 to see the available Editing and Navigation commands.
16816 &lt;End of help on this topic&gt;
16817 </BODY>
16818 </HTML>
16819 ======= h_config_role_cat_cmd =======
16820 <HTML>
16821 <HEAD>
16822 <TITLE>Categorizer Command Explained</TITLE>
16823 </HEAD>
16824 <BODY>
16825 <H1>Categorizer Command Explained</H1>
16827 This is a command that is run with its standard input set to the message
16828 being checked and its standard output discarded.
16829 The full directory path should be specified.
16830 The command will be run and then its exit status will be checked against
16831 the Exit Status Interval, which defaults to just the value zero.
16832 If the exit status of the command falls in the interval, it is considered
16833 a match, otherwise it is not a match.
16836 This option may actually be a list of commands.
16837 The first one that exists and is executable is used.
16838 That makes it possible to use the same configuration with Unix Alpine and
16839 PC-Alpine.
16842 If none of the commands in the list exists and is executable then the rule
16843 is <EM>not</EM> a match.
16844 If it is possible that the command may not exist, you should be careful
16845 to structure your rules so that nothing destructive
16846 happens when the command does not exist.
16847 For example, you might have a filter that filters away spam when there is
16848 a match but does nothing when there is not a match.
16849 That would cause no harm if the command didn't exist.
16850 However, if you have a filter that filters away spam when there is not
16851 a match and keeps it when there is a match, that would filter everything
16852 if the categorizer command didn't exist.
16854 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16855 setup for the bogofilter filter.
16858 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16859 for more information on Patterns.
16861 Look <A HREF="h_edit_nav_cmds">here</A>
16862 to see the available Editing and Navigation commands.
16864 &lt;End of help on this topic&gt;
16865 </BODY>
16866 </HTML>
16867 ======= h_config_role_cat_cmd_example =======
16868 <HTML>
16869 <HEAD>
16870 <TITLE>Categorizer Command Example</TITLE>
16871 </HEAD>
16872 <BODY>
16873 <H1>Categorizer Command Example</H1>
16875 Bogofilter
16876 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16877 is a mail filter that attempts to classify mail as spam or
16878 non-spam using statistical analysis of the message content.
16879 When run with no arguments and a message as standard input, it exits with
16880 exit status 0 if it thinks a message is spam and 1 if it thinks
16881 it is not spam.
16882 To use bogofilter as your Categorizer Command you would simply set Command to
16883 the pathname of the bogofilter program.
16884 For example,
16886 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16888 Exit status of zero is what you are interested in, so you'd set the
16889 Exit Status Interval to
16891 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16894 In order to prevent downloading an entire huge message to check for spam, you
16895 might want to set the Character Limit to a few thousand characters (the
16896 assumption being that the spam will reveal itself in those characters)
16898 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16901 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16902 be to move the message to a spam folder.
16903 It would usually be wise to also check the &quot;Message is Recent&quot;
16904 part of the rule so that messages are only checked when they first arrive,
16905 and to restrict the Current Folder Type to just your INBOX.
16906 The reason for checking only Recent messages is to save the time it takes
16907 to run bogofilter on each message.
16908 As an experiment, you might start out by using this in an Indexcolor Rule
16909 instead of a Filter Rule.
16910 In that case, you probably wouldn't check the Recent checkbox.
16912 The use described above assumes that you are somehow maintaining bogofilter's
16913 database of words associated with spam and non-spam messages.
16914 One way to start your database would be to select a bunch of spam messages
16915 in Alpine (you might Save spam messages to a special folder or use Alpine's
16916 Select command to select several) and then Apply
16917 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16918 a pipe command to the spam messages.
16919 For example, you could have a shell script or an alias
16920 called <EM>this_is_spam</EM>, which would simply be the command
16922 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16925 It is probably best to use the pipe command's Raw Text, With Delimiter,
16926 and Free Output options,
16927 which are at the bottom of the screen when you type the pipe command.
16928 That's because bogofilter expects the raw message as input, and uses
16929 the Delimiters to tell when a new message starts.
16930 You would not need to use a separate pipe for each message, because
16931 bogofilter can handle multiple messages at once.
16933 Similarly, you would select a group of non-spam messages
16934 and run them through a <EM>this_is_nonspam</EM> script
16935 that was something like
16937 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16940 For the more adventurous, the next step might be to automate the upkeep of
16941 the bogofilter database.
16942 It might make more sense to have bogofilter be part of the delivery process,
16943 but it is also possible to do it entirely from within Alpine.
16944 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16945 the &quot;-u&quot; argument will cause bogofilter to update the database.
16947 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16949 You'd want a couple more aliases or shell scripts called something like
16950 <EM>change_to_spam</EM>
16952 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16955 <EM>change_to_nonspam</EM>
16957 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16959 When you run across a message in your INBOX that should have been
16960 classified as spam you would pipe it to the change_to_spam script, and
16961 when you run across a message in your spam folder that should have been
16962 left in your INBOX you would pipe it through change_to_nonspam.
16965 There is a technical problem with this approach.
16966 Alpine may check your filters more than once.
16967 In particular, every time you start Alpine the filters will be checked for
16968 each message.
16969 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16970 then Alpine will recheck for matches in messages that have changed state
16971 at the time you close the folder and before expunging.
16972 This is usually ok.
16973 However, in this case it is a problem because the command
16975 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16977 has the side effect of updating the database.
16978 So you run the risk of updating the database multiple times for a single
16979 message instead of updating it just once per message.
16980 There are some ways to work around this problem.
16981 What you need is a way to mark the message after you have run the filter.
16982 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16983 Besides having the filter move the message to a spam folder, also have it
16984 set the Bogo keyword.
16985 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16986 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16987 This rule can only set the Bogo keyword for the messages that it matches.
16988 You will also need to add a second rule right after this one that
16989 matches all the messages that don't have the Bogo keyword set
16990 (put the keyword in the Keyword pattern and toggle
16991 the Not with the ! command)
16992 and takes the action of setting it.
16993 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16994 (and so it won't re-run the bogofilter command) if the keyword is already
16995 set.
16997 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16998 on all messages that don't have the Bogo keyword set.
16999 This will have the side effect of inserting that message in the bogofilter
17000 database, match or not.
17001 If this rule matches (it is spam), the Bogo keyword will be set and
17002 the message will be moved to a spam folder.
17003 If it does not match, the
17004 following rule will mark the message by turning on the keyword.
17005 This second rule should be a non-terminating
17006 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
17007 rule so that it doesn't stop the filtering process before the rest of
17008 your rules are consulted.
17011 In summary, the first rule is something like
17012 <PRE>
17013   Nickname          = bogofilter -u rule
17014   Current Folder Type =
17015                (*) Specific
17016                    Folder = INBOX
17018   ! Keyword pattern = Bogo
17020   External Categorizer Commands =
17021        Command              = /usr/local/bin/bogofilter -u
17022        Exit Status Interval = (0,0)
17023        Character Limit      = <No Value Set: using "-1">  (optionally set this)
17025   Filter Action =
17026        (*) Move
17027            Folder = spam
17028   
17029   Set These Keywords   = Bogo
17030 </PRE>
17032 and the following rule is
17033 <PRE>
17034   Nickname          = Set Bogo Keyword
17035   Current Folder Type =
17036                (*) Specific
17037                    Folder = INBOX
17039   ! Keyword pattern = Bogo
17041   Filter Action =
17042        (*) Just Set Message Status
17044   Set These Keywords   = Bogo
17046   Features =
17047       [X]  dont-stop-even-if-rule-matches
17048 </PRE>
17050 If it is possible for you to insert bogofilter in the delivery process instead
17051 of having it called from Alpine you could prevent having to wait
17052 for the bogofilter processing while you read your mail.
17053 You would have bogofilter add a header to the message at the time of delivery
17054 that identified it as spam or nonspam.
17055 With this method, you could avoid using a Categorizer Command while running Alpine,
17056 and just match on the header instead.
17057 You might still want to use the scripts mentioned above to initialize the
17058 database or to re-classify wrongly classified messages.
17061 Finally, it isn't for the faint-hearted,
17062 but it is also possible to run bogofilter from PC-Alpine.
17063 You can install Cygwin from
17064 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17065 then compile bogofilter in the cygwin environment, and run it from
17066 within PC-Alpine.
17067 You would end up with a Categorizer command that looked something like
17069 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17071 Note that the &quot;.exe&quot; extension is explicit,
17072 and that the bogofilter.exe executable should be in the same directory
17073 as cygwin1.dll.
17076 &lt;End of help on this topic&gt;
17077 </BODY>
17078 </HTML>
17079 ======= h_config_role_cat_status =======
17080 <HTML>
17081 <HEAD>
17082 <TITLE>Exit Status Interval Explained</TITLE>
17083 </HEAD>
17084 <BODY>
17085 <H1>Exit Status Interval Explained</H1>
17087 The categorizer command is run and the result is the exit status of
17088 that command.
17089 If that exit status falls in the Exit Status Interval
17090 then it is considered a match, otherwise it is not a match.
17091 Of course for the entire rule to match, it must also be checked against
17092 the other defined parts of the Pattern.
17094 The Exit Status Interval defaults to the single value 0 (zero).
17095 If you define it, it should be set to something like:
17097 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17099 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17100 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17101 positive and negative integers.
17103 Actually, a list of intervals may be used if you wish.
17104 A list would look like
17106 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17108 When there is an Exit Status Interval defined, it is a match if the exit status
17109 of the categorizer command is contained in any of the intervals.
17110 The intervals include both endpoints.
17112 The default interval is
17114 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17116 and it matches only if the command exits with exit status equal to zero.
17119 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17120 for more information on Patterns.
17122 Look <A HREF="h_edit_nav_cmds">here</A>
17123 to see the available Editing and Navigation commands.
17125 &lt;End of help on this topic&gt;
17126 </BODY>
17127 </HTML>
17128 ======= h_config_role_cat_limit =======
17129 <HTML>
17130 <HEAD>
17131 <TITLE>Character Limit Explained</TITLE>
17132 </HEAD>
17133 <BODY>
17134 <H1>Character Limit Explained</H1>
17136 Setting this option makes it possible to limit how much of the message
17137 is made available to the categorizer command as input.
17138 The default value (-1) means that the entire message is fed to the
17139 command.
17140 A value of 0 (zero) means that only the headers of the message are
17141 made available.
17142 A positive integer means that the headers plus that many characters from
17143 the body of the message are passed to the categorizer.
17146 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17147 for more information on Patterns.
17149 Look <A HREF="h_edit_nav_cmds">here</A>
17150 to see the available Editing and Navigation commands.
17152 &lt;End of help on this topic&gt;
17153 </BODY>
17154 </HTML>
17155 ======= h_config_role_age =======
17156 <HTML>
17157 <HEAD>
17158 <TITLE>Age Interval Explained</TITLE>
17159 </HEAD>
17160 <BODY>
17161 <H1>Age Interval Explained</H1>
17163 The Age Interval, if defined, is part of the Pattern.
17164 If you use this, it should be set to something like:
17166 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17168 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17169 The special value &quot;INF&quot; may be used for the max value.
17170 It represents infinity.
17172 In rare cases it may be useful to use the more general form of the value,
17173 which is a comma-separated list of intervals.
17174 It would look something like:
17176 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17178 When there is an Age Interval defined, it is a match if the age, in days, of
17179 the message is contained in the interval.
17180 The interval includes both endpoints.
17181 If the option is set to a list of intervals then it is a match if the
17182 age of the message is contained in any of the intervals.
17184 Even though this option is called Age, it isn't actually
17185 the <EM>age</EM> of the message.
17186 Instead, it is how many days ago the message arrived in one of your folders.
17187 If the current time is a little past midnight, then a message that arrived
17188 just before midnight arrived yesterday, even though the message is only
17189 a few minutes old.
17190 By default, the date being used is not the date in the Date
17191 header of the message.
17192 It is the date that the message arrived in one of your folders.
17193 When you Save a message from one folder to another that arrival date
17194 is preserved.
17195 If you would like to use the date in the Date header that is possible.
17196 Turn on the option
17197 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17198 near the bottom of the rule definition.
17200 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17201 The age interval
17203 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17205 matches all messages that arrived on the day before yesterday.
17206 The interval
17208 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17210 matches all messages that arrived at least 180 days before today.
17211 The interval
17213 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17215 matches all messages that arrived today or yesterday.
17218 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17219 for more information on Patterns.
17221 Look <A HREF="h_edit_nav_cmds">here</A>
17222 to see the available Editing and Navigation commands.
17224 &lt;End of help on this topic&gt;
17225 </BODY>
17226 </HTML>
17227 ======= h_config_role_size =======
17228 <HTML>
17229 <HEAD>
17230 <TITLE>Size Interval Explained</TITLE>
17231 </HEAD>
17232 <BODY>
17233 <H1>Size Interval Explained</H1>
17235 The Size Interval, if defined, is part of the Pattern.
17236 If you use this, it should be set to something like:
17238 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17240 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17241 The special value &quot;INF&quot; may be used for the max value.
17242 It represents infinity.
17244 In rare cases it may be useful to use the more general form of the value,
17245 which is a comma-separated list of intervals.
17246 It would look something like:
17248 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17250 When there is a Size Interval defined, it is a match if the size of
17251 the message is contained in the interval.
17252 The interval includes both endpoints.
17253 If the option is set to a list of intervals then it is a match if the
17254 size of the message is contained in any of the intervals.
17256 The size interval
17258 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17260 matches all messages with sizes greater than or equal to 10000, and less
17261 than or equal to 50000.
17262 The interval
17264 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17266 matches all messages with sizes greater than or equal to 100000.
17269 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17270 for more information on Patterns.
17272 Look <A HREF="h_edit_nav_cmds">here</A>
17273 to see the available Editing and Navigation commands.
17275 &lt;End of help on this topic&gt;
17276 </BODY>
17277 </HTML>
17278 ======= h_config_role_scorei =======
17279 <HTML>
17280 <HEAD>
17281 <TITLE>Score Interval Explained</TITLE>
17282 </HEAD>
17283 <BODY>
17284 <H1>Score Interval Explained</H1>
17286 The Score Interval, if defined, is part of the Pattern.
17287 If you use this, it should be set to something like:
17289 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17291 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17292 -32000 and 32000.
17293 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17294 the min and max values.
17295 These represent negative and positive infinity.
17297 Actually, the value may be a list of intervals rather than just a
17298 single interval if that is useful.
17299 The elements of the list are separated by commas like:
17301 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17303 When there is a Score Interval defined, it is a match if the score for
17304 the message is contained in any of the intervals.
17305 The intervals include both endpoints.
17306 The score for a message is calculated by looking at every scoring rule
17307 defined and adding up the Score Values for the rules that match the message.
17308 Scoring rules are created using the
17309 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17312 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17313 for more information on Patterns.
17315 Look <A HREF="h_edit_nav_cmds">here</A>
17316 to see the available Editing and Navigation commands.
17318 &lt;End of help on this topic&gt;
17319 </BODY>
17320 </HTML>
17321 ======= h_config_role_fldr_type =======
17322 <HTML>
17323 <HEAD>
17324 <TITLE>Current Folder Type Explained</TITLE>
17325 </HEAD>
17326 <BODY>
17327 <H1>Current Folder Type Explained</H1>
17329 The Current Folder Type is part of the role's Pattern.
17330 It refers to the type of the currently open folder, which is the folder
17331 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17332 In order for a role to be considered a match, the current folder must
17333 be of the type you set here.
17334 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17335 all what you might think.
17337 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17338 example, then
17339 that role will only be a match if the current folder is a newsgroup and
17340 the rest of the Pattern matches.
17341 The value &quot;Specific&quot; may be used when you want to limit the match
17342 to a specific folder (not just a specific type of folder), or to a list of
17343 specific folders.
17345 In order to match a specific folder you Select the &quot;Specific&quot;
17346 button <EM>AND</EM> fill in
17347 the name (or list of names) of
17348 the folder in the &quot;Folder List&quot; field.
17349 If the current folder is any of the folders in the list, that is considered
17350 a match.
17351 The name of each folder in the list may be either &quot;INBOX&quot;,
17352 the technical specification
17353 of the folder (like what appears in your configuration file) or, if the
17354 folder is one of your incoming folders, it may be the nickname you've given
17355 the folder.
17356 Here are a couple samples of specific folder names:
17358 <CENTER><SAMP>{monet.art.example.com/user=vincent}mail/art-class</SAMP></CENTER>
17360 <CENTER><SAMP>{news.example.com/nntp/user=peter}#news.comp.mail.pine</SAMP></CENTER>
17362 Observe that in order for an external folder (IMAP, POP, News) to be a match,
17363 you must also add the /user= option in the definition of the incoming folder.
17365 The easiest way to fill in the &quot;Folder List&quot; field is to use
17366 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17367 highlighted, or to use the &quot;Take&quot; command with the configuration
17368 feature
17369 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17370 turned on.
17371 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17372 Current Folder Type is set to &quot;Specific&quot;, and any value that
17373 &quot;Folder List&quot; has is ignored unless the type
17374 is set to &quot;Specific&quot;.
17376 When reading a newsgroup, there may be a performance penalty
17377 incurred when collecting the information necessary to check a Pattern.
17378 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17380 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17381 for more information on Patterns.
17383 Look <A HREF="h_edit_nav_cmds">here</A>
17384 to see the available Editing and Navigation commands.
17386 &lt;End of help on this topic&gt;
17387 </BODY>
17388 </HTML>
17389 ======= h_config_filt_rule_type =======
17390 <HTML>
17391 <HEAD>
17392 <TITLE>Filter Action Explained</TITLE>
17393 </HEAD>
17394 <BODY>
17395 <H1>Filter Action Explained</H1>
17397 The Filter Action specifies the action to be taken when the Pattern is a
17398 match.
17399 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17400 &quot;Just Set Message Status&quot;.
17402 If it is set to &quot;Delete&quot;, then the message that matches the
17403 Pattern will be deleted from the open folder.
17405 If it is set to &quot;Move&quot;, then the name of the folder to which
17406 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17407 next line of the screen.
17408 A list of folders separated by commas may be given, in which case the
17409 message will be copied to all of the folders in the list before it is
17410 deleted.
17412 If it is set to neither of those two values (it is set to the value
17413 labeled &quot;Just Set Message Status&quot;) then the message status
17414 setting will happen
17415 but the message will not be deleted or moved.
17417 If you are Moving a message you may also set Message Status if you wish.
17419 The easiest way to fill in the &quot;Folder List&quot; field is to use
17420 the T command that is available when the &quot;Folder List&quot; line is
17421 highlighted.
17422 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17423 Filter Action is set to &quot;Move&quot;, and any value that
17424 &quot;Folder List&quot; has is ignored unless the type
17425 is set to &quot;Move&quot;.
17427 There are a few tokens that may be used in the names in the Folder List.
17428 They are all related to the date on which the filtering is taking place.
17429 The tokens are words surrounded by underscores.
17430 For example, if you want your filter to move messages to a folder named
17431 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17432 you could specify the folder as
17433 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17434 which would result in a file named something like
17435 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17437 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17438 which would result in a file named something like
17439 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17440 The available tokens are listed
17441 <A HREF="h_index_tokens">here</A>.
17443 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17444 for more information on Patterns.
17446 Look <A HREF="h_edit_nav_cmds">here</A>
17447 to see the available Editing and Navigation commands.
17449 &lt;End of help on this topic&gt;
17450 </BODY>
17451 </HTML>
17452 ======= h_config_score_fldr_type =======
17453 <HTML>
17454 <HEAD>
17455 <TITLE>Current Folder Type Explained</TITLE>
17456 </HEAD>
17457 <BODY>
17458 <H1>Current Folder Type Explained</H1>
17460 The Current Folder Type is part of the scoring rule's Pattern.
17461 It refers to the type of the folder that
17462 the message being scored is in.
17463 In order for a rule to be considered a match, the current folder must
17464 be of the type you set here.
17465 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17466 all what you might think.
17468 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17469 example, then
17470 that Pattern will only match if the current folder is a newsgroup and
17471 the rest of the Pattern matches.
17472 The value &quot;Specific&quot; may be used when you want to limit the match
17473 to a specific folder (not just a specific type of folder), or to a list of
17474 specific folders.
17476 In order to match a specific folder you Select the &quot;Specific&quot;
17477 button <EM>AND</EM> fill in
17478 the name (or list of names) of
17479 the folder in the &quot;Folder List&quot; field.
17480 If the current folder is any of the folders in the list, that is considered
17481 a match.
17482 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17483 of the folder (like what appears in your configuration file) or, if the
17484 folder is one of your incoming folders, it may be the nickname you've given
17485 the folder.
17486 Here are a couple samples of specific folder names:
17488 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17490 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17492 The easiest way to fill in the &quot;Folder List&quot; field is to use
17493 the T command that is available when the &quot;Folder List&quot; line is
17494 highlighted.
17495 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17496 Current Folder Type is set to &quot;Specific&quot;, and any value that
17497 &quot;Folder List&quot; has is ignored unless the type
17498 is set to &quot;Specific&quot;.
17500 When reading a newsgroup, there may be a performance penalty
17501 incurred when collecting the information necessary to check a Pattern.
17502 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17503 For example, if you have Index Line Coloring rules that have Score Intervals
17504 defined then the scores for all the visible messages will need to be calculated.
17505 If some of your Scoring rules have 
17506 a Current Folder Type of
17507 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17508 screen to draw more slowly when in a newsgroup.
17510 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17511 for more information on Patterns.
17513 Look <A HREF="h_edit_nav_cmds">here</A>
17514 to see the available Editing and Navigation commands.
17516 &lt;End of help on this topic&gt;
17517 </BODY>
17518 </HTML>
17519 ======= h_config_other_fldr_type =======
17520 <HTML>
17521 <HEAD>
17522 <TITLE>Current Folder Type Explained</TITLE>
17523 </HEAD>
17524 <BODY>
17525 <H1>Current Folder Type Explained</H1>
17527 The Current Folder Type is part of the rule's Pattern.
17528 It refers to the type of the folder being viewed.
17529 In order for a rule to be considered a match, the current folder must
17530 be of the type you set here.
17531 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17532 all what you might think.
17534 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17535 example, then
17536 that Pattern will only match if the current folder is a newsgroup.
17537 The value &quot;Specific&quot; may be used when you want to limit the match
17538 to a specific folder (not just a specific type of folder), or to a list of
17539 specific folders.
17541 In order to match a specific folder you Select the &quot;Specific&quot;
17542 button <EM>AND</EM> fill in
17543 the name (or list of names) of
17544 the folder in the &quot;Folder List&quot; field.
17545 If the current folder is any of the folders in the list, that is considered
17546 a match.
17547 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17548 of the folder (like what appears in your configuration file) or, if the
17549 folder is one of your incoming folders, it may be the nickname you've given
17550 the folder.
17551 Here are a couple samples of specific folder names:
17553 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17555 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17557 The easiest way to fill in the &quot;Folder List&quot; field is to use
17558 the T command that is available when the &quot;Folder List&quot; line is
17559 highlighted.
17560 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17561 Current Folder Type is set to &quot;Specific&quot;, and any value that
17562 &quot;Folder List&quot; has is ignored unless the type
17563 is set to &quot;Specific&quot;.
17565 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17566 for more information on Patterns.
17568 Look <A HREF="h_edit_nav_cmds">here</A>
17569 to see the available Editing and Navigation commands.
17571 &lt;End of help on this topic&gt;
17572 </BODY>
17573 </HTML>
17574 ======= h_config_incol_fldr_type =======
17575 <HTML>
17576 <HEAD>
17577 <TITLE>Current Folder Type Explained</TITLE>
17578 </HEAD>
17579 <BODY>
17580 <H1>Current Folder Type Explained</H1>
17582 The Current Folder Type is part of the Line Coloring rule's Pattern.
17583 It refers to the type of the folder for which the MESSAGE INDEX is
17584 being viewed.
17585 In order for a rule to be considered a match, the current folder must
17586 be of the type you set here.
17587 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17588 all what you might think.
17590 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17591 example, then
17592 that Pattern will only match if the current folder is a newsgroup and
17593 the rest of the Pattern matches.
17594 The value &quot;Specific&quot; may be used when you want to limit the match
17595 to a specific folder (not just a specific type of folder), or to a list of
17596 specific folders.
17598 In order to match a specific folder you Select the &quot;Specific&quot;
17599 button <EM>AND</EM> fill in
17600 the name (or list of names) of
17601 the folder in the &quot;Folder List&quot; field.
17602 If the current folder is any of the folders in the list, that is considered
17603 a match.
17604 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17605 of the folder (like what appears in your configuration file) or, if the
17606 folder is one of your incoming folders, it may be the nickname you've given
17607 the folder.
17608 Here are a couple samples of specific folder names:
17610 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17612 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17614 The easiest way to fill in the &quot;Folder List&quot; field is to use
17615 the T command that is available when the &quot;Folder List&quot; line is
17616 highlighted.
17617 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17618 Current Folder Type is set to &quot;Specific&quot;, and any value that
17619 &quot;Folder List&quot; has is ignored unless the type
17620 is set to &quot;Specific&quot;.
17622 When reading a newsgroup, there may be a performance penalty
17623 incurred when collecting the information necessary to check a Pattern.
17624 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17625 For example, a rule with a non-Normal Index Line Color
17626 and a Current Folder Type of
17627 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17628 screen to draw more slowly when in a newsgroup.
17630 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17631 for more information on Patterns.
17633 Look <A HREF="h_edit_nav_cmds">here</A>
17634 to see the available Editing and Navigation commands.
17636 &lt;End of help on this topic&gt;
17637 </BODY>
17638 </HTML>
17639 ======= h_config_filt_fldr_type =======
17640 <HTML>
17641 <HEAD>
17642 <TITLE>Current Folder Type Explained</TITLE>
17643 </HEAD>
17644 <BODY>
17645 <H1>Current Folder Type Explained</H1>
17647 The Current Folder Type is part of the Filtering rule's Pattern.
17648 It refers to the type of the folder for which the filtering is being done.
17649 In order for a rule to be considered a match, the current folder must
17650 be of the type you set here.
17651 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17652 all what you might think.
17654 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17655 example, then
17656 that Pattern will only match if the current folder is a newsgroup and
17657 the rest of the Pattern matches.
17658 The value &quot;Specific&quot; may be used when you want to limit the match
17659 to a specific folder (not just a specific type of folder), or to a list of
17660 specific folders.
17662 In order to match a specific folder you Select the &quot;Specific&quot;
17663 button <EM>AND</EM> fill in
17664 the name (or list of names) of
17665 the folder in the &quot;Folder List&quot; field.
17666 If the current folder is any of the folders in the list, that is considered
17667 a match.
17668 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17669 of the folder (like what appears in your configuration file) or, if the
17670 folder is one of your incoming folders, it may be the nickname you've given
17671 the folder.
17672 Here are a couple samples of specific folder names:
17674 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17676 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17678 The easiest way to fill in the &quot;Folder List&quot; field is to use
17679 the T command that is available when the &quot;Folder List&quot; line is
17680 highlighted.
17681 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17682 Current Folder Type is set to &quot;Specific&quot;, and any value that
17683 &quot;Folder List&quot; has is ignored unless the type
17684 is set to &quot;Specific&quot;.
17686 When reading a newsgroup, there may be a performance penalty
17687 incurred when collecting the information necessary to check a Pattern.
17688 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17689 For example, a rule with a Current Folder Type of either
17690 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17691 more slowly when opening a newsgroup.
17693 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17694 for more information on Patterns.
17696 Look <A HREF="h_edit_nav_cmds">here</A>
17697 to see the available Editing and Navigation commands.
17699 &lt;End of help on this topic&gt;
17700 </BODY>
17701 </HTML>
17702 ======= h_config_role_stat_imp =======
17703 <HTML>
17704 <HEAD>
17705 <TITLE>Message Important Status Explained</TITLE>
17706 </HEAD>
17707 <BODY>
17708 <H1>Message Important Status Explained</H1>
17710 This part of the Pattern may have one of three possible values.
17711 The default value is &quot;Don't care&quot;, which matches any message.
17712 The other two values are &quot;Yes&quot;, which means the message must be
17713 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17714 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17715 to be a match.
17717 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17718 for more information on Patterns.
17720 Look <A HREF="h_edit_nav_cmds">here</A>
17721 to see the available Editing and Navigation commands.
17723 &lt;End of help on this topic&gt;
17724 </BODY>
17725 </HTML>
17726 ======= h_config_role_stat_new =======
17727 <HTML>
17728 <HEAD>
17729 <TITLE>Message New Status Explained</TITLE>
17730 </HEAD>
17731 <BODY>
17732 <H1>Message New Status Explained</H1>
17734 This part of the Pattern may have one of three possible values.
17735 The default value is &quot;Don't care&quot;, which matches any message.
17736 The other two values are &quot;Yes&quot;, which means the message must be
17737 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17738 means the message must <EM>not</EM> be &quot;New&quot; in order
17739 to be a match.
17740 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17741 same as <EM>Seen</EM>.
17743 The nomenclature for New and Recent is a bit confusing:
17745 New means that the message is Unseen.
17746 It could have been in your mailbox for a long time but if you haven't looked
17747 at it, it is still considered New.
17748 That matches the default Alpine index display that shows an N for such a
17749 message.
17751 Recent means that the message was added to this folder since the last time
17752 you opened the folder.
17753 Alpine also shows an N by default for these types of messages.
17754 If you were to run two copies of Alpine that opened a folder one right after
17755 the other, a message would only show up as Recent in (at most) the first
17756 Alpine session.
17758 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17759 for more information on Patterns.
17761 Look <A HREF="h_edit_nav_cmds">here</A>
17762 to see the available Editing and Navigation commands.
17764 &lt;End of help on this topic&gt;
17765 </BODY>
17766 </HTML>
17767 ======= h_config_role_stat_recent =======
17768 <HTML>
17769 <HEAD>
17770 <TITLE>Message Recent Status Explained</TITLE>
17771 </HEAD>
17772 <BODY>
17773 <H1>Message Recent Status Explained</H1>
17775 This part of the Pattern may have one of three possible values.
17776 The default value is &quot;Don't care&quot;, which matches any message.
17777 The other two values are &quot;Yes&quot;, which means the message must be
17778 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17779 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17780 to be a match.
17781 &quot;Recent&quot; means that the message was added to the folder since
17782 the last time the folder was opened.
17783 If more than one mail client has the folder opened, the message will
17784 appear to be &quot;Recent&quot; to only one of the clients.
17786 The nomenclature for New and Recent is a bit confusing:
17788 New means that the message is Unseen.
17789 It could have been in your mailbox for a long time but if you haven't looked
17790 at it, it is still considered New.
17791 That matches the default Alpine index display that shows an N for such a
17792 message.
17794 Recent means that the message was added to this folder since the last time
17795 you opened the folder.
17796 Alpine also shows an N by default for these types of messages.
17797 If you were to run two copies of Alpine that opened a folder one right after
17798 the other, a message would only show up as Recent in (at most) the first
17799 Alpine session.
17801 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17802 for more information on Patterns.
17804 Look <A HREF="h_edit_nav_cmds">here</A>
17805 to see the available Editing and Navigation commands.
17807 &lt;End of help on this topic&gt;
17808 </BODY>
17809 </HTML>
17810 ======= h_config_role_stat_del =======
17811 <HTML>
17812 <HEAD>
17813 <TITLE>Message Deleted Status Explained</TITLE>
17814 </HEAD>
17815 <BODY>
17816 <H1>Message Deleted Status Explained</H1>
17818 This part of the Pattern may have one of three possible values.
17819 The default value is &quot;Don't care&quot;, which matches any message.
17820 The other two values are &quot;Yes&quot;, which means the message must be
17821 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17822 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17823 to be a match.
17825 If you are thinking of using this part of the Pattern as a way to prevent
17826 messages from being filtered more than once in a Filter Pattern,
17827 take a look at the Filter Option
17828 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17829 instead.
17830 It should work better than using this field since it will hide the filtered
17831 messages even if they are already Deleted.
17832 That option is at the bottom of the Filter configuration screen.
17834 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17835 for more information on Patterns.
17837 Look <A HREF="h_edit_nav_cmds">here</A>
17838 to see the available Editing and Navigation commands.
17840 &lt;End of help on this topic&gt;
17841 </BODY>
17842 </HTML>
17843 ======= h_config_role_stat_ans =======
17844 <HTML>
17845 <HEAD>
17846 <TITLE>Message Answered Status Explained</TITLE>
17847 </HEAD>
17848 <BODY>
17849 <H1>Message Answered Status Explained</H1>
17851 This part of the Pattern may have one of three possible values.
17852 The default value is &quot;Don't care&quot;, which matches any message.
17853 The other two values are &quot;Yes&quot;, which means the message must be
17854 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17855 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17856 to be a match.
17858 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17859 for more information on Patterns.
17861 Look <A HREF="h_edit_nav_cmds">here</A>
17862 to see the available Editing and Navigation commands.
17864 &lt;End of help on this topic&gt;
17865 </BODY>
17866 </HTML>
17867 ======= h_config_role_abookfrom =======
17868 <HTML>
17869 <HEAD>
17870 <TITLE>Address in Address Book Explained</TITLE>
17871 </HEAD>
17872 <BODY>
17873 <H1>Address in Address Book Explained</H1>
17875 This option gives you a way to match messages that contain an address
17876 that is in one of your address books.
17877 Only the simple entries in your address books are searched.
17878 Address book distribution lists are ignored!
17880 This part of the Pattern may have one of five possible values.
17881 The default value is &quot;Don't care&quot;, which matches any message.
17882 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17883 from the message must be in at least one of your
17884 address books in order to be a match.
17885 The value &quot;No, not in any address book&quot;
17886 means none of the addresses may
17887 be in any of your address books in order to be a match.
17889 The values &quot;Yes, in specific address books&quot; and
17890 &quot;No, not in any of specific address books&quot; are similar but instead
17891 of depending on all address books you are allowed to give a list of address
17892 books to look in.
17893 Usually this would be a single address book but it may be a
17894 list of address books as well.
17895 For each of these &quot;specific&quot; address book options you Select which
17896 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17897 name (or list of names) of the address book in the
17898 &quot;Abook List&quot; field.
17899 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17900 The easiest way to fill in the Abook List field it to use
17901 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17902 line is highlighted.
17903 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17904 option is set to one of the two &quot;Specific&quot;, values.
17906 The addresses from the message that are checked for are determined by the
17907 setting you have for &quot;Types of addresses to check for in address book&quot;.
17908 If you set this to &quot;From&quot; the From address from the message will
17909 be looked up in the address book.
17910 If you set it to &quot;To&quot; instead then the To addresses will be used.
17911 If any of the To addresses are in the address book then it is considered
17912 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17913 You could set it to both From and To, in which case all of the From and To
17914 addresses are used.
17915 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17916 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17917 exists or the From address if there is no Reply-To address.
17918 Same for the Sender address.
17920 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17921 for more information on Patterns.
17923 Look <A HREF="h_edit_nav_cmds">here</A>
17924 to see the available Editing and Navigation commands.
17926 &lt;End of help on this topic&gt;
17927 </BODY>
17928 </HTML>
17929 ======= h_config_inabook_from =======
17930 <HTML>
17931 <HEAD>
17932 <TITLE>From</TITLE>
17933 </HEAD>
17934 <BODY>
17935 <H1>From</H1>
17937 Setting the From line will cause the address from the From header line
17938 of the message to be checked for in the address book.
17940 &lt;End of help on this topic&gt;
17941 </BODY>
17942 </HTML>
17943 ======= h_config_inabook_replyto =======
17944 <HTML>
17945 <HEAD>
17946 <TITLE>Reply-To</TITLE>
17947 </HEAD>
17948 <BODY>
17949 <H1>Reply-To</H1>
17951 Setting the Reply-To line will cause the address from the Reply-To header line
17952 of the message to be checked for in the address book.
17953 However, if there is no Reply-To header line in the message the From header
17954 line will be used instead.
17955 We understand this is dumb but we don't have an easy way around it.
17957 &lt;End of help on this topic&gt;
17958 </BODY>
17959 </HTML>
17960 ======= h_config_inabook_sender =======
17961 <HTML>
17962 <HEAD>
17963 <TITLE>Sender</TITLE>
17964 </HEAD>
17965 <BODY>
17966 <H1>Sender</H1>
17968 Setting the Sender line will cause the address from the Sender header line
17969 of the message to be checked for in the address book.
17970 However, if there is no Sender header line in the message the From header
17971 line will be used instead.
17972 We understand this is dumb but we don't have an easy way around it.
17974 &lt;End of help on this topic&gt;
17975 </BODY>
17976 </HTML>
17977 ======= h_config_inabook_to =======
17978 <HTML>
17979 <HEAD>
17980 <TITLE>To</TITLE>
17981 </HEAD>
17982 <BODY>
17983 <H1>To</H1>
17985 Setting the To line will cause the address from the To header line
17986 of the message to be checked for in the address book.
17988 &lt;End of help on this topic&gt;
17989 </BODY>
17990 </HTML>
17991 ======= h_config_inabook_cc =======
17992 <HTML>
17993 <HEAD>
17994 <TITLE>CC</TITLE>
17995 </HEAD>
17996 <BODY>
17997 <H1>CC</H1>
17999 Setting the CC line will cause the address from the CC header line
18000 of the message to be checked for in the address book.
18002 &lt;End of help on this topic&gt;
18003 </BODY>
18004 </HTML>
18005 ======= h_config_role_stat_8bitsubj =======
18006 <HTML>
18007 <HEAD>
18008 <TITLE>Raw 8-bit in Subject Explained</TITLE>
18009 </HEAD>
18010 <BODY>
18011 <H1>Raw 8-bit in Subject Explained</H1>
18013 It seems that lots of unwanted email contains unencoded 8-bit characters
18014 in the Subject.
18015 Normally, characters with the 8th bit set are not allowed in the Subject
18016 header unless they are MIME-encoded.
18017 This option gives you a way to match messages that have Subjects that
18018 contain unencoded 8-bit characters.
18020 This part of the Pattern may have one of three possible values.
18021 The default value is &quot;Don't care&quot;, which matches any message.
18022 The other two values are &quot;Yes&quot;, which means the Subject of
18023 the message must contain unencoded 8-bit characters (characters with the
18024 most significant bit set)
18025 in order to be a match; or &quot;No&quot;, which
18026 means the Subject must <EM>not</EM>
18027 contain unencoded 8-bit characters in order to be a match.
18029 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18030 for more information on Patterns.
18032 Look <A HREF="h_edit_nav_cmds">here</A>
18033 to see the available Editing and Navigation commands.
18035 &lt;End of help on this topic&gt;
18036 </BODY>
18037 </HTML>
18038 ======= h_config_role_bom =======
18039 <HTML>
18040 <HEAD>
18041 <TITLE>Beginning of Month</TITLE>
18042 </HEAD>
18043 <BODY>
18044 <H1>Beginning of Month</H1>
18046 This option gives you a limited ability to take different actions depending on whether
18047 this is the first time Alpine has been run this month or not.
18048 Though it would be nice to have such an option available, this is not the
18049 same as whether or not this is the first time a paricular folder has been
18050 opened this month.
18051 If you want some action (probably Filtering) to take place in a folder each
18052 month, then you will need to be sure that the folder is opened during the
18053 first Alpine session of the month in order for this option to be helpful.
18055 This part of the Pattern may have one of three possible values.
18056 The default value is &quot;Don't care&quot;, which matches any message.
18057 The other two values are &quot;Yes&quot;, which means this is the first
18058 time Alpine has been run this month;
18059 or &quot;No&quot;, which
18060 means this is not the first time Alpine has been run this month.
18062 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18063 for more information on Patterns.
18065 Here are some technical details.
18066 The way that Alpine decides if it is the beginning of the month or not is
18067 to compare today's date with the date stored in the
18068 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18069 variable in the config file.
18070 If the month of today's date is later than the month stored in the variable,
18071 then this is considered to be the first time you have run Alpine this month, and
18072 that turns the Beginning of the Month option on.
18074 Look <A HREF="h_edit_nav_cmds">here</A>
18075 to see the available Editing and Navigation commands.
18077 &lt;End of help on this topic&gt;
18078 </BODY>
18079 </HTML>
18080 ======= h_config_role_boy =======
18081 <HTML>
18082 <HEAD>
18083 <TITLE>Beginning of Year</TITLE>
18084 </HEAD>
18085 <BODY>
18086 <H1>Beginning of Year</H1>
18088 This option gives you a limited ability to take different actions depending on whether
18089 this is the first time Alpine has been run this year or not.
18090 Though it would be nice to have such an option available, this is not the
18091 same as whether or not this is the first time a paricular folder has been
18092 opened this year.
18093 If you want some action (probably Filtering) to take place in a folder each
18094 year, then you will need to be sure that the folder is opened during the
18095 first Alpine session of the year in order for this option to be helpful.
18097 This part of the Pattern may have one of three possible values.
18098 The default value is &quot;Don't care&quot;, which matches any message.
18099 The other two values are &quot;Yes&quot;, which means this is the first
18100 time Alpine has been run this year;
18101 or &quot;No&quot;, which
18102 means this is not the first time Alpine has been run this year.
18104 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18105 for more information on Patterns.
18107 Here are some technical details.
18108 The way that Alpine decides if it is the beginning of the year or not is
18109 to compare today's date with the date stored in the
18110 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18111 variable in the config file.
18112 If the year of today's date is later than the year stored in the variable,
18113 then this is considered to be the first time you have run Alpine this year, and
18114 that turns the Beginning of the Year option on.
18116 Look <A HREF="h_edit_nav_cmds">here</A>
18117 to see the available Editing and Navigation commands.
18119 &lt;End of help on this topic&gt;
18120 </BODY>
18121 </HTML>
18122 ======= h_config_role_inick =======
18123 <HTML>
18124 <HEAD>
18125 <TITLE>Initialize Values From Role Explained</TITLE>
18126 </HEAD>
18127 <BODY>
18128 <H1>Initialize Values From Role Explained</H1>
18130 This is a power user feature.
18131 You will usually want to leave this field empty.
18132 The value of this field is the nickname of another one of your roles.
18133 The Action values from that other role
18134 are used as the initial values of the Action items for this role.
18135 If you put something in any of the action fields for this role, that will
18136 override whatever was in the corresponding field of the initializer role.
18138 You might use this field if the &quot;Action&quot; part of one of your roles
18139 is something you want to use in more than one role.
18140 Instead of filling in those action values again for each role, you
18141 may give the nickname of the role where the values are filled in.
18142 It's just a shortcut way to define Role Actions.
18144 Here's an example to help explain how this works.
18145 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18146 (among other things)
18148 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18150 set.
18151 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18152 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18153 from role1 by default (and any of the other inheritable action values
18154 that are set).
18155 So if role2 had
18157 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18159 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18160 However, if role2 had
18162 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18164 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18166 If you wish,
18167 you may choose a nickname from your list of roles by using the
18168 &quot;T&quot; command.
18169 If the role you are using to initialize also has a role it initializes from,
18170 then that initialization happens first.
18171 That is, inheritance works as expected with the grandparent and
18172 great-grandparent (and so on) roles having the expected effect.
18174 Look <A HREF="h_edit_nav_cmds">here</A>
18175 to see the available Editing and Navigation commands.
18177 &lt;End of help on this topic&gt;
18178 </BODY>
18179 </HTML>
18180 ======= h_config_role_setfrom =======
18181 <HTML>
18182 <HEAD>
18183 <TITLE>Set From Explained</TITLE>
18184 </HEAD>
18185 <BODY>
18186 <H1>Set From Explained</H1>
18188 This describes part of the action to be taken if the Pattern for this
18189 role is a match.
18190 This field consists of a single address that will be used as the From
18191 address on the message you are sending.
18192 This should be a fully-qualified address like
18194 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18196 or just
18198 <CENTER><SAMP>user@domain</SAMP></CENTER>
18200 If you wish,
18201 you may choose an address from your address book with the
18202 &quot;T&quot; command.
18204 If this is left blank, then your normal From address will be used.
18206 You may also find it useful to add the changed From address to the
18207 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18208 configuration option.
18210 Look <A HREF="h_edit_nav_cmds">here</A>
18211 to see the available Editing and Navigation commands.
18213 &lt;End of help on this topic&gt;
18214 </BODY>
18215 </HTML>
18216 ======= h_config_role_setreplyto =======
18217 <HTML>
18218 <HEAD>
18219 <TITLE>Set Reply-To Explained</TITLE>
18220 </HEAD>
18221 <BODY>
18222 <H1>Set Reply-To Explained</H1>
18224 This describes part of the action to be taken if the Pattern for this
18225 role is a match.
18226 This field consists of a single address that will be used as the Reply-To
18227 address on the message you are sending.
18228 This may be a fully-qualified address like
18230 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18232 or just
18234 <CENTER><SAMP>user@domain</SAMP></CENTER>
18236 If you wish,
18237 you may choose an address from your address book with the
18238 &quot;T&quot; command.
18240 If this is left blank, then there won't be a Reply-To address unless
18241 you have configured one specially with the
18242 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18243 configuration option.
18245 Look <A HREF="h_edit_nav_cmds">here</A>
18246 to see the available Editing and Navigation commands.
18248 &lt;End of help on this topic&gt;
18249 </BODY>
18250 </HTML>
18251 ======= h_config_role_setfcc =======
18252 <HTML>
18253 <HEAD>
18254 <TITLE>Set Fcc Explained</TITLE>
18255 </HEAD>
18256 <BODY>
18257 <H1>Set Fcc Explained</H1>
18259 This describes part of the action to be taken if the Pattern for this
18260 role is a match.
18261 This field consists of a single folder name that will be used in
18262 the Fcc field of the message you are sending.
18263 You may put anything here that you would normally type into the Fcc
18264 field from the composer.
18266 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18267 no Fcc.
18269 A blank field here means that Alpine will use its normal rules for deciding
18270 the default value of the Fcc field.
18271 For many roles, perhaps most, it may make more sense for you to use the
18272 other Alpine facilities for setting the Fcc.
18273 In particular, if you want the Fcc to depend on who you are sending the
18274 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18275 is probably more useful.
18276 In that case, you would want to leave the Fcc field here blank.
18277 However, if you have a role that depends on who the message you are replying
18278 to was From, or what address that message was sent to;
18279 then it might make sense to set the Fcc for that role here.
18281 If you wish,
18282 you may choose a folder from your folder collections by using the
18283 &quot;T&quot; command.
18285 Look <A HREF="h_edit_nav_cmds">here</A>
18286 to see the available Editing and Navigation commands.
18288 &lt;End of help on this topic&gt;
18289 </BODY>
18290 </HTML>
18291 ======= h_config_role_usesmtp =======
18292 <HTML>
18293 <HEAD>
18294 <TITLE>Use SMTP Server Explained</TITLE>
18295 </HEAD>
18296 <BODY>
18297 <H1>Use SMTP Server Explained</H1>
18299 This describes part of the action to be taken if the Pattern for this
18300 role is a match.
18301 If this field has a value, then it will be used as the SMTP server
18302 to send mail when this role is being used (unless the SMTP server variable
18303 is set in the system-wide fixed configuration file).
18304 It has the same semantics as the
18305 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18306 variable in the Setup/Config screen.
18308 If you are using this to post from home when you are at home and from
18309 work when you are at work you need to be careful about postponing messages.
18310 When you postpone a composition that was using a role with this variable
18311 set, the SMTP server list will be saved
18312 with the postponed composition.
18313 It cannot be changed later.
18314 Because of this, you may want to make this a list of SMTP servers
18315 with the preferred server at the front of the list and alternate servers
18316 later in the list.
18317 In your &quot;Home&quot; role you would put the home SMTP server first and
18318 the work SMTP server last.
18319 In your &quot;Work&quot; role you would put the work SMTP server first and
18320 the home SMTP server last.
18321 Then if you start a composition as &quot;Work&quot;, postpone
18322 it, and then later resume it from home the work SMTP server will fail but
18323 the home SMTP server later in the list will succeed.
18325 You may be able to simplify things by making the regular
18326 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18327 variable in the Setup/Config screen a list instead of using roles
18328 to set the SMTP server.
18331 Look <A HREF="h_edit_nav_cmds">here</A>
18332 to see the available Editing and Navigation commands.
18334 &lt;End of help on this topic&gt;
18335 </BODY>
18336 </HTML>
18337 ======= h_config_role_usenntp =======
18338 <HTML>
18339 <HEAD>
18340 <TITLE>Use NNTP Server Explained</TITLE>
18341 </HEAD>
18342 <BODY>
18343 <H1>Use NNTP Server Explained</H1>
18345 This describes part of the action to be taken if the Pattern for this
18346 role is a match.
18347 If this field has a value, then it will be used as the NNTP server
18348 to post to newsgroups when this role is being used (unless the NNTP server
18349 variable
18350 is set in the system-wide fixed configuration file).
18351 It has the same semantics as the
18352 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18353 variable in the Setup/Config screen.
18355 This role setting can facilitate posting to the right nntp server for someone
18356 who reads news from various news sources.  The feature
18357 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18358 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18359 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18360 nntp servers for roles may be more desirable for some people.
18362 If you are using this to post from home when you are at home and from
18363 work when you are at work you need to be careful about postponing messages.
18364 When you postpone a composition that was using a role with this variable
18365 set, the NNTP server list will be saved
18366 with the postponed composition.
18367 It cannot be changed later.
18368 Because of this, you may want to make this a list of NNTP servers
18369 with the preferred server at the front of the list and alternate servers
18370 later in the list.
18371 In your &quot;Home&quot; role you would put the home NNTP server first and
18372 the work NNTP server last.
18373 In your &quot;Work&quot; role you would put the work NNTP server first and
18374 the home NNTP server last.
18375 Then if you start a composition as &quot;Work&quot;, postpone
18376 it, and then later resume it from home the work NNTP server will fail but
18377 the home NNTP server later in the list will succeed.
18379 You may be able to simplify things by making the regular
18380 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18381 variable in the Setup/Config screen a list instead of using roles
18382 to set the NNTP server.
18385 Look <A HREF="h_edit_nav_cmds">here</A>
18386 to see the available Editing and Navigation commands.
18388 &lt;End of help on this topic&gt;
18389 </BODY>
18390 </HTML>
18391 ======= h_config_role_setotherhdr =======
18392 <HTML>
18393 <HEAD>
18394 <TITLE>Set Other Headers Explained</TITLE>
18395 </HEAD>
18396 <BODY>
18397 <H1>Set Other Headers Explained</H1>
18399 This describes part of the action to be taken if the Pattern for this
18400 role is a match.
18401 This field gives you a way to set values for headers besides
18402 &quot;From&quot; and &quot;Reply-To&quot;.
18403 If you want to set either of those, use the specific
18404 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18406 This field is similar to the
18407 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18408 Each header you specify here must include the header tag 
18409 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18410 and may optionally include a value for that header.
18411 In order to see these headers when you compose using this role you 
18412 must use the rich header
18413 <!--chtml if pinemode="function_key"-->(F5)
18414 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18415 Here's an example that shows how you might set the To address.
18417 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18419 Headers set in this way are different from headers set with the
18420 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18421 will replace any value that already exists.
18422 For example, if you are Replying to a message there will already be at
18423 least one address in the To header (the address you are Replying to).
18424 However, if you Reply using a role that sets the To header, that role's
18425 To header value will be used instead.
18427 Limitation: Because commas are used to separate the list of
18428 Other Headers, it is not possible to have the value of a
18429 header contain a comma;
18430 nor is there currently an &quot;escape&quot; mechanism provided
18431 to make this work.
18433 Look <A HREF="h_edit_nav_cmds">here</A>
18434 to see the available Editing and Navigation commands.
18436 &lt;End of help on this topic&gt;
18437 </BODY>
18438 </HTML>
18439 ======= h_config_role_setlitsig =======
18440 <HTML>
18441 <HEAD>
18442 <TITLE>Set Literal Signature Explained</TITLE>
18443 </HEAD>
18444 <BODY>
18445 <H1>Set Literal Signature Explained</H1>
18447 This describes part of the action to be taken if the Pattern for this
18448 role is a match.
18449 This field contains the actual text for your signature, as opposed to
18450 the name of a file containing your signature.
18451 If this is defined it takes precedence over any value set in the
18452 &quot;Set Signature&quot; field.
18454 This is simply a different way to store the signature.
18455 The signature is stored inside your Alpine configuration file instead of in
18456 a separate file.
18457 Tokens work the same way they do with
18458 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18459 help text there for more information.
18462 The two character sequence &#92;n (backslash followed by
18463 the character n) will be used to signify a line-break in your signature.
18464 You don't have to enter the &#92;n, but it will be visible in the
18465 CHANGE THIS ROLE RULE window after you are done editing the signature.
18467 Look <A HREF="h_edit_nav_cmds">here</A>
18468 to see the available Editing and Navigation commands.
18470 &lt;End of help on this topic&gt;
18471 </BODY>
18472 </HTML>
18473 ======= h_config_role_setsig =======
18474 <HTML>
18475 <HEAD>
18476 <TITLE>Set Signature Explained</TITLE>
18477 </HEAD>
18478 <BODY>
18479 <H1>Set Signature Explained</H1>
18481 This describes part of the action to be taken if the Pattern for this
18482 role is a match.
18484 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18485 option from Setup/Config
18486 or the &quot;Set LiteralSig&quot; option for this role are defined,
18487 then this option will be ignored.
18488 You can tell that that is the case because the value of this
18489 option will show up as
18491 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18493 You may either use all Literal Signatures (signatures stored in your
18494 configuration file) throughout Alpine, or all signature files.
18495 You can't mix the two.
18497 This field consists of a filename that will be used as the signature
18498 file when using this role.
18500 If the filename is followed by a vertical bar (|) then instead
18501 of reading the contents of the file the file is assumed to be a
18502 program that will produce the text to be used on its standard output.
18503 The program can't have any arguments and doesn't receive any input from Alpine,
18504 but the rest of the processing works as if the contents came from a file.
18506 Instead of storing the data in a local file, the
18507 signature data may be stored remotely in an IMAP folder.
18508 In order to do this, 
18509 you must use a remote name for the signature.
18510 A remote signature name might look like:
18512 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18515 The syntax used here is the same as the syntax used for a remote
18516 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18517 Note that you may not access an existing signature file remotely,
18518 you have to create a new <EM>folder</EM> that contains the signature data.
18519 If the name you use here for the signature data is a remote name, then when
18520 you edit the file using the &quot;F&quot; command the data will
18521 be saved remotely in the folder.
18522 You aren't required to do anything special to create the folder, it
18523 gets created if you use a remote name.
18526 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18527 the name of the file) you have specified.
18528 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18530 Besides containing regular text, a signature file may also
18531 contain (or a signature program may produce) tokens that are replaced with text
18532 that depends on the message you are replying to or forwarding.
18533 The tokens all look like _word_ (a word surrounded by underscores).
18534 For example, if the token
18536 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18538 is included in the text of the signature file, then when you reply to
18539 or forward a message, the token will be replaced with the actual date
18540 the message you are replying to or forwarding was sent.
18542 If you use a role that has a signature file for a plain composition
18543 (that is, not a reply or forward) then there is no original message, so
18544 any tokens that depend on the message will be replaced with nothing.
18545 So if you want a signature file to be useful for new compositions it
18546 shouldn't include any of the tokens that depend on the message being
18547 replied to or forwarded.
18549 The list of available tokens is
18550 <A HREF="h_index_tokens">here</A>.
18552 Actually, for the adventurous, there is a way to conditionally include text based
18553 on whether or not a token would result in specific replacement text.
18554 For example, you could include some text based on whether or not
18555 the _NEWS_ token would result in any newsgroups if it was used.
18556 It's explained in detail
18557 <A HREF="h_reply_token_conditionals">here</A>.
18559 In the very unlikely event that you want to include a literal token in
18560 a signature file, you must precede it with a backslash character.
18561 For example, to include the literal text _DATE_ you must actually use
18562 &#92;_DATE_.
18563 It is not possible to have a literal backslash followed by an expanded token.
18565 A blank field here means that Alpine will use its normal rules for deciding
18566 which file (if any) to use for the signature file.
18568 An alternate method for storing the signature is available in
18569 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18571 Look <A HREF="h_edit_nav_cmds">here</A>
18572 to see the available Editing and Navigation commands.
18574 &lt;End of help on this topic&gt;
18575 </BODY>
18576 </HTML>
18577 ======= h_config_role_settempl =======
18578 <HTML>
18579 <HEAD>
18580 <TITLE>Set Template Explained</TITLE>
18581 </HEAD>
18582 <BODY>
18583 <H1>Set Template Explained</H1>
18585 This describes part of the action to be taken if the Pattern for this
18586 role is a match.
18587 This field consists of a filename that will be used as the template
18588 file when using this role.
18589 The template file is a file that is included at the top of the message you
18590 are composing.
18592 If the filename is followed by a vertical bar (|) then instead
18593 of reading the contents of the file the file is assumed to be a
18594 program that will produce the text to be used on its standard output.
18595 The program can't have any arguments and doesn't receive any input from Alpine,
18596 but the rest of the processing works as if the contents came from a file.
18598 Instead of storing the data in a local file, the
18599 template may be stored remotely in an IMAP folder.
18600 In order to do this, 
18601 you must use a remote name for the template.
18602 A remote template name might look like:
18604 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18607 The syntax used here is the same as the syntax used for a remote
18608 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18609 Note that you may not access an existing template file remotely,
18610 you have to create a new <EM>folder</EM> that contains the template data.
18611 If the name you use here for the template is a remote name, then when
18612 you edit the file using the &quot;F&quot; command the data will
18613 be saved remotely in the folder.
18614 You aren't required to do anything special to create the folder, it
18615 gets created if you use a remote name.
18617 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18618 the name of the file) you have specified.
18619 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18621 Besides containing regular text, the template file may also
18622 contain (or a template file program may produce) tokens that are replaced with text
18623 that depends on the message you are replying to or forwarding.
18624 The tokens all look like _word_ (a word surrounded by underscores).
18625 For example, if the token
18627 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18629 is included in the text of the template file, then when you reply to
18630 or forward a message, the token will be replaced with the actual date
18631 the message you are replying to or forwarding was sent.
18633 If you use a role that has a template file for a plain composition
18634 (that is, not a reply or forward) then there is no original message, so
18635 any tokens that depend on the message will be replaced with nothing.
18636 So if you want a template file to be useful for new compositions it
18637 shouldn't include any of the tokens that depend on the message being
18638 replied to or forwarded.
18640 The list of available tokens is
18641 <A HREF="h_index_tokens">here</A>.
18643 Actually, for the adventurous, there is a way to conditionally include text based
18644 on whether or not a token would result in specific replacement text.
18645 For example, you could include some text based on whether or not
18646 the _NEWS_ token would result in any newsgroups if it was used.
18647 It's explained in detail
18648 <A HREF="h_reply_token_conditionals">here</A>.
18650 In the very unlikely event that you want to include a literal token in
18651 a template file, you must precede it with a backslash character.
18652 For example, to include the literal text _DATE_ you must actually use
18653 &#92;_DATE_.
18654 It is not possible to have a literal backslash followed by an expanded token.
18656 A blank template field means that Alpine will not use a template file when
18657 this role is being used.
18659 Look <A HREF="h_edit_nav_cmds">here</A>
18660 to see the available Editing and Navigation commands.
18662 &lt;End of help on this topic&gt;
18663 </BODY>
18664 </HTML>
18665 ======= h_config_filt_stat_imp =======
18666 <HTML>
18667 <HEAD>
18668 <TITLE>Set Important Status Explained</TITLE>
18669 </HEAD>
18670 <BODY>
18671 <H1>Set Important Status Explained</H1>
18673 This describes part of the action to be taken if the Pattern for this
18674 filter is a match.
18675 If set to &quot;Don't change it&quot; then this does nothing.
18676 If set to &quot;Set this state&quot; then the Important flag is set
18677 for the matching message.
18678 If set to &quot;Clear this state&quot; then the Important flag is cleared
18679 for the matching message.
18680 The important flag usually causes an asterisk to show up in the MESSAGE
18681 INDEX.
18682 It may also be useful when selecting a set of messages
18683 with the Select command.
18685 Look <A HREF="h_edit_nav_cmds">here</A>
18686 to see the available Editing and Navigation commands.
18688 &lt;End of help on this topic&gt;
18689 </BODY>
18690 </HTML>
18691 ======= h_config_filt_stat_new =======
18692 <HTML>
18693 <HEAD>
18694 <TITLE>Set New Status Explained</TITLE>
18695 </HEAD>
18696 <BODY>
18697 <H1>Set New Status Explained</H1>
18699 This describes part of the action to be taken if the Pattern for this
18700 filter is a match.
18701 If set to &quot;Don't change it&quot; then this does nothing.
18702 If set to &quot;Set this state&quot; then the
18703 matching message is marked New.
18704 If set to &quot;Clear this state&quot; then the
18705 matching message is marked Seen.
18707 Look <A HREF="h_edit_nav_cmds">here</A>
18708 to see the available Editing and Navigation commands.
18710 &lt;End of help on this topic&gt;
18711 </BODY>
18712 </HTML>
18713 ======= h_config_filt_stat_ans =======
18714 <HTML>
18715 <HEAD>
18716 <TITLE>Set Answered Status Explained</TITLE>
18717 </HEAD>
18718 <BODY>
18719 <H1>Set Answered Status Explained</H1>
18721 This describes part of the action to be taken if the Pattern for this
18722 filter is a match.
18723 If set to &quot;Don't change it&quot; then this does nothing.
18724 If set to &quot;Set this state&quot; then the Answered flag is set
18725 for the matching message.
18726 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18727 for the matching message.
18729 Look <A HREF="h_edit_nav_cmds">here</A>
18730 to see the available Editing and Navigation commands.
18732 &lt;End of help on this topic&gt;
18733 </BODY>
18734 </HTML>
18735 ======= h_config_filt_stat_del =======
18736 <HTML>
18737 <HEAD>
18738 <TITLE>Set Deleted Status Explained</TITLE>
18739 </HEAD>
18740 <BODY>
18741 <H1>Set Deleted Status Explained</H1>
18743 This describes part of the action to be taken if the Pattern for this
18744 filter is a match.
18745 If set to &quot;Don't change it&quot; then this does nothing.
18746 If set to &quot;Set this state&quot; then the
18747 matching message is marked Deleted.
18748 If set to &quot;Clear this state&quot; then the
18749 matching message is marked UnDeleted.
18751 You should not use this option unless you are prepared to have matching
18752 messages expunged from the folder permanently.
18753 For example, if you type the Expunge command, this filter is applied
18754 before the expunge, so matching messages will be marked Deleted and then
18755 will be permanently expunged from the folder.
18756 However, since the index isn't redrawn in between the time that the message
18757 is marked Deleted and the time that you are asked to expunge, the only
18758 indication that you are expunging the message comes in the number of messages
18759 being expunged.
18760 The same thing may happen when you close a folder.
18761 It is also possible that an expunge not initiated by you will
18762 delete matching messages.
18764 Look <A HREF="h_edit_nav_cmds">here</A>
18765 to see the available Editing and Navigation commands.
18767 &lt;End of help on this topic&gt;
18768 </BODY>
18769 </HTML>
18770 ======= h_config_role_scoreval =======
18771 <HTML>
18772 <HEAD>
18773 <TITLE>Score Value Explained</TITLE>
18774 </HEAD>
18775 <BODY>
18776 <H1>Score Value Explained</H1>
18778 A message's score is the sum of the Score Values from all of the Scoring rules
18779 with Patterns that match the message.
18780 The value you give here is the Score Value associated with this rule.
18781 A Score Value is an integer between -100 and 100, with the default
18782 value of zero.
18784 Alternatively, if the
18785 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18786 field is defined
18787 (on the line right below the &quot;Score Value&quot; field)
18788 then the &quot;Score Value&quot; is ignored and
18789 the &quot;Score From Header&quot; field is used instead.
18791 Look <A HREF="h_edit_nav_cmds">here</A>
18792 to see the available Editing and Navigation commands.
18794 &lt;End of help on this topic&gt;
18795 </BODY>
18796 </HTML>
18797 ======= h_config_role_scorehdrtok =======
18798 <HTML>
18799 <HEAD>
18800 <TITLE>Score Value From Header Explained</TITLE>
18801 </HEAD>
18802 <BODY>
18803 <H1>Score Value From Header Explained</H1>
18805 This option provides a way to use a number that appears in the headers of your
18806 messages as the message's score, or as a component of that score.
18807 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18808 The idea behind this option is that there may be a score embedded in the
18809 headers of messages that has already been calculated outside of Alpine.
18810 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18811 somewhere in that header there is a score.
18813 The value for this option is the name of the header followed by parentheses
18814 with two arguments inside:
18816 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18818 No space is allowed between the comma and the start of the field_separators.
18819 It would be interpreted as the first separator if it was there.
18820 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18821 starts after that and goes to the second separator, and so on.
18822 It's easier to explain with examples.
18824 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18826 In the above example the header that is used is the &quot;X-Spam&quot; header.
18827 The value of that header (the part after the colon and the space) is split
18828 into fields separated by spaces.
18830 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18832 The second field is selected and converted to an integer. It only makes sense
18833 if Field2 really is an integer.
18835 Here's an example of a SpamAssassin header.
18836 The exact look of the header will vary, but if your incoming mail
18837 contains headers that look like the following
18839 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18841 you might want to use the hits value as a score.
18842 Since the score is an integer value you can't make use of the decimal part of
18843 the number, but
18844 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18845 and &quot;.&quot; as your separators.
18847 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18849 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18850 hits.
18851 The second field is &quot;10&quot; so the score value would be 10.
18853 Another example we've seen has headers that look like
18855 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18857 Because there are two equals before the 7% the value
18859 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18861 should capture the probability as the score.
18863 The Score From Header scoring value actually works just like the
18864 regular Score Value in that the rest of the pattern has to match before
18865 it is used and the scores from all the different scoring rules that
18866 match for a particular message are added together.
18867 When using the Score From Header method it may (or may not) make sense to
18868 use only a single scoring rule with a pattern that matches every message.
18870 Look <A HREF="h_edit_nav_cmds">here</A>
18871 to see the available Editing and Navigation commands.
18873 &lt;End of help on this topic&gt;
18874 </BODY>
18875 </HTML>
18876 ======= h_config_role_replyuse =======
18877 <HTML>
18878 <HEAD>
18879 <TITLE>Reply Use Explained</TITLE>
18880 </HEAD>
18881 <BODY>
18882 <H1>Reply Use Explained</H1>
18884 This option determines how this particular role will be used when Replying
18885 to a message.
18886 There are three possible values for this option.
18887 The value &quot;Never&quot;
18888 means that this role will not be a candidate for use when Replying.
18889 The role's Pattern will not be checked for a match, however the role will
18890 be available to be manually switched to if there is a confirmation prompt.
18893 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18894 mean that you do want to consider this role when Replying.
18895 For either of these settings, the role's Pattern will be compared with
18896 the message being replied to.
18897 If there is a match then this role will either be used without confirmation
18898 or will be the default when confirmation is asked for, depending on
18899 which of the two options is selected.
18900 If confirmation is requested, you will also have a chance to
18901 manually change the role to any one of your other roles.
18904 You won't be prompted for confirmation if none of your role Patterns
18905 match the message being replied to.
18906 This is independent of the value of the current option.
18907 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18908 feature may be used to change this behavior.
18910 &lt;End of help on this topic&gt;
18911 </BODY>
18912 </HTML>
18913 ======= h_config_role_forwarduse =======
18914 <HTML>
18915 <HEAD>
18916 <TITLE>Forward Use Explained</TITLE>
18917 </HEAD>
18918 <BODY>
18919 <H1>Forward Use Explained</H1>
18921 This option determines how this particular role will be used when Forwarding
18922 a message.
18923 There are three possible values for this option.
18924 The value &quot;Never&quot;
18925 means that this role will not be a candidate for use when Forwarding.
18926 The role's Pattern will not be checked for a match, however the role will
18927 be available to be manually switched to if there is a confirmation prompt.
18930 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18931 mean that you do want to consider this role when Forwarding.
18932 For either of these settings, the role's Pattern will be compared with
18933 the message being forwarded.
18934 If there is a match then this role will either be used without confirmation
18935 or will be the default when confirmation is asked for, depending on
18936 which of the two options is selected.
18937 If confirmation is requested, you will also have a chance to
18938 manually change the role to any one of your other roles.
18941 You won't be prompted for confirmation if none of your role Patterns
18942 match the message being forwarded.
18943 This is independent of the value of the current option.
18944 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18945 feature may be used to change this behavior.
18947 &lt;End of help on this topic&gt;
18948 </BODY>
18949 </HTML>
18950 ======= h_config_role_composeuse =======
18951 <HTML>
18952 <HEAD>
18953 <TITLE>Compose Use Explained</TITLE>
18954 </HEAD>
18955 <BODY>
18956 <H1>Compose Use Explained</H1>
18958 This option determines how this particular role will be used when Composing
18959 a new message using the &quot;Compose&quot; command.
18960 This does not affect what happens when using the &quot;Role&quot; command
18961 to compose a new message.
18962 The &quot;Role&quot; command allows you to select a role from all of the
18963 roles you have defined, regardless of what Uses you've assigned to those
18964 roles.
18967 There are three possible values for this option.
18968 The value &quot;Never&quot;
18969 means that this role will not be a candidate for use when Composing.
18970 The role's Current Folder Type will not be checked for a match, however the role
18971 will be available to be manually switched to if there is a confirmation prompt.
18974 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18975 mean that you do want to consider this role when Composing.
18976 For either of these settings,
18977 the role's Current Folder Type will be checked (since there is no message
18978 to compare with, the rest of the Pattern is considered a match).
18979 If there is a match then this role will either be used without confirmation
18980 or will be the default when confirmation is asked for, depending on
18981 which of the two options is selected.
18982 If confirmation is requested, you will also have a chance to
18983 manually change the role to any one of your other roles.
18986 When using the Compose command the role checking is a little different
18987 because there is no message being replied to or forwarded.
18988 Because of this the Current Folder Type is checked but the header pattern
18989 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18990 A role is considered to be a match if it is a candidate for Compose Use and
18991 its Current Folder Type matches the currently open folder.
18992 This could be useful if you want to set a role based on the folder you
18993 are reading, or the type of folder you are reading.
18996 You won't be prompted for confirmation if none of your role Patterns
18997 are a match.
18998 This is independent of the value of the current option.
18999 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19000 feature may be used to change this behavior.
19002 &lt;End of help on this topic&gt;
19003 </BODY>
19004 </HTML>
19005 ======= h_config_filter_folder =======
19006 <HTML>
19007 <HEAD>
19008 <TITLE>Filter Folder Explained</TITLE>
19009 </HEAD>
19010 <BODY>
19011 <H1>Filter Folder Explained</H1>
19013 When the Filter Action is set to &quot;Move&quot;,
19014 the folder or folders specified here will be used to store messages matching
19015 the provided pattern.
19018 If you set the Filter Action to &quot;Move&quot; you must give a folder name
19019 here.
19022 If you wish,
19023 you may choose a folder from your folder collections by using the
19024 &quot;T&quot; command.
19026 Besides regular text, the folder name may also contain
19027 tokens that are replaced with text representing the current date
19028 when you run Alpine.
19029 For example, if the folder name you use is
19031 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
19033 that is replaced with something like
19035 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
19039 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19041 becomes
19043 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19045 The token names must be surrounded by underscores in order to be recognized
19046 as tokens.
19047 The tokens that may be used are those that are derived from the current date.
19048 They're listed near the bottom of the list of tokens give
19049 <A HREF="h_index_tokens">here</A>.
19051 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19052 for more information on Patterns.
19054 Look <A HREF="h_edit_nav_cmds">here</A>
19055 to see the available Editing and Navigation commands.
19057 &lt;End of help on this topic&gt;
19058 </BODY>
19059 </HTML>
19060 ======= h_config_filter_kw_set =======
19061 <HTML>
19062 <HEAD>
19063 <TITLE>Set These Keywords Explained</TITLE>
19064 </HEAD>
19065 <BODY>
19066 <H1>Set These Keywords Explained</H1>
19068 This describes part of the action to be taken if the Pattern for this
19069 filter is a match.
19070 Read a little about keywords in the help text for the
19071 <A HREF="h_common_flag">Flag</A> command.
19072 This option is a list of keywords that will be Set when there is a match.
19073 If you wish, you may choose keywords from the list of keywords you have
19074 defined with the &quot;T&quot; command.
19075 You may add new keywords by defining them in the
19076 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19077 If you have given a keyword a nickname when configuring it,
19078 that nickname may be used instead of the actual keyword.
19081 Look <A HREF="h_edit_nav_cmds">here</A>
19082 to see the available Editing and Navigation commands.
19084 &lt;End of help on this topic&gt;
19085 </BODY>
19086 </HTML>
19087 ======= h_config_filter_kw_clr =======
19088 <HTML>
19089 <HEAD>
19090 <TITLE>Clear These Keywords Explained</TITLE>
19091 </HEAD>
19092 <BODY>
19093 <H1>Clear These Keywords Explained</H1>
19095 This describes part of the action to be taken if the Pattern for this
19096 filter is a match.
19097 Read a little about keywords in the help text for the
19098 <A HREF="h_common_flag">Flag</A> command.
19099 This option is a list of keywords that will be Cleared when there is a match.
19100 If you wish, you may choose keywords from the list of keywords you have
19101 defined with the &quot;T&quot; command.
19102 You may add new keywords by defining them in the
19103 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19104 If you have given a keyword a nickname when configuring it,
19105 that nickname may be used instead of the actual keyword.
19108 Look <A HREF="h_edit_nav_cmds">here</A>
19109 to see the available Editing and Navigation commands.
19111 &lt;End of help on this topic&gt;
19112 </BODY>
19113 </HTML>
19114 ======= h_index_tokens =======
19115 <HTML>
19116 <HEAD>
19117 <TITLE>Tokens for Index and Replying</TITLE>
19118 </HEAD>
19119 <BODY>
19121 This set of special tokens may be used in the
19122 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19123 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19124 in signature files,
19125 in template files used in
19126 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19127 that is the target of a Filter Rule.
19128 Some of them aren't available in all situations.
19130 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19131 option, but they must be surrounded by underscores for the
19132 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19133 and in the target of Filter Rules.
19137 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19139 <DL>
19140 <DT>SUBJECT</DT>
19141 <DD>
19142 This token represents the Subject the sender gave the message.
19143 Alternatives for use in the index screen are SHORTSUBJECT,
19144 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19145 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19146 You may color the subject text in the MESSAGE INDEX screen differently by using the
19147 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19148 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19149 options available from
19150 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19151 </DD>
19153 <DT>FROM</DT>
19154 <DD>
19155 This token represents the personal name (or email address if the name
19156 is unavailable) of the person specified in the message's &quot;From:&quot;
19157 header field.
19158 You may color the from text in the MESSAGE INDEX screen differently by using the
19159 <A HREF="h_config_index_from_color">Index From Color</A>
19160 option available from
19161 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19162 </DD>
19164 <DT>ADDRESS</DT>
19165 <DD>
19166 This is similar to the &quot;FROM&quot; token, only it is always the
19167 email address, never the personal name.
19168 For example, &quot;mailbox@domain&quot;.
19169 </DD>
19171 <DT>MAILBOX</DT>
19172 <DD>
19173 This is the same as the &quot;ADDRESS&quot; except that the 
19174 domain part of the address is left off.
19175 For example, &quot;mailbox&quot;.
19176 </DD>
19178 <DT>SENDER</DT>
19179 <DD>
19180 This token represents the personal name (or email address) of the person
19181 listed in the message's &quot;Sender:&quot; header field.
19182 </DD>
19184 <DT>TO</DT>
19185 <DD>
19186 This token represents the personal names (or email addresses if the names
19187 are unavailable) of the persons specified in the
19188 message's &quot;To:&quot; header field.
19189 </DD>
19191 <DT>NEWSANDTO</DT>
19192 <DD>
19193 This token represents the newsgroups from the
19194 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19195 the personal names (or email addresses if the names
19196 are unavailable) of the persons specified in the
19197 message's &quot;To:&quot; header field.
19198 </DD>
19200 <DT>TOANDNEWS</DT>
19201 <DD>
19202 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19203 </DD>
19205 <DT>NEWS</DT>
19206 <DD>
19207 This token represents the newsgroups from the
19208 message's &quot;Newsgroups:&quot; header field.
19209 </DD>
19211 <DT>CC</DT>
19212 <DD>
19213 This token represents the personal names (or email addresses if the names
19214 are unavailable) of the persons specified in the
19215 message's &quot;Cc:&quot; header field.
19216 </DD>
19218 <DT>RECIPS</DT>
19219 <DD>
19220 This token represents the personal names (or email addresses if the names
19221 are unavailable) of the persons specified in both the
19222 message's &quot;To:&quot; header field and
19223 the message's &quot;Cc:&quot; header field.
19224 </DD>
19226 <DT>NEWSANDRECIPS</DT>
19227 <DD>
19228 This token represents the newsgroups from the
19229 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19230 the personal names (or email addresses if the names
19231 are unavailable) of the persons specified in the
19232 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19233 </DD>
19235 <DT>RECIPSANDNEWS</DT>
19236 <DD>
19237 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19238 </DD>
19240 <DT>INIT</DT>
19241 <DD>
19242 This token represents the initials from the personal name
19243 of the person specified in the message's &quot;From:&quot;
19244 header field.
19245 If there is no personal name, it is blank.
19246 </DD>
19248 <DT>DATE</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 has the format MMM DD. For example, &quot;Oct 23&quot;.
19253 The feature
19254 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19255 which adjusts for the timezone the message was sent from,
19256 may have an effect on the value of this token as well as the values of
19257 all of the other DATE or TIME tokens.
19258 Some of the DATE and TIME tokens are displayed in a locale-specific
19259 way unless the option
19260 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19261 </DD>
19263 <DT>SMARTDATE</DT>
19264 <DD>
19265 This token represents the date on which the message was sent, according
19266 to the &quot;Date&quot; header field.
19267 It is &quot;Today&quot; if the message was sent today,
19268 &quot;Yesterday&quot; for yesterday,
19269 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19270 message is from last year and is more than six months old it includes the year, as well.
19271 See the SMARTDATE alternatives below, as well.
19272 </DD>
19274 <DT>SMARTTIME</DT>
19275 <DD>
19276 This token represents the most relevant elements of the date on which
19277 the message was sent (according to the &quot;Date&quot; header field),
19278 in a compact form. If the message was sent today, only the time is used
19279 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19280 the past week, the day of the week and the hour are used
19281 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19282 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19283 &quot;9Apr98&quot;).
19284 </DD>
19286 <DT>SMARTTIME24</DT>
19287 <DD>
19288 This token has the structure &quot;day hour:minute&quot;
19289 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19290 from the current date, or &quot;month day&quot; (e.g.
19291 &quot;Nov 23&quot;) for messages dated less than 6 months
19292 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19293 for messages dated more than 6 months ago. It uses 9 characters
19294 of the width of the screen, and it left aligned.
19295 </DD>
19297 <DT>SMARTDATETIME</DT>
19298 <DD>
19299 This is a combination of SMARTDATE and SMARTTIME.
19300 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19301 case it is SMARTTIME.
19302 See the SMARTDATETIME alternatives below, as well.
19303 </DD>
19305 <DT>DATEISO</DT>
19306 <DD>
19307 This token represents the date on which the message was sent, according
19308 to the &quot;Date&quot; header field.
19309 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19310 </DD>
19312 <DT>SHORTDATEISO</DT>
19313 <DD>
19314 This token represents the date on which the message was sent, according
19315 to the &quot;Date&quot; header field.
19316 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19317 </DD>
19319 <DT>SHORTDATE1</DT>
19320 <DD>
19321 This token represents the date on which the message was sent, according
19322 to the &quot;Date&quot; header field.
19323 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19324 </DD>
19326 <DT>SHORTDATE2</DT>
19327 <DD>
19328 This token represents the date on which the message was sent, according
19329 to the &quot;Date&quot; header field.
19330 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19331 </DD>
19333 <DT>SHORTDATE3</DT>
19334 <DD>
19335 This token represents the date on which the message was sent, according
19336 to the &quot;Date&quot; header field.
19337 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19338 </DD>
19340 <DT>SHORTDATE4</DT>
19341 <DD>
19342 This token represents the date on which the message was sent, according
19343 to the &quot;Date&quot; header field.
19344 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19345 </DD>
19347 <DT>LONGDATE</DT>
19348 <DD>
19349 This token represents the date on which the message was sent, according
19350 to the &quot;Date&quot; header field.
19351 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19352 </DD>
19354 <DT>SMARTDATE alternatives</DT>
19355 <DD>
19356 There are several versions of SMARTDATE that are all the same except
19357 for the way they format dates far in the past.
19358 SMARTDATE formats the date using the information from your locale settings
19359 to format the date string. It may end up formatting dates so that they look
19360 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19361 The feature
19362 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19363 may have an effect on the values of these tokens.
19364 If you want more control you may use one of the following.
19365   <DL>
19366   <DT>SMARTDATE</DT> <DD>If the option
19367 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19368 then this will be locale specific. Control this with the
19369 LC_TIME locale setting on a UNIX system. On Windows
19370 the Regional Options control panel may be used to set the Short date
19371 format. At the programming level, the strftime routine is what Alpine
19372 uses to print the date.
19373 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19374 to SMARTDATES1.</DD>
19375   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19376   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19377   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19378   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19379   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19380   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19381   </DL>
19382 </DD>
19384 <DT>SMARTDATETIME alternatives</DT>
19385 <DD>
19386 There are several versions of SMARTDATETIME that are all very similar.
19387 The ones that end in 24 use a 24-hour clock for Today's messages instead
19388 of a 12-hour clock.
19389 The other variation is
19390 for the way they format dates far in the past.
19391 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19392 to format the date string. It may end up formatting dates so that they look
19393 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19394 The feature
19395 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19396 may have an effect on the values of these tokens.
19397 The possible choices are:
19398   <DL>
19399   <DT>SMARTDATETIME</DT> <DD>If the option
19400 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19401 then this will be locale specific. Control this with the
19402 LC_TIME locale setting on a UNIX system. On Windows
19403 the Regional Options control panel may be used to set the Short date
19404 format. At the programming level, the strftime routine is what Alpine
19405 uses to print the date.
19406 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19407 to SMARTDATETIMES1.</DD>
19408   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19409   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19410   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19411   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19412   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19413   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19414   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19415   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19416   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19417   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19418   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19419   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19420   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19421   </DL>
19422 </DD>
19424 <DT>DAYDATE</DT>
19425 <DD>
19426 This token represents the date on which the message was sent, according
19427 to the &quot;Date&quot; header field.
19428 It looks like &quot;Sat, 23 Oct 1998&quot;.
19429 This token is never converted in any locale-specific way.
19430 </DD>
19432 <DT>PREFDATE</DT>
19433 <DD>
19434 This token represents the date on which the message was sent, according
19435 to the &quot;Date&quot; header field.
19436 It is your operating system's idea of the preferred date representation for the current locale.
19437 Internally it uses the %x version of the date from the strftime routine.
19438 </DD>
19440 <DT>PREFTIME</DT>
19441 <DD>
19442 This token represents the time at which the message was sent, according
19443 to the &quot;Date&quot; header field.
19444 It is the preferred time representation for the current locale.
19445 Internally it uses the %X version of the time from the strftime routine.
19446 </DD>
19448 <DT>PREFDATETIME</DT>
19449 <DD>
19450 This token represents the date and time at which the message was sent, according
19451 to the &quot;Date&quot; header field.
19452 It is the preferred date and time representation for the current locale.
19453 Internally it uses the %c version of the time from the strftime routine.
19454 </DD>
19456 <DT>DAY</DT>
19457 <DD>
19458 This token represents the day of the month on which the message was sent,
19459 according to the &quot;Date&quot; header field.
19460 For example, &quot;23&quot; or &quot;9&quot;.
19461 </DD>
19463 <DT>DAY2DIGIT</DT>
19464 <DD>
19465 This token represents the day of the month on which the message was sent,
19466 according to the &quot;Date&quot; header field.
19467 For example, &quot;23&quot; or &quot;09&quot;.
19468 It is always 2 digits.
19469 </DD>
19471 <DT>DAYORDINAL</DT>
19472 <DD>
19473 This token represents the ordinal number that is the day of
19474 the month on which the message was sent,
19475 according to the &quot;Date&quot; header field.
19476 For example, &quot;23rd&quot; or &quot;9th&quot;.
19477 </DD>
19479 <DT>DAYOFWEEK</DT>
19480 <DD>
19481 This token represents the day of the week on which the message was sent,
19482 according to the &quot;Date&quot; header field.
19483 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19484 </DD>
19486 <DT>DAYOFWEEKABBREV</DT>
19487 <DD>
19488 This token represents the day of the week on which the message was sent,
19489 according to the &quot;Date&quot; header field.
19490 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19491 </DD>
19493 <DT>MONTHABBREV</DT>
19494 <DD>
19495 This token represents the month the message was sent, according
19496 to the &quot;Date&quot; header field.
19497 For example, &quot;Oct&quot;.
19498 </DD>
19500 <DT>MONTHLONG</DT>
19501 <DD>
19502 This token represents the month in which the message was sent, according
19503 to the &quot;Date&quot; header field.
19504 For example, &quot;October&quot;.
19505 </DD>
19507 <DT>MONTH</DT>
19508 <DD>
19509 This token represents the month in which the message was sent, according
19510 to the &quot;Date&quot; header field.
19511 For example, &quot;10&quot; or &quot;9&quot;.
19512 </DD>
19514 <DT>MONTH2DIGIT</DT>
19515 <DD>
19516 This token represents the month in which the message was sent, according
19517 to the &quot;Date&quot; header field.
19518 For example, &quot;10&quot; or &quot;09&quot;.
19519 It is always 2 digits.
19520 </DD>
19522 <DT>YEAR</DT>
19523 <DD>
19524 This token represents the year the message was sent, according
19525 to the &quot;Date&quot; header field.
19526 For example, &quot;1998&quot; or &quot;2001&quot;.
19527 </DD>
19529 <DT>YEAR2DIGIT</DT>
19530 <DD>
19531 This token represents the year the message was sent, according
19532 to the &quot;Date&quot; header field.
19533 For example, &quot;98&quot; or &quot;01&quot;.
19534 It is always 2 digits.
19535 </DD>
19537 <DT>TIME24</DT>
19538 <DD>
19539 This token represents the time at which the message was sent, according
19540 to the &quot;Date&quot; header field.
19541 There is no adjustment made for different time zones, so you'll get
19542 the time the message was sent according to the time zone the sender
19543 was in.
19544 It has the format HH:MM. For example, &quot;17:28&quot;.
19545 </DD>
19547 <DT>TIME12</DT>
19548 <DD>
19549 This token represents the time at which the message was sent, according
19550 to the &quot;Date&quot; header field.
19551 This time is for a 12 hour clock.
19552 It has the format HH:MMpm.
19553 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19554 </DD>
19556 <DT>TIMEZONE</DT>
19557 <DD>
19558 This token represents the numeric timezone from
19559 the &quot;Date&quot; header field.
19560 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19561 </DD>
19563 </DL>
19566 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19568 <DL>
19569 <DT>MSGNO</DT>
19570 <DD>
19571 This token represents the message's current position in the folder that,
19572 of course, may change as the folder is sorted or new mail arrives.
19573 </DD>
19575 <DT>STATUS</DT>
19576 <DD>
19577 This token represents a three character wide field displaying various
19578 aspects of the message's state.
19579 The first character is either blank,
19580 a '*' for message marked Important, or a '+' indicating a message
19581 addressed directly to you (as opposed to your having received it via a
19582 mailing list, for example).
19583 When the feature
19584 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19585 is set, if the first character would have been
19586 blank then it will instead be a '-' if the message is cc'd to you.
19587 The second character is typically blank,
19588 though the arrow cursor may occupy it if either the 
19589 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19590 or the
19591 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19592 is set (or you actually are on a slow link).
19593 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19594 '<A HREF="h_flag_answered">A</A>' (Answered),
19595 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19596 '<A HREF="h_flag_new">N</A>' (New), or blank.
19598 If you are using a threaded view of the index and this message is at the
19599 top of a collapsed portion of a thread,
19600 then this token refers to all of the messages in the collapsed portion of
19601 the thread instead of just the top message.
19602 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19603 are marked Important, else a '+' if any of the messages are addressed
19604 to you, else a '-' if any of the messages are cc'd to you.
19605 The third character will be a 'D' if <EM>all</EM> of the messages
19606 in the collapsed thread are marked deleted,
19607 an 'A' if <EM>all</EM> of the messages
19608 in the collapsed thread are marked answered,
19609 it will be an 'N' if any of
19610 the messages are undeleted and unseen, and it will be blank otherwise.
19611 </DD>
19613 <DT>FULLSTATUS</DT>
19614 <DD>
19615 This token represents a less abbreviated alternative
19616 to the &quot;STATUS&quot; token.
19617 It is six characters wide.
19618 The first character is '+', '-', or blank, the
19619 second blank, the third either '*' or blank, the fourth
19620 '<A HREF="h_flag_new">N</A>' or blank,
19621 the fifth '<A HREF="h_flag_answered">A</A>'
19622 or blank, and the sixth character is
19623 either '<A HREF="h_flag_deleted">D</A>' or
19624 blank.
19626 If you are using a threaded view of the index and this message is at the
19627 top of a collapsed portion of a thread,
19628 then this token refers to all of the messages in the collapsed portion of
19629 the thread instead of just the top message.
19630 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19631 of the messages in the collapsed thread are addressed to you or cc'd to you.
19632 The third character will be '*' if any of the messages are marked
19633 Important.
19634 The fourth character will be 'N' if all of the messages in the thread
19635 are New, else 'n' if some of the messages in the thread are New, else blank.
19636 The fifth character will be 'A' or 'a' or blank, and the sixth character
19637 will be 'D' or 'd' or blank.
19638 </DD>
19640 <DT>IMAPSTATUS</DT>
19641 <DD>
19642 This token represents an even less abbreviated alternative to the
19643 &quot;STATUS&quot; token.
19644 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19645 an 'N' if the message is new to this folder since the last time
19646 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19647 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19648 new to the folder since it was last opened <EM>but</EM> has not been
19649 viewed, or a blank if the message has been in the folder since it was
19650 last opened and has been viewed.
19652 If you are using a threaded view of the index and this message is at the
19653 top of a collapsed portion of a thread,
19654 then the fourth character will be
19655 'N' if all of the messages in the thread are unseen and recent;
19656 else 'n' if some of the messages in the thread are unseen and recent;
19657 else 'U' if all of the messages in the thread are unseen and not recent;
19658 else 'u' if some of the messages in the thread are unseen and not recent;
19659 else 'R' if all of the messages in the thread are seen and recent;
19660 else 'r' if some of the messages in the thread are seen and recent;
19661 else blank.
19662 </DD>
19664 <DT>SHORTIMAPSTATUS</DT>
19665 <DD>
19666 This is the same as the last four of the six characters of IMAPSTATUS,
19667 so the '+' To Me information will be missing.
19668 </DD>
19670 <DT>SIZE</DT>
19671 <DD>
19672 This token represents the total size, in bytes, of the message.
19673 If a &quot;K&quot; (Kilobyte)
19674 follows the number, the size is approximately 1,000
19675 times that many bytes (rounded to the nearest 1,000).
19676 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19677 1,000,000 times that many bytes.
19678 Commas are not used in this field.
19679 This field is seven characters wide, including the enclosing parentheses.
19680 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19681 The progression of sizes used looks like:
19684 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19686 </DD>
19688 <DT>SIZECOMMA</DT>
19689 <DD>
19690 This token represents the total size, in bytes, of the message.
19691 If a &quot;K&quot; (Kilobyte)
19692 follows the number, the size is approximately 1,000
19693 times that many bytes (rounded to the nearest 1,000).
19694 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19695 1,000,000 times that many bytes.
19696 Commas are used if the number shown is 1,000 or greater.
19697 The SIZECOMMA field is one character wider than the SIZE field.
19698 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19699 The progression of sizes used looks like:
19702 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19704 </DD>
19706 <DT>KSIZE</DT>
19707 <DD>
19708 This token represents the total size of the message, expressed in
19709 kilobytes or megabytes, as most appropriate.
19710 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19711 The progression of sizes used looks like:
19714 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19716 </DD>
19718 <DT>SIZENARROW</DT>
19719 <DD>
19720 This token represents the total size, in bytes, of the message.
19721 If a &quot;K&quot; (Kilobyte)
19722 follows the number, the size is approximately 1,000
19723 times that many bytes.
19724 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19725 1,000,000 times that many bytes.
19726 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19727 1,000,000,000 times that many bytes.
19728 This field uses only five characters of screen width, including the enclosing
19729 parentheses.
19730 The progression of sizes used looks like:
19733 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19735 </DD>
19737 <DT>DESCRIPSIZE</DT>
19738 <DD>
19739 This token is intended to represent a more useful description of the
19740 message than just its size, but it isn't very useful at this point.
19741 The plus sign in this view means there are attachments.
19742 Note that including this token in
19743 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19744 display a little while Alpine collects the necessary information.
19745 </DD>
19747 <DT>SHORTSUBJECT</DT> 
19748 <DD> This token is the same as SUBJECT, but removes 
19749 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
19750 between these characters corresponds to mailing list names, and may be 
19751 unnecessary or unwanted in some instances. 
19752 </DD>
19754 <DT>SUBJKEY</DT>
19755 <DD>
19756 This token is the same as the SUBJECT token unless keywords are set for
19757 the message.
19758 In that case, a list of keywords enclosed in braces will be prepended to
19759 the subject of the message.
19760 Only those keywords that you have defined in your
19761 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19762 in Setup/Config are considered in the list.
19763 In other words, keywords that have been set by some other means, perhaps
19764 by another email program, won't show up unless included in
19765 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19766 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19767 prepended to the subject in the MESSAGE TEXT screen.
19768 If you have given a keyword a nickname
19769 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19770 instead of the actual keyword.
19771 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19772 option may be used to modify this token slightly.
19773 It is also possible to color keywords in the index using the
19774 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19775 </DD>
19777 <DT>SHORTSUBJKEY</DT>
19778 <DD> This token is the same as SUBJKEY, but it is based on
19779 SHORTSUBJECT, instead of in SUBJECT.
19780 </DD>
19782 <DT>SUBJKEYINIT</DT>
19783 <DD>
19784 This token is the same as the SUBJKEY token except that instead of
19785 prepending a list of keywords to the subject, a list of first initials
19786 of keywords will be prepended instead.
19787 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19788 set (or Work and Now are the Alpine nicknames of keywords that are set)
19789 then the SUBJKEY token would cause a result like
19791 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19793 whereas the SUBJKEYINIT token would give
19795 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19797 Only those keywords that you have defined in your
19798 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19799 in Setup/Config are considered in the list.
19800 In other words, keywords that have been set by some other means, perhaps
19801 by another email program, won't show up unless included in
19802 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19803 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19804 option may be used to modify this token slightly.
19805 It is also possible to color keywords in the index using the
19806 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19807 </DD>
19809 <DT>SHORTSUBJKEYINIT</DT>
19810 <DD> This token is the same as SUBJKEYINIT, but it is based on
19811 SHORTSUBJECT, instead of in SUBJECT.
19812 </DD>
19814 <DT>SUBJECTTEXT</DT>
19815 <DD>
19816 Same as SUBJECT but if there is room in the Subject field for more text,
19817 the opening part of the text of the message is displayed after the subject.
19818 The time needed to fetch the text may cause a performance problem
19819 which can, of course, be avoided by using the SUBJECT version of
19820 the Subject instead.
19821 You may color this opening text differently by using the
19822 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19823 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19824 You may adjust the characters that are displayed between the Subject and the
19825 opening text with the option
19826 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19827 </DD>
19829 <DT>SUBJKEYTEXT</DT>
19830 <DD>
19831 Same as SUBJKEY but with the opening message text.
19832 </DD>
19834 <DT>OPENINGTEXT</DT>
19835 <DD>
19836 This is similar to SUBJECTTEXT.
19837 Instead of combining the Subject and the opening text in a single
19838 field in the index screen this token allows you to allocate a
19839 separate column just for the opening text of the message.
19840 The time needed to fetch this text may cause a performance problem.
19841 You may color this opening text differently by using the
19842 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19843 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19844 </DD>
19846 <DT>OPENINGTEXTNQ</DT>
19847 <DD>
19848 This is very similar to OPENINGTEXT.
19849 The NQ stands for No Quotes.
19850 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19851 For some messages this may be confusing.
19852 For example, a message might have a line preceding some quoted
19853 text that reads something like &quot;On May 8th person A said.&quot;
19854 That no longer makes sense after the quoted text is deleted and it
19855 will appear that person A said whatever the text after the quote
19856 is, even though that is really person B talking.
19857 </DD>
19859 <DT>SUBJKEYINITTEXT</DT>
19860 <DD>
19861 Same as SUBJKEYINIT but with the opening message text.
19862 </DD>
19864 <DT>KEY</DT>
19865 <DD>
19866 This is a space-delimited list of keywords that are set for the message.
19867 Only those keywords that you have defined in your
19868 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19869 in Setup/Config are considered in the list.
19870 In other words, keywords that have been set by some other means, perhaps
19871 by another email program, won't show up unless included in
19872 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19873 If you have given a keyword a nickname
19874 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19875 instead of the actual keyword.
19876 It is also possible to color keywords in the index using the
19877 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19878 This token defaults to an arbitrary width of 5.
19879 You should set it to whatever width suits you using something
19880 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19881 </DD>
19883 <DT>KEYINIT</DT>
19884 <DD>
19885 This is a list of keyword initials that are set for the message.
19886 If you have given a keyword a nickname
19887 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19888 is displayed instead of the initial of the actual keyword.
19889 It is also possible to color keyword initials in the index using the
19890 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19891 This token defaults to an arbitrary width of 2.
19892 You should set it to whatever width suits you using something
19893 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19894 </DD>
19896 <DT>PRIORITY</DT>
19897 <DD>
19898 The X-Priority header is a non-standard header that is used in a
19899 somewhat standard way by many mail programs.
19900 Alpine expects the value of this header to be a digit with a value
19901 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19902 Since this priority is something that the sender sets it is only an indication
19903 of the priority that the sender attaches to the mail and it is therefore almost
19904 totally unreliable for use as a filtering criterion.
19905 This token will display the numeric value of the priority if it is between
19906 1 and 5.
19907 It will be suppressed (blank) if the value is 3, which is normal priority.
19908 This token may be colored with the
19909 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19910 </DD>
19912 <DT>PRIORITYALPHA</DT>
19913 <DD>
19914 This is a more verbose interpretation of the X-Priority field.
19915 Once again nothing is displayed unless the value of the field
19916 is 1, 2, 4, or 5.
19917 The values displayed for those values are:
19919 <TABLE>
19920 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19921 <TR> <TD>2</TD> <TD>High</TD> </TR>
19922 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19923 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19924 </TABLE>
19926 This token may be colored with the
19927 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19928 </DD>
19930 <DT>PRIORITY!</DT>
19931 <DD>
19932 This is a one character, non-numeric version of the X-Priority field.
19933 If the value of the X-Priority header is 1 or 2 an exclamation
19934 point is displayed.
19935 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19936 This token may be colored with the
19937 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19938 </DD>
19940 <DT>ATT</DT>
19941 <DD>
19942 This is a one column wide field that represents the number of attachments
19943 a message has. It will be blank if there are no attachments, a single
19944 digit for one to nine attachments, or an asterisk for more than nine.
19945 Note that including this token in
19946 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19947 display a little while Alpine collects the necessary information.
19948 </DD>
19950 <DT>FROMORTO</DT>
19951 <DD>
19952 This token represents <EM>either</EM> the personal name (or email address) of
19953 the person listed in the message's &quot;From:&quot; header
19954 field, <EM>or</EM>, if that address is yours or one of your
19955 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19956 the first person specified in the
19957 message's &quot;To:&quot; header field
19958 with the prefix &quot;To: &quot; prepended.
19959 If the from address is yours and there is also no &quot;To&quot; address,
19960 Alpine will use the address on the &quot;Cc&quot; line.
19961 If there is no address there, either, Alpine will look for a newsgroup name
19962 from the &quot;Newsgroups&quot; header field and put
19963 that after the &quot;To: &quot; prefix.
19964 </DD>
19966 <DT>FROMORTONOTNEWS</DT>
19967 <DD>
19968 This is almost the same as <EM>FROMORTO</EM>.
19969 The difference is that newsgroups aren't considered.
19970 When a message is from you, doesn't have a To or Cc, and does have
19971 a Newsgroups header; this token will be your name instead of the name
19972 of the newsgroup (like it would be with FROMORTO).
19973 </DD>
19975 <DT>TEXT</DT>
19976 <DD>
19977 This is a different sort of token.
19978 It allows you to display a label within each index line.
19979 It will be the same fixed text for each line.
19980 It is different from all the other tokens in that there is no space column
19981 displayed after this token.
19982 Instead, it is butted up against the following field.
19983 It also has a different syntax.
19984 The text to display is given following a colon after the
19985 word &quot;TEXT&quot;.
19986 For example,
19988 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19990 would insert the literal text &quot;abc=&quot; (without the quotes)
19991 into the index display line.
19992 You must quote the text if it includes space characters, like
19994 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19996 </DD>
19998 <DT>HEADER</DT>
19999 <DD>
20000 This allows you to display the text from a particular header line in the
20001 message.
20002 The syntax for this token is substantially different from all the others
20003 in order that you might be able to display a portion of the text following
20004 a particular header.
20005 The header name you are interested in is given following a colon
20006 after the word &quot;HEADER&quot;.
20007 For example,
20009 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
20011 would display the text of the X-Spam header, if any.
20012 Like for other index tokens a width field may (and probably should)
20013 follow this.
20015 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
20017 displays the first ten characters of the X-Spam header.
20018 Unlike other index tokens, the syntax for HEADER is more flexible.
20019 An optional second argument comes after a comma inside the parentheses.
20020 It specifies the &quot;field&quot; number.
20021 By default, the field separator is a space character.
20022 No extra space characters are allowed in the argument list.
20024 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
20026 would display the second field, left-justified, in a 10 character
20027 wide field.
20028 The second field would consist of all the text after the first space
20029 up to the next space or the end of the header.
20030 The default field number is zero, which stands for the entire line.
20031 There is also an optional third argument that is a list of field
20032 separators. It defaults to a space character.
20033 The example
20035 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
20037 would cause the field separators to be any of colon, percent,
20038 or space (there is a space character between the percent and the
20039 right parenthesis).
20040 The first field runs from the start of the header value up to the first
20041 colon, percent, or space; the second goes from there to the next; and so on.
20042 In order to use a comma character as a field separator you must escape
20043 it by preceding it with a backslash (&#92;).
20044 The same is true of the backslash character itself.
20045 There is one further optional argument.
20046 It is an R or an L to specify right or left adjustment of the text
20047 within the field.
20048 The default is to left justify, however if you are displaying numbers
20049 you might prefer to right justify.
20051 Here's an example of a SpamAssassin header.
20052 The exact look of the header will vary, but if your incoming mail
20053 contains headers that look like the following
20055 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20057 you might want to display the hits value.
20058 The first field starts with the Y in Yes.
20059 To get what you're interested in you might use &quot;=&quot; and
20060 space as the field separators and display the third field, like
20062 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20064 or maybe you would break at the dot instead
20066 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20068 Another example we've seen has headers that look like
20070 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20072 Because there are two equals and a comma before the 7% and a comma
20073 after it, the token
20075 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20077 should display the probability (for example 7% or 83%) right justified
20078 in a 3-wide field.
20079 </DD>
20081 <DT>ARROW</DT>
20082 <DD>
20083 This gives an alternative way to display the current message in the
20084 MESSAGE INDEX screen.
20085 Usually the current message is indicated by the line being shown in
20086 reverse video.
20087 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20088 the current line will include an &quot;arrow&quot; that
20089 looks like
20091 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20093 in the ARROW token's field.
20094 For all of the non-current messages, the ARROW field will be filled
20095 with blanks.
20096 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20097 may be adjusted.
20098 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20099 For example, if you use ARROW(3) you will get
20101 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20103 and ARROW(1) will give you just
20105 <CENTER><SAMP>&gt;</SAMP></CENTER>
20107 It is also possible to set the color of the ARROW field.
20108 By default (and for non-current messages) the arrow is colored the same
20109 as the index line it is part of.
20110 You may set it to be another color with the 
20111 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20112 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20113 </DD>
20115 <DT>SCORE</DT>
20116 <DD>
20117 This gives the
20118 <a href="h_rules_score">score</a>
20119 of each message.
20120 This will be six columns wide to accomodate the widest possible score.
20121 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20122 to limit the width of the field to the widest score that
20123 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20124 If you have not defined any score rules the scores will all be zero.
20125 If any of your score rules contain AllText or BodyText patterns
20126 then including SCORE in the <!--#echo var="VAR_index-format"-->
20127 may slow down the display of the MESSAGE INDEX screen.
20128 </DD>
20129 </DL>
20132 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20134 <DL>
20135 <DT>CURNEWS</DT>
20136 <DD>
20137 This token represents the current newsgroup if there is one.
20138 For example, &quot;comp.mail.pine&quot;.
20139 </DD>
20141 <DT>MSGID</DT>
20142 <DD>
20143 This token represents the message ID of the message.
20144 This token does not work with Filter Rule folder names.
20145 </DD>
20147 <DT>CURDATE</DT>
20148 <DD>
20149 This token represents the current date.
20150 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20151 </DD>
20153 <DT>CURDATEISO</DT>
20154 <DD>
20155 This token represents the current date.
20156 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20157 </DD>
20159 <DT>CURDATEISOS</DT>
20160 <DD>
20161 This token represents the current date.
20162 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20163 </DD>
20165 <DT>CURPREFDATE</DT>
20166 <DD>
20167 This token represents the current date.
20168 It is your operating system's idea of the preferred date representation for the current locale.
20169 Internally it uses the %x version of the date from the strftime routine.
20170 </DD>
20172 <DT>CURPREFTIME</DT>
20173 <DD>
20174 This token represents the current time.
20175 It is the preferred time representation for the current locale.
20176 Internally it uses the %X version of the time from the strftime routine.
20177 </DD>
20179 <DT>CURPREFDATETIME</DT>
20180 <DD>
20181 This token represents the current date and time.
20182 It is the preferred date and time representation for the current locale.
20183 Internally it uses the %c version of the time from the strftime routine.
20184 </DD>
20186 <DT>CURTIME24</DT>
20187 <DD>
20188 This token represents the current time.
20189 It has the format HH:MM. For example, &quot;17:28&quot;.
20190 </DD>
20192 <DT>CURTIME12</DT>
20193 <DD>
20194 This token represents the current time.
20195 This time is for a 12 hour clock.
20196 It has the format HH:MMpm.
20197 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20198 </DD>
20200 <DT>CURDAY</DT>
20201 <DD>
20202 This token represents the current day of the month.
20203 For example, &quot;23&quot; or &quot;9&quot;.
20204 </DD>
20206 <DT>CURDAY2DIGIT</DT>
20207 <DD>
20208 This token represents the current day of the month.
20209 For example, &quot;23&quot; or &quot;09&quot;.
20210 It is always 2 digits.
20211 </DD>
20213 <DT>CURDAYOFWEEK</DT>
20214 <DD>
20215 This token represents the current day of the week.
20216 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20217 </DD>
20219 <DT>CURDAYOFWEEKABBREV</DT>
20220 <DD>
20221 This token represents the current day of the week.
20222 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20223 </DD>
20225 <DT>CURMONTH</DT>
20226 <DD>
20227 This token represents the current month.
20228 For example, &quot;10&quot; or &quot;9&quot;.
20229 </DD>
20231 <DT>CURMONTH2DIGIT</DT>
20232 <DD>
20233 This token represents the current month.
20234 For example, &quot;10&quot; or &quot;09&quot;.
20235 It is always 2 digits.
20236 </DD>
20238 <DT>CURMONTHLONG</DT>
20239 <DD>
20240 This token represents the current month.
20241 For example, &quot;October&quot;.
20242 </DD>
20244 <DT>CURMONTHABBREV</DT>
20245 <DD>
20246 This token represents the current month.
20247 For example, &quot;Oct&quot;.
20248 </DD>
20250 <DT>CURYEAR</DT>
20251 <DD>
20252 This token represents the current year.
20253 For example, &quot;1998&quot; or &quot;2001&quot;.
20254 </DD>
20256 <DT>CURYEAR2DIGIT</DT>
20257 <DD>
20258 This token represents the current year.
20259 For example, &quot;98&quot; or &quot;01&quot;.
20260 It is always 2 digits.
20261 </DD>
20263 <DT>LASTMONTH</DT>
20264 <DD>
20265 This token represents last month.
20266 For example, if this is November (the 11th month),
20267 it is equal to &quot;10&quot; or if this is October (the 10th month),
20268 it is &quot;9&quot;.
20269 It is possible that this and the other tokens beginning with LASTMONTH
20270 below could be useful when used with a Filtering Rule that
20271 has the &quot;Beginning of Month&quot; option set.
20272 </DD>
20274 <DT>LASTMONTH2DIGIT</DT>
20275 <DD>
20276 This token represents last month.
20277 For example, if this is November (the 11th month),
20278 it is equal to &quot;10&quot; or if this is October (the 10th month),
20279 it is &quot;09&quot;.
20280 It is always 2 digits.
20281 </DD>
20283 <DT>LASTMONTHLONG</DT>
20284 <DD>
20285 This token represents last month.
20286 For example, if this is November the value is &quot;October&quot;.
20287 </DD>
20289 <DT>LASTMONTHABBREV</DT>
20290 <DD>
20291 This token represents last month.
20292 For example, if this is November the value is &quot;Oct&quot;.
20293 </DD>
20295 <DT>LASTMONTHYEAR</DT>
20296 <DD>
20297 This token represents what the year was a month ago.
20298 For example, if this is October, 1998, it is &quot;1998&quot;.
20299 If this is January, 1998, it is &quot;1997&quot;.
20300 </DD>
20302 <DT>LASTMONTHYEAR2DIGIT</DT>
20303 <DD>
20304 This token represents what the year was a month ago.
20305 For example, if this is October, 1998, it is &quot;98&quot;.
20306 If this is January, 1998, it is &quot;97&quot;.
20307 </DD>
20309 <DT>LASTYEAR</DT>
20310 <DD>
20311 This token represents last year.
20312 For example, if this is 1998, it equals &quot;1997&quot;.
20313 It is possible that this
20314 could be useful when used with a Filtering Rule that
20315 has the &quot;Beginning of Year&quot; option set.
20316 </DD>
20318 <DT>LASTYEAR2DIGIT</DT>
20319 <DD>
20320 This token represents last year.
20321 For example, if this is 1998, it equals &quot;97&quot;.
20322 It is always 2 digits.
20323 </DD>
20325 <DT>ROLENICK</DT>
20326 <DD>
20327 This token represents the nickname of the
20328 role currently being used.  If no role is being used,
20329 then no text will be printed for this token.
20330 This token does not work with Filter Rule folder names.
20331 </DD>
20332 </DL>
20335 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20336 See the help for the
20337 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20338 to see why you might want to use this.
20339 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20340 must be surrounded by underscores when used.
20342 <DL>
20343 <DT>NEWLINE</DT>
20344 <DD>
20345 This is an end of line marker.
20346 </DD>
20347 </DL>
20350 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20352 <DL>
20353 <DT>CURSORPOS</DT>
20354 <DD>
20355 This token is different from the others.
20356 When it is replaced it is replaced with nothing, but it sets an Alpine
20357 internal variable that tells the composer to start with the cursor
20358 positioned at the position where this token was.
20359 If both the template file and the signature file contain
20360 a &quot;CURSORPOS&quot; token, then the position in the template file
20361 is used.
20362 If there is a template file and neither it nor the signature file contains
20363 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20364 after the end of the contents of the
20365 template file when the composer starts up.
20366 </DD>
20367 </DL>
20370 &lt;End of help on this topic&gt;
20371 </BODY>
20372 </HTML>
20373 ======= h_reply_token_conditionals =======
20374 <HTML>
20375 <HEAD>
20376 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20377 </HEAD>
20378 <BODY>
20379 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20381 Conditional text inclusion may be used with
20382 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20383 in signature files, and in template files used in
20384 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20385 It may <EM>not</EM> be used with the
20386 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20389 There is a limited if-else capability for including text.
20390 The if-else condition is based
20391 on whether or not a given token would result in replacement text you
20392 specify.
20393 The syntax of this conditional inclusion is
20395 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20397 The left parenthesis must follow the underscore immediately, with no
20398 intervening space.
20399 It means the token is expanded and the results of that expansion are
20400 compared against the &quot;match_this&quot; argument.
20401 If there is an exact match, then the &quot;if_matched&quot; text is used
20402 as the replacement text.
20403 Otherwise, the &quot;if_not_matched&quot; text is used.
20404 One of the most useful values for the &quot;match_this&quot; argument is
20405 the empty string, &quot;&quot;.
20406 In that case the expansion is compared against the empty string.
20408 Here's an example to make it clearer.
20409 This text could be included in one of your template files:
20411 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20413 If that is included in a template file that you are using while replying
20414 to a message (because you chose to use the role it was part of),
20415 and that message has a newsgroup header and a newsgroup in that header,
20416 then the text
20418 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20420 will be included in the message you are about to compose.
20421 On the other hand, if the message you are replying to does not have
20422 a newsgroup, then the text
20424 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20426 would be included instead.
20427 This would also work in signature files and in
20428 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20429 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20430 or &quot;if_not_matched&quot; arguments contain
20431 spaces, parentheses, or commas;
20432 they have to be quoted with double quotation marks (like in the example
20433 above).
20434 If you want to include a literal quote (&quot;) in the text you must escape the
20435 quote by preceding it with a backslash (&#92;) character.
20436 If you want to include a literal backslash character you must escape it
20437 by preceding it with another backslash.
20439 The comma followed by &quot;if_not_matched&quot; is optional.
20440 If there is no &quot;if_not_matched&quot;
20441 present then no text is included if the not_matched case is true.
20442 Here's another example:
20444 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20446 Here you can see that tokens may appear in the arguments.
20447 The same is true for tokens with the conditional parentheses.
20448 They may appear in arguments,
20449 though you do have to be careful to get the quoting and escaping of
20450 nested double quotes correct.
20451 If this was in the signature file being used and you were replying to a message
20452 sent to comp.mail.pine the resulting text would be:
20454 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20456 If you were replying to a message that wasn't sent to any newsgroup the
20457 resulting text would be a single blank line.
20458 The reason you'd get a blank line is because the end of the line is
20459 outside of the conditional, so is always included.
20460 If you wanted to get rid of that blank line you could do so by moving
20461 the end of line inside the conditional.
20462 In other words, it's ok to have multi-line
20463 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20464 template file.
20465 The text just continues until the next double quotation, even if it's not
20466 on the same line.
20468 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20470 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20472 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20473 while reading the newsgroup comp.mail.pine the resulting text would be:
20475 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20477 If you were replying to a message while reading an email folder instead
20478 of a newsgroup the resulting leadin text would be
20480 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20482 Here's one more (contrived) example illustrating a matching argument
20483 that is not the empty string.
20485 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20487 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20488 were replying to
20489 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20490 would be
20492 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20494 But if you were replying to a message sent on Oct. 27 (and that wasn't
20495 today) you would get
20497 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20500 &lt;End of help on this topic&gt;
20501 </BODY>
20502 </HTML>
20503 ======= h_composer_cntxt_nick =======
20504 <HTML>
20505 <HEAD>
20506 <TITLE>Collection Nickname Explained</TITLE>
20507 </HEAD>
20508 <BODY>
20509 <H1>Collection Edit Help -- Nickname Field</H1>
20511 This field is provided so you can add a short nickname to use when
20512 referring to this collection within Alpine.  Spaces are allowed, and
20513 you don't need to use double-quotes.  However, the double-quote
20514 character is not allowed.
20516 Look <A HREF="h_edit_nav_cmds">here</A>
20517 to see the available Editing and Navigation commands.
20519 &lt;End of help on this topic&gt;
20520 </BODY>
20521 </HTML>
20522 ======= h_folder_server_syntax =======
20523 <HTML>
20524 <HEAD>
20525 <TITLE>Server Name Syntax</TITLE>
20526 </HEAD>
20527 <BODY>
20528 <H1>Server Name Syntax</H1>
20530 This help describes the syntax that may be used for server names
20531 that may be associated with remote folders or SMTP servers.
20534 A server name is the hostname of the server.
20535 It's a good idea to use the host's fully-qualified network name.
20538 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20541 However, IP addresses are allowed if surrounded
20542 with square-brackets.
20545 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20548 An optional network port number may be supplied by appending
20549 a colon (:) followed by the port number
20550 to the server name.
20551 By default, the IMAP port number, 143, is used.
20554 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20557 Besides server name and optional port number, various other optional
20558 parameters may be supplied that alter Alpine's interaction with the server.
20559 A parameter is supplied by appending a slash (/) character followed by
20560 the parameter's name and,
20561 depending on the particular parameter, the value assigned to that
20562 name, to the server name (and optional port number).
20563 Parameter names are <EM>not</EM> case sensitive.
20564 Currently supported parameters include:
20566 <DL>
20568 <DT>User</DT>
20569 <DD>This parameter requires an associated value, and is intended to
20570 provide the username identifier with which to establish the server
20571 connection.
20572 If your SMTP server offers SMTP AUTH authentication, adding this 
20573 parameter to the
20574 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20575 option will cause Alpine to attempt to authenticate to the server using the
20576 supplied username.
20577 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20578 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20579 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20580 option (or to the server name for any folder collection using NNTP)
20581 will cause Alpine to attempt
20582 to authenticate to the server using the supplied username.
20583 An example might be:
20586 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20589 </DD>
20591 <DT>TLS</DT>
20592 <DD>
20593 Normally, when a new connection is made an attempt is made to 
20594 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20595 If that fails then a non-encrypted connection will be attempted instead.
20596 This is a unary parameter indicating communication with the server must 
20597 take place over a TLS connection. If the attempt to use TLS fails then
20598 this parameter will cause the connection to fail instead of falling
20599 back to an unsecure connection.
20602 <CENTER><SAMP>/tls</SAMP></CENTER>
20605 </DD>
20607 <DT>SSL</DT>
20608 <DD>
20609 This is a unary parameter indicating communication with the server should 
20610 take place over a Secure Socket Layer connection.  The server must support
20611 this method, and be prepared to accept connections on the appropriate
20612 port (993 by default).
20613 Alpine must be linked with an SSL library for this option to be operational.
20616 <CENTER><SAMP>/ssl</SAMP></CENTER>
20619 </DD>
20621 <DT>TLS1</DT>
20622 <DD>
20623 This parameter indicates that the connection to the server will be made
20624 over the SSL port, but using the TLSv1 protocol, instead of the usual
20625 SSLv3 or SSLv2 protocols.
20626 Alpine must be linked with an SSL library for this option to be operational.
20629 <CENTER><SAMP>/tls1</SAMP></CENTER>
20632 </DD>
20634 <DT>DTLS1</DT>
20635 <DD>
20636 This parameter indicates that the connection to the server will be made
20637 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20638 SSLv3 or SSLv2 protocols.
20639 Alpine must be linked with an SSL library for this option to be operational.
20642 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20645 </DD>
20647 <DT>TLS1_1</DT>
20648 <DD>
20649 This parameter indicates that the connection to the server will be made
20650 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20651 SSLv3 or SSLv2 protocols.
20652 Alpine must be linked with an SSL library for this option to be operational.
20655 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20658 </DD>
20660 <DT>TLS1_2</DT>
20661 <DD>
20662 This parameter indicates that the connection to the server will be made
20663 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20664 SSLv3 or SSLv2 protocols.
20665 Alpine must be linked with an SSL library for this option to be operational.
20668 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20671 </DD>
20674 <DT>NoValidate-Cert</DT>
20675 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20676 This is needed if the server uses self-signed certificates or if Alpine
20677 cannot validate the certificate for some other known reason.
20679 </DD>
20681 <DT>Anonymous</DT>
20682 <DD>This is a unary parameter (that means it does not have a value)
20683 indicating that the connection be logged in as
20684 &quot;anonymous&quot; rather than a specific user.
20685 Not all servers offer anonymous
20686 access; those which do generally only offer read-only access to certain
20687 &quot;public&quot; folders.
20690 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20693 </DD>
20695 <DT>Secure</DT>
20696 <DD>This is a unary parameter indicating that the connection use the
20697 most secure authentication method mutually supported by Alpine and the
20698 server.
20699 Alpine is capable of authenticating connections to 
20700 the server using several methods.
20701 By default, Alpine will attempt each
20702 method until either a connection is established or the
20703 list of methods is exhausted.
20704 This parameter causes Alpine to instead fail 
20705 the connection if the first (generally most &quot;secure&quot;) method fails.
20708 <CENTER><SAMP>/secure</SAMP></CENTER>
20711 </DD>
20713 <DT>Submit</DT>
20714 <DD>This is a unary parameter for use with the
20715 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20716 It indicates that the connection should be made to the Submit server
20717 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20718 (port 587) instead of the SMTP port (25).
20719 At the time this help was written the submit option was equivalent to
20720 specifying port 587.
20723 <CENTER><SAMP>/submit</SAMP></CENTER>
20727 <CENTER><SAMP>host:587</SAMP></CENTER>
20730 </DD>
20732 <DT>Debug</DT>
20733 <DD>This is a unary parameter indicating that the connection be established
20734 in a verbose mode.  Basically, it causes Alpine to log the communication with
20735 the server in Alpine's debug file.
20736 Normally, the pine -d command-line flag would be used instead.
20738 </DD>
20740 <DT>NoRsh</DT>
20741 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20742 the UNIX remote shell program.
20743 Including &quot;NoRsh&quot; will cause connections to this server to skip
20744 the &quot;rsh&quot; attempt.
20745 This might be useful to avoid long timeouts caused by rsh firewalls, for
20746 example.
20748 </DD>
20750 <DT>Loser</DT>
20751 <DD>This option makes sense only for IMAP servers that do not perform
20752 a SEARCH command correctly. If your filtering rules
20753 fail to filter some messages, that should have been filtered, then this
20754 option will make Alpine download all data necessary data to perform that 
20755 search. There is a performance penalty when using this option. Downloading 
20756 the data to perfom the search will take longer than requesting the IMAP
20757 server to perform the filtering, but the filtering will be done correctly.
20759 </DD>
20762 <DT>Service</DT>
20763 <DD>This parameter requires an associated value.  The default value is
20764 &quot;IMAP&quot; which indicates communication with the server based
20765 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20766 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20768 Other service values include:
20769  <DL>
20770  <DT>NNTP</DT>
20771  <DD>This value indicates communication with the server takes place via
20772 the Network News Transfer Protocol.  Use this to define a collection
20773 of newsgroups on a remote news server.  So
20776 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20778 or just
20780 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20783 is the way to specify NNTP access.
20785  </DD>
20787  <DT>POP3</DT>
20788  <DD>This value indicates communication with the server takes place via the
20789 Post Office Protocol 3 protocol.
20792 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20794 or just
20796 <CENTER><SAMP>/POP3</SAMP></CENTER>
20799 Note that there are several important issues
20800 to consider when selecting this option:
20801 <OL>
20802  <LI> POP3 provides access to only your INBOX.  In other words,
20803 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20804  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20805 model and will leave your mail on the server. Refer to the
20806 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20807  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20808 </OL>
20809 </DD>
20810 </DL>
20811 </DL>
20814 Note that it is possible to include more than one parameter in a server
20815 specification by concatenating the parameters. For example:
20818 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20822 &lt;End of help on this topic&gt;
20823 </BODY>
20824 </HTML>
20825 ======= h_composer_cntxt_server =======
20826 <HTML>
20827 <HEAD>
20828 <TITLE>Collection Server: Explained</TITLE>
20829 </HEAD>
20830 <BODY>
20831 <H1>Collection Edit Help -- Server Field</H1>
20833 This collection's &quot;Server:&quot; definition indicates the
20834 hostname of the server providing access to the folders in this
20835 collection.
20836 The syntax of this server name is the same as for other server names used
20837 in remote folder names in
20838 Alpine and is described
20839 <A HREF="h_folder_server_syntax">here</A>.
20842 &lt;End of help on this topic&gt;
20843 </BODY>
20844 </HTML>
20845 ======= h_composer_cntxt_path =======
20846 <HTML>
20847 <HEAD>
20848 <TITLE>Collection Path: Explained</TITLE>
20849 </HEAD>
20850 <BODY>
20851 <H1>Collection Edit Help -- Path Field</H1>
20853 The collection's &quot;Path:&quot; definition indicates the location
20854 of the folders in this collection.  If the path or any of its components
20855 do not exist, Alpine will prompt you for their creation when exiting the
20856 Add/Change screen.
20858 <P> 
20859 By default the path is interpreted as defining a section of your personal
20860 folder area.  This area and how you specify it are defined by the
20861 server, if one is specified in the collection, or, typically, the home
20862 directory if no server is defined.
20865 To define a collection outside the default &quot;area&quot;, prefix
20866 the path with the &quot;namespace&quot; to use when interpreting the
20867 given path.  If a namespace is specified, the Path begins with the
20868 sharp, &quot;#&quot;, character followed by the name of the namespace
20869 and then the namespace's path-element-delimiter.  Aside from the
20870 path's format, namespaces can also imply access rights, content
20871 policy, audience, location, and, occasionally, access methods.
20874 Each server exports its own set (possibly of size one) of 
20875 namespaces.  Hence, it's likely communication with your server's
20876 administrator will be required for specific configurations.  Some of
20877 the more common namespaces, however, include:
20879 <DL>
20880 <DT>#news.</DT>
20881 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20882 names are hierarchically defined with each level delimited by a period.
20883 </DD>
20884 <DT>#public/</DT>
20885 <DD>This specifies a folder area that the server may export to the general
20886 public.
20887 </DD>
20888 <DT>#shared/</DT>
20889 <DD>This specifies a folder area that the folder may export to groups
20890 of users.
20891 </DD>
20892 <DT>#ftp/</DT>
20893 <DD>This specifies a folder area that is the same as that it may have 
20894 exported via the &quot;File Transfer Protocol&quot;.
20895 </DD>
20896 <DT>#mh/</DT>
20897 <DD>This specifies the personal folder area associated with folders
20898 and directories that were created using the MH message handling system.
20899 </DD>
20900 </DL>
20903 In addition, the server may support access to other user's folders,
20904 provided you have suitable permissions.  Common methods use a prefix
20905 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20906 indicate the root of the other user's folder area.
20909 No, nothing's simple.
20912 &lt;End of help on this topic&gt;
20913 </BODY>
20914 </HTML>
20915 ======= h_composer_cntxt_view =======
20916 <HTML>
20917 <HEAD>
20918 <TITLE>Collection View: Explained</TITLE>
20919 </HEAD>
20920 <BODY>
20921 <H1>Collection Edit Help -- View Field</H1>
20923 The collection's &quot;View:&quot; definition provides a way to limit
20924 the displayed list of folders within a collection.  By default, only
20925 folders that contain the specified characters anywhere in their name
20926 are shown in the collection's folder list.
20929 Additionally, you can use a wildcard character to better control
20930 the list of folders selected for display.  The wildcard specifier is
20931 the star, &quot;*&quot;, character.
20934 So, for example, to define a collection of all folders ending with
20935 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20936 quote characters!).  Or, similarly, to define a collection of folders
20937 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20938 specify a view of &quot;a*z&quot;.
20941 &lt;End of help on this topic&gt;
20942 </BODY>
20943 </HTML>
20944 ======= h_composer_abook_add_server =======
20945 <HTML>
20946 <HEAD>
20947 <TITLE>Addressbook Server Name Field Explained</TITLE>
20948 </HEAD>
20949 <BODY>
20950 This field should be left blank if the address book is stored in a regular
20951 file on this system.  If it is a remote address book stored on an IMAP
20952 server then this is the name of that IMAP server.
20954 Look <A HREF="h_edit_nav_cmds">here</A>
20955 to see the available Editing and Navigation commands.
20957 &lt;End of help on this topic&gt;
20958 </BODY>
20959 </HTML>
20960 ======= h_composer_abook_add_folder =======
20961 <HTML>
20962 <HEAD>
20963 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20964 </HEAD>
20965 <BODY>
20966 For a remote address book (one for which the Server Name is filled in)
20967 this is the name of a folder on the remote server. The address book data
20968 will be stored in this folder. This folder should be used only for
20969 storing this single address book, not for other address books or for
20970 other messages.
20972 For a local address book (one for which the Server Name is not filled in)
20973 this is the name of a file in which the address book will be stored.
20974 The file is in the same directory as the Alpine configuration file if the
20975 configuration file is local.
20976 If the configuration file is remote, then this will be in the home directory
20977 for Unix Alpine and in the directory specified by the
20978 &quot;-aux local_directory&quot; command line argument.
20980 Look <A HREF="h_edit_nav_cmds">here</A>
20981 to see the available Editing and Navigation commands.
20983 &lt;End of help on this topic&gt;
20984 </BODY>
20985 </HTML>
20986 ======= h_composer_abook_add_nick =======
20987 <HTML>
20988 <HEAD>
20989 <TITLE>Addressbook NickName Field Explained</TITLE>
20990 </HEAD>
20991 <BODY>
20992 This is just an optional nickname for this address book. If present, it
20993 is used in some of the displays and error messages in the address book
20994 maintenance screens. It is for your convenience only and serves no
20995 other purpose.
20997 Look <A HREF="h_edit_nav_cmds">here</A>
20998 to see the available Editing and Navigation commands.
21000 &lt;End of help on this topic&gt;
21001 </BODY>
21002 </HTML>
21003 ======= h_composer_qserv_cn =======
21004 <HTML>
21005 <HEAD>
21006 <TITLE>Directory Query Form Explained</TITLE>
21007 </HEAD>
21008 <BODY>
21010 Fill in as many of these fields as you wish to narrow down your
21011 search. All the fields you fill in must match in order for an entry
21012 to be returned. You may use the wildcard character &quot;*&quot; in
21013 any of the fields, it matches any zero or more characters at that
21014 point in the string. There are no implicit wildcards, so the match is
21015 exact unless you include wildcards.
21018 Note that if an attribute isn't present at all, then the match will fail.
21019 For example, if a server doesn't support the Locality attribute, then no
21020 matter what you put in the Locality field (other than leaving it empty)
21021 the search will fail.
21024 This field, the Common Name field, is typically a person's full name.
21027 <H1>EDITING and NAVIGATION COMMANDS</H1>
21028 <!--chtml if pinemode="function_key"-->
21029 <PRE>
21030 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21031 ^B (Left Arrow)    Back character       | ^D       Delete current character
21032 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21033 ^P (Up Arrow)      Previous line        |
21034 ^N (Down Arrow)    Next line            | F9       Cut marked text or
21035 ^A                 Beginning of line    |            delete current line
21036 ^E                 End of line          | F10      Undelete line(s)
21037 F7                 Previous page        |
21038 F8                 Next page            |-------------------------------------
21039 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21040 ----------------------------------------|
21041 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21042 F2   Cancel      |   F1    Get help     |
21043 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21044 </PRE>
21045 <!--chtml else-->
21046 <PRE>
21047 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21048 ^B (Left Arrow)    Back character       | ^D       Delete current character
21049 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21050 ^P (Up Arrow)      Previous line        |
21051 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21052 ^A                 Beginning of line    |            delete current line
21053 ^E                 End of line          | ^U       Undelete line(s)
21054 ^Y                 Previous page        |
21055 ^V                 Next page            |-------------------------------------
21056 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21057 ----------------------------------------|
21058 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21059 ^C   Cancel      |   ^G    Get help     |
21060 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21061 </PRE>
21062 <!--chtml endif-->
21063 <P><UL>
21064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21065 </UL><P>
21066 &lt;End of help on this topic&gt;
21067 </BODY>
21068 </HTML>
21069 ======= h_composer_qserv_sn =======
21071 The Surname is usually the family name of a person.
21073 <End of help on this topic>
21074 ======= h_composer_qserv_gn =======
21076 This is the part of a person's name that isn't the surname or initials.
21078 <End of help on this topic>
21079 ======= h_composer_qserv_mail =======
21081 This is the email address of a person.
21083 <End of help on this topic>
21084 ======= h_composer_qserv_org =======
21086 This is the organization a person belongs to.
21088 <End of help on this topic>
21089 ======= h_composer_qserv_unit =======
21091 This is the organizational unit a person belongs to.
21093 <End of help on this topic>
21094 ======= h_composer_qserv_country =======
21096 This is the country a person belongs to.
21098 <End of help on this topic>
21099 ======= h_composer_qserv_state =======
21101 This is the state a person belongs to.
21103 <End of help on this topic>
21104 ======= h_composer_qserv_locality =======
21106 This is the locality a person belongs to.
21108 <End of help on this topic>
21109 ======= h_composer_qserv_custom =======
21111 This one is for advanced users only! If you put something in this field,
21112 then the rest of the fields are ignored.
21114 This field may be set to the string representation of an LDAP search
21115 filter (see RFC1960). Here are some examples:
21117 To search for an entry with a surname equal to "clinton" you could set
21118 the custom filter to:
21120      (sn=clinton)
21121     
21122 This is equivalent to putting "clinton" in the SurName field.
21123 To search for an entry that has a surname that begins with "clint" and
21124 has a givenname equal to "william" you could use:
21126      (&(sn=clint*)(givenname=william))
21127     
21128 This is equivalent to setting the SurName field to "clint*" and the
21129 GivenName field to "william".
21130 To search for an entry where either the common name OR the email address
21131 contains "abcde" you could use:
21133      (|(cn=*abcde*)(mail=*abcde*))
21135 That isn't equivalent to anything you can do by setting the other fields
21136 because of the OR.
21138 <End of help on this topic>
21139 ======= h_composer_qserv_qq =======
21141 This one is a little different from the rest of the categories.  It causes
21142 a search to be formed from the configured search filter that you filled
21143 in when you added the directory server to your configuration. It can also
21144 be combined with the other fields if you'd like.
21146 <End of help on this topic>
21147 ======= h_address_format =======
21148 <HTML>
21149 <HEAD>
21150 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21151 </HEAD>
21152 <BODY>
21153 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21155 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21156 and then a domain, with no spaces.  
21157 For example, jsmith@art.example.com might be the email address
21158 of a person  
21159 with the username &quot;jsmith&quot; who has an account in the domain
21160 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21161 right of the &quot;@&quot; sign can vary - a shorter example would be 
21162 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21163 organization's domain is specified after the &quot;@&quot; sign); a longer 
21164 example would be 
21165  jsingh@shakti.edutech.example.com
21166 (here, the name of the host &quot;shakti&quot; in the domain 
21167 edutech.example.com is also specified).  
21168 <P>  
21169 If you do not know the exact email address of someone you want to write 
21170 to, ask them what it is using other means of communication than email; or 
21171 use the tools for 
21172 finding people's addresses that are available on the Internet.
21174 If you are sending to someone on the same system as you are, you can leave
21175 the &quot;@&quot; sign and all the information to its right off of the 
21176 address, and Alpine will fill it in automatically, 
21177 unless the feature 
21178 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21181 When an email address you send a message to is not reachable -- either because 
21182 it is simply an incorrect address, or because email can temporarily not be 
21183 delivered to it due to a technical problem on the way to or at the recipient's 
21184 end -- you will almost always get an error notification email message back.
21186 If you encounter problems with, or have questions about, email delivery or
21187 email address syntax, contact your local network computing consultants.
21188 <P><UL>
21189 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21190 </UL>
21192 &lt;End of help on this topic&gt;
21193 </BODY>
21194 </HTML>
21195 ======= h_flag_user_flag =======
21196 <HTML>
21197 <HEAD>
21198 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21199 </HEAD>
21200 <BODY>
21201 <H1>STATUS FLAG: User Defined Keyword</h1>
21203 This is a keyword that is defined for this folder.
21204 It was most likely defined by the owner of the folder.
21205 Alpine will not set or clear this flag on its own.
21207 <P><UL>
21208 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21209 </UL><P>
21210 &lt;End of help on this topic&gt;
21211 </BODY>
21212 </HTML>
21213 ======= h_flag_important =======
21214 <html>
21215 <title>STATUS FLAG: Important</title>
21216 <body>
21217 <h1>STATUS FLAG: Important</h1>
21220 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21221 MESSAGE&nbsp;INDEX
21222 screen, can only be set by the user, and is intended to be used in
21223 whatever fashion makes sense to you.  You are the only one that can set or
21224 clear it. 
21227 &lt;End of help on this topic&gt;
21228 </BODY>
21229 </HTML>
21230 ======= h_flag_new =======
21231 <html>
21232 <title>STATUS FLAG: New</title>
21233 <body>
21234 <h1>STATUS FLAG: New</h1>
21237 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21238 MESSAGE&nbsp;INDEX screen,
21239 is automatically set when messages are delivered to your Inbox (or other
21240 folder specified outside of Alpine).  Likewise, it is cleared automatically
21241 the first time you read the message it is associated with.
21244 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21245 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21246 you'd like to be reminded of it next time you read mail.  This can be done
21247 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21251 &lt;End of help on this topic&gt;
21252 </BODY>
21253 </HTML>
21254 ======= h_flag_answered =======
21255 <html>
21256 <title>STATUS FLAG: Answered</title>
21257 <body>
21258 <h1>STATUS FLAG: Answered</h1>
21260 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21261 MESSAGE&nbsp;INDEX
21262 screen, is automatically set when you reply to a message.  This flag is not
21263 automatically cleared.
21266 &lt;End of help on this topic&gt;
21267 </BODY>
21268 </HTML>
21269 ======= h_flag_forwarded =======
21270 <html>
21271 <title>STATUS FLAG: Forwarded</title>
21272 <body>
21273 <h1>STATUS FLAG: Forwarded</h1>
21275 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21276 MESSAGE&nbsp;INDEX
21277 screen, is automatically set when you forward a message.  This flag is not
21278 automatically cleared.
21281 &lt;End of help on this topic&gt;
21282 </BODY>
21283 </HTML>
21284 ======= h_flag_deleted =======
21285 <html>
21286 <title>STATUS FLAG: Deleted</title>
21287 <body>
21288 <h1>STATUS FLAG: Deleted</h1>
21290 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21291 MESSAGE&nbsp;INDEX
21292 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21293 It is cleared
21294 when you use the &quot;U&nbsp;Undelete&quot; command.
21297 Messages marked with this flag will be permanently removed from
21298 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21299 command, or
21300 when you indicate acceptance of their removal upon leaving the folder.
21303 Note, there can be other actions implicit in the
21304 &quot;D&nbsp;Delete&quot; command,
21305 such as advancing to the next message, that may be momentarily undesirable.
21306 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21307 flag <A HREF="h_common_flag">explicitly</A>.
21310 &lt;End of help on this topic&gt;
21311 </BODY>
21312 </HTML>
21313 ====== h_config_incoming_timeo ======
21314 <HTML>
21315 <HEAD>
21316 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21317 </HEAD>
21318 <BODY>
21319 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21321 This option has no effect unless the feature
21322 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21323 is set, which in turn has no effect unless
21324 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21325 is set.
21327 Sets the time in seconds that Alpine will
21328 attempt to open a network connection used for monitoring for Unseen
21329 messages in Incoming Folders. The default is 5.
21330 If a connection has not completed within this many seconds Alpine will
21331 give up and consider it a failed connection.
21333 <UL>   
21334 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21335 </UL><P>
21336 &lt;End of help on this topic&gt;
21337 </BODY>
21338 </HTML>
21339 ====== h_config_psleep ======
21340 <HTML>
21341 <HEAD>
21342 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21343 </HEAD>
21344 <BODY>
21345 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21348 In the good old days a mailcap viewer was used to examine an 
21349 attachment before saving it, and after viewing the attachment control 
21350 would return to the operating system when the viewer was closed. Therefore, 
21351 when the mailcap viewer returned control to the operating system, it 
21352 could be assumed that the user who opened the attachment was done
21353 examining it, and the copy of the attachment that was used, could be removed.
21356 However, today this assumption is not longer valid. Some viewers return 
21357 control to the operating system before they actually read the attachment
21358 to be examined. This causes Alpine to delete the attachment before it 
21359 is read by the viewer, causing the viewer to fail opening the attachment.
21362 In order to work around this problem, Alpine checks, after the viewer has 
21363 returned control to the operating system, if there is any process that is 
21364 using the attachment. This variable controls the number of seconds that 
21365 must elapse between checks. Once it is found that no process is using the 
21366 attachment, this is removed.
21369 The minimum value for this variable is 60 (checks will be made once per 
21370 minute), and the maximum value is 600 (checks will be made once every 10 
21371 minutes). The default value is 60.
21374 <UL>   
21375 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21376 </UL><P>
21377 &lt;End of help on this topic&gt;
21378 </BODY>
21379 </HTML>
21380 ====== h_config_incoming_interv ======
21381 <HTML>
21382 <HEAD>
21383 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21384 </HEAD>
21385 <BODY>
21386 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21388 This option has no effect unless the feature
21389 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21390 is set, which in turn has no effect unless
21391 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21392 is set.
21394 This option specifies, in seconds, how often Alpine will check
21395 for new mail and state changes in Incoming Folders when Incoming Folders
21396 Checking is turned on.
21397 The default is 3 minutes (180).
21398 This value applies only to folders that are local to the system that
21399 Alpine is running on or that are accessed using the IMAP protocol.
21400 The similar option
21401 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21402 applies to all other monitored folders.
21404 <UL>   
21405 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21406 </UL><P>
21407 &lt;End of help on this topic&gt;
21408 </BODY>
21409 </HTML>
21410 ====== h_config_incoming_second_interv ======
21411 <HTML>
21412 <HEAD>
21413 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21414 </HEAD>
21415 <BODY>
21416 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21418 This option has no effect unless the feature
21419 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21420 is set, which in turn has no effect unless
21421 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21422 is set.
21424 This option together with the option
21425 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21426 specifies, in seconds, how often Alpine will check
21427 for new mail and state changes in Incoming Folders when Incoming Folders
21428 Checking is turned on.
21429 The default for this option is 3 minutes (180).
21430 For folders that are local to this system or
21431 that are accessed using the IMAP protocol
21432 the value of the option
21433 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21434 is used.
21435 For all other monitored folders, the value of this option is used.
21437 The reason there are two separate options is because it is usually
21438 less expensive to check local and IMAP folders than it is to check
21439 other types, like POP or NNTP folders.
21440 You may want to set this secondary value to a higher number than
21441 the primary check interval.
21443 <UL>   
21444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21445 </UL><P>
21446 &lt;End of help on this topic&gt;
21447 </BODY>
21448 </HTML>
21449 ====== h_config_incoming_list ======
21450 <HTML>
21451 <HEAD>
21452 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21453 </HEAD>
21454 <BODY>
21455 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21457 This option has no effect unless the feature
21458 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21459 is set, which in turn has no effect unless
21460 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21461 is set.
21463 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21464 normally monitor all Incoming Folders.
21465 You may use this option to restrict the list of monitored folders to a
21466 subset of all Incoming Folders.
21468 <UL>   
21469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21470 </UL><P>
21471 &lt;End of help on this topic&gt;
21472 </BODY>
21473 </HTML>
21474 ====== h_config_pers_name ======
21475 <HTML>
21476 <HEAD>
21477 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21478 </HEAD>
21479 <BODY>
21480 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21482 This value is used to determine the full name part of the "From" address
21483 on messages you send.
21484 <!--chtml if pinemode="os_windows"-->
21485  PC-Alpine requires that this be set in order to properly construct the "From" address.
21486 <!--chtml else-->
21487  If unset, Unix Alpine will obtain your full name from
21488  the system password file. PC-Alpine, on the other hand, requires that this be set.
21489 <!--chtml endif-->
21491 If you want to change the value of what gets included in the From header
21492 in messages you send (other than just the Personal Name)
21493 look <A HREF="h_config_change_your_from">here</A> for a description.
21494 <P><UL>
21495 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21496 </UL><P>
21497 &lt;End of help on this topic&gt;
21498 </BODY>
21499 </HTML>
21500 ====== h_config_pruned_folders ======
21501 <html>
21502 <header>
21503 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21504 </header>
21505 <body>
21506 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21508 This variable allows you to define a list of one or more folders that
21509 Alpine will offer to prune for you in the same way it automatically offers
21510 to prune your "sent-mail" folder each month.
21511 Each folder in this list must be a folder in your default folder collection
21512 (the first folder collection if you have more than one), and it is just
21513 the relative name of the folder in the collection, not the fully-qualified name.
21514 It is similar to sent-mail.
21515 Instead of something like
21517 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21519 the correct value to use would be
21521 <CENTER><SAMP>folder</SAMP></CENTER>
21523 There is an assumption here that your first collection is the folders in
21525 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21528 Once a month, for each folder listed, Alpine will offer to move
21529 the contents of the folder to a new folder of the same name but with
21530 the previous month's date appended.  Alpine will then look for any such
21531 date-appended folder names created for a previous month, and offer each
21532 one it finds for deletion.
21535 If you decline the first offer, no mail is moved and no new folder is
21536 created.
21539 The new folders will be created
21540 in your default folder collection.
21543 <UL>   
21544 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21545 </UL><P>
21546 &lt;End of help on this topic&gt;
21547 </body>
21548 </html>
21549 ====== h_config_upload_cmd ======
21550 <HTML>
21551 <HEAD>
21552 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21553 </HEAD>
21554 <BODY>
21555 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21557 This option affects the behavior of the Composer's &quot;Read File&quot; 
21558 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21559 commands.  It specifies
21560 a Unix program name, and any necessary command line arguments, that Alpine can
21561 use to transfer files from your personal computer into messages that you are
21562 composing.<P>
21564 <B>Note:</B> this facility is intended for use with serial line transfer 
21565 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21566 to work with TCP/IP file transfer programs such as ftp.<P>
21568 If a program is specified, the commands listed above are modified to offer a
21569 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21570 specified here must match the transfer program or protocol available on the
21571 personal computer.<P>
21573 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21574 the specified upload program finishes, Alpine expects the uploaded data to be
21575 contained in this file.<P>
21577 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21578 generates a
21579 temporary file name that it will pass to the specified Unix program.  Alpine
21580 will read the resulting uploaded text from this file and then delete it when
21581 the upload command is finished.<P>
21583 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21584 prompt
21585 you for the name of the file that is to contain the uploaded information that
21586 it is to attach.  Alpine will attach this file to the composition, but will
21587 <B>not</B> delete this file after the upload command is finished.<P>
21589 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21590 command
21591 line arguments.  Alpine will replace this symbol with the name of the file
21592 being used to exchange the uploaded information.  This token allows you to
21593 position the file name where it is required in the Unix program's command
21594 line arguments.<P>
21596 If the &quot;_FILE_&quot; token is not present in the specified command, the
21597 temporary file's name is automatically appended to the specified Unix
21598 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21599 <B>last</B> command line argument.
21600 <P><UL>
21601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21602 </UL><P>
21603 &lt;End of help on this topic&gt;
21604 </BODY>
21605 </HTML>
21606 ====== h_config_upload_prefix ======
21607 <HTML>
21608 <HEAD>
21609 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21610 </HEAD>
21611 <BODY>
21612 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21614 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21615 It defines text to be written to the terminal emulator (via standard output)
21616 immediately prior to starting upload command.  This is useful for
21617 integrated serial line file transfer agents that permit command passing
21618 (e.g., Kermit's APC method).<P>
21620 The special token &quot;_FILE_&quot; may be included in the string specification.
21621 That symbol will be replaced with the (Alpine-created) name of the temporary
21622 file in which Alpine will expect to find the uploaded file.
21623 <P><UL>
21624 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21625 </UL><P>
21626 &lt;End of help on this topic&gt;
21627 </BODY>
21628 </HTML>
21629 ====== h_config_download_cmd ======
21630 <HTML>
21631 <HEAD>
21632 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21633 </HEAD>
21634 <BODY>
21635 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21637 This option affects the behavior of the Export command.  It specifies a Unix
21638 program name, and any necessary command line arguments, that Alpine can use to
21639 transfer the exported message to your personal computer's disk.<P>
21640 Note: this facility is intended for use with serial line transfer 
21641 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21642 to work with TCP/IP file transfer programs such as ftp.<P>
21643 If a program is specified, the Export command is modified to offer a
21644 subcommand (^V) to activate the transfer (in lieu of saving it to
21645  the machine where Alpine is running).  Obviously, the Unix program
21646 specified here must match the transfer program or protocol available on the
21647 personal computer.<P>
21649 When this subcommand is selected and before Alpine invokes the specified Unix
21650 program, Alpine will create a temporary file containing the text of the
21651 exported message.  Alpine uses this file to pass the exported message text to
21652 the specified Unix program.<P>
21654 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21655 line arguments.  Alpine will replace this symbol with the temporary file's name
21656 before executing the Unix program.  This token allows you to position the
21657 file name where it is required in the Unix program's command line arguments.
21659 If the &quot;_FILE_&quot; token is not present in the specified command, the
21660 temporary file's name is automatically appended to the specified Unix
21661 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21662 <B>last</B> command line argument.
21663 <P><UL>
21664 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21665 </UL><P>
21666 &lt;End of help on this topic&gt;
21667 </BODY>
21668 </HTML>
21669 ====== h_config_download_prefix ======
21670 <HTML>
21671 <HEAD>
21672 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21673 </HEAD>
21674 <BODY>
21675 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21677 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21678 It defines text to be written to the terminal emulator (via standard output)
21679 immediately prior to starting the download command.  This is useful for
21680 integrated serial line file transfer agents that permit command passing
21681 (e.g., Kermit's APC method).
21683 The special token &quot;_FILE_&quot; may be included in the string 
21684 specification.
21685 That symbol will be replaced with the (Alpine-created) name of the temporary
21686 file into which Alpine will place the message to be downloaded.
21687 <P><UL>
21688 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21689 </UL><P>
21690 &lt;End of help on this topic&gt;
21691 </BODY>
21692 </HTML>
21693 ====== h_config_mailcap_path ======
21694 <HTML>
21695 <HEAD>
21696 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21697 </HEAD>
21698 <BODY>
21699 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21700 This variable is used to replace Alpine's default mailcap file search path.
21701 It takes one or more file names (full paths must be specified) in which to
21702 look for mail capability data.  The default search path can be found in this
21703 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21704 If there is more than one file name listed, list members should be delimited
21705 by 
21706 <!--chtml if pinemode="os_windows"-->
21707 a semi-colon (;) under Windows; for example:<PRE>
21708         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21709 </PRE>
21710 <!--chtml else-->
21711 a colon (:) under UNIX; for example:<PRE>
21712         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21713 </PRE>
21714 <!--chtml endif-->
21715 <P><UL>
21716 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21717 </UL>
21719 &lt;End of help on this topic&gt;
21720 </BODY>
21721 </HTML>
21722 ====== h_config_mimetype_path ======
21723 <HTML>
21724 <HEAD>
21725 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21726 </HEAD>
21727 <BODY>
21728 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21730 This variable is used to replace Alpine's default mime.types file search path.
21731 It takes one or more file names (full paths must be specified) in which to
21732 look for file-name-extension to MIME type mapping data.  The default search
21733 path can be found in this
21734 <A HREF="h_news_config">Alpine Configuration</A> help.
21738 If there is more than one file name listed, list members should be delimited
21739 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21741 &lt;End of help on this topic&gt;
21742 </BODY></HTML>
21743 ====== h_config_set_att_ansi ======
21744 <HTML><HEAD>
21745 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21746 </HEAD>
21747 <BODY>
21748 <H1>OPTION: Set printer to attached ansi printer</H1>
21750 Type "S" to set your printer to "attached-to-ansi".<BR>
21751 It is OK to include "attached-to-ansi" in your personal list below.
21753 &lt;End of help on this topic&gt;
21754 </BODY></HTML>
21755 ====== h_config_set_att_ansi2 ======
21756 <HTML><HEAD>
21757 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21758 </HEAD>
21759 <BODY>
21760 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21762 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21763 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21764 list below.
21768 This is the same as the "attached-to-ansi" option except that a
21769 formfeed character will not be appended to the end of the print job.
21770 If your printer already ejects the paper by itself at the end of the
21771 job, you may prefer the "no-formfeed" form of this printer so that you
21772 don't get an extra blank page between print jobs.
21775 &lt;End of help on this topic&gt;
21776 </BODY></HTML>
21777 ====== h_config_set_att_wyse ======
21778 <HTML><HEAD>
21779 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21780 </HEAD>
21781 <BODY>
21782 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21784 Type "S" to set your printer to "attached-to-wyse".<BR>
21785 It is OK to include "attached-to-wyse" in your personal list below.
21787 This is very similar to "attached-to-ansi".
21788 The only difference is in the control characters sent to turn the printer
21789 on and off.
21790 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21791 to turn on the printer and ESC LEFT_BRACKET 4 i
21792 to turn it off.
21793 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21794 &lt;End of help on this topic&gt;
21795 </BODY></HTML>
21796 ====== h_config_set_att_wyse2 ======
21797 <HTML><HEAD>
21798 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21799 </HEAD>
21800 <BODY>
21801 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21803 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21804 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21805 list below.
21809 This is the same as the "attached-to-wyse" option except that a
21810 formfeed character will not be appended to the end of the print job.
21811 If your printer already ejects the paper by itself at the end of the
21812 job, you may prefer the "no-formfeed" form of this printer so that you
21813 don't get an extra blank page between print jobs.
21816 &lt;End of help on this topic&gt;
21817 </BODY></HTML>
21818 ====== h_config_set_stand_print ======
21819 <HTML>
21820 <HEAD>
21821 <TITLE>OPTION: Set default printer</TITLE>
21822 </HEAD>
21823 <H1>OPTION: Set default printer</H1>
21824 <BODY>
21825 Move to the printer you want and type "S" to set it to be your
21826 default printer.  This list is not modifiable by you and has been
21827 set up by the system administrators.  If there is more than one printer
21828 listed in the Command List, you will be able to cycle through that
21829 whole list at the time you print, starting with your default.
21830 It is OK to include entries from this Standard list in your personal
21831 list below.
21833 &lt;End of help on this topic&gt;
21834 </BODY>
21835 </HTML>
21836 ====== h_config_set_custom_print ======
21837 <HTML>
21838 <HEAD>
21839 <TITLE>OPTION: Set default printer</TITLE>
21840 </HEAD>
21841 <H1>OPTION: Set default printer</H1>
21842 <BODY>
21843 You may add as many print commands as you want to your personal list.
21844 Specify one of them as your default printer by moving to the printer
21845 you want and typing "S".  If there is more than one printer listed
21846 in the Command List, you will be able to cycle through that list at
21847 the time you print, starting with your default.  It is OK to include
21848 entries from the Standard list above or to include the command
21849 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21850 "attached-to-wyse-no-formfeed" as one of the entries here.
21852 &lt;End of help on this topic&gt;
21853 </BODY>
21854 </HTML>
21855 ====== h_config_user_id =====
21856 <HTML>
21857 <HEAD>
21858 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21859 </HEAD>
21860 <BODY>
21861 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21863 This value is used as part of the "From" address on messages you send.
21864 It is also the default login name for remote IMAP server access.  Set this
21865 to the username part you want to appear on outgoing email.
21867 If you want to change the value of what gets included in the From header
21868 in messages you send (other than just the User ID)
21869 look <A HREF="h_config_change_your_from">here</A> for a description.
21871 <P><UL>   
21872 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21873 </UL><P>
21874 &lt;End of help on this topic&gt;
21875 </BODY>
21876 </HTML>
21877 ====== h_config_user_dom =====
21878 <HTML>
21879 <HEAD>
21880 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21881 </HEAD>
21882 <BODY>
21883 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21885 This value specifies the domain part (right-hand side) of your return
21886 address on outgoing email and is also used as the default domain for email
21887 composed to a local user.
21888 <!--chtml if pinemode="os_windows"-->
21889  This value is required for PC-Alpine. If you are unsure as to what this should be,
21890  contact your local help desk, system administrator, or Internet Service Provider.
21891 <!--chtml else-->
21892  If unset, Unix Alpine will obtain the domain from
21893  the system.  Often this value will be set for your whole site by the
21894  system administrator.<P>
21895 <!--chtml endif-->
21896 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21897 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21899 If you want to change the value of what gets included in the From header
21900 in messages you send (other than just the User Domain)
21901 look <A HREF="h_config_change_your_from">here</A> for a description.
21902 <P><UL>
21903 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21904 </UL><P>
21905 &lt;End of help on this topic&gt;
21906 </BODY>
21907 </HTML>
21908 ====== h_config_smtp_server =====
21909 <HTML>
21910 <HEAD>
21911 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21912 </HEAD>
21913 <BODY>
21914 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21915 This value specifies the name of one or more SMTP 
21916 (Simple Mail Transfer Protocol) servers for sending mail. 
21917 <!--chtml if pinemode="os_windows"-->
21918 You must have an SMTP server for use with PC-Alpine.
21919 SMTP servers are
21920 normally set up by a system administrator for use by all members of a given
21921 campus or department.
21922 Contact your local help desk to ask what SMTP
21923 servers you should use.  
21924 <!--chtml else-->
21925 Unix Alpine users may not need to set an SMTP server.
21926 Alpine will attempt to execute the program (usually sendmail) that is used
21927 to insert mail into the mail system.
21928 If this works for you, you may leave this option blank.
21929 If there is an SMTP server running on the Unix host you may be able to
21930 improve sending performance slightly by setting the SMTP server option
21931 to &quot;localhost&quot; or to the actual name of the Unix host.
21933 If the Unix host doesn't work the way Alpine was expecting you will need to
21934 set the value of this option.
21935 SMTP servers are
21936 normally set up by a system administrator for use by all members of a given
21937 campus or department.
21938 Contact your local help desk to ask what SMTP
21939 servers you should use.  
21940 <!--chtml endif-->
21942 Your SMTP server may offer SMTP AUTH authentication.
21943 It may even require it.
21944 If your SMTP server offers SMTP AUTH authentication you may specify a
21945 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21946 This parameter requires an associated value,
21947 the username identifier with which to establish the server
21948 connection.
21949 An example might be:
21952 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21955 If AUTH authentication is offered by the server, this will cause Alpine to
21956 attempt to use it.
21957 If AUTH authentication is not offered by the server, this will cause Alpine
21958 to fail sending with an error similar to:
21961 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21964 Another type of authentication that is used by some ISPs is called
21965 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21966 which means that you have to authenticate
21967 yourself to the POP or IMAP server by opening a mailbox before you
21968 can send mail.
21969 To do this, you usually only have to open your INBOX.
21972 You may tell Alpine to use the
21973 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21974 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21975 parameter
21976 in this option.
21977 At this time &quot;/submit&quot; is simply equivalent to specifying
21978 port 587, though it may imply more than that at some point in the future.
21979 Some ISPs are blocking port 25 in order to reduce the amount of spam
21980 being sent to their users.
21981 You may find that the submit option allows you to get around such a block.
21984 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21987 To specify any non-standard port number on the SMTP server you may follow
21988 the hostname with a colon followed by the portnumber.
21991 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21994 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21995 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21996 If that fails then a non-encrypted connection will be attempted instead.
21997 You may specify that a TLS connection is required if you wish.
21998 If you append &quot;/tls&quot; to the name then the connection will fail
21999 instead of falling back to a non-secure connection.
22002 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
22006 For more details about server name possibilities see
22007 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22010 <UL>
22011 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22012 </UL>
22014 &lt;End of help on this topic&gt;
22015 </BODY>
22016 </HTML>
22017 ====== h_config_nntp_server =====
22018 <HTML>
22019 <HEAD>
22020 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
22021 <BODY>
22022 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
22024 This value specifies the name of one or more NNTP
22025 (Network News Transfer Protocol)
22026 servers for reading and posting USENET news.
22027 NNTP servers are normally
22028 set up by a system administrator for use by all members of a given campus
22029 or department.
22030 Contact your local help desk to ask what NNTP servers you should use.  
22031 <!--chtml if pinemode="os_windows"--><!--chtml else-->
22032 Often Unix Alpine users will find that this variable has been
22033 set for the whole system (and they don't have to worry about it).  
22034 <!--chtml endif-->
22035 When you define an NNTP server here, Alpine implicitly defines a news
22036 collection for you, assuming that server as the news server and assuming
22037 that you will use the NNTP protocol and a local newsrc configuration file
22038 for reading news.
22039 For more about reading news with Alpine, see
22040 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22042 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22043 or &quot;AUTHINFO USER&quot; authentication.
22044 It may even require it.
22045 If your NNTP server does offer such authentication you may specify a user name
22046 parameter to cause Alpine to attempt to authenticate.
22047 The same is true for the server name in a folder collection that uses NNTP.
22048 This parameter requires an associated value,
22049 the username identifier with which to establish the server connection.
22050 An example might be:
22053 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22056 If authentication is offered by the server, this will cause Alpine to
22057 attempt to use it.
22058 If authentication is not offered by the server, this will cause Alpine
22059 to fail with an error similar to:
22062 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22064 For more details about the server name possibilities see
22065 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22066 <P><UL>
22067 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22068 </UL><P>
22069 &lt;End of help on this topic&gt;
22070 </BODY>
22071 </HTML>
22072 ====== h_config_inbox_path =====
22073 <HTML>
22074 <HEAD>
22075 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22076 </HEAD>
22077 <BODY>
22078 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22080 This value overrides the default value of your INBOX name/path/location.
22081 <!--chtml if pinemode="os_windows"-->
22082 PC-Alpine users must specify an inbox path and it must be a folder on an
22083 IMAP server.  
22084 <!--chtml else-->
22085 Unix and VMS Alpine users will often find that this variable
22086 has been pre-configured by your system administrator.  
22087 <!--chtml endif-->
22088 You may be able to specify an alternate INBOX that is either a local folder 
22089 or a folder on an IMAP server.
22091 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22092 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22093 mail server.
22095 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22096 details on the syntax of folder definitions.
22098 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22099 mail is disappearing.
22100 <P><UL>
22101 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22102 </UL><P>
22103 &lt;End of help on this topic&gt;
22104 </BODY>
22105 </HTML>
22106 ====== h_config_change_your_from =====
22107 <HTML>
22108 <HEAD>
22109 <TITLE>How to Change your From Address</TITLE>
22110 </HEAD>
22111 <BODY>
22112 <H1>How to Change your From Address</H1>
22114 If the From address that Alpine includes in mail that you send is not correct,
22115 you may want to configure a different default value for the From address.
22116 You may follow these directions to change the default:
22119 <UL>
22120   <LI> Go to the Main Alpine Menu
22121   <LI> From there type the Setup Command
22122   <LI> From there type the Config Command
22123 </UL>
22126 You've probably already seen this SETUP CONFIGURATION screen.
22127 If not, there are many options you may want to set here.
22128 To set the value of the From header you may use the
22129 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
22130 Find it by scrolling down a few pages or use the WhereIs command to
22131 search for &quot;customized&quot;.
22132 You may want to read the help text associated with the option.
22134 To add a custom From header, type the Add command and enter the
22135 full header line, including the leading &quot;From:&nbsp;&quot;.
22136 For example:
22138 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22140 Now exit the Setup command and try sending mail to yourself to see
22141 what the From line looks like.
22143 When you are in the composer you may edit the custom From line by typing
22144 Ctrl-R while your cursor is in the headers of the message and then moving
22145 to the From line and editing.
22146 If you want to leave the default value the same but add the possibility
22147 of being able to edit the header when you compose, add just the header
22148 name without a value.
22149 For example:
22151 <CENTER><SAMP>From:</SAMP></CENTER>
22153 If you change your From address you may also find it useful to add the
22154 changed From address to the
22155 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22156 configuration option.
22158 <UL>   
22159 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22160 </UL><P>
22161 &lt;End of help on this topic&gt;
22162 </BODY>
22163 </HTML>
22164 ====== h_config_default_fcc =====
22165 <HTML>
22166 <HEAD>
22167 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
22168 </HEAD>
22169 <BODY>
22170 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
22172 This value specifies where a copy of outgoing mail should be saved.  If
22173 this is not a path name, it will be in the default collection for saves.
22174 Any valid folder specification, local or IMAP, is allowed.  This default
22175 folder carbon copy only applies when the 
22176 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
22177 is set to use the default folder.  
22178 <!--chtml if pinemode="os_windows"-->
22179 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
22180 <!--chtml else-->
22181 Unix Alpine default
22182 is normally &quot;sent-mail&quot; in the default folder collection. 
22183 <!--chtml endif-->
22185 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
22186 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
22187 IMAP server (remember that in order to later access this remote folder through Alpine, it
22188 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22189 for more information). An example:<p>
22190 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
22192 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
22194 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22195 details on the syntax of folder definitions.
22197 <UL>   
22198 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22199 </UL><P>
22200 &lt;End of help on this topic&gt;
22201 </BODY>
22202 </HTML>
22203 ====== h_config_def_save_folder =====
22204 <HTML>
22205 <HEAD>
22206 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22207 </HEAD>
22208 <BODY>
22209 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22211 This option determines the default folder name for save-message operations 
22212 (&quot;saves&quot;).
22214 If this is not a path name, it will be in the default collection for saves.
22215 Any valid folder specification, local or IMAP, is allowed.  This default
22216 folder only applies when the
22217 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22218 doesn't override it.  
22219 <!--chtml if pinemode="os_windows"-->
22220 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22221 <!--chtml else-->
22222 Unix Alpine default
22223 is normally &quot;saved-messages&quot; in the default folder collection.
22224 <!--chtml endif-->
22225 If you access your email through an IMAP server, especially if you often switch between Unix
22226 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22227 IMAP server (remember that in order to later access this remote folder through Alpine, it
22228 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22229 for more information). An example:<p>
22230 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22232 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22233 details on the syntax of folder definitions.
22235 <UL>   
22236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22237 </UL><P>
22238 &lt;End of help on this topic&gt;
22239 </BODY>
22240 </HTML>
22241 ====== h_config_postponed_folder =====
22242 <HTML>
22243 <HEAD>
22244 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22245 </HEAD>
22246 <BODY>
22247 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22249 This value overrides the default name for the folder where postponed
22250 messages are saved.  If this is not a path name, it will be in the default
22251 collection for message Saves.  Any valid folder specification, local or
22252 remote, is allowed. 
22253 PC-Alpine default
22254 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22255 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22256 in the default collection. 
22258 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22259 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22260 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22261 in all Alpine copies you use. 
22262 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22263 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22264 for more information). An
22265 example:<p> 
22266 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22268 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22269 details on the syntax of folder definitions.
22271 <UL>   
22272 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22273 </UL><P>
22274 &lt;End of help on this topic&gt;
22275 </BODY>
22276 </HTML>
22277 ====== h_config_read_message_folder =====
22278 <HTML>
22279 <HEAD>
22280 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22281 </HEAD>
22282 <BODY>
22283 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22285 By virtue of specifying a folder name here, Alpine will be configured to
22286 save all messages that you have read during a session into the designated
22287 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22288 between your really new email (in your INBOX) and those that you have
22289 already read.  Depending on how you define the 
22290 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22291 setting, you may or may not be asked when you quit
22292 Alpine if you want read messages to be moved to this folder.  In either
22293 case, moving the messages means they will be deleted from your INBOX.
22295 If this is not a path name, it will be in the default collection for
22296 saves.  Any valid folder specification, local or remote (via IMAP), is
22297 allowed.  There is no default for the name of the read message folder.
22299 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22300 details on the syntax of folder definitions.
22302 <UL>   
22303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22304 </UL><P>
22305 &lt;End of help on this topic&gt;
22306 </BODY>
22307 </HTML>
22308 ====== h_config_form_folder =====
22309 <HTML>
22310 <HEAD>
22311 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22312 </HEAD>
22313 <BODY>
22314 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22316 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22317 contain messages that you have composed and that are intended to be
22318 sent in their original form repeatedly.
22321 Setting this variable will alter Alpine's usual behavior when you
22322 execute the Compose command.  Normally, Alpine offers a chance to
22323 continue a postponed or interrupted message should one or the other
22324 exist.  When this variable is set to a folder name that exists, Alpine
22325 will also offer the chance to select a message from the folder to
22326 insert into the composer (much like when continuing a postponed message).
22327 The difference, however, is that Alpine will not automatically delete
22328 the selected message from the Form Letter Folder.
22330 Setting this variable will also affect Alpine's behavior when you
22331 Postpone a message from the composer.  Normally, Alpine simply stashes
22332 the message away in your
22333 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22334 Regardless of the specified folder's existence, Alpine will ask which
22335 folder you intend the message to be stored in.  Choose the
22336 &quot;F&quot; option to store the message in your Form Letter Folder.
22337 This is the most common way to add a message to the folder.
22340 Another method of adding messages to the folder is via the Alpine
22341 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22342 you expect to send in the same form again, you can enter the Form
22343 Letter Folder's name in this field.  Alpine, as usual, will copy the
22344 message as it's sent.  Note, when you later select this message from 
22345 your Form Letter Folder, it will have the same recipients as the original
22346 message.
22349 To delete a message from the Form Letter Folder, you can either select
22350 the folder from a suitable FOLDER LIST screen, or use the Delete
22351 command in the MESSAGE INDEX offered when selecting from the folder as
22352 part of the Compose command.  You can delete a Form Letter Folder just
22353 as any other folder from a suitable FOLDER LIST screen.
22356 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22357 facility can be used
22358 to replace the Form Letter Folder.
22361 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22362 details on the syntax of folder definitions.
22365 <UL>   
22366 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22367 </UL><P>
22368 &lt;End of help on this topic&gt;
22369 </BODY>
22370 </HTML>
22371 ====== h_config_archived_folders =====
22372 <HTML>
22373 <HEAD>
22374 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22375 </HEAD>
22376 <BODY>
22377 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22379 This is like
22380 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22381 only more general.  You may archive
22382 any of the folders in your incoming collection.  This is a list of folder
22383 pairs, with the first separated from the second in the pair by a space.
22384 The first folder in a pair is the folder you want to archive, and the
22385 second folder is the folder that read messages from the first should be
22386 moved to.  Depending on how you define the
22387 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22388 setting, you may or may not be asked when you
22389 leave the first folder if you want read messages to be moved to the
22390 second folder.  In either case, moving the messages means they will be
22391 deleted from the first folder.
22393 The name of the first folder in each pair can be either the technical
22394 specification of the folder (like what appears in your configuration file)
22395 or (much easier) the nickname that you gave the folder when you made it
22396 an incoming folder.
22398 For example:<p>
22399 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22400 <p>or, using nicknames:<p>
22401 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22403 If these are not path names, they will be in the default collection for
22404 saves. Any valid folder specification, local or remote (via IMAP), is
22405 allowed. There is no default.
22407 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22408 details on the syntax of folder definitions.
22410 <UL>   
22411 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22412 </UL><P>
22413 &lt;End of help on this topic&gt;
22414 </BODY>
22415 </HTML>
22416 ====== h_config_newsrc_path ======
22417 <HTML>
22418 <HEAD>
22419 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22420 </HEAD>
22421 <BODY>
22422 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22424 This option overrides the default name Alpine uses for your "newsrc" news
22425 status and subscription file.  If set, Alpine will take this value as the
22426 full pathname for the desired newsrc file.<P>
22428 If this option is <B>not</B> set, 
22429 <!--chtml if pinemode="os_windows"-->
22430 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22431 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22432 directory as your pinerc file for NEWSRC.
22433 <!--chtml else-->
22434 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22435 your account's home directory).
22436 <!--chtml endif-->
22437 <P><UL>
22438 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22439 </UL>
22441 &lt;End of help on this topic&gt;
22442 </BODY>
22443 </HTML>
22444 ====== h_config_literal_sig =====
22445 <HTML>
22446 <HEAD>
22447 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22448 </HEAD>
22449 <BODY>
22450 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22452 With this option your actual signature, as opposed to
22453 the name of a file containing your signature,
22454 is stored in the Alpine configuration file.
22455 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22458 This is simply a different way to store the signature.
22459 The signature is stored inside your Alpine configuration file instead of in
22460 a separate file.
22461 Tokens work the same way they do with the
22462 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22463 help.
22466 The Setup/Signature command on Alpine's MAIN MENU will edit
22467 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22468 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22469 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22470 instead.
22473 The two character sequence &#92;n (backslash followed by
22474 the character n) will be used to signify a line-break in your signature.
22475 You don't have to enter the &#92;n, but it will be visible in the
22476 SETUP CONFIGURATION window after you are done editing the signature.
22479 <UL>   
22480 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22481 </UL><P>
22482 &lt;End of help on this topic&gt;
22483 </BODY>
22484 </HTML>
22485 ====== h_config_signature_file =====
22486 <HTML>
22487 <HEAD>
22488 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22489 </HEAD>
22490 <BODY>
22491 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22493 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22494 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22495 You can tell that that is the case because the value of the
22496 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22498 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22500 You may either use all Literal Signatures (signatures stored in your
22501 configuration file) throughout Alpine, or all signature files.
22502 You can't mix the two.
22504 This is the name of a file that will be automatically inserted into
22505 outgoing messages.
22506 It typically contains information such as your
22507 name, email address and organizational affiliation.
22508 Alpine adds the
22509 signature into the message as soon as you enter the composer so you
22510 can choose to remove it or edit it on a message by message basis.
22511 Signature file placement in message replies is controlled by the
22512 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22513 setting in the feature list.
22516 The default file name is
22517 <!--chtml if pinemode="os_windows"-->
22518 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22519 PINERC file is a local file.
22520 If your PINERC file is remote, then it will be in the directory specified
22521 by the &quot;-aux local_directory&quot; command line option.
22522 <!--chtml else-->
22523 &quot;.signature&quot;.
22524 <!--chtml endif-->
22527 To create or edit your signature file choose Setup from the MAIN MENU
22528 and then select S for Signature (Main/Setup/Signature).  This puts you
22529 into the Signature Editor where you can enter a <EM>few</EM> lines of
22530 text containing your identity and affiliation.
22533 If the filename is followed by a vertical bar (|) then instead
22534 of reading the contents of the file the file is assumed to be a
22535 program that will produce the text to be used on its standard output.
22536 The program can't have any arguments and doesn't receive any input from Alpine,
22537 but the rest of the processing works as if the contents came from a file.
22540 Instead of storing the data in a local file, the
22541 signature data may be stored remotely in an IMAP folder.
22542 In order to do this, 
22543 you must use a remote name for the file.
22544 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22546 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22549 The syntax used here is the same as the syntax used for remote configuration
22550 files from the command line.
22551 Note that you may not access an existing signature file remotely,
22552 you have to create a new <EM>folder</EM> that contains the signature data.
22553 If the name you use here for the signature file is a remote name, then when
22554 you edit the file from the Setup/Signature command the data will be stored
22555 remotely in the folder.
22556 You aren't required to do anything special to create the folder, it
22557 gets created automatically if you use a remote name.
22560 Besides regular text, the signature file may also contain
22561 (or a signature program may produce) tokens that
22562 are replaced with text that usually depends on the message you are replying
22563 to or forwarding.
22564 For example, if the signature file contains the token
22566 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22568 anywhere in the text, then that token is replaced by the date
22569 the message you are replying to or forwarding was sent.
22570 If it contains
22572 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22574 that is replaced with the current date.
22575 The first is an example of a token that depends on the message you
22576 are replying to (or forwarding) and the second is an example which
22577 doesn't depend on anything other than the current date.
22578 You have to be a little careful with this facility since tokens that
22579 depend on the message you are replying to or forwarding will be replaced
22580 by nothing in the case where you are composing a new message from scratch.
22581 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22582 in this respect.
22583 It allows you to use different signature files in different cases.
22586 The list of tokens available for use in the signature file is
22587 <A HREF="h_index_tokens">here</A>.
22590 Instead of, or along with the use of &quot;roles&quot; to give you
22591 different signature files in different situations, there is also
22592 a way to conditionally include text based
22593 on whether or not a token would result in specific replacement text.
22594 For example, you could include some text based on whether or not
22595 the _NEWS_ token would result in any newsgroups if it was used.
22596 This is explained in detail
22597 <A HREF="h_reply_token_conditionals">here</A>.
22598 This isn't for the faint of heart.
22600 In the very unlikely event that you want to include a literal token
22601 in the signature you must precede it with a backslash character.
22602 For example,
22604 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22606 would produce something like
22608 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22610 It is not possible to have a literal backslash followed by an expanded token.
22612 An alternate method for storing the signature data is available by using the
22613 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22614 This variable will be used by default.
22616 <UL>   
22617 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22618 </UL><P>
22619 &lt;End of help on this topic&gt;
22620 </BODY>
22621 </HTML>
22622 ====== h_config_init_cmd_list =====
22623 <HTML>
22624 <HEAD>
22625 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22626 </HEAD>
22627 <BODY>
22628 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22630 The initial keystroke--or command--list option lets you start Alpine at
22631 any place you like.
22632 Whatever keystrokes you specify here will be executed
22633 by Alpine upon startup as a macro.
22634 The words SPACE, TAB, DOWN, UP, LEFT, and
22635 RIGHT indicate the pressing of those keys.
22636 CR indicates the pressing of the RETURN key.
22637 F1 through F12 represent the function keys, and ^ followed
22638 by a character indicates that key pressed along with the control key (in
22639 other words, ^P means Ctrl-P).
22640 As a shortcut notation, an element of the list may be several characters
22641 surrounded by double-quotes (").
22642 That will be expanded into the individual keystrokes
22643 (excluding the double-quote characters).
22644 For example, the quoted-string
22646 <P><CENTER>"ABC"</CENTER>
22649 is interpreted the same as the three separate list members
22651 <P><CENTER>A and B and C</CENTER>
22654 which is also the same as
22656 <P><CENTER>A,B,C</CENTER>
22659 An example: To view message 1 on startup,
22660 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22662 <P><CENTER>I,J,1,CR,V</CENTER>
22665 An equivalent version of this is
22667 <P><CENTER>"IJ1",CR,V</CENTER>
22670 Restrictions: You cannot pre-type into the composer with the initial
22671 keystroke list, and you cannot mix function key commands with letter
22672 commands.
22674 <P><UL>   
22675 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22676 </UL>
22678 &lt;End of help on this topic&gt;
22679 </BODY>
22680 </HTML>
22681 ====== h_config_comp_hdrs =====
22682 <html>
22683 <header>
22684 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22685 </header>
22686 <body>
22687 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22689 You can control which headers you want visible when composing outgoing
22690 email using this option.
22691 You can specify any of the regular set, any
22692 <A HREF="h_compose_richhdr">Rich Header</A>,
22693 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22694 that you have already defined.
22695 If you use this setting at all, you must specify all the
22696 headers you want to see, you can't just add to the regular header set.
22697 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22699 Note that the "Newsgroups:" header will be abbreviated in the Composer
22700 display, but should be spelled out in full here.<p>
22701 <UL>   
22702 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22703 </UL><P>
22704 &lt;End of help on this topic&gt;
22705 </body>
22706 </html>
22707 ====== h_config_custom_hdrs =====
22708 <HTML>
22709 <HEAD>
22710 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22711 </HEAD>
22712 <BODY>
22713 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22715 You may add your own custom headers to outgoing messages.
22716 Each header you specify here must include the header tag 
22717 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22718 and may optionally include a value for that header.
22719 If you want to see these custom headers each time you compose a message,
22720 you must add them to your
22721 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22722 otherwise they become part
22723 of the rich header set that you only see when you press the
22724 <A HREF="h_compose_richhdr">Rich Header</A>
22725 <!--chtml if pinemode="function_key"-->(F5)
22726 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22727 (If you are looking for a way to change which headers are <EM>displayed</EM>
22728 when you view a message, take a look at the
22729 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22730 option instead.)
22731 Here's an example that shows how you might set your From address
22733 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22735 and another showing how you might set a Reply-To address
22737 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22739 You may also set non-standard header values here.
22740 For example, you could add
22742 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22744 or even
22746 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22748 If you include a value after the colon then that header will be included
22749 in your outgoing messages unless you delete it before sending.
22750 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22751 it will not be included in outgoing messages unless you edit a value
22752 in manually.
22753 For example, if
22755 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22757 is in the list, then the Reply-To header will be available for editing
22758 but won't be included unless a value is added while in the composer.
22760 It's actually a little more complicated than that.
22761 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22762 defaults.
22763 If the message you are about to compose already has a value for a header,
22764 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22765 For example, if you are Replying to a message the Subject field
22766 will already be filled in.
22767 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22768 custom subject will <EM>NOT</EM> be used.
22769 The subject derived from the subject of the message you are Replying
22770 to will be used instead.
22772 It is also possible to make header setting even more complicated and more
22773 automatic by using
22774 <A HREF="h_rules_roles">Roles</A>,
22775 but if all you want to do is set a default value for a header, you don't
22776 need to think about Roles.
22778 If you change your From address you may also find it useful to add the
22779 changed From address to the
22780 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22781 configuration option.
22783 Limitation: Because commas are used to separate the list of
22784 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22785 header contain a comma.
22786 Nor is there currently an &quot;escape&quot; mechanism provided
22787 to make this work.
22788 <P><UL>
22789 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22790 </UL>
22792 &lt;End of help on this topic&gt;
22793 </BODY>
22794 </HTML>
22795 ====== h_config_viewer_headers =====
22796 <HTML>
22797 <HEAD>
22798 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22799 </HEAD>
22800 <BODY>
22801 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22803 You may change the default list of headers that are viewed by listing
22804 the headers you want to view here.  If the headers in your
22805 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22806 will be shown.  The order of the headers you list will be honored.  If
22807 the special value &quot;all-except&quot; is included as the first
22808 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22809 message except those in the list will be shown.  The values are all
22810 case insensitive.
22813 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22814 then the original default headers are ignored.  So, if you just wanted
22815 to add the header Organization to the list, you would have to list
22816 Organization plus all of the other headers originally in the default
22817 list.  If you just included Organization and nothing else, then you
22818 would see only the Organization header, nothing else.
22821 The default list of headers includes:
22822 <UL>
22823   <LI>From
22824   <LI>Resent-From
22825   <LI>To
22826   <LI>Resent-To
22827   <LI>Cc
22828   <LI>Resent-cc
22829   <LI>Bcc
22830   <LI>Newsgroups
22831   <LI>Followup-To
22832   <LI>Date
22833   <LI>Resent-Date
22834   <LI>Subject
22835   <LI>Resent-Subject
22836   <LI>Reply-To
22837 </UL>
22840 If you are looking for a way to control which headers are included in
22841 outgoing mail and are visible or not in the composer, take a look at the
22842 options
22843 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22844 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22845 this option.
22847 <UL>   
22848 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22849 </UL><P>
22850 &lt;End of help on this topic&gt;
22851 </BODY>
22852 </HTML>
22853 ====== h_config_viewer_margin_left =====
22854 <HTML>
22855 <HEAD>
22856 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22857 </HEAD>
22858 <BODY>
22859 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22861 This variable controls the left-hand vertical margin's width in
22862 Alpine's Message Viewing screen.
22863 Its value is the number of space characters preceding each displayed line.
22864 For consistency with
22865 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22866 you may specify the column number to start in
22867 (column numbering begins with number 1)
22868 instead of the width of the margin by appending a lower case letter
22869 &quot;c&quot; to the number.
22870 For example, a value of &quot;2c&quot; means to start the text in column two,
22871 which is entirely equivalent to a value of &quot;1&quot;, which means to
22872 leave a margin of 1 space.
22874 The default is a left margin of 0 (zero).
22875 Misconfigurations (for example, negative values or values with starting
22876 left columns greater than the ending right column)
22877 are silently ignored.
22878 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22879 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22880 instead.
22883 &lt;End of help on this topic&gt;
22884 </BODY>
22885 </HTML>
22886 ====== h_config_viewer_margin_right =====
22887 <HTML>
22888 <HEAD>
22889 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22890 </HEAD>
22891 <BODY>
22892 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22894 This variable controls the right-hand vertical margin's width in
22895 Alpine's Message Viewing screen.
22896 Its value is the number of space characters following each displayed line.
22897 You may specify the column number to end the text in
22898 (column numbering begins with number 1)
22899 instead of the width of the margin by appending a lower case letter
22900 &quot;c&quot; to the number.
22901 For example, a value of &quot;76c&quot; means to end the text in column 76.
22902 If the screen is 80 characters wide, this is equivalent to a value
22903 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22904 However, if you use different size screens at different times, then these
22905 two values are not equivalent.
22907 The default right margin is 4.
22908 Misconfigurations (for example, negative values or values with starting
22909 left columns greater than the ending right column)
22910 are silently ignored.
22911 If the number of columns for text between the
22912 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22913 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22914 instead.
22917 &lt;End of help on this topic&gt;
22918 </BODY>
22919 </HTML>
22920 ====== h_config_quote_suppression =====
22921 <HTML>
22922 <HEAD>
22923 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22924 </HEAD>
22925 <BODY>
22926 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22928 This option should be used with care.
22929 It will cause some of the quoted text to be eliminated from the
22930 display when viewing a message in the MESSAGE TEXT screen.
22931 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22932 value &quot;5&quot;,
22933 this will cause quoted text that is longer than five lines to be truncated.
22934 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22935 Quoted text of more than six lines will have the first five lines displayed
22936 followed by a line that looks something like
22938 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22940 As a special case, if exactly one line of quoted text would be hidden, the
22941 entire quote will be shown instead.
22942 So for the above example, quoted text that is exactly six lines long will
22943 will be shown in its entirety.
22944 (In other words, instead of hiding a single line and adding a line
22945 that announces that one line was hidden, the line is just shown.)
22947 If the sender of a message has carefully chosen the quotes that he or she
22948 includes, hiding those quotes may change the meaning of the message.
22949 For that reason, Alpine requires that when you want to set the value of this
22950 variable to something less than four lines, you actually have to set it
22951 to the negative of that number.
22952 So if you want to set this option to &quot;3&quot;, you actually have to
22953 set it to &quot;-3&quot;.
22954 The only purpose of this is to get you to think about whether or not you
22955 really want to do this!
22956 If you want to delete all quoted text you set the value of this option
22957 to the special value &quot;-10&quot;.
22959 The legal values for this option are
22961 <TABLE>   
22962 <TR>
22963   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22964   <TD> Default, don't hide anything </TD>
22965 </TR>
22966 <TR>
22967   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22968   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22969 </TR>
22970 <TR>
22971   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22972   <TD> Suppress if more than that many lines </TD>
22973 </TR>
22974 <TR>
22975   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22976   <TD> Suppress all quoted lines </TD>
22977 </TR>
22978 </TABLE>
22980 If you set this option to a non-default value you may sometimes wish to
22981 view the quoted text that is not shown.
22982 When this is the case, the
22983 <A HREF="h_common_hdrmode">HdrMode Command</A>
22984 may be used to show the hidden text.
22985 Typing the &quot;H&quot; command once will show the hidden text.
22986 Typing a second &quot;H&quot; will also turn on Full Header mode.
22987 The presence or absence of the HdrMode command is determined by the
22988 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22989 Feature-List option in your Alpine configuration, so you will want to
22990 be sure that is turned on if you use quote suppression.
22992 For the purposes of this option, a quote is a line that begins with the
22993 character &quot;&gt;&quot;.
22995 Quotes are only suppressed when displaying a message on the screen.
22996 The entire quote will be left intact when printing or forwarding or something
22997 similar.
22999 &lt;End of help on this topic&gt;
23000 </BODY>
23001 </HTML>
23002 ====== h_config_saved_msg_name_rule =====
23003 <HTML>
23004 <HEAD>
23005 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
23006 </HEAD>
23007 <BODY>
23008 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
23010 This option determines the default folder name when saving
23011 a message.
23014 The default option is &quot;default-folder&quot;, which is the folder
23015 called &quot;saved-messages&quot; in Unix Alpine and
23016 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
23017 the Alpine option called
23018 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
23021 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
23022 get the chosen option's value for the message being saved (or for the
23023 first message being saved if using an aggregrate save).
23024 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
23025 value of who the message came from (i.e. the from address).
23026 Alpine then attempts to save the message to a folder matching that value.
23027 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
23028 &quot;by-sender&quot;.
23029 The opposite is also true.
23030 If &quot;by-recipient&quot; is chosen and the message was posted to a
23031 newsgroup, Alpine will use the newsgroup name.
23032 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
23033 &quot;by-from&quot;.
23036 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
23037 to use the personal name part of the address instead of the mailbox part.
23038 If any of the &quot;by-nick&quot; options are chosen, the
23039 address is looked up in your address book and if found, the
23040 nickname for that entry is used.
23041 Only simple address book entries are checked, not distribution lists.
23042 Similarly, if any of the
23043 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23044 address book entry is used.
23045 If by-realname, or the by-nick or by-fcc lookups result in no value,
23046 then if the chosen option ends with the &quot;then-from&quot;,
23047 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23048 or &quot;then-recip&quot; suffix, Alpine
23049 reverts to the same behavior as &quot;by-from&quot;,
23050 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23051 depending on which option was specified.
23052 If the chosen option doesn't end with one of
23053 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23054 folder when no match is found in the address book.
23057 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23058 to save to the folder that you saved to the last time you saved a
23059 message.  The first time you save a message in an Alpine session, Alpine
23060 attempts to save the message to the default folder.
23063 Here is an example to make some of the options clearer.
23064 If the message is From
23066 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23068 and this rule is set to &quot;by-from&quot;, then the default folder offered
23069 in the save dialog would be &quot;flint&quot;.
23071 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23072 be &quot;Fred Flintstone&quot;.
23074 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23075 for the address &quot;flint@bedrock.org&quot; in your address book.
23076 If an entry is found and it has a nickname associated with it, that nickname
23077 will be offered as the default folder.
23078 If not, the default saved message folder will be offered as the default.
23080 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23081 for the address &quot;flint@bedrock.org&quot; in your address book.
23082 If an entry is found and it has an Fcc associated with it, that Fcc
23083 will be offered as the default folder.
23084 If not, the default saved message folder will be offered as the default.
23086 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23087 for the address &quot;flint@bedrock.org&quot; in your address book.
23088 If an entry is found and it has a nickname associated with it, that nickname
23089 will be offered as the default folder.
23090 If it is not found (or has no nickname) then the default offered will be
23091 the same as it would be for the &quot;by-from&quot; rule.
23092 That is, it would be &quot;flint&quot;
23094 <UL>   
23095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23096 </UL><P>
23097 &lt;End of help on this topic&gt;
23098 </BODY>
23099 </HTML>
23100 ====== h_config_fcc_rule =====
23101 <HTML>
23102 <HEAD>
23103 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23104 </HEAD>
23105 <BODY>
23106 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23108 This option determines the default name for folder carbon copy. Choose
23109 one:
23111 <DL>
23112 <DT>default-fcc</DT>
23113 <DD>This is the normal default, the value of which is set in the
23114 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
23115 configuration.
23116 </DD>
23118 <DT>last-fcc-used</DT>
23119 <DD> Causes Alpine to use the folder that was last
23120 used in the fcc field
23121 </DD>
23123 <DT>by-nickname</DT>
23124 <DD>Means that Alpine will use the nickname
23125 from your address book that matches the first address in the To line.
23126 If there is no match, it will use the value of the
23127 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
23128 </DD>
23130 <DT>by-recipient</DT>
23131 <DD>Means Alpine will form a folder name
23132 based on the left hand side of the first address in the To line.
23133 </DD>
23135 <DT>by-nick-then-recip</DT>
23136 <DD>Means that it will use the
23137 matching nickname from your address book if there is one, otherwise it
23138 will extract the recipient name from the address and use that (like
23139 by-recipient).
23140 </DD>
23142 <DT>current-folder</DT>
23143 <DD>Causes a copy to be written to
23144 the currently open folder, unless that is the INBOX.  In the case
23145 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
23146 used instead.
23147 </DD>
23148 </DL>
23151 Note: Whatever the fcc specified by the rule here, it will be
23152 over-ridden by any fcc entries you have in your address book.
23155 <UL>   
23156 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23157 </UL><P>
23158 &lt;End of help on this topic&gt;
23159 </BODY>
23160 </HTML>
23161 ====== h_config_sort_key =====
23162 <HTML>
23163 <HEAD>
23164 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
23165 </HEAD>
23166 <BODY>
23167 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
23169 This option determines the order in which messages will be displayed in
23170 the MESSAGE INDEX screen.  Choose from:
23172 <UL>
23173  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23174  <LI> <A HREF="h_index_sort_date">Date</A>
23175  <LI> <A HREF="h_index_sort_subj">Subject</A>
23176  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23177  <LI> <A HREF="h_index_sort_thread">Thread</A>
23178  <LI> <A HREF="h_index_sort_from">From</A>
23179  <LI> <A HREF="h_index_sort_size">Size</A>
23180  <LI> <A HREF="h_index_sort_score">Score</A>
23181  <LI> <A HREF="h_index_sort_to">To</A>
23182  <LI> <A HREF="h_index_sort_cc">Cc</A>
23183 </UL>
23186 Each type of sort may also be reversed.
23187 Normal default is by &quot;Arrival&quot;.
23190 A possible point of confusion arises when you change the configuration
23191 of the <!--#echo var="VAR_sort-key"-->.
23192 The folder will normally be re-sorted when you go back to viewing the
23193 index.
23194 However, if you have manually sorted the folder with the
23195 Sort
23196 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23197 command, then it will not be re-sorted until the next time it is opened.
23200 <UL>   
23201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23202 </UL><P>
23203 &lt;End of help on this topic&gt;
23204 </BODY>
23205 </HTML>
23206 ====== h_config_other_startup =====
23207 <HTML>
23208 <HEAD>
23209 <TITLE>OPTION: Set Startup Rule</TITLE>
23210 </HEAD>
23211 <BODY>
23212 <H1>OPTION: Set Startup Rule</H1>
23214 This option determines which message will be the <EM>current message</EM> when
23215 the folder is first opened.
23216 It works the same way that the option
23217 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23218 works, so look there for help.
23219 It may be used for any folder, not just incoming folders.
23222 <UL>   
23223 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23224 </UL><P>
23225 &lt;End of help on this topic&gt;
23226 </BODY>
23227 </HTML>
23228 ====== h_config_perfolder_sort =====
23229 <HTML>
23230 <HEAD>
23231 <TITLE>Set Sort Order</TITLE>
23232 </HEAD>
23233 <BODY>
23234 <H1>Set Sort Order</H1>
23236 This option determines the order in which messages will be displayed in
23237 the MESSAGE INDEX screen when the Current Folder Type set in the
23238 Pattern is a match. Choose from:
23240 <UL>
23241  <LI> <A HREF="h_index_sort_default">Default</A>
23242  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23243  <LI> <A HREF="h_index_sort_date">Date</A>
23244  <LI> <A HREF="h_index_sort_subj">Subject</A>
23245  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23246  <LI> <A HREF="h_index_sort_thread">Thread</A>
23247  <LI> <A HREF="h_index_sort_from">From</A>
23248  <LI> <A HREF="h_index_sort_size">Size</A>
23249  <LI> <A HREF="h_index_sort_score">Score</A>
23250  <LI> <A HREF="h_index_sort_to">To</A>
23251  <LI> <A HREF="h_index_sort_cc">Cc</A>
23252 </UL>
23255 Each type of sort may also be reversed.
23256 Normal default is by &quot;Arrival&quot;.
23259 A possible point of confusion arises when you change the configuration
23260 of the Sort Order for the currently open folder.
23261 The folder will normally be re-sorted when you go back to viewing the
23262 index.
23263 However, if you have manually sorted the folder with the
23264 Sort
23265 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23266 command, then it will not be re-sorted until the next time it is opened.
23269 <UL>   
23270 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23271 </UL><P>
23272 &lt;End of help on this topic&gt;
23273 </BODY>
23274 </HTML>
23275 ====== h_config_fld_sort_rule =====
23276 <HTML>
23277 <HEAD>
23278 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23279 </HEAD>
23280 <BODY>
23281 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23283 This option controls the order in which folder list entries will be
23284 presented in the FOLDER LIST screen.  Choose one of the following:
23286 <DL>
23287 <DT>Alphabetical</DT>
23288 <DD>sort by alphabetical name independent of type
23289 </DD>
23291 <DT>Alpha-with-dirs-last</DT>
23292 <DD>sort by alphabetical name grouping directory entries
23293 to the end of the list
23294 </DD>
23296 <DT>Alpha-with-dirs-first</DT>
23297 <DD>sort by alphabetical name grouping directory entries
23298 to the start of the list
23299 </DD>
23300 </DL>
23302 The normal default is &quot;Alphabetical&quot;.
23305 <UL>   
23306 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23307 </UL><P>
23308 &lt;End of help on this topic&gt;
23309 </BODY>
23310 </HTML>
23311 ====== h_config_ab_sort_rule =====
23312 <HTML>
23313 <HEAD>
23314 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23315 </HEAD>
23316 <BODY>
23317 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23319 This option controls the order in which address book entries will be
23320 presented.  Choose one of the following:
23322 <DL>
23323 <DT>fullname</DT>
23324 <DD>use fullname field, lists mixed in
23325 </DD>
23327 <DT>fullname-with-lists-last</DT>
23328 <DD>use fullname field, but put lists at end
23329 </DD>
23331 <DT>nickname</DT>
23332 <DD>use nickname field, lists mixed in
23333 </DD>
23335 <DT>nickname-with-lists-last</DT>
23336 <DD>use nickname field, but put lists at end
23337 </DD>
23339 <DT>dont-sort</DT>
23340 <DD>don't change order of file
23341 </DD>
23342 </DL>
23345 The normal default is &quot;fullname-with-lists-last&quot;.
23346 If you use an address book from more than one computer and those
23347 computers sort the address book differently then the sort order
23348 will be the order where the last change to the address book was
23349 made.
23350 There are two reasons the sorting might be different on different
23351 systems.
23352 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23353 places.
23354 Second, the collation rules on the two computers may be different.
23355 For example, one system might ignore special characters while the other
23356 doesn't or one may sort upper and lower case letters together while
23357 the other doesn't.
23358 In any case, the order you see is the order on the system where the
23359 last change was made, for example by an address book edit or a
23360 Take Address command.
23363 <UL>   
23364 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23365 </UL><P>
23366 &lt;End of help on this topic&gt;
23367 </BODY>
23368 </HTML>
23369 ====== h_config_post_char_set =====
23370 <HTML>
23371 <HEAD>
23372 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23373 </HEAD>
23374 <BODY>
23375 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23377 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23378 when sending messages.
23382 When sending a message the text typed in the composer is
23383 labeled with the character set specified by this option.
23384 If the composed text is not fully representable in the 
23385 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23386 instead;
23389 Attachments are labeled with your
23390 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23393 Generally, there should be little need to set this option.
23394 If left unset, the
23395 default behavior is to label composed text as specifically as
23396 possible.  That is, if the composed text has no non-ASCII characters,
23397 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23398 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23399 attempt to automatically detect a number of character sets including ISO-8859-15,
23400 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23401 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23402 If the message contains a mix of character sets,
23403 it is labeled as &quot;UTF-8.&quot;
23407 This setting is provided to allow you to force a particular character set that
23408 Alpine does not automatically detect. For example, if a message is representable
23409 in more than one character set then Alpine may choose a different default
23410 than you want.
23411 Lastly, by setting this option explicitly to
23412 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23413 &quot;UTF-8&quot; instead of something more specific.
23416 In the Setup/Config screen you may choose from a list of all the
23417 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23420 The options
23421 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23422 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23423 are closely related.
23424 Setting the feature
23425 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23426 should cause this option to be ignored.
23429 <UL>   
23430 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23431 </UL><P>
23432 &lt;End of help on this topic&gt;
23433 </BODY>
23434 </HTML>
23435 ====== h_config_unk_char_set =====
23436 <HTML>
23437 <HEAD>
23438 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23439 </HEAD>
23440 <BODY>
23441 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23443 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23444 when reading or replying to messages.
23448 A text message should either be made up of all US-ASCII characters
23449 or it should contain a charset label which tells the software which
23450 character set encoding to use to interpret the message.
23451 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23452 This message is outside of the standards so any attempt to read it could fail.
23453 When Alpine attempts to read such a message it will try to interpret the
23454 text in the character set you specify here.
23455 For example, if you have correspondents who send you unlabeled messages that
23456 are usually made up of characters from the WINDOWS-1251 character set, setting
23457 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23458 allow you to read those messages.
23459 Of course, if the unlabeled message is actually in some other character set,
23460 then you may see garbage on your screen.
23462 Instead of just unlabeled text, this option also affects text which is labeled
23463 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23464 or &quot;US-ASCII&quot;.
23467 In the Setup/Config screen you may choose from a list of all the
23468 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23471 <UL>   
23472 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23473 </UL><P>
23474 &lt;End of help on this topic&gt;
23475 </BODY>
23476 </HTML>
23477 ====== h_config_char_set =====
23478 <HTML>
23479 <HEAD>
23480 <TITLE>OPTION: Display Character Set</TITLE>
23481 </HEAD>
23482 <BODY>
23483 <H1>OPTION: Display Character Set</H1>
23485 The Display Character Set configuration option is used when viewing messages.
23487 Alpine uses Unicode characters internally and 
23488 it is a goal for Alpine to handle email in many different languages.
23489 Alpine will properly display only left-to-right character sets
23490 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23491 font is in use, in the sense that
23492 characters are assumed to take up zero, one, or two character cell
23493 widths from left to right on the screen. This is true even in PC-Alpine.
23496 Alpine recognizes some local character sets that are right-to-left
23497 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23498 (Arabic) and properly converts texts in these character sets to/from
23499 Unicode; however, there are known display bugs with these character
23500 sets.
23503 There are three possible configuration character settings and some
23504 environment variable settings that can affect how Alpine
23505 handles international characters.
23506 The first two of these are only available in UNIX Alpine.
23507 The three configuration options are
23508 Display Character Set,
23509 Keyboard Character Set, and
23510 <!--#echo var="VAR_posting-character-set"-->.
23511 The Keyboard Character Set defaults to being the same value
23512 as the Display Character Set, and that is usually correct, because
23513 the keyboard almost always produces characters in the same character set
23514 as the display displays.
23515 The Display Character Set is the character set that Alpine
23516 will attempt to use when sending characters to the display.
23519 By default, the Display Character Set variable is not set and UNIX Alpine
23520 will attempt to get this information from the environment.
23521 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23522 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23523 An explicit configuration setting for Display Character Set will,
23524 of course, override any default setting.
23526 For PC-Alpine the Display Character Set
23527 and the Keyboard Character Set
23528 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23531 It is probably best to use UNIX Alpine in a terminal emulator
23532 capable of displaying UTF-8 characters, since that will allow you to
23533 view just about any received text that is correctly formatted (note,
23534 however, the above comments about known index display bugs with certain
23535 character sets). You'll need to have an emulator that uses a UTF-8 font
23536 and you'll need to set up your environment to use a UTF-8 charmap. For
23537 example, on a Linux system you might include
23539 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23542 or something similar in your UNIX startup files.
23543 You'd also have to select a UTF-8 font in your terminal emulator.
23546 The types of values that the character set variables may be set to are
23547 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23548 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23549 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23550 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23551 In the Setup/Config screen you may choose from a list of all the
23552 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23553 Here is a list of many of the possible character sets:
23556 <TABLE>
23557 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23558 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23559 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23560 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23561 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23562 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23563 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23564 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23565 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23566 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23567 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23568 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23569 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23570 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23571 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23572 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23573 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23574 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23575 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23576 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23577 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23578 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23579 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23580 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23581 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23582 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23583 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23584 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23585 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23586 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23587 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23588 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23589 </TABLE>
23592 When reading incoming email, Alpine understands many different
23593 character sets and is able to convert the incoming mail into Unicode.
23594 The Unicode will be converted to the Display Character Set
23595 for display on your terminal.
23596 Characters typed at the keyboard will be converted from the
23597 Keyboard Character Set to Unicode for Alpine's internal
23598 use.
23599 You may find that you can read some malformed messages that do not
23600 contain a character set label by setting the option
23601 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23604 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23605 The default behavior obtained by leaving this variable unset is usually
23606 what is wanted. In that default case, Alpine will attempt
23607 to label the message with the most specific character set from the
23608 rather arbitrary set
23610 US-ASCII, ISO-8859-15,
23611 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23612 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23615 For example, if the message is made up of only US-ASCII characters, it
23616 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23617 that will be the label. If that doesn't work the same is tried for the
23618 remaining members of the list.
23621 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23622 explicit value instead.
23623 For example, if you usually send messages in Greek, setting this
23624 option to ISO-8859-7 will result in messages being labeled as
23625 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23626 are only Greek characters, or UTF-8 if there are some characters
23627 that aren't representable in ISO-8859-7.
23628 Another possibility is to set this option explicitly to UTF-8.
23629 In that case
23630 Alpine labels only ascii messages as US-ASCII and all other
23631 messages as UTF-8.
23634 The options
23635 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23636 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23637 are closely related to this option.
23638 Setting the feature
23639 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23640 should cause this option to be ignored.
23643 When displaying a message, Alpine compares this setting to the character
23644 set specified in the message.  If not all of the
23645 characters in the message can be displayed using the Display Character Set
23646 then Alpine places an editorial
23647 comment in the displayed text (enclosed in square-brackets) indicating
23648 that some characters may not be displayed correctly.
23649 This comment may be eliminated by turning on the option
23650 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23653 <UL>   
23654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23655 </UL><P>
23656 &lt;End of help on this topic&gt;
23657 </BODY>
23658 </HTML>
23659 ====== h_config_key_char_set =====
23660 <HTML>
23661 <HEAD>
23662 <TITLE>OPTION: Keyboard Character Set</TITLE>
23663 </HEAD>
23664 <BODY>
23665 <H1>OPTION: Keyboard Character Set</H1>
23667 UNIX Alpine only.
23669 The Keyboard Character Set identifies the character set of the characters
23670 coming from your keyboard.
23671 It defaults to having the same value as your
23672 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23673 which in turn defaults to a value obtained from your environment.
23674 It is unlikely that you will need to use this option, because the keyboard
23675 almost always produces the same kind of characters as the display displays.
23678 This character set is also used when accessing files in your local
23679 file system.
23680 The names of the files are assumed to be in the same character set as
23681 what the keyboard produces, as well as the contents of the files.
23684 In the Setup/Config screen you may choose from a list of all the
23685 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23688 The options
23689 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23690 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23691 are closely related.
23692 Setting the feature
23693 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23694 should cause this option to be ignored.
23697 <UL>   
23698 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23699 </UL><P>
23700 &lt;End of help on this topic&gt;
23701 </BODY>
23702 </HTML>
23703 ====== h_config_editor =====
23704 <HTML>
23705 <HEAD>
23706 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23707 </HEAD>
23708 <BODY>
23709 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23711 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23712 normally an alternative to Alpine's internal composer (Pico).  You could use
23713 this setting to specify an alternate editor to use occasionally or if you
23714 have a favorite editor and want to use it all the time (see the 
23715 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23716 If you specify multiple editors for this option, ^_ will invoke the first one 
23717 of those specified that exists and is executable.  When specifying a program 
23718 for use here, make sure that the format of the text it saves -- which, when 
23719 you exit it, will become the message body in Alpine -- is appropriate 
23720 for the body of an email message; avoid proprietary formats that may result in 
23721 a message body that the recipient of your message will be unable to decipher.
23723 <!--chtml if pinemode="os_windows"-->
23724 <!--chtml else-->
23725 If you are in doubt about what editors are available on your system, or which 
23726 of them may be appropriate for specification here, ask your local computing 
23727 support staff.  
23728 <!--chtml endif-->
23730 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23731 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23732 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23733 use that.
23735 <P><UL>
23736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23737 </UL>
23739 &lt;End of help on this topic&gt;
23740 </BODY>
23741 </HTML>
23742 ====== h_config_speller =====
23743 <HTML>
23744 <HEAD>
23745 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23746 </HEAD>
23747 <BODY>
23748 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23750 UNIX Alpine only.
23752 For PC-Alpine, you must install the aspell library code that you
23753 may get from
23754 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23756 This option affects the behavior of the ^T (spell check) command in the
23757 Composer.  It specifies the program invoked by ^T in the Composer.
23758 By default, Alpine uses
23760 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23762 if it knows where to find &quot;aspell&quot;.
23763 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23764 then the command used is
23766 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23768 Otherwise, the ancient &quot;spell&quot; command is used.
23770 If you specify a value for this command (with full pathname) then that is what
23771 will be used instead of any of the defaults.
23772 When invoking this
23773 spell-checking program, Alpine appends a tempfile name (where the message is
23774 passed) to the command line. Alpine expects the speller to correct the
23775 spelling in that file. When you exit from that program Alpine will read the
23776 tempfile back into the composer.
23778 Don't set this speller option to the standard Unix spell command.
23779 That won't work because spell works in a different way.
23782 <UL>   
23783 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23784 </UL><P>
23785 &lt;End of help on this topic&gt;
23786 </BODY>
23787 </HTML>
23788 ====== h_config_aspell_dictionary =====
23789 <HTML>
23790 <HEAD>
23791 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23792 </HEAD>
23793 <BODY>
23794 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23796 PC Alpine only.
23798 This option specifies a list of dictionaries you will use with
23799 aspell. A sample entry is &quot;en_US&quot; for american english, or
23800 &quot;en_GB&quot; for brittish english.
23803 <UL>   
23804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23805 </UL><P>
23806 &lt;End of help on this topic&gt;
23807 </BODY>
23808 </HTML>
23809 ====== h_config_display_filters =====
23810 <HTML>
23811 <HEAD>
23812 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23813 </HEAD>
23814 <BODY>
23815 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23817 This option defines a list of text-filtering commands (programs or
23818 scripts) that may be used to filter text portions of received messages
23819 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23820 display screen, exporting to a text file).  
23821 For security reasons, the full path name of the
23822 filter command must be specified.
23825 The command is executed and the message is piped into its standard input. 
23826 The standard output of the command is read back by Alpine.  The
23827 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23829 <P> 
23830 The filter's use is based on the configured &quot;trigger&quot; string.  The
23831 format of a filter definition is:
23833 <P>   
23834 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23837 You can specify as many filters as you wish, separating them with a comma.  
23838 Each filter can have only one trigger and command.  Thus, two trigger 
23839 strings that invoke the same command require separate filter 
23840 specifications. 
23842 <P> 
23843 The &quot;trigger&quot; is simply text that, if found in the message,
23844 will invoke the associated command.  If the trigger contains any space
23845 characters, it must be placed within quotes.  Likewise, should you
23846 wish a filter to be invoked unconditionally, define the trigger as the
23847 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23848 trigger string is found anywhere in the text of the message the filter
23849 is invoked.  Placing the trigger text within the tokens defined below
23850 changes where within the text the trigger must be before considering
23851 it a match.
23853 <P>  
23854 Trigger Modifying Tokens:
23855 <DL>
23856 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23857 <DD>This token tells Alpine to invoke the supplied command
23858 if the text is in a character set matching <VAR>string</VAR>
23859 (e.g., ISO-8859-2 or ISO-2022-JP).
23860 </DD>
23863 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23864 <DD>This token tells Alpine to invoke the supplied command
23865 if the enclosed <VAR>string</VAR> is found to be the first
23866 non-whitespace text.
23867 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23868 the space character.
23869 </DD>
23871 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23872 <DD>This token tells Alpine to invoke the supplied command
23873 if the enclosed <VAR>string</VAR> is found at the beginning
23874 of any line in the text.
23875 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23876 the space character.
23877 </DD>
23878 </DL>
23881 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23882 the command line to be invoked if the trigger string is found.  Below
23883 are tokens that Alpine will recognize and replace with special values
23884 when the command is actually invoked.
23887 Command Modifying Tokens:
23889 <DL>
23890 <DT>_TMPFILE_</DT>
23891 <DD>When the command is executed, this token is 
23892 replaced with the path and name of the temporary 
23893 file containing the text to be filtered.  Alpine 
23894 expects the filter to replace this data with the 
23895 filter's result.
23898 NOTE: Use of this token implies that the text to 
23899 be filtered is not piped into standard input of the 
23900 executed command and its standard output is ignored. 
23901 Alpine restores the tty modes before invoking the
23902 filter in case the filter interacts with the user
23903 via its own standard input and output.  
23904 </DD>
23905                         
23906 <DT>_RESULTFILE_</DT>
23907 <DD>When the command is executed, this token is 
23908 replaced with the path and name of a temporary 
23909 file intended to contain a status message from the 
23910 filter.  Alpine displays this in the message status 
23911 field. 
23912 </DD>
23914 <DT>_DATAFILE_</DT>
23915 <DD>When the command is executed, this token is 
23916 replaced with the path and name of a temporary 
23917 file that Alpine creates once per session and deletes 
23918 upon exit.  The file is intended to be used by the 
23919 filter to store state information between instances 
23920 of the filter.
23921 </DD>
23922    
23923 <DT>_PREPENDKEY_</DT>
23924 <DD>When the command is executed, this token indicates that a random
23925 number will be passed down the input stream before the message text.
23926 This number could be used as a session key.  It is sent in this way to
23927 improve security.  The number is unique to the current Alpine session
23928 and is only generated once per session.
23929 </DD>
23931 <DT>_SILENT_</DT>
23932 <DD>When the filter is executed, this token tells Alpine not to repaint
23933 the screen while the command is being executed. This can be used with 
23934 filters that do not interact with the user, and therefore repainting 
23935 the screen is not necessary. 
23936 </DD>
23937 </DL>
23940 The feature
23941 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23943 Performance caveat/considerations:
23944 <BR>
23945 Testing for the trigger and invoking the filter doesn't come for free.
23946 There is overhead associated with searching for the trigger string, testing
23947 for the filter's existence and actually piping the text through the filter.
23948 The impact can be reduced if the Trigger Modifying Tokens above are 
23949 employed.
23951 &lt;End of help on this topic&gt;
23952 </BODY>
23953 </HTML>
23954 ====== h_config_sending_filter =====
23955 <HTML>
23956 <HEAD>
23957 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23958 </HEAD>
23959 <BODY>
23960 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23961       
23962 This option defines a list of text-filtering commands (programs and
23963 scripts) that may be selectively invoked to process a message just before
23964 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23965 select which filter (or none) to apply to the message before it is sent. 
23966 For security reasons, the full path of the filter program must be
23967 specified.
23970 Command Modifying Tokens:
23972 <DL>
23973 <DT>_RECIPIENTS_</DT>
23974 <DD>When the command is executed, this token is replaced 
23975 with the space delimited list of recipients of the 
23976 message being sent. 
23977 </DD>
23978         
23979 <DT>_TMPFILE_</DT>
23980 <DD>
23981 When the command is executed, this token is 
23982 replaced with the path and name of the temporary 
23983 file containing the text to be filtered.  Alpine 
23984 expects the filter to replace this data with the 
23985 filter's result.
23988 NOTE: Use of this token implies that the text to 
23989 be filtered is not piped into standard input of the 
23990 executed command and its standard output is ignored. 
23991 Alpine restores the tty modes before invoking the
23992 filter in case the filter interacts with the user
23993 via its own standard input and output.  
23994 </DD>
23995                         
23996 <DT>_RESULTFILE_</DT>
23997 <DD>When the command is executed, this token is 
23998 replaced with the path and name of a temporary 
23999 file intended to contain a status message from the 
24000 filter.  Alpine displays this in the message status 
24001 field. 
24002 </DD>
24004 <DT>_DATAFILE_</DT>
24005 <DD>When the command is executed, this token is replaced 
24006 in the command line with the path and name of a 
24007 temporary file that Alpine creates once per session 
24008 and deletes upon exit.  The file is intended to be 
24009 used by the filter to store state information between 
24010 instances of the filter.
24011 </DD>
24012    
24013 <DT>_PREPENDKEY_</DT>
24014 <DD>When the command is executed, this token indicates 
24015 that a random number will be passed down the input 
24016 stream before the message text.  This number could 
24017 be used as a session key.  It is sent in this way 
24018 to improve security.  The number is unique to the 
24019 current Alpine session and is only generated once per 
24020 session. 
24021 </DD>
24023 <DT>_INCLUDEALLHDRS_</DT>
24024 <DD>When the command is executed, this token indicates 
24025 that the headers of the message will be passed down the input stream
24026 before the message text.
24027 </DD>
24029 <DT>_MIMETYPE_</DT>
24030 <DD>When the command is executed, this token is replaced in the
24031 command name with a temporary file name used to accept any new MIME
24032 Content-Type information necessitated by the output of the filter.
24033 Upon the filter's exit, if the file contains new MIME type
24034 information, Alpine verifies its format and replaces the outgoing
24035 message's MIME type information with that contained in the file. This
24036 is basically a cheap way of sending something other than Text/Plain.
24037 </DD>
24038 </DL>
24040 <P>   
24041 NOTE: Only the body text, which is visible in the Composer, is piped
24042 through this filter.  Attachments are not sent to the filter.
24043 <P>   
24044 Sending filters are not used if the feature
24045 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24047 <UL>   
24048 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24049 </UL><P>
24050 &lt;End of help on this topic&gt;
24051 </BODY>
24052 </HTML>
24053 ====== h_config_keywords =====
24054 <HTML>
24055 <HEAD>
24056 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24057 </HEAD>
24058 <BODY>
24059 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24061 You may define your own set of keywords and optionally set them on a
24062 message by message basis.
24063 These are similar to the &quot;Important&quot; flag which the user
24064 may set using the Flag command.
24065 The difference is that the Important flag is always present for each folder.
24066 User-defined keywords are chosen by the user.
24067 You may set up the list of possible keywords here, or you may add keywords
24068 from the Flag Details screen that you
24069 can get to after typing the
24070 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24071 command.
24072 After the keywords have been defined,
24073 then you use the <A HREF="h_common_flag">Flag command</A>
24074 to set or clear the keywords in each message.
24075 The behavior of the flag command may be modified by using the
24076 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24077 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24080 Keywords may be used when Selecting messages (Select Keyword).
24081 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24082 Filter Rules may be used to set keywords automatically.
24083 Keywords may be displayed as part of the Subject of a message by using
24084 the SUBJKEY or SUBJKEYINIT tokens in the
24085 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24086 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24087 option may be used to modify the display of keywords using
24088 SUBJKEY and SUBJKEYINIT slightly.
24089 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24090 screen by using the KEY or KEYINIT tokens.
24091 It is also possible to color keywords in the index using the
24092 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24093 Keywords are not supported by all mail servers.
24096 You may give keywords nicknames if you wish.
24097 If the keyword definition you type in contains a SPACE character, then the
24098 actual value of the keyword is everything after the last SPACE and the
24099 nickname for that keyword is everything before the last SPACE.
24100 For example, suppose you are trying to interoperate with another email program
24101 that uses a particular keyword with an unpleasant name.
24102 Maybe it uses a keyword called
24104 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24106 but for you that keyword means that the message is work-related.
24107 You could define a keyword to have the value
24109 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24111 and then you would use the name &quot;Work&quot; when dealing with
24112 that keyword in Alpine.
24113 If you defined it as
24115 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
24117 the nickname would be everything before the last SPACE, that is the nickname
24118 would be &quot;My Work&quot;.
24120 Some commonly used keywords begin with dollar signs.
24121 This presents a slight complication, because the dollar sign is normally used
24122 to signify
24123 <A HREF="h_news_config">environment variable expansion</A>
24124 in the Alpine configuration.
24125 In order to specify a keyword that begins with a dollar sign you must
24126 precede the dollar sign with a second dollar sign to escape its special
24127 meaning.
24128 For example, if you want to include the keyword
24130 <CENTER><SAMP>$Label1</SAMP></CENTER>
24132 as one of your possible keywords, you must enter the text
24134 <CENTER><SAMP>$$Label1</SAMP></CENTER>
24137 instead.
24139 There are a couple limitations.
24140 First, not all servers support keywords.
24141 Second, some servers (including the IMAP server included with Alpine)
24142 have a per folder limit on the number of keywords that may be defined.
24143 This count commonly includes every keyword you have ever used in the
24144 folder, even if it is no longer being used.
24145 In other words, you can add keywords but you cannot remove them easily.
24146 If you have changed keywords over the life of a folder and find that
24147 you have reached such a limit, one possible solution might be to copy
24148 all of the messages to a newly created folder (using Alpine) and then
24149 delete the original and rename the new folder.
24150 The reason this might work is that only the keywords currently set in
24151 any of the messages will be used in the new folder, hopefully putting you
24152 under the limit.
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_alt_addresses =====
24162 <HTML>
24163 <HEAD>
24164 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
24165 </HEAD>
24166 <BODY>
24167 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
24169 This option provides a place for you to list alternate email addresses
24170 you may have.
24171 Each address in the list should be the actual email address part of an
24172 address, without the full name field or the angle brackets.
24173 For example:
24176 <CENTER><SAMP>user@example.com</SAMP></CENTER>
24179 The matching is case-insensitive, so this would match any of
24180 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
24181 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
24184 If set, the option affects the behavior of the Reply
24185 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
24186 a message has been addressed specifically to you.
24189 In the default INDEX display
24190 the personal name (or email address) of
24191 the person listed in the message's &quot;From:&quot; header
24192 field is usually displayed except when that address is yours or one of your
24193 alternate addresses.
24194 In that case you will usually see the name of
24195 the first person specified in the
24196 message's &quot;To:&quot; header field
24197 with the prefix &quot;To: &quot; prepended.
24200 With respect to Reply, the reply-to-all option will exclude addresses
24201 listed here.
24204 The feature
24205 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24206 is somewhat related to this option.
24209 In addition to a list of actual addresses,
24210 you may use regular expressions (as used with egrep with the ignore case flag)
24211 to describe the addresses you want to match.
24212 Alpine will somewhat arbitrarily interpret your entry as a regular
24213 expression if it contains any of the characters
24214 *, |, +, ?, {, [, ^, $, or &#92;.
24215 Otherwise, it will be treated literally.
24216 The feature
24217 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24218 may be used to turn off regular expression processing regardless of whether or not
24219 special characters appear in the entry.
24222 A description of how regular expressions work is beyond the
24223 scope of this help text, but some examples follow.
24226 The entry
24229 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24232 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24233 address with a domain name of <SAMP>example.com</SAMP> (such as
24234 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24235 one of your alternate addresses.
24236 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24237 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24238 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24239 Complicating things further, the dollar sign
24240 is special in the Alpine configuration (it signifies environment variable expansion)
24241 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24242 Quotes around the whole expression will not escape the dollar sign successfully.
24243 So this example should look like
24246 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24250 The entry
24253 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24256 would match
24257 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24258 as <SAMP>fred@example.com</SAMP>.
24261 You could match all addresses that look like
24262 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24263 entry
24266 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24269 Notice that you have to escape the plus sign with a backslash because plus
24270 is a special character in regular expressions.
24271 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24272 the expression
24275 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24278 would do it, but it would be easier to just add fred@example.com as a
24279 separate entry.
24282 One more example, a match of all first-level subdomains, is given by
24285 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24289 Because the regular expression matching is based on an old library
24290 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24291 but they should be close.
24294 <UL>   
24295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24296 </UL><P>
24297 &lt;End of help on this topic&gt;
24298 </BODY>
24299 </HTML>
24300 ====== h_config_abook_formats =====
24301 <HTML>
24302 <HEAD>
24303 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24304 </HEAD>
24305 <BODY>
24306 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24308 This option specifies the format that address books are displayed in.
24309 Normally, address books are displayed with the nicknames in the first
24310 column, the fullnames in the second column, and addresses in the third
24311 column.  The system figures out reasonable defaults for the widths of
24312 the columns.  An address book may be given a different format by
24313 listing special tokens in the order you want them to display.  The
24314 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24315 So, for example, to get the default behavior you could list
24318 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24321 (You can also use the token DEFAULT to get the default behavior for
24322 an address book format.)
24325 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24326 is a list, so if you have more than one address book you may have a
24327 separate format for each by putting its format at the corresponding
24328 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24332 Listed first are the personal address books, then the global address
24333 books.  So, if you have two personal address books and one global
24334 address book, you may have up to three formats in the
24335 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24336 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24337 are address books, the last element is used repeatedly.
24341 Each of the tokens may also be optionally followed by parentheses with
24342 either a number or a percentage inside the parentheses.  For example,
24343 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24344 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24345 of the available space (the screen width minus the space for
24346 inter-column spaces) to the fullnames column, while plain
24347 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24348 reasonable number of columns.
24351 There are always 2 spaces between every column, so if you use
24352 fixed column widths (like 13) you should remember to take that into
24353 account.
24356 <UL>   
24357 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24358 </UL><P>
24359 &lt;End of help on this topic&gt;
24360 </BODY>
24361 </HTML>
24362 ====== h_config_set_index_format =====
24363 <HTML>
24364 <HEAD>
24365 <TITLE>Set Index Format</TITLE>
24366 </HEAD>
24367 <BODY>
24368 <H1>Set Index Format</H1>
24370 This option is used to customize the content of lines in the
24371 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24372 This action works exactly like the regular
24373 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24374 except that you can have a folder-specific value for it if you specify it here.
24375 Consult the help for
24376 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24377 for more information.
24380 <UL>   
24381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24382 </UL><P>
24383 &lt;End of help on this topic&gt;
24384 </BODY>
24385 </HTML>
24386 ====== h_config_index_format =====
24387 <HTML>
24388 <HEAD>
24389 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24390 </HEAD>
24391 <BODY>
24392 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24394 This option is used to customize the content of lines in the
24395 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24396 to convey some amount of immediately relevant information about each 
24397 message in the current folder.
24400 Alpine provides a pre-defined set of informational fields with
24401 reasonable column widths automatically computed.  You can, however,
24402 replace this default set by listing special tokens in the order you
24403 want them displayed.
24406 The list of available tokens is
24407 <A HREF="h_index_tokens">here</A>.
24410 Spaces are used to separate listed tokens.  Additionally, you can
24411 specify how much of the screen's width the token's associated data
24412 should occupy on the index line by appending to the token a pair of
24413 parentheses enclosing either a number or percentage.  For example,
24414 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24415 column, and &quot;SUBJECT(20%)&quot; means to
24416 allocate 20% of the available space
24417 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24418 attempt to figure out a reasonable amount of space.
24421 There is always one space between every pair of columns, so if you use fixed
24422 column widths (like 13) you should remember to take that into account.
24423 Several of the fields are virtually fixed-width, so it doesn't make
24424 much sense to specify the width for them.  The fields STATUS,
24425 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24426 and DESCRIPSIZE all fall into that category.
24427 You <EM>may</EM> specify widths for those if you wish, but
24428 you're probably better off letting the system pick those widths.  <P>
24431 The default is equivalent to:
24434 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24437 This means that the four fields without percentages will be allocated
24438 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24439 the from and subject fields.  If one of those two fields is specified
24440 as a percentage and the other is left for the system to choose, then
24441 the percentage is taken as an absolute percentage of the screen, not
24442 of the space remaining after allocating the first four columns.  It
24443 doesn't usually make sense to do it that way.  If you leave off all
24444 the widths, then the subject and from fields (if both are present) are
24445 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24446 the default.
24449 What you are most likely to do with this configuration option is to
24450 specify which fields appear at all, which order they appear in, and the
24451 percentage of screen that is used for the from and subject fields if you
24452 don't like the 2 to 1 default.
24455 If you want to retain the default format that Pine 4.64 had, use
24458 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24460 <EM>and</EM> set the feature
24461 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24462 <UL>   
24463 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24464 </UL><P>
24465 &lt;End of help on this topic&gt;
24466 </BODY>
24467 </HTML>
24468 ====== h_config_reply_intro =====
24469 <HTML>
24470 <HEAD>
24471 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24472 </HEAD>
24473 <BODY>
24474 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24476 This option is used to customize the content of the introduction line
24477 that is included when replying to a message and including the original
24478 message in the reply.
24479 The normal default (what you will get if you delete this variable) looks
24480 something like:
24482 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24484 where the day of the week is only included if it is available in the
24485 original message.
24486 You can replace this default with text of your own.
24487 The text may contain tokens that are replaced with text
24488 that depends on the message you are replying to.
24489 For example, the default is equivalent to:
24491 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24494 Since this variable includes regular text mixed with special tokens
24495 the tokens have to be surrounded by underscore characters.
24496 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24497 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24498 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24500 The list of available tokens is
24501 <A HREF="h_index_tokens">here</A>.
24504 By default, the text is all on a single line and is followed by a blank line.
24505 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24506 than 80 characters when replying to a particular message, it is shortened.
24507 However, if you use the token
24509 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24512 anywhere in the value, no end of line or blank line is appended, and no
24513 shortening is done.
24514 The _NEWLINE_ token may be used to get rid of the blank line following
24515 the text, to add more blank lines, or to form a multi-line
24516 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24517 To clarify how _NEWLINE_ works recall that the default value is:
24519 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24522 That is equivalent to
24524 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24527 In the former case, two newlines are added automatically because
24528 no _NEWLINE_ token appears in the value of the option (for backwards
24529 compatibility). In the latter case, the newlines are explicit.
24530 If you want to remove the blank line that follows the
24531 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24532 _NEWLINE_ token like
24534 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24537 Because of the backwards compatibility problem, it is not possible to
24538 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24539 and that will cause the automatic adding of two newlines!
24540 If you want, you may embed newlines in the middle of the text, as well,
24541 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24544 By default, no attempt is made to localize the date.
24545 If you prefer a localized form you may find that one of the tokens
24546 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24547 If you want more control one of the many other date tokens, such as _DATEISO_,
24548 might be better.
24551 For the adventurous, there is a way to conditionally include text based
24552 on whether or not a token would result in specific replacement text.
24553 For example, you could include some text based on whether or not
24554 the _NEWS_ token would result in any newsgroups if it was used.
24555 It's explained in detail
24556 <A HREF="h_reply_token_conditionals">here</A>.
24559 In the very unlikely event that you want to include a literal token
24560 in the introduction line you must precede it with a backslash character.
24561 For example,
24563 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24565 would produce something like
24567 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24569 It is not possible to have a literal backslash followed by an expanded token.
24571 <UL>   
24572 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24573 </UL><P>
24574 &lt;End of help on this topic&gt;
24575 </BODY>
24576 </HTML>
24577 ====== h_config_remote_abook_history =====
24578 <HTML>
24579 <HEAD>
24580 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24581 </HEAD>
24582 <BODY>
24583 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24585 Sets how many extra copies of
24586 remote address book
24587 data will be kept in each remote address book folder.
24588 The default is three.
24589 These extra copies are simply old versions of the data. Each time a change
24590 is made a new copy of the address book data is appended to the folder. Old
24591 copies are trimmed, if possible, when Alpine exits.
24592 An old copy can be put back into use by
24593 deleting and expunging newer versions of the data from the folder.
24594 Don't delete the first message from the folder. It is a special header
24595 message for the remote address book and it must be there.
24596 This is to prevent regular folders from being used as remote address book
24597 folders and having their data destroyed.
24599 This option is also used to determine how many extra copies of remote
24600 Alpine configuration files are kept.
24602 <UL>   
24603 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24604 </UL><P>
24605 &lt;End of help on this topic&gt;
24606 </BODY>
24607 </HTML>
24608 ====== h_config_remote_abook_validity =====
24609 <HTML>
24610 <HEAD>
24611 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24612 </HEAD>
24613 <BODY>
24614 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24616 Sets the minimum number of minutes that a
24617 remote address book will be considered up to date.
24618 Whenever an entry contained in a remote address book is used,
24619 if more than this many minutes have
24620 passed since the last check the remote server will be queried to see if the
24621 address book has changed.
24622 If it has changed, the local copy is updated.
24623 The default value is five minutes.
24624 The special value of -1 means never check.
24625 The special value of zero means only check when the address book is first
24626 opened.
24628 No matter what the value, the validity check is always done when the
24629 address book is about to be changed by the user.
24630 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24631 while in the address book maintenance screen for the remote address book.
24633 <UL>   
24634 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24635 </UL><P>
24636 &lt;End of help on this topic&gt;
24637 </BODY>
24638 </HTML>
24639 ====== h_config_user_input_timeo =====
24640 <HTML>
24641 <HEAD>
24642 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24643 </HEAD>
24644 <BODY>
24645 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24647 If this is set to an integer greater than zero, then this is the number
24648 of <EM>hours</EM> to wait for user input before Alpine times out.
24649 If Alpine is
24650 in the midst of composing a message or is waiting for user response to
24651 a question, then it will not timeout.
24652 However, if Alpine is sitting idle waiting for
24653 the user to tell it what to do next and the user does not give any
24654 input for this many hours, Alpine will exit.
24655 No expunging or moving of read
24656 messages will take place.
24657 It will exit similarly to the way it would exit
24658 if it received a hangup signal.
24659 This may be useful for cleaning up unused Alpine sessions that have been
24660 forgotten by their owners.
24661 The Alpine developers envision system administrators
24662 setting this to a value of several hours (24?) so that it won't surprise
24663 a user who didn't want to be disconnected.
24665 <UL>   
24666 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24667 </UL><P>
24668 &lt;End of help on this topic&gt;
24669 </BODY>
24670 </HTML>
24671 ====== h_config_ssh_open_timeo =====
24672 <HTML>
24673 <HEAD>
24674 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24675 </HEAD>
24676 <BODY>
24677 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24679 Sets the time in seconds that Alpine will
24680 attempt to open a UNIX secure shell connection.
24681 The default is 15, the minimum non-zero value is 5,
24682 and the maximum is unlimited. If this is set to zero ssh connections
24683 will be completely disabled.
24685 <UL>   
24686 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24687 </UL><P>
24688 &lt;End of help on this topic&gt;
24689 </BODY>
24690 </HTML>
24691 ====== h_config_rsh_open_timeo =====
24692 <HTML>
24693 <HEAD>
24694 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24695 </HEAD>
24696 <BODY>
24697 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24699 Sets the time in seconds that Alpine will
24700 attempt to open a UNIX remote shell connection.
24701 The default is 15, the minimum non-zero value is 5,
24702 and the maximum is unlimited. If this is set to zero rsh connections
24703 will be completely disabled.
24704 This might be useful if rsh connections will never work in your environment
24705 but are causing delays due to firewalls or some other reason.
24707 <UL>   
24708 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24709 </UL><P>
24710 &lt;End of help on this topic&gt;
24711 </BODY>
24712 </HTML>
24713 ====== h_config_tcp_open_timeo =====
24714 <HTML>
24715 <HEAD>
24716 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24717 </HEAD>
24718 <BODY>
24719 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24721 Sets the time in seconds that Alpine will
24722 attempt to open a network connection. The default is 30, the minimum is 5,
24723 and the maximum is system defined (typically 75). If a connection has not
24724 completed within this many seconds Alpine will give up and consider it a
24725 failed connection.
24727 <UL>   
24728 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24729 </UL><P>
24730 &lt;End of help on this topic&gt;
24731 </BODY>
24732 </HTML>
24733 ====== h_config_tcp_readwarn_timeo =====
24734 <HTML>
24735 <HEAD>
24736 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24737 </HEAD>
24738 <BODY>
24739 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24741 Sets the time in seconds that Alpine will
24742 wait for a network read before warning you that things are moving slowly
24743 and possibly giving you the option to break the connection.
24744 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24745 1000 seconds.
24747 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24749 <UL>   
24750 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24751 </UL><P>
24752 &lt;End of help on this topic&gt;
24753 </BODY>
24754 </HTML>
24755 ====== h_config_tcp_writewarn_timeo =====
24756 <HTML>
24757 <HEAD>
24758 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24759 </HEAD>
24760 <BODY>
24761 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24763 Sets the time in seconds that Alpine will
24764 wait for a network write before warning you that things are moving slowly
24765 and possibly giving you the option to break the connection.
24766 The default is 0 which means it is unset. If set to a non-zero value, the
24767 minimum is 5 and the maximum is 1000.
24769 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24771 <UL>   
24772 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24773 </UL><P>
24774 &lt;End of help on this topic&gt;
24775 </BODY>
24776 </HTML>
24777 ====== h_config_tcp_query_timeo =====
24778 <HTML>
24779 <HEAD>
24780 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24781 </HEAD>
24782 <BODY>
24783 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24785 When Alpine times out a network read or write it will normally just display
24786 a message saying &quot;Still waiting&quot;.
24787 However, if enough time has elapsed since it started waiting it will offer
24788 to let you break the connection.
24789 That amount of time is set by this option, which defaults to 60 seconds,
24790 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24792 <UL>   
24793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24794 </UL><P>
24795 &lt;End of help on this topic&gt;
24796 </BODY>
24797 </HTML>
24798 ====== h_config_incoming_folders =====
24799 <HTML>
24800 <HEAD>
24801 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24802 </HEAD>
24803 <BODY>
24804 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24806 This is a list of one or more folders other than <EM>INBOX</EM> that
24807 may receive new messages.
24808 It is related to the
24809 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24810 feature.
24811 This variable is normally manipulated with the Add, Delete, and Rename
24812 commands in the FOLDER LIST for the Incoming Message Folders collection.
24814 <UL>   
24815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24816 </UL><P>
24817 &lt;End of help on this topic&gt;
24818 </BODY>
24819 </HTML>
24820 ====== h_config_folder_spec =====
24821 <HTML>
24822 <HEAD>
24823 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24824 </HEAD>
24825 <BODY>
24826 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24828 This is a list of one or more collections where saved mail is stored. 
24829 The first collection in this list is the default
24830 collection for <EM>Save</EM>s,
24831 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24833 This variable is normally manipulated using the Setup/collectionList screen.
24835 <UL>   
24836 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24837 </UL><P>
24838 &lt;End of help on this topic&gt;
24839 </BODY>
24840 </HTML>
24841 ====== h_config_news_spec =====
24842 <HTML>
24843 <HEAD>
24844 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24845 </HEAD>
24846 <BODY>
24847 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24849 This is a list of collections where news folders are located.
24851 This variable is normally manipulated using the Setup/collectionList screen.
24853 <UL>   
24854 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24855 </UL><P>
24856 &lt;End of help on this topic&gt;
24857 </BODY>
24858 </HTML>
24859 ====== h_config_address_book =====
24860 <HTML>
24861 <HEAD>
24862 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24863 </HEAD>
24864 <BODY>
24865 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24867 A list of personal address books.
24868 Each entry in the list is an
24869 optional nickname followed by a pathname or file name relative to the home
24870 directory.
24871 The nickname is separated from the rest of the line with whitespace.
24872 Instead of a local pathname or file name, a remote folder name can be given.
24873 This causes the address book to
24874 be a Remote address book.
24876 Use the Setup/AddressBook screen to modify this variable.
24878 <UL>   
24879 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24880 </UL><P>
24881 &lt;End of help on this topic&gt;
24882 </BODY>
24883 </HTML>
24884 ====== h_config_glob_addrbook =====
24885 <HTML>
24886 <HEAD>
24887 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24888 </HEAD>
24889 <BODY>
24890 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24892 A list of shared address books.  Each entry in the list is an
24893 optional nickname followed by a pathname or file name relative to the home
24894 directory.
24895 A SPACE character separates the nickname from the rest of the line.
24896 Instead of a local pathname or file name, a remote folder name can be given.
24897 This causes the address book to
24898 be a Remote address book.
24899 Global address books are
24900 defined to be ReadOnly.
24902 Use the Setup/AddressBook screen to modify this variable.
24904 <UL>   
24905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24906 </UL><P>
24907 &lt;End of help on this topic&gt;
24908 </BODY>
24909 </HTML>
24910 ====== h_config_last_vers =====
24911 <HTML>
24912 <HEAD>
24913 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24914 </HEAD>
24915 <BODY>
24916 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24918 This is set automatically by Alpine. 
24919 It is used to keep track of the last version of Alpine that
24920 was run by the user.
24921 Whenever the version number increases, a new version message is printed out.
24922 This may not be set in the system-wide configuration files.
24924 <UL>   
24925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24926 </UL><P>
24927 &lt;End of help on this topic&gt;
24928 </BODY>
24929 </HTML>
24930 ====== h_config_printer =====
24931 <HTML>
24932 <HEAD>
24933 <TITLE>OPTION: Printer</TITLE>
24934 </HEAD>
24935 <BODY>
24936 <H1>OPTION: Printer</H1>
24938 Your default printer selection.
24940 Use the Setup/Printer screen to modify this variable.
24942 <UL>   
24943 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24944 </UL><P>
24945 &lt;End of help on this topic&gt;
24946 </BODY>
24947 </HTML>
24948 ====== h_config_print_cat =====
24949 <HTML>
24950 <HEAD>
24951 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24952 </HEAD>
24953 <BODY>
24954 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24956 This is an internal Alpine variable.
24957 It will be equal to 1, 2, or 3 depending on whether the default printer is
24958 attached, standard, or a personal print command.
24960 Use the Setup/Printer screen to modify this variable.
24962 <UL>   
24963 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24964 </UL><P>
24965 &lt;End of help on this topic&gt;
24966 </BODY>
24967 </HTML>
24968 ====== h_config_print_command =====
24969 <HTML>
24970 <HEAD>
24971 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24972 </HEAD>
24973 <BODY>
24974 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24976 List of personal print commands.
24978 Use the Setup/Printer screen to modify this variable.
24980 <UL>   
24981 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24982 </UL><P>
24983 &lt;End of help on this topic&gt;
24984 </BODY>
24985 </HTML>
24986 ====== h_config_pat_old =====
24987 <HTML>
24988 <HEAD>
24989 <TITLE>OPTION: Patterns</TITLE>
24990 </HEAD>
24991 <BODY>
24992 <H1>OPTION: Patterns</H1>
24994 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24995 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24996 and Patterns-Other.
24997 Patterns-Scores and Patterns-Filters have been replaced since then by
24998 Patterns-Scores2 and Patterns-Filters2.
25000 Use the Setup/Rules screens to modify these variable.
25002 <UL>   
25003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25004 </UL><P>
25005 &lt;End of help on this topic&gt;
25006 </BODY>
25007 </HTML>
25008 ====== h_config_pat_roles =====
25009 <HTML>
25010 <HEAD>
25011 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
25012 </HEAD>
25013 <BODY>
25014 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
25016 List of rules used for roles.
25017 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
25018 other options.
25020 Use the Setup/Rules/Roles screen to modify this variable.
25022 <UL>   
25023 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25024 </UL><P>
25025 &lt;End of help on this topic&gt;
25026 </BODY>
25027 </HTML>
25028 ====== h_config_pat_filts =====
25029 <HTML>
25030 <HEAD>
25031 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
25032 </HEAD>
25033 <BODY>
25034 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
25036 List of rules used for filters.
25038 Use the Setup/Rules/Filters screen to modify this variable.
25040 <UL>   
25041 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25042 </UL><P>
25043 &lt;End of help on this topic&gt;
25044 </BODY>
25045 </HTML>
25046 ====== h_config_pat_scores =====
25047 <HTML>
25048 <HEAD>
25049 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25050 </HEAD>
25051 <BODY>
25052 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25054 List of rules used for scoring.
25056 Use the Setup/Rules/SetScores screen to modify this variable.
25058 <UL>   
25059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25060 </UL><P>
25061 &lt;End of help on this topic&gt;
25062 </BODY>
25063 </HTML>
25064 ====== h_config_pat_other =====
25065 <HTML>
25066 <HEAD>
25067 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
25068 </HEAD>
25069 <BODY>
25070 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
25072 List of rules used for miscellaneous configuration.
25074 Use the Setup/Rules/Other screen to modify this variable.
25076 <UL>   
25077 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25078 </UL><P>
25079 &lt;End of help on this topic&gt;
25080 </BODY>
25081 </HTML>
25082 ====== h_config_pat_incols =====
25083 <HTML>
25084 <HEAD>
25085 <TITLE>OPTION: patterns-indexcolors</TITLE>
25086 </HEAD>
25087 <BODY>
25088 <H1>OPTION: patterns-indexcolors</H1>
25090 List of rules used for coloring lines in the index.
25092 Use the Setup/Rules/Indexcolor screen to modify this variable.
25094 <UL>   
25095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25096 </UL><P>
25097 &lt;End of help on this topic&gt;
25098 </BODY>
25099 </HTML>
25100 ====== h_config_pat_srch =====
25101 <HTML>
25102 <HEAD>
25103 <TITLE>OPTION: patterns-search</TITLE>
25104 </HEAD>
25105 <BODY>
25106 <H1>OPTION: patterns-search</H1>
25108 List of rules used only for searching with the Select command in the MESSAGE INDEX.
25110 Use the Setup/Rules/searCh screen to modify this variable.
25112 <UL>   
25113 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25114 </UL><P>
25115 &lt;End of help on this topic&gt;
25116 </BODY>
25117 </HTML>
25118 ====== h_config_font_name =====
25119 <HTML>
25120 <HEAD>
25121 <TITLE>OPTION: Font Name</TITLE>
25122 </HEAD>
25123 <BODY>
25124 <H1>OPTION: Font Name</H1>
25126 PC-Alpine only.
25128 Name of normal font.
25130 Use the pulldown Config menu to modify this variable.
25132 <UL>   
25133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25134 </UL><P>
25135 &lt;End of help on this topic&gt;
25136 </BODY>
25137 </HTML>
25138 ====== h_config_font_size =====
25139 <HTML>
25140 <HEAD>
25141 <TITLE>OPTION: Font Size</TITLE>
25142 </HEAD>
25143 <BODY>
25144 <H1>OPTION: Font Size</H1>
25146 PC-Alpine only.
25148 Size of normal font.
25150 Use the pulldown Config menu to modify this variable.
25152 <UL>   
25153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25154 </UL><P>
25155 &lt;End of help on this topic&gt;
25156 </BODY>
25157 </HTML>
25158 ====== h_config_font_style =====
25159 <HTML>
25160 <HEAD>
25161 <TITLE>OPTION: Font Style</TITLE>
25162 </HEAD>
25163 <BODY>
25164 <H1>OPTION: Font Style</H1>
25166 PC-Alpine only.
25168 Style of normal font.
25170 Use the pulldown Config menu to modify this variable.
25172 <UL>   
25173 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25174 </UL><P>
25175 &lt;End of help on this topic&gt;
25176 </BODY>
25177 </HTML>
25178 ====== h_config_font_char_set =====
25179 <HTML>
25180 <HEAD>
25181 <TITLE>OPTION: Font Character Set</TITLE>
25182 </HEAD>
25183 <BODY>
25184 <H1>OPTION: Font Character Set</H1>
25186 PC-Alpine only.
25188 Character set of normal font.
25190 Use the pulldown Config menu to modify this variable.
25192 <UL>   
25193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25194 </UL><P>
25195 &lt;End of help on this topic&gt;
25196 </BODY>
25197 </HTML>
25198 ====== h_config_print_font_name =====
25199 <HTML>
25200 <HEAD>
25201 <TITLE>OPTION: Print-Font-Name</TITLE>
25202 </HEAD>
25203 <BODY>
25204 <H1>OPTION: Print-Font-Name</H1>
25206 PC-Alpine only.
25208 Name of printer font.
25210 Use the pulldown Config menu to modify this variable.
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_print_font_size =====
25219 <HTML>
25220 <HEAD>
25221 <TITLE>OPTION: Print-Font-Size</TITLE>
25222 </HEAD>
25223 <BODY>
25224 <H1>OPTION: Print-Font-Size</H1>
25226 PC-Alpine only.
25228 Size of printer font.
25230 Use the pulldown Config menu to modify this variable.
25232 <UL>   
25233 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25234 </UL><P>
25235 &lt;End of help on this topic&gt;
25236 </BODY>
25237 </HTML>
25238 ====== h_config_print_font_style =====
25239 <HTML>
25240 <HEAD>
25241 <TITLE>OPTION: Print-Font-Style</TITLE>
25242 </HEAD>
25243 <BODY>
25244 <H1>OPTION: Print-Font-Style</H1>
25246 PC-Alpine only.
25248 Style of printer font.
25250 Use the pulldown Config menu to modify this variable.
25252 <UL>   
25253 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25254 </UL><P>
25255 &lt;End of help on this topic&gt;
25256 </BODY>
25257 </HTML>
25258 ====== h_config_print_font_char_set =====
25259 <HTML>
25260 <HEAD>
25261 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25262 </HEAD>
25263 <BODY>
25264 <H1>OPTION: Print-Font-Char-Set</H1>
25266 PC-Alpine only.
25268 Character set of printer font.
25270 Use the pulldown Config menu to modify this variable.
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_window_position =====
25279 <HTML>
25280 <HEAD>
25281 <TITLE>OPTION: Window-Position</TITLE>
25282 </HEAD>
25283 <BODY>
25284 <H1>OPTION: Window-Position</H1>
25286 PC-Alpine only.
25288 Position on the screen of the Alpine window.
25290 Alpine normally maintains this variable itself, and it is set automatically. 
25291 This variable is provided to those who wish to use the same window position 
25292 across different machines from the same configuration.
25293 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25294 must also be set for this setting to be used.
25296 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25297 C is the number of columns, R is the number of rows, and X and Y specify the
25298 top left corner of the window.
25300 <UL>   
25301 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25302 </UL><P>
25303 &lt;End of help on this topic&gt;
25304 </BODY>
25305 </HTML>
25306 ====== h_config_cursor_style =====
25307 <HTML>
25308 <HEAD>
25309 <TITLE>OPTION: Cursor Style</TITLE>
25310 </HEAD>
25311 <BODY>
25312 <H1>OPTION: Cursor Style</H1>
25314 PC-Alpine only.
25316 Cursor style.
25318 Use the pulldown Config menu to modify this variable.
25320 <UL>   
25321 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25322 </UL><P>
25323 &lt;End of help on this topic&gt;
25324 </BODY>
25325 </HTML>
25326 ====== h_config_ldap_servers =====
25327 <HTML>
25328 <HEAD>
25329 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25330 </HEAD>
25331 <BODY>
25332 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25334 List of LDAP servers and associated data.
25336 Use the Setup/Directory screen to modify this variable.
25338 <UL>   
25339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25340 </UL><P>
25341 &lt;End of help on this topic&gt;
25342 </BODY>
25343 </HTML>
25344 ====== h_config_sendmail_path =====
25345 <HTML>
25346 <HEAD>
25347 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25348 </HEAD>
25349 <BODY>
25350 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25352 This names the path to an
25353 alternative program, and any necessary arguments, to be used in posting
25354 mail messages. See the Technical notes for more information.
25356 <UL>   
25357 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25358 </UL><P>
25359 &lt;End of help on this topic&gt;
25360 </BODY>
25361 </HTML>
25362 ====== h_config_oper_dir =====
25363 <HTML>
25364 <HEAD>
25365 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25366 </HEAD>
25367 <BODY>
25368 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25370 This names the root of the
25371 tree to which you are restricted when reading and writing folders and
25372 files. It is usually used in the system-wide,
25373 <EM>fixed</EM> configuration file.
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_rshpath =====
25382 <HTML>
25383 <HEAD>
25384 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25385 </HEAD>
25386 <BODY>
25387 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25389 Sets the name of the command used to open a UNIX remote shell
25390 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25392 <UL>   
25393 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25394 </UL><P>
25395 &lt;End of help on this topic&gt;
25396 </BODY>
25397 </HTML>
25398 ====== h_config_rshcmd =====
25399 <HTML>
25400 <HEAD>
25401 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25402 </HEAD>
25403 <BODY>
25404 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25406 Sets the format of the command used to
25407 open a UNIX remote shell connection. The default is
25408 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25409 provided command. The first is for the command's pathname, the second is
25410 for the host to connnect to, the third is for the user to connect as, and
25411 the fourth is for the connection method (typically <CODE>imap</CODE>).
25413 <UL>   
25414 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25415 </UL><P>
25416 &lt;End of help on this topic&gt;
25417 </BODY>
25418 </HTML>
25419 ====== h_config_sshpath =====
25420 <HTML>
25421 <HEAD>
25422 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25423 </HEAD>
25424 <BODY>
25425 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25427 Sets the name of the command used to open a UNIX secure shell
25428 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25430 <UL>   
25431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25432 </UL><P>
25433 &lt;End of help on this topic&gt;
25434 </BODY>
25435 </HTML>
25436 ====== h_config_sshcmd =====
25437 <HTML>
25438 <HEAD>
25439 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25440 </HEAD>
25441 <BODY>
25442 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25444 Sets the format of the command used to
25445 open a UNIX secure shell connection. The default is
25446 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25447 provided command. The first is for the command's pathname, the second is
25448 for the host to connnect to, the third is for the user to connect as, and
25449 the fourth is for the connection method (typically <CODE>imap</CODE>).
25451 <UL>   
25452 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25453 </UL><P>
25454 &lt;End of help on this topic&gt;
25455 </BODY>
25456 </HTML>
25457 ====== h_config_new_ver_quell =====
25458 <HTML>
25459 <HEAD>
25460 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25461 </HEAD>
25462 <BODY>
25463 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25465 When a new version of Alpine is run for the first time it offers a
25466 special explanatory screen to the user upon startup.  This option
25467 helps control when and if that special screen appears for users that
25468 have previously run Alpine.  It takes as its value an Alpine version
25469 number.  Alpine versions less than the specified value will supress this
25470 special screen while versions equal to or greater than that specified
25471 will behave normally.
25473 <UL>   
25474 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25475 </UL><P>
25476 &lt;End of help on this topic&gt;
25477 </BODY>
25478 </HTML>
25479 ====== h_config_disable_drivers =====
25480 <HTML>
25481 <HEAD>
25482 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25483 </HEAD>
25484 <BODY>
25485 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25487 This variable is a list of mail drivers that will be disabled.
25488 The candidates for disabling are listed below.
25489 There may be more in the future if you compile Alpine with
25490 a newer version of the c-client library.
25493 <UL>
25494 <LI> mbox
25495 <LI> mbx
25496 <LI> mh
25497 <LI> mmdf
25498 <LI> mtx
25499 <LI> mx
25500 <LI> news
25501 <LI> phile
25502 <LI> tenex
25503 <LI> unix
25504 </UL>
25507 The <EM>mbox</EM> driver enables the following behavior: if there is a
25508 file called <CODE>mbox</CODE>
25509 in your home directory, and if that file is either empty or in Unix mailbox
25510 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25511 will automatically transfer mail from the system mail spool directory into the
25512 <CODE>mbox</CODE> file and
25513 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25514 this will not happen.
25517 It is not recommended to disable the driver that supports the system default
25518 mailbox format. On most non-SCO systems, that driver is the
25519 <EM>unix</EM> driver.
25520 On most SCO systems, it is the <EM>mmdf</EM> driver.
25521 The system default driver may be
25522 configured to something else on your system; check with your system manager
25523 for additional information.
25526 It is most likely not very useful for you to disable any of the drivers other
25527 than possibly <EM>mbox</EM>.
25528 You could disable some of the others if you know for
25529 certain that you don't need them but the performance gain in doing so
25530 is very modest.
25532 <UL>   
25533 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25534 </UL><P>
25535 &lt;End of help on this topic&gt;
25536 </BODY>
25537 </HTML>
25538 ====== h_config_disable_auths =====
25539 <HTML>
25540 <HEAD>
25541 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25542 </HEAD>
25543 <BODY>
25544 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25546 This variable is a list of SASL (Simple Authentication and Security
25547 Layer) authenticators that will be disabled.
25548 SASL is a mechanism for
25549 authenticating to IMAP, POP3, SMTP, and other network servers.
25552 Alpine matches its list of supported authenticators with the server to
25553 determine the most secure authenticator that is supported by both.
25554 If no matching authenticators are found, Alpine will revert to plaintext
25555 login (or, in the case of SMTP, will be unable to authenticate at all).
25557 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25560 Normally, you will not disable any authenticators.
25561 There are two exceptions:
25563 <OL>
25564 <LI> You use a broken server that advertises an authenticator,
25565 but does not actually implement it.
25566 <LI> You have a Kerberos-capable version of Alpine and the server is
25567 also Kerberos-capable, but you can not obtain Kerberos
25568 credentials on the server machine, thus you desire to disable
25569 GSSAPI (which in turn disables Alpine's Kerberos support).
25570 </OL>
25572 It is never necessary to disable authenticators, since Alpine will try
25573 other authenticators before giving up.
25574 However, disabling the relevant authenticator avoids annoying error messages.
25576 <UL>   
25577 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25578 </UL><P>
25579 &lt;End of help on this topic&gt;
25580 </BODY>
25581 </HTML>
25582 ====== h_config_abook_metafile =====
25583 <HTML>
25584 <HEAD>
25585 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25586 </HEAD>
25587 <BODY>
25588 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25590 This is usually set by Alpine and is the name of a file
25591 that contains data about
25592 remote address books and remote configuration files.
25594 <UL>   
25595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25596 </UL><P>
25597 &lt;End of help on this topic&gt;
25598 </BODY>
25599 </HTML>
25600 ====== h_config_composer_wrap_column =====
25601 <HTML>
25602 <HEAD>
25603 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25604 </HEAD>
25605 <BODY>
25606 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25609 This option specifies an aspect of Alpine's Composer.  This gives the
25610 maximum width that auto-wrapped lines will have.  It's also the maximum
25611 width of lines justified using the <A HREF="h_compose_justify">^J
25612 Justify</A> command.  The normal default
25613 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25614 in order to
25615 prevent very long lines from being sent in outgoing mail.  When the mail
25616 is actually sent, trailing spaces will be stripped off of each line.
25619 <UL>   
25620 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25621 </UL><P>
25622 &lt;End of help on this topic&gt;
25623 </BODY>
25624 </HTML>
25625 ====== h_config_deadlets =====
25626 <HTML>
25627 <HEAD>
25628 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25629 </HEAD>
25630 <BODY>
25631 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25634 This option affects Alpine's behavior when you cancel a message being
25635 composed.  Alpine's usual behavior is to write the canceled message to
25636 a file named 
25637 <!--chtml if pinemode="os_windows"-->
25638 &quot;DEADLETR&quot;,
25639 <!--chtml else-->
25640 &quot;dead.letter&quot; in your home directory,
25641 <!--chtml endif-->
25642 overwriting any previous message.
25644 If you set this option to a value higher than one, then that many copies
25645 of dead letter files will be saved.
25646 For example, if you set this option to &quot;3&quot; then you may have
25647 files named
25648 <!--chtml if pinemode="os_windows"-->
25649 &quot;DEADLETR&quot;,
25650 &quot;DEADLETR2&quot;, and
25651 &quot;DEADLETR3&quot;.
25652 <!--chtml else-->
25653 &quot;dead.letter&quot;,
25654 &quot;dead.letter2&quot;, and
25655 &quot;dead.letter3&quot; in your home directory.
25656 <!--chtml endif-->
25657 In this example, the most recently cancelled message will be in
25658 <!--chtml if pinemode="os_windows"-->
25659 &quot;DEADLETR&quot;,
25660 <!--chtml else-->
25661 &quot;dead.letter&quot;,
25662 <!--chtml endif-->
25663 and the third most recently cancelled message will be in
25664 <!--chtml if pinemode="os_windows"-->
25665 &quot;DEADLETR3&quot;.
25666 <!--chtml else-->
25667 &quot;dead.letter3&quot;.
25668 <!--chtml endif-->
25669 The fourth most recently cancelled message will no longer be saved.
25672 If you set this option to zero, then NO record of canceled messages is
25673 maintained.
25675 If the feature
25676 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25677 is set, that overrides whatever you set for this option.
25678 If this option had existed at the time, then the Quell feature would not
25679 have been added, but it is still there for backwards compatibility.
25680 So, in order for this option to have the desired effect, make sure the
25681 Quell feature is turned off.
25684 <UL>   
25685 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25686 </UL><P>
25687 &lt;End of help on this topic&gt;
25688 </BODY>
25689 </HTML>
25690 ====== h_config_maxremstream =====
25691 <HTML>
25692 <HEAD>
25693 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25694 </HEAD>
25695 <BODY>
25696 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25698 This option affects low-level behavior of Alpine.
25699 The default value for this option is <EM>3</EM>.
25700 If your INBOX is accessed using the IMAP protocol
25701 from an IMAP server, that connection is kept open throughout the
25702 duration of your Alpine session, independent of the value of this option.
25703 The same is true of any 
25704 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25705 you have defined.
25706 This option controls Alpine's behavior when connecting to remote IMAP folders
25707 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25708 It specifies the maximum number of remote IMAP connections (other than
25709 those mentioned above) that Alpine will use for accessing the rest of your
25710 folders.
25711 If you set this option to zero, you will turn off most remote connection
25712 re-use.
25713 It's difficult to understand exactly what this option does, and it is usually
25714 fine to leave it set to its default value.
25715 It is probably more likely that you will be interested in setting the
25716 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25717 instead of changing the value of this option.
25718 A slightly longer explanation of what is going on with this option
25719 is given in the next paragraphs.
25722 There are some time costs involved in opening and closing remote IMAP 
25723 folders, the main costs being the time you have to wait for the connection
25724 to the server and the time for the folder to open.
25725 Opening a folder may involve not only the time the server takes to do its
25726 processing but time that Alpine uses to do filtering.
25727 These times can vary widely.
25728 They depend on how loaded the server is, how large
25729 the folder being opened is, and how you set up filtering, among other things.
25730 Once Alpine has opened a connection to a particular folder, it will attempt
25731 to keep that connection open in case you use it again.
25732 In order to do this,
25733 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25734 this option) IMAP connections you have alloted for this purpose.
25736 For example, suppose the value of this option is set to &quot;2&quot;.
25737 If your INBOX is accessed on a remote server using the IMAP protocol, that
25738 doesn't count as one of the remote connections but it is always kept open.
25739 If you then open another IMAP folder, that would be your first
25740 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25741 If you open a third folder the second will be left open, in case you
25742 return to it.
25743 You won't be able to tell it has been left open.
25744 It will appear to be closed when you leave the folder but the connection
25745 will remain in the background.
25746 Now suppose you go back to the second folder (the first folder after the
25747 INBOX).
25748 A connection to that folder is still open so you won't have to wait
25749 for the startup time to open it.
25750 Meanwhile, the connection to the third folder will be left behind.
25751 Now, if you open a fourth folder, you will bump into the
25752 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25753 than INBOX and you have the option set to &quot;2&quot;.
25754 The connection that is being used for
25755 the third folder will be re-used for this new fourth folder.
25756 If you go back to the third folder after this, it is no longer already
25757 connected when you get there.
25758 You'll still save some time since Alpine will re-use the connection to the
25759 fourth folder and you have already logged in on that connection,
25760 but the folder will have to be re-opened from scratch.
25762 If a folder is large and the startup cost is dominated by the time it takes
25763 to open that folder or to run filters on it, then it will pay to make the
25764 value of this option large enough to keep it open.
25765 On the other hand, if you only revisit a handful of folders or if
25766 the folders are small, then it might
25767 make more sense to keep this number small so that the reconnect
25768 time (the time to start up a new connection and authenticate)
25769 is eliminated instead.
25771 You may also need to consider the impact on the server.
25772 On the surface, a larger number here may cause a larger impact on the
25773 server, since you will have more connections open to the server.
25774 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25775 associated with reopening a folder, but the <EM>server</EM> will be
25776 avoiding those costs as well.
25778 When twenty five minutes pass without any active use of an IMAP connection
25779 being saved for possible re-use, that connection will be shut down,
25782 <UL>   
25783 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25784 </UL><P>
25785 &lt;End of help on this topic&gt;
25786 </BODY>
25787 </HTML>
25788 ====== h_config_permlocked =====
25789 <HTML>
25790 <HEAD>
25791 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25792 </HEAD>
25793 <BODY>
25794 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25796 This option affects low-level behavior of Alpine.
25797 There is no default value for this option.
25798 It is related to the options
25799 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25800 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25801 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25804 Note: changes made to this list take effect the next time you open a
25805 folder in the list.
25808 This is a list of folders that will be permanently kept open once they
25809 are first opened.
25810 The names in this list may be either the nickname of an Incoming folder
25811 or the full technical specification of a folder.
25812 The folders in this list need not be remote IMAP folders, they could usefully
25813 be local folders, as well.
25814 If a folder in the list is a newsgroup or is not accessed either locally
25815 or via IMAP, then the entry will be ignored.
25816 For example, folders accessed via NNTP or POP3 will not be kept open, since
25817 the way that new mail is found with those protocols involves closing and
25818 reopening the connection.
25820 Once a Stay Open folder has been opened, new-mail checking will continue
25821 to happen on that folder for the rest of the Alpine session.
25822 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25823 need to be added explicitly.
25825 Another difference that you may notice between a Stay Open folder and a
25826 non-Stay Open folder is which message is selected as the current message
25827 when you enter the folder index.
25828 Normally, the starting position for an incoming folder (which most Stay Open
25829 folders will likely be) is controlled by the
25830 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25831 However, if a folder is a Stay Open folder, when you re-enter the folder
25832 after the first time the current message will be the same as it was when
25833 you left the folder.
25834 An exception is made if you use the TAB command to get to the folder.
25835 In that case, the message number will be incremented by one from what it
25836 was when you left the folder.
25838 The above special behavior is thought to be useful.
25839 However, it is special and different from what you might at first expect.
25840 The feature
25841 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25842 may be used to turn off this special treatment.
25844 If the message that was current when you left the folder no longer exists,
25845 then the regular startup rule will be used instead.
25848 <UL>   
25849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25850 </UL><P>
25851 &lt;End of help on this topic&gt;
25852 </BODY>
25853 </HTML>
25854 ====== h_config_viewer_overlap =====
25855 <html>
25856 <header>
25857 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25858 </header>
25859 <body>
25860 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25862 This option specifies an aspect of Alpine's Message Viewing screen.  When
25863 the space bar is used to page forward in a message, the number of lines
25864 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25865 bottom of the screen.  That is, if this was set to two lines, then the
25866 bottom two lines of the screen would be repeated on the top of the next
25867 screen.  The normal default value is "2".<p>
25868 <UL>   
25869 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25870 </UL><P>
25871 &lt;End of help on this topic&gt;
25872 </body>
25873 </html>
25874 ====== h_config_scroll_margin =====
25875 <HTML>
25876 <HEAD>
25877 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25878 </HEAD>
25879 <BODY>
25880 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25882 This option controls when Alpine's line-by-line scrolling occurs.
25883 Typically, when a selected item is at the top or bottom screen edge
25884 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25885 displayed items are scrolled down or up by a single line.
25888 This option allows you to tell Alpine the number of lines from the top and
25889 bottom screen edge that line-by-line paging should occcur.  For example,
25890 setting this value to one (1) will cause Alpine to scroll the display
25891 vertically when you move to select an item on the display's top or
25892 bottom edge.
25895 By default, this variable is zero, indicating that scrolling happens
25896 when you move up or down to select an item immediately off the display's
25897 top or bottom edge.
25900 <UL>   
25901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25902 </UL><P>
25903 &lt;End of help on this topic&gt;
25904 </BODY>
25905 </HTML>
25906 ====== h_config_wordseps =====
25907 <HTML>
25908 <HEAD>
25909 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25910 </HEAD>
25911 <BODY>
25912 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25914 This option affects how a &quot;word&quot; is defined in the composer.
25915 The definition of a word is used when using the Forward Word and Backward
25916 Word commands in the composer, as well as when using the spell checker.
25917 Whitespace is always considered a word separator.
25918 Punctuation (like question marks, periods, commas, and so on) is always
25919 a word separator if it comes at the end of a word.
25920 By default, a punctuation character that is in the middle of a word does
25921 not break up that word as long as the character before and the character
25922 after it are both alphanumeric.
25923 If you add a character to this option it will be considered a
25924 word separator even when it occurs in the middle of an alphanumeric word.
25925 For example, if you want to skip through each part of an address instead
25926 of skipping the whole address at once you might want to include &quot;@&quot;
25927 and &quot;.&quot; in this list.
25928 If you want the word-skipper to stop on each part of a UNIX filename you
25929 could add &quot;/&quot; to the list.
25930 The equal sign and dash are other possibilities you might find helpful.
25932 <UL>   
25933 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25934 </UL><P>
25935 &lt;End of help on this topic&gt;
25936 </BODY>
25937 </HTML>
25938 ====== h_config_reply_indent_string =====
25939 <HTML>
25940 <HEAD>
25941 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25942 </HEAD>
25943 <BODY>
25944 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25946 This option specifies an aspect of Alpine's Reply command.
25947 When a message is replied to and the text of the message is included, the
25948 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25949 to each line indicating it is quoted text.
25950 (In case you haven't seen this before, &quot;string&quot; is a technical term
25951 that means chunk of text.)
25954 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25955 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25956 use one of the standard values,
25957 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25960 This option specifies a different value for that string.
25961 If you wish to use a string that begins or ends with a space,
25962 enclose the string in double quotes.
25965 Besides simple text, the prepended string can be based
25966 on the message being replied to.
25967 The following tokens are substituted for the message's corresponding value:
25969 <DL>
25970 <DT>_FROM_</DT>
25971 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25972 If the name is longer than six characters, only the first six characters are
25973 used.
25974 </DD>
25976 <DT>_NICK_</DT>
25977 <DD>This token gets replaced with the nickname of the message sender's
25978 address as found in your addressbook.
25979 If no addressbook entry is found,
25980 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25981 If the nickname is longer than six characters, only the first six characters are
25982 used.
25983 </DD>
25985 <DT>_INIT_</DT>
25986 <DD>This token gets replaced with the initials of the sender of the message.
25987 </DD>
25989 </DL>
25991 NOTE: When the
25992 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25993 feature is enabled, you are given the opportunity to edit the string, whether 
25994 it is the default or one automatically generated using the above tokens.
25996 If you change your <!--#echo var="VAR_reply-indent-string"-->
25997 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25998 quoted text will not be flowed
25999 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
26000 when you reply.
26001 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
26002 set to the default value.
26004 <UL>   
26005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26006 </UL><P>
26007 &lt;End of help on this topic&gt;
26008 </BODY>
26009 </HTML>
26010 ====== h_config_quote_replace_string =====
26011 <HTML>
26012 <HEAD>
26013 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
26014 </HEAD>
26015 <BODY>
26016 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
26018 This option specifies what string to use as a quote when <b>viewing</b> a
26019 message.  The standard way of quoting messages when replying is the string
26020 &quot;&gt;&nbsp;&quot; (quote space).
26021 With this variable set, viewing a message will
26022 replace occurrences of 
26023 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
26024 This setting works best when
26025 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
26026 or the equivalent setting in your correspondents' mail programs
26027 is set to the default
26028 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
26029 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
26031 By default, this setting will only work on messages that are flowed, which is
26032 the default way of sending messages for many mail clients including
26033 Alpine.  Enable the feature
26034 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
26035 to also have quote-replacement performed on non-flowed messages.
26038 Setting this option will replace  &quot;&gt;&quot; and 
26039 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
26040 spaces. To preserve those spaces enclose the full string in double quotes.
26042 No padding to separate the text of the message from the quote string is
26043 added. This means that if you do not add trailing spaces to the value of
26044 this variable, text will be displayed right next to the quote string,
26045 which may be undesirable. This can be avoided by adding a new string
26046 separated by a space from your selection of quote string replacement. This
26047 last string will be used for padding. For example, setting this variable to 
26048 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
26049 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
26050 a space from the last quote string to make it more readable.
26052 One possible setting for this variable could be
26053 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
26054 would have the effect of indenting each level of quoting four spaces and
26055 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
26056 more discernible by setting colors for quoted text.
26058 Replying to or forwarding the viewed message will preserve the original
26059 formatting of the message, so quote-replacement will not be performed on
26060 messages that are being composed.
26062 <UL>   
26063 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26064 </UL><P>
26065 &lt;End of help on this topic&gt;
26066 </BODY>
26067 </HTML>
26068 ====== h_config_empty_hdr_msg =====
26069 <HTML>
26070 <HEAD>
26071 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
26072 </HEAD>
26073 <BODY>
26074 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
26076 When sending, if both the To and Cc fields are empty and you
26077 are sending the message to a Bcc,
26078 Alpine will put a special address in the To line.  The default value is:
26081 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
26084 The reason for this is to avoid embarrassment caused by some Internet
26085 mail transfer software that interprets a &quot;missing&quot;
26086 <SAMP>To:</SAMP> header as an error and replaces it with an
26087 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
26088 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
26089 Bcc.  You may change the part of this message that comes before the
26090 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
26091 variable to something else.
26094 The normal default is &quot;undisclosed-recipients&quot;.
26097 <UL>   
26098 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26099 </UL><P>
26100 &lt;End of help on this topic&gt;
26101 </BODY>
26102 </HTML>
26103 ====== h_config_status_msg_delay =====
26104 <HTML>
26105 <HEAD>
26106 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
26107 </HEAD>
26108 <BODY>
26109 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
26111 This option has evolved over time, causing the possible values to be
26112 counter-intuitive.
26113 Read carefully before you set this option.
26114 First we explain what the option does, then there is a longer discussion
26115 following that.
26117 If this is set to zero, the default value, it has <EM>no</EM> effect.
26118 Positive and negative values serve two similar, but different purposes.
26120 If it is set to a positive number, it causes the cursor to move to the
26121 status line whenever a status message is printed and pause there for this
26122 many seconds.
26123 It will probably only be useful if the 
26124 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
26125 also turned on.
26126 Setting this option to a positive number can only be used to
26127 <EM>increase</EM> the status message delay.
26128 This may be useful for Braille displays, or other non-traditional displays.
26130 If it is set to a negative number the interpretation is a bit complicated.
26131 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
26132 allow you to read important status messages.
26133 Of course, this may cause you to miss some important messages.
26134 If you see a message flash by but miss what it says you can use the
26135 Journal command from the MAIN MENU to read it.
26136 If you set this option to a negative value, the delay will be
26137 no more than one second less than the absolute value
26138 of the value you set.
26139 So if you set it to -1, the delay will be no more than zero seconds, no
26140 delay at all.
26141 If you set it to -2, the delay will be no more than 1 second.
26142 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
26143 If the delay that Alpine would have used by default is less than this delay,
26144 then the smaller delay set by Alpine will be used.
26145 Setting this option to a negative value can only reduce the amount of
26146 delay, never increase it.
26148 Here is a more detailed explanation.
26149 Status messages are the messages that show up spontaneously in the
26150 status message line, usually the third line from the bottom of the screen.
26151 By default, Alpine assigns each status message it produces a minimum
26152 display time.
26153 Some status messages have a minimum display time of zero.
26154 You can see an example of such a message by paging up in this help text
26155 until you reach the top of the screen.
26156 If you try to page past the top you will see the message
26158 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
26160 in the status line.
26161 If there is another more important use of the status message line this message
26162 might be replaced quickly, or it even might not be shown at all.
26163 However, if there is no reason to get rid of the message, it might stay
26164 there for several seconds while you read the help.
26165 An example where it is replaced immediately happens when you page up in
26166 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
26167 command right after paging up.
26168 The message will disappear immediately without causing a delay (unless you
26169 have set this option to a positive value) to allow you to type input for
26170 the &quot;WhereIs&quot; command.
26171 Since it isn't a very important message, Alpine has set its minimum display
26172 time to zero seconds.
26174 Other messages have minimum display times of three or more seconds.
26175 These are usually error messages that Alpine thinks you ought to see.
26176 For example, it might be a message about a failed Save or a failed folder open.
26177 It is often the case that this minimum display time won't delay you in
26178 any way because the status message line is not needed for another reason.
26179 However, there are times when Alpine has to delay what it is doing in
26180 order to display a status message for the minimum display time.
26181 This happens when a message is being displayed and Alpine wants to ask
26182 for input from the keyboard.
26183 For example, when you Save a message you use the status message line.
26184 You get a prompt there asking for the name of the folder to save to.
26185 If there is a status message being displayed that has not
26186 yet displayed for its minimum
26187 time Alpine will display that status message surrounded with the characters
26188 &gt; and &lt; to show you that it is delaying.
26189 That might happen, for example, if you tried to save to a folder that
26190 caused an error, then followed that immediately with another Save command.
26191 You might find yourself waiting for a status message like
26193 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
26195 to finish displaying for three seconds.
26196 If that is something you find happening to you frequently, you may use
26197 negative values of this option to decrease or eliminate that delay, at
26198 the risk of missing the message.
26200 <UL>   
26201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26202 </UL><P>
26203 &lt;End of help on this topic&gt;
26204 </BODY>
26205 </HTML>
26206 ====== h_config_active_msg_interval =====
26207 <HTML>
26208 <HEAD>
26209 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26210 </HEAD>
26211 <BODY>
26212 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26214 When Alpine is delayed for some reason it usually shows that
26215 something is happening with a small animated display in the status
26216 message line near the bottom of the screen.
26217 This option sets how frequently the characters (for example, a spinning bar)
26218 in the active status message lines are updated.
26219 At most, it can be set to be udpated 20 times per second. 
26222 Setting this value to zero will prevent display of the animations
26223 altogether.
26226 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26227 can be used to remove the randomness from this animated display.
26230 <UL>   
26231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26232 </UL><P>
26233 &lt;End of help on this topic&gt;
26234 </BODY>
26235 </HTML>
26236 ====== h_config_mailchecknoncurr =====
26237 <HTML>
26238 <HEADER>
26239 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26240 </HEADER>
26241 <BODY>
26242 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26244 This option is closely related to the
26245 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26246 option, as well as the
26247 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26248 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26249 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26250 new-mail checking is disabled and this option will have no effect.
26252 Normally this option is set to zero, which means that the value used will be
26253 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26254 If you set this option to a value different from zero
26255 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26256 then that is the check interval that will be used
26257 for folders that are not the currently open folder or the INBOX.
26258 You may not even have any folders that are noncurrent and not the INBOX.
26259 If you do, it is likely that they are due to
26260 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26261 you have configured.
26262 This option also affects the rate of mail checking done on cached
26263 connections to folders you previously had open but are no longer actively
26264 using.
26265 You aren't expected to understand that last sentence, but if you are interested
26266 take a look at
26267 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26268 and the related options.
26270 <UL>   
26271 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26272 </UL><P>
26273 &lt;End of help on this topic&gt;
26274 </BODY>
26275 </HTML>
26276 ====== h_config_fifopath =====
26277 <HTML>
26278 <HEADER>
26279 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26280 </HEADER>
26281 <BODY>
26282 <H1>OPTION: NewMail FIFO Path</H1>
26284 This option is only available in UNIX Alpine.
26285 However, there is a very similar feature built in to PC-Alpine.
26286 In PC-Alpine's Config menu at the top of the screen
26287 is an option called &quot;New Mail Window&quot;.
26289 You may have Alpine create a FIFO special file (also called a named pipe) where
26290 it will send a one-line message each time a new message is received in
26291 the current folder, the INBOX, or any open
26292 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26293 To protect against two different Alpines both writing to the same FIFO, Alpine
26294 will only create the FIFO and write to it if it doesn't already exist.
26296 A possible way to use this option would be to have a separate window
26297 on your screen running the command
26299 <CENTER><SAMP>cat filename</SAMP></CENTER>
26301 where &quot;filename&quot; is the name of the file given for this option.
26302 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26303 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26304 You may be tempted to use &quot;tail -f filename&quot; to view the new
26305 mail log.
26306 However, the common implementations of the tail command will not do what you
26307 are hoping.
26309 The width of the messages produced for the FIFO may be altered with the
26310 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26312 On some systems, fifos may only be created in a local filesystem.
26313 In other words, they may not be in NFS filesystems.
26314 This requirement is not universal.
26315 If the system you are using supports it, it should work.
26316 (It is often the case that your home directory is in an NFS filesystem.
26317 If that is the case, you might try using a file in the &quot;/tmp&quot;
26318 filesystem, which is usually a local filesytem.)
26319 Even when it is possible to use an NFS-mounted filesystem as a place to name
26320 the fifo (for example, your home directory), it will still be the case that
26321 the reader (probably the &quot;cat&quot; command) and the
26322 writer (Alpine) of the fifo must be running on the same system.
26324 <UL>   
26325 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26326 </UL><P>
26327 &lt;End of help on this topic&gt;
26328 </BODY>
26329 </HTML>
26330 ====== h_config_newmailwidth =====
26331 <HTML>
26332 <HEADER>
26333 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26334 </HEADER>
26335 <BODY>
26336 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26338 For UNIX Alpine, this option is only useful if you have turned on the
26339 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26340 That option causes new mail messages to be sent to a fifo file.
26341 Those messages will be 80 characters wide by default.
26342 You can change the width of those messages by changing this option.
26343 For example, if you are reading those messages in another window you might
26344 want to set this width to the width of that other window.
26346 If you are using PC-Alpine, it has an option in the Config menu to turn
26347 on the &quot;New Mail Window&quot;.
26348 This present option also controls the width of that window.
26350 <UL>   
26351 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26352 </UL><P>
26353 &lt;End of help on this topic&gt;
26354 </BODY>
26355 </HTML>
26356 ====== h_config_mailcheck =====
26357 <HTML>
26358 <HEADER>
26359 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26360 </HEADER>
26361 <BODY>
26362 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26364 This option specifies, in seconds,
26365 how often Alpine will check for new mail.
26366 If set to zero, new-mail checking is disabled.
26367 (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
26368 current message is the last message of the folder.)
26369 There is a minimum value for this option, normally 15 seconds.
26370 The default value is normally 150 seconds.
26371 The higher you set this option, the easier it is on the server.
26373 There are some situations where automatic new-mail checking does not work.
26374 See the discussion about new-mail checking in
26375 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26377 The new-mail checking will not happen exactly at the frequency that you specify.
26378 For example, Alpine may elect to defer a non-INBOX mail check if you
26379 are busy typing.
26380 Or, it may check more frequently than you have specified if that is
26381 thought to be necessary to keep the server from closing the connection
26382 to the folder due to inactivity.
26383 If Alpine checks for new mail as a side effect of another command, it will reset
26384 the timer, so that new-mail checking may seem to happen irregularly instead of
26385 every X seconds like clockwork.
26387 If you are anxious to know about new mail as soon as possible, set the check
26388 interval low, and you'll know about the new mail by approximately
26389 that amount of time after it arrives.
26390 If you aren't so worried about knowing right away, set this option to a
26391 higher value.
26392 That will save the server some processing time and may save you some of
26393 the time you spend waiting for new-mail checks to happen if you are
26394 dealing with a slow server or slow network connection.
26396 If you suspect that new-mail checking is causing slow downs for you,
26397 you may want to look into the options
26398 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26399 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26400 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26401 which refine when mail checking is done.
26403 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26404 there is a minimum time
26405 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26406 between new-mail checks.
26407 Because of this minimum you may notice that new mail does not
26408 appear promptly when you expect it.
26409 The reason for this is to protect the server from over-zealous opening and
26410 closing of the Mail Drop folder, since that is a costly operation.
26412 <UL>   
26413 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26414 </UL><P>
26415 &lt;End of help on this topic&gt;
26416 </BODY>
26417 </HTML>
26418 ====== h_config_quell_checks_comp =====
26419 <HTML>
26420 <HEAD>
26421 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26422 </HEAD>
26423 <BODY>
26424 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26426 This option is closely related to the
26427 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26428 option, the
26429 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26430 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26432 If this option is set, then the normal new-mail checking that happens
26433 while you are composing will not happen for folders other than your
26434 INBOX (which depends on the setting
26435 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26437 You might want to set this option if you are experiencing delays while
26438 composing that you think might be related to the speed of the new-mail
26439 checks.
26441 Even with this option turned on, an occasional new-mail check may be done
26442 in order to keep the server from killing the connection to the folder.
26443 For example, IMAP servers may remove a connection to a folder if there
26444 has been no activity on the connection for 30 minutes or more.
26445 Instead of letting that happen, Alpine will check for new mail before the
26446 30 minutes is up even though you have turned on this feature to quell
26447 those checks.
26449 Besides new-mail checks, checkpoint operations on the folders
26450 will also be quelled when you set this option.
26451 The purpose of checkpointing is to write the changes to a folder out to
26452 disk periodically in order to avoid losing those changes when system or
26453 software problems occur.
26454 New-mail checking and checkpointing while you are not composing are not
26455 affected by this option.
26458 &lt;End of help on this topic&gt;
26459 </BODY>
26460 </HTML>
26461 ====== h_config_quell_checks_comp_inbox =====
26462 <HTML>
26463 <HEAD>
26464 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26465 </HEAD>
26466 <BODY>
26467 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26469 This option is closely related to the
26470 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26471 option, the
26472 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26473 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26475 If this option is set, then the normal new-mail checking that happens
26476 while you are composing will not happen for your INBOX.
26477 Checking of other folders is controlled in a similar way with the
26478 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26480 You might want to set this option if you are experiencing delays while
26481 composing that you think might be related to the speed of the new-mail
26482 checks.
26484 Even with this option turned on, an occasional new-mail check may be done
26485 in order to keep the server from killing the connection to the folder.
26486 For example, IMAP servers may remove a connection to a folder if there
26487 has been no activity on the connection for 30 minutes or more.
26488 Instead of letting that happen, Alpine will check for new mail before the
26489 30 minutes is up even though you have turned on this feature to quell
26490 those checks.
26492 Besides new-mail checks, checkpoint operations on the INBOX
26493 will also be quelled when you set this option.
26494 The purpose of checkpointing is to write the changes to a folder out to
26495 disk periodically in order to avoid losing those changes when system or
26496 software problems occur.
26497 New-mail checking and checkpointing while you are not composing are not
26498 affected by this option.
26500 &lt;End of help on this topic&gt;
26501 </BODY>
26502 </HTML>
26503 ====== h_config_maildropcheck =====
26504 <HTML>
26505 <HEADER>
26506 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26507 </HEADER>
26508 <BODY>
26509 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26511 New-mail checking for a
26512 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26513 mail checking for a regular folder.
26514 One of the differences is that the connection to the Mail Drop is not
26515 kept open and so the cost of checking
26516 (delay for you and additional load for the server) may be significant.
26517 Because of this additional cost we set a minimum time that
26518 must pass between checks.
26519 This minimum only applies to the automatic checking done by Alpine.
26520 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26521 at the end of a folder index, then the check is done right away.
26523 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26524 new-mail checks.
26525 You may want to set this minimum high in order to avoid experiencing some
26526 of the delays associated with the checks.
26527 Note that the time between checks is still controlled by the regular
26528 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26529 When Alpine is about to do an automatic check for new mail (because
26530 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26531 new-mail check
26532 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26533 the Mail Drop is checked for new mail as well.
26534 Therefore, it is only useful to set this option to a value that is higher
26535 than the <!--#echo var="VAR_mail-check-interval"-->.
26537 If this option is set to zero, automatic Mail Drop new-mail
26538 checking is disabled.
26539 There is a minimum value, normally 60 seconds.
26540 The default value is normally 60 seconds as well.
26541 This applies to the INBOX and to the currently open folder if that is
26542 different from the INBOX.
26545 <UL>   
26546 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26547 </UL><P>
26548 &lt;End of help on this topic&gt;
26549 </BODY>
26550 </HTML>
26551 ====== h_config_nntprange =====
26552 <HTML>
26553 <HEADER>
26554 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26555 </HEADER>
26556 <BODY>
26557 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26559 This option applies only to newsgroups accessed using the NNTP protocol.
26560 It does not, for example,
26561 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26564 When you open a connection to a News server using the NNTP protocol, you
26565 normally have access to all of the articles in each newsgroup.
26566 If a server keeps a large backlog of messages it may speed performance
26567 some to restrict attention to only the newer messages in a group.
26568 This option allows you to set how many article numbers should be checked
26569 when opening a newsgroup.
26570 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26571 of messages you ever want to see.
26572 For example, if you only ever wanted to look at the last 500 messages in each
26573 newsgroup you could set this option to 500.
26574 In actuality, it isn't quite that.
26575 Instead, for performance reasons, it specifies the range of article
26576 numbers to be checked, beginning
26577 with the highest numbered article and going backwards from there.
26578 If there are messages that have been canceled or deleted
26579 their article numbers are still counted as part of the range.
26581 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26582 numbers
26583 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26585 to be considered when reading a newsgroup.
26586 The number of messages that show up in your index will be less than or equal
26587 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26590 The purpose of this option is simply to speed up access when reading news.
26591 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26592 numbers, and can avoid downloading any information about the ignored articles.
26593 There is a cost you pay for this speedup.
26594 That cost is that there is no way for you to see those ignored articles.
26595 The articles that come before the range you specify are invisible to you and
26596 to Alpine, as if they did not exist at all.
26597 There is no way to see those messages using, for example, an unexclude command
26598 or something similar.
26599 The only way to see those articles is to set this option high enough (or
26600 set it to zero) and then to reopen the newsgroup.
26603 If this option is set to 0 (which is also the default),
26604 then the range is unlimited.
26605 This option applies globally to all NNTP servers and to all newsgroups
26606 on those servers.
26607 There is no way to set different values for different newsgroups or servers.
26610 <UL>   
26611 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26612 </UL><P>
26613 &lt;End of help on this topic&gt;
26614 </BODY>
26615 </HTML>
26616 ====== h_config_news_active =====
26617 <html>
26618 <header>
26619 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26620 </header>
26621 <body>
26622 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26624 This option tells Alpine where to look for the "active file" for newsgroups
26625 when accessing news locally, rather than via NNTP.  The default path is
26626 usually "/usr/lib/news/active".<p>
26627 <UL>   
26628 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26629 </UL><P>
26630 &lt;End of help on this topic&gt;
26631 </body>
26632 </html>
26633 ====== h_config_news_spool =====
26634 <html>
26635 <header>
26636 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26637 </header>
26638 <body>
26639 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26641 This option tells Alpine where to look for the "news spool" for newsgroups
26642 when accessing news locally, rather than via NNTP.  The default path is
26643 usually "/var/spool/news".<p>
26644 <UL>   
26645 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26646 </UL><P>
26647 &lt;End of help on this topic&gt;
26648 </body>
26649 </html>
26650 ====== h_config_image_viewer =====
26651 <html>
26652 <header>
26653 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26654 </header>
26655 <body>
26656 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26657 <body>
26658 This option specifies the program Alpine should call to view MIME
26659 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26660 no longer needed, but remains for backward compatibility.  The more
26661 general method for associating external printing and viewing programs with
26662 specific MIME data types is to use the system's (or your personal)
26663 "mailcap" configuration file.<p>
26664 <UL>   
26665 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26666 </UL><P>
26667 &lt;End of help on this topic&gt;
26668 </body>
26669 </html>
26670 ====== h_config_domain_name =====
26671 <HTML>
26672 <HEAD>
26673 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26674 </HEAD>
26675 <BODY>
26676 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26678 This option is used only if the 
26679 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26680 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26681 strips the hostname from your return (&quot;From&quot;) address and when 
26682 completing unqualified addresses that you enter into the composer.
26684 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26685 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26688 <!--chtml if pinemode="os_windows"-->
26689 <P>This option is not applicable to PC-Alpine.
26690 <!--chtml else-->
26692 <!--chtml endif-->
26693 <UL>
26694 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26695 </UL>
26697 &lt;End of help on this topic&gt;
26698 </BODY>
26699 </HTML>
26700 ====== h_config_prune_date =====
26701 <HTML>
26702 <HEAD>
26703 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26704 </HEAD>
26705 <BODY>
26706 <H1>OPTION: Last-Time-Prune Question</H1>
26708 This value records the last time you were asked about deleting old
26709 sent-mail.
26710 It is set automatically by Alpine at the beginning of each month.
26711 In the past, if you wished to suppress the monthly sent-mail
26712 pruning feature, you could set this to a date in the future.
26713 This value is relative to the year 1900, so 
26714 to set this, for example, to October 2005, use 105.10.
26716 You can still do that if you wish, or you can use the
26717 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26718 a little more convenient to use.
26720 <UL>   
26721 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26722 </UL><P>
26723 &lt;End of help on this topic&gt;
26724 </BODY>
26725 </HTML>
26726 ====== h_config_goto_default =====
26727 <HTML>
26728 <HEAD>
26729 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26730 </HEAD>
26731 <BODY>
26732 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26734 This value affects Alpine's behavior when you use the Goto command.
26735 Alpine's usual behavior has two parts.  If your current folder is
26736 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26737 default.  If the current folder is other than &quot;Inbox&quot;,
26738 &quot;Inbox&quot; is offered as the default.
26741 The available options include:
26743 <DL>
26745  <DT>folder-in-first-collection</DT>
26747  <DD> Alpine will offer the most recently visited folder in the default
26748 collection found in the &quot;Collection List&quot; screen as the default.
26749 </DD>
26751  <DT> inbox-or-folder-in-first-collection</DT>
26753  <DD> If the current folder is &quot;Inbox&quot;,
26754 Alpine will offer the most recently visited folder in the
26755 default collection found in the &quot;Collection List&quot; screen.
26756 If the current folder is other than &quot;Inbox&quot;,
26757 &quot;Inbox&quot; is offered as the default.
26758 </DD>
26760  <DT> inbox-or-folder-in-recent-collection</DT>
26762  <DD> This is Alpine's default behavior.
26763 If the current folder is &quot;Inbox&quot;,
26764 Alpine will offer the last open
26765 folder as the default.
26766 If the current folder is other than &quot;Inbox&quot;,
26767 &quot;Inbox&quot; is offered as the default.
26768 </DD>
26770  <DT> first-collection-with-inbox-default</DT>
26772  <DD> Instead of offering the most recently visited folder in the default
26773 collection, the default collection is offered but with &quot;Inbox&quot; as
26774 the default folder.
26775 If you type in a folder name it will be in the default collection.
26776 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26777 </DD>
26779  <DT> most-recent-folder</DT>
26781  <DD> The last accepted value simply causes the most recently opened
26782 folder to be offered as the default regardless of the currently opened
26783 folder.
26784 </DD>
26785 </DL>
26788 NOTE: The default while a newsgroup is open remains the same; the last
26789 open newsgroup.
26792 <UL>   
26793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26794 </UL><P>
26795 &lt;End of help on this topic&gt;
26796 </BODY>
26797 </HTML>
26798 ====== h_config_thread_lastreply_char =====
26799 <HTML>
26800 <HEAD>
26801 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26802 </HEAD>
26803 <BODY>
26804 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26806 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26807 INDEX display when using a
26808 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26809 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26810 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26811 The value of this option is a single character.
26812 This character is used instead of the vertical line character when there are
26813 no more replies directly to the parent of the current message.
26814 It can be used to &quot;round-off&quot; the bottom of the vertical line
26815 by setting it to a character such as a backslash (&#92;) or
26816 a backquote (&#96;).
26817 The default value of this option is the backslash character (&#92;).
26818 This option may not be set to the Empty Value.
26819 In that case, the default will be used instead.
26822 <UL>   
26823 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26824 </UL><P>
26825 &lt;End of help on this topic&gt;
26826 </BODY>
26827 </HTML>
26828 ====== h_config_thread_indicator_char =====
26829 <HTML>
26830 <HEAD>
26831 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26832 </HEAD>
26833 <BODY>
26834 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26836 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26837 INDEX display when using a
26838 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26839 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26840 The value of this option is a single character.
26841 This character is used to indicate that part of a thread (a conversation) is
26842 hidden beneath a message.
26843 The message could be expanded
26844 if desired with the &quot;/&quot; Collapse/Expand command.
26845 By default, the value of this option is the greater than sign (&gt;).
26847 If this option is set to the Empty Value, then the column (and the following
26848 blank column) will be deleted from the display.
26851 This option is closely related to the
26852 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26853 Another similar option that affects the thread display is the
26854 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26857 <UL>   
26858 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26859 </UL><P>
26860 &lt;End of help on this topic&gt;
26861 </BODY>
26862 </HTML>
26863 ====== h_config_thread_exp_char =====
26864 <HTML>
26865 <HEAD>
26866 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26867 </HEAD>
26868 <BODY>
26869 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26871 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26872 INDEX display when using a
26873 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26874 than &quot;none&quot;.
26875 The value of this option is a single character.
26876 This character is used to indicate that part of a thread has been expanded
26877 and could be collapsed if desired with
26878 the &quot;/&quot; Collapse/Expand command.
26879 By default, the value of this option is a dot (.).
26881 If this option is set to the Empty Value, then the column (and the following
26882 blank column) will be deleted from the display.
26885 This option is closely related to the
26886 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26887 Another similar option that affects the thread display is the
26888 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26891 <UL>   
26892 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26893 </UL><P>
26894 &lt;End of help on this topic&gt;
26895 </BODY>
26896 </HTML>
26897 ====== h_config_thread_index_style =====
26898 <HTML>
26899 <HEAD>
26900 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26901 </HEAD>
26902 <BODY>
26903 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26905 When a folder is sorted by Threads or OrderedSubject,
26906 this option will affect the INDEX displays.
26909 The possible values for this option are:
26911 <DL>
26912 <DT>regular-index-with-expanded-threads</DT>
26913 <DD>This is the default display.
26914 If the configuration option
26915 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26916 is set to something other than &quot;none&quot;, then this setting
26917 will cause Alpine to start off with a MESSAGE INDEX with all of
26918 the threads expanded.
26919 That is, each message will have a line in the MESSAGE INDEX display.
26920 The Collapse/Expand command (/) may be used to manually collapse or
26921 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26923 This setting affects the display when the folder is first threaded.
26924 The collapsed state may also be re-initialized by re-sorting the folder manually
26925 using the SortIndex command ($).
26926 After re-sorting the threads will once again all be expanded, even if you
26927 have previously collapsed some of them.
26929 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26930 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26931 in a different order.
26932 </DD>
26934 <DT>regular-index-with-collapsed-threads</DT>
26935 <DD>If the configuration option
26936 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26937 is set to something other than &quot;none&quot;, then this setting
26938 will cause Alpine to start out with all of the threads collapsed instead of
26939 starting out with all of the threads expanded.
26940 The Collapse/Expand command (/) may be used to manually collapse or
26941 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26943 This setting affects the display when the folder is first threaded.
26944 The collapsed state may also be re-initialized by re-sorting the folder manually
26945 using the SortIndex command ($).
26946 After re-sorting the threads will once again all be collapsed, even if you
26947 have previously expanded some of them.
26948 </DD>
26950 <DT>separate-index-screen-always</DT>
26951 <DD>With this setting and the next, you will see an index of threads
26952 instead of an
26953 index of messages, provided you have sorted by Threads or OrderedSubject.
26955 The THREAD INDEX contains a '*' in the first column if any message in the thread
26956 is marked Important.
26957 If not, it contains a '+' if any message in the thread is to you.
26958 The second column is blank. The third column contains a 'D' if all of the
26959 messages in the thread are deleted.
26960 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26962 When you view a particular thread from the THREAD INDEX you will be
26963 in the MESSAGE INDEX display
26964 but the index will only contain messages from the thread you are viewing.
26965 </DD>
26967 <DT>separate-index-screen-except-for-single-messages</DT>
26968 <DD>This is very similar to the option above.
26969 When you are in the THREAD INDEX, one of the available commands
26970 is &quot;ViewThd&quot;.
26971 With the setting &quot;separate-index-screen-always&quot; (the option above)
26972 when you view a particular thread you will be in the
26973 MESSAGE INDEX display and the index will only contain messages from
26974 the thread you are viewing.
26975 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26976 will be an index with only one message in it.
26977 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26978 setting instead, then that index that contains a single message
26979 will be skipped and you will go directly from the THREAD INDEX into the
26980 MESSAGE TEXT screen.
26981 </DD>
26983 </DL>
26986 <UL>   
26987 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26988 </UL><P>
26989 &lt;End of help on this topic&gt;
26990 </BODY>
26991 </HTML>
26992 ====== h_config_thread_disp_style =====
26993 <HTML>
26994 <HEAD>
26995 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26996 </HEAD>
26997 <BODY>
26998 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
27000 When a folder is sorted by Threads or OrderedSubject,
27001 this option will affect the MESSAGE INDEX display.
27002 By default, Alpine will display the MESSAGE INDEX in the
27003 &quot;show-thread-structure&quot; style if a folder is sorted
27004 by Threads or OrderedSubject.
27007 The possible values for this option are:
27009 <DL>
27010 <DT>none</DT>
27011 <DD>Regular index display.
27012 The same index line as would be displayed without threading is used.
27013 The only difference will be in the order of the messages.
27014 </DD>
27016 <DT>show-thread-structure</DT>
27017 <DD>Threaded Subjects will be indented and vertical bars and horizontal
27018 lines will be added to make it easier to see the relationships among
27019 the messages in a thread (a conversation).
27020 </DD>
27022 <DT>mutt-like</DT>
27023 <DD>This is the same as the option above except that the Subject
27024 is suppressed (is blank) if it matches the previous Subject in the thread.
27025 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
27026 Here is an example of what a mutt-like index might look like.
27027 In this example, the first column represents the message number, the
27028 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
27029 is set to &quot;regular-index-with-expanded-threads&quot;, and the
27030 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
27031 is set to a backslash:
27032 <PRE>
27033 &nbsp;&nbsp;&nbsp;1    Some topic
27034 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
27035 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
27036 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
27037 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
27038 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
27039 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
27040 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
27041 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
27042 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
27043 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
27044 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
27045 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
27046 &nbsp;&nbsp;&nbsp;14    Next topic
27047 </PRE>
27048 </DD>
27050 <DT>indent-subject-1</DT>
27051 <DD>Threaded Subjects will be indented one space per level of the conversation.
27052 The bars and lines that show up in the show-thread-structure display will
27053 not be there with this style.
27054 </DD>
27056 <DT>indent-subject-2</DT>
27057 <DD>Same as above but indent two spaces per level instead of one space.
27058 </DD>
27060 <DT>indent-from-1</DT>
27061 <DD>Similar to indent-subject-1, except that instead of indenting the
27062 Subject field one space the From field of a thread will be indented one
27063 space per level of the conversation.
27064 </DD>
27066 <DT>indent-from-2</DT>
27067 <DD>Same as above but indent two spaces per level instead of one space.
27068 </DD>
27070 <DT>show-structure-in-from</DT>
27071 <DD>The structure of the thread is illustrated with indenting, vertical bars,
27072 and horizontal lines just like with the show-thread-structure option, but
27073 the From field is used to show the relationships instead of the Subject field. 
27074 </DD>
27076 </DL>
27079 <UL>   
27080 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27081 </UL><P>
27082 &lt;End of help on this topic&gt;
27083 </BODY>
27084 </HTML>
27085 ====== h_config_pruning_rule =====
27086 <HTML>
27087 <HEAD>
27088 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
27089 </HEAD>
27090 <BODY>
27091 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
27093 By default, Alpine will ask at the beginning of each month whether or not
27094 you want to rename your sent-mail folder to a name like sent-mail-month-year.
27095 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
27096 change the format of the folder to sent-mail-yyyy-mm.)
27097 It will also ask whether you would like to delete old sent-mail folders.
27098 If you have defined
27099 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
27101 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
27102 Alpine will also ask about pruning those folders.
27105 With this option you may provide an automatic answer to these questions.
27106 The default value is to ask you what you'd like to do.
27109 The six possible values for this option are:
27111 <DL>
27112 <DT>ask about rename, ask about deleting</DT>
27113 <DD>This is the default.
27114 Alpine will ask whether you want to rename the folders and whether you
27115 want to delete each of the old folders.
27116 </DD>
27118 <DT>ask about rename, don't delete</DT>
27119 <DD>Alpine will ask whether you want to rename the folders, but won't
27120 ask about or delete old folders.
27121 </DD>
27123 <DT>always rename, ask about deleting</DT>
27124 <DD>This means you want to always answer yes and have Alpine automatically
27125 rename the folder if possible.
27126 You will also be asked about deleting old folders.
27127 </DD>
27129 <DT>always rename, don't delete</DT>
27130 <DD>This means you want to always answer yes and have Alpine automatically
27131 rename the folder if possible.
27132 There will be no deleting of old folders.
27133 </DD>
27135 <DT>don't rename, ask about deleting</DT>
27136 <DD>This means you want to always answer no.
27137 Alpine will not rename the folder.
27138 You will be asked about deleting old folders.
27139 </DD>
27141 <DT>don't rename, don't delete</DT>
27142 <DD>This means you want to always answer no.
27143 Alpine will not rename the folder.
27144 There will be no deleting of old folders, either.
27145 </DD>
27146 </DL>
27149 <UL>   
27150 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27151 </UL><P>
27152 &lt;End of help on this topic&gt;
27153 </BODY>
27154 </HTML>
27155 ====== h_config_reopen_rule =====
27156 <HTML>
27157 <HEAD>
27158 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
27159 </HEAD>
27160 <BODY>
27161 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
27163 Alpine normally checks for new mail in the currently open folder
27164 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
27167 There are some situations where automatic new-mail checking does not work.
27168 For example, if a mail folder is opened using the POP protocol or a newsgroup
27169 is being read using the NNTP protocol, then new-mail checking is disabled.
27172 It may be possible to check for new mail in these cases by reopening the
27173 folder.
27174 Alpine does not do this for you automatically, but you may do the commands
27175 manually to cause this to happen.
27176 You reopen by going back to the folder list screen from the message
27177 index screen with the &quot;&lt;&quot; command,
27178 and then going back into the message index screen with
27179 the &quot;&gt;&quot; command.
27180 (Actually, any method you would normally use to open a folder will work the
27181 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
27182 For example, the GoTo Folder command will work, or you may use L to go to the
27183 Folder List screen and Carriage Return to reopen the folder.)
27186 There are some cases where Alpine knows that reopening the folder should
27187 be useful as a way to discover new mail.
27188 At the time of this writing, connections made using the POP protocol,
27189 news reading using the NNTP protocol, local news reading, and local
27190 ReadOnly folders that are in the traditional UNIX or the MMDF format all
27191 fall into this category.
27192 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
27193 has no way of knowing, so it might also just be an exercise in futility.
27194 All remote, ReadOnly folders other than those listed just above fall into this
27195 category.
27196 The setting of this option together with the type of folder
27197 controls how Alpine will react to the apparent attempt to reopen a folder.
27200 If you don't reopen, then you will just be back in
27201 the message index with no change.
27202 You left the index and came back, but the folder remained &quot;open&quot;
27203 the whole time.
27204 However, if you do reopen the folder, the folder is closed and then reopened.
27205 In this case, the current state of the open folder is lost.
27206 The New status, Important and Answered flags,
27207 selected state, Zoom state, collapsed or expanded state of threads,
27208 current message number,
27209 and any other temporary state is all lost when the reopen happens.
27210 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27213 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27214 several places.
27215 That really implies the case where Alpine knows it is a good way to discover
27216 new mail, which is more than just POP and NNTP, but POP and NNTP are
27217 the cases of most interest.
27218 This option probably has more possible values than it deserves. They are:
27220 <DL>
27221 <DT>Always reopen</DT>
27222 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27223 whenever you type a command that implies a reopen, regardless of the
27224 access method.
27225 In other words, it is assumed you would always answer Yes if asked
27226 about reopening.
27227 </DD>
27229 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27230 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27231 will ask you whether to reopen other remote folders,
27232 with a default answer of Yes.
27233 </DD>
27235 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27236 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27237 will ask you whether to reopen other remote folders,
27238 with a default answer of No.
27239 </DD>
27241 <DT>Yes for POP/NNTP, No for other remote</DT>
27242 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27243 will assume a No answer for all other remote folders.
27244 </DD>
27246 <DT>Always ask [Yes]</DT>
27247 <DD>Alpine will not differentiate based on access method.
27248 It will always ask for all remote folders, with a default answer of Yes.
27249 </DD>
27251 <DT>Always ask [No]</DT>
27252 <DD>Alpine will not differentiate based on access method.
27253 It will always ask for all remote folders, with a default answer of No.
27254 </DD>
27256 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27257 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27258 of Yes.
27259 It will never attempt to reopen other remote folders.
27260 </DD>
27262 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27263 <DD>This is the default.
27264 Alpine will ask if the access method is POP or NNTP, with a default answer
27265 of No.
27266 It will never attempt to reopen other remote folders.
27267 </DD>
27269 <DT>Never reopen</DT>
27270 <DD>Alpine will never attempt to reopen already open folders.
27271 </DD>
27272 </DL>
27275 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27276 any of the other situations where it is likely that reopening is a good way
27277 to discover new mail.
27280 There is an alternative that may be of useful in some situations.
27281 Instead of manually checking for new mail you can set up a
27282 <A HREF="h_maildrop">Mail Drop</A>
27283 and automatically check for new mail.
27286 <UL>   
27287 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27288 </UL><P>
27289 &lt;End of help on this topic&gt;
27290 </BODY>
27291 </HTML>
27292 ====== h_config_inc_startup =====
27293 <HTML>
27294 <HEAD>
27295 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27296 </HEAD>
27297 <BODY>
27298 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27300 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27301 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27302 It determines which message will be the <EM>current message</EM> when
27303 the folder is first opened.
27304 The default value is &quot;first-unseen&quot;.
27307 The seven possible values for this option are:
27309 <DL>
27310 <DT>first-unseen</DT>
27311 <DD>The current message is set to the first
27312 unseen message that has not been marked deleted, or the last message if
27313 all of the messages have been seen previously.
27314 Messages which have not been seen or which have been seen but re-marked
27315 as New are considered unseen messages.
27316 See the note at the bottom of this help about newsgroups.
27317 </DD>
27319 <DT>first-recent</DT>
27320 <DD>Similar to the default, but rather than starting on the first
27321 unseen message Alpine starts on the first <EM>recent</EM> message.
27322 A message is recent if it arrived since the last time the folder was
27323 open.  This value causes the current message to be set to the first
27324 recent message if there is one, otherwise to the last
27325 message in the folder.
27326 </DD>
27328 <DT>first-important</DT>
27329 <DD>This will result in the current message being set to the first
27330 message marked Important (but not Deleted).
27331 If no messages are marked Important, then it will be the last message.
27332 Messages are marked Important by <EM>you</EM>, not by the sender, using
27334 <A HREF="h_common_flag">Flag command</A>.
27335 Or they may be marked Important by an Alpine
27336 <A HREF="h_mainhelp_filtering">Filter</A>
27337 that you have set up.
27338 </DD>
27340 <DT>first-important-or-unseen</DT>
27341 <DD>This selects the first of the first unseen and the first important
27342 messages.
27343 </DD>
27345 <DT>first-important-or-recent</DT>
27346 <DD>This selects the first of the first recent and the first important
27347 messages.
27348 </DD>
27350 <DT>first</DT>
27351 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27352 If all messages are deleted you start on the last message.
27353 </DD>
27355 <DT>last</DT>
27356 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27357 If all messages are deleted you start on the last message.
27358 </DD>
27359 </DL>
27362 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27363 &quot;first-recent&quot; are the same and are affected by whether or not the
27364 feature 
27365 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27366 is turned on. 
27367 Also, there is no permanent storage in news for an Important flag.
27368 This means that no messages will be marked Important when a newsgroup is
27369 first opened.
27372 <UL>   
27373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27374 </UL><P>
27375 &lt;End of help on this topic&gt;
27376 </BODY>
27377 </HTML>
27378 ====== h_config_browser =====
27379 <HTML>
27380 <HEAD>
27381 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27382 </HEAD>
27383 <BODY>
27384 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27385 <!--chtml if pinemode="os_windows"-->
27386 PC-Alpine users do not need to enter anything here, unless:<UL>
27387 <LI> they want to override, for use with Alpine, the application defined
27388 in the Windows operating system for handling URLs; or
27389 <LI> they are (planning on) using the same configuration file with 
27390 Unix Alpine.
27391 </UL>
27393 Note that if using a viewer that has a space in its path, you should
27394 use the DOS name for that directory or file. Example:
27395 <PRE>
27396 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27397 </PRE>
27398 <HR><P>
27399 <!--chtml endif-->
27400 This option affects Alpine's handling of URLs that are found in 
27401 messages you read.  Normally, only URLs Alpine can handle directly
27402 are automatically offered for selection in the &quot;Message
27403 Text&quot; screen.  When one or more applications
27404 capable of deciphering URLs on their command line are added here, Alpine
27405 will choose the first available to display URLs it cannot handle directly.
27406 A viewer's availability is based on its being specified with a <B>full
27407 directory path</B> and the evaluation of any optionally supplied
27408 parameters described below.
27411 Additionally, to support various connection methods and applications, each
27412 entry in this list can optionally begin with one or more of
27413 the following special tokens.  The allowed tokens include:
27416 <DL>
27417 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27418 <DD>
27419 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27420 evaluate a viewer's availability.  The command specified by the test
27421 string is run and if its resulting exit status is non-zero, Alpine will
27422 not consider the associated viewer for use.
27423 </DD>
27425 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27426 <DD>
27427 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27428 URL schemes that are to be used with the associated viewer.  This is
27429 the way to configure Alpine to recognize URLs other than the built-in set.
27431 It can also be used to override Alpine's built-in handlers.
27432 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27433 and Alpine would use (provided it passed all other criteria) the associated
27434 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27436 </DD>
27437 </DL>
27440 By default, Alpine will simply append a space character followed by the
27441 selected URL prior to launching the command in your specified SHELL.  You can
27442 optionally specify where in the command the selected URL should appear
27443 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27444 will be replaced with the selected URL before the command is handed
27445 to the shell.  If such replacement occurs, the default appending of the
27446 selected URL does not take place.
27449 NOTE: If the viewer you specify has any command-line arguments,
27450 including the &quot;_URL_&quot; token, you will need to add a
27451 double-quote character before the command path and after the last
27452 argument (see the &quot;lynx&quot; example below).
27455 So, here are some example entries:
27456 <PRE>
27457 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27458               &quot;/usr/local/bin/lynx _URL_&quot;
27459               C:&#92;BIN&#92;NETSCAPE.BAT
27460 </PRE>
27462 This example shows that for the first viewer in the list to be used
27463 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27464 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27465 If neither condition is met,
27466 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27467 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27468 If the path to &quot;lynx&quot; is invalid,
27469 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27470 Note that the last
27471 entry is a DOS/Windows path.  This is one way to support Alpine running
27472 on more than one architecture with the same configuration file.<P>
27474 <!--chtml if pinemode="os_windows"-->
27475 <!--chtml else-->
27476 Note that depending on the type of browser used and the method of 
27477 its invocation (such as whether it will open in a separate window) from
27478 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27479 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27480 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27481 In other words, launching the browser from Alpine may make Alpine 
27482 &quot;disappear&quot; (although it is still &quot;running&quot;)
27483 until you close the browser again.<P>  
27484 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27485 environment: for advanced users and  systems administrators</A>
27486 </UL>
27487 <!--chtml endif-->
27488 <P>If you are unsure what browsers are available on your system or how to 
27489 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27490 local computing support staff.
27491 <P><UL>
27492 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27493 </UL>
27495 &lt;End of help on this topic&gt;
27496 </BODY>
27497 </HTML>
27498 ====== h_config_history =====
27499 <HTML>
27500 <HEAD>
27501 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
27502 </HEAD>
27503 <BODY>
27504 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
27506 This option allows you to input a list of directories that Alpine will offer 
27507 for you to use when you are saving or exporting attachments. This is useful
27508 when navigating to specific directories becomes too tedious, or when you 
27509 need to do this on a daily basis, and want Alpine to remember this on a 
27510 permanent basis.
27512 The list of directories saved here can be accessed using the ^Y and ^V commands
27513 in the save prompt for attachments, or the export command.
27515 <P><UL>
27516 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27517 </UL>
27519 &lt;End of help on this topic&gt;
27520 </BODY>
27521 </HTML>
27522 ====== h_config_browser_xterm =====
27523 <HTML>
27524 <HEAD>
27525 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27526 </HEAD>
27527 <BODY>
27528 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27529 environment: for advanced users and  systems administrators</H1>
27530 If you are using Alpine with an X-terminal (emulator) and want to define an 
27531 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27532 you may want to do so in a manner that causes any <B>already</B> 
27533 invoked viewer application to be used for viewing URLs you select from Alpine 
27534 messages, and a <B>new</B> URL-viewer process to be 
27535 started <B>only</B> if the same application has <B>not already</B> 
27536 been launched -- for one reason, to avoid file-locking contentions among 
27537 multiple invocations of the same URL-viewer application.  
27538 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27539 option does not do this.)  A method of doing that would be:<OL>
27540 <LI> use 
27541 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27542 check (using commands appropriate for your Unix shell
27543 in place of <VAR>test-string</VAR>) for the presence of a 
27544 lockfile created by the URL-viewer application -- which implies that the 
27545 application is already running, though this is not foolproof. 
27546 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27547 application with its appropriate command line option(s) to 
27548 show the URL selected from the Alpine message in an already open window of 
27549 that application, or perhaps in a new window of that application.  
27551 <LI> In the 
27552 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27553 application without those command line options, but this time using the 
27554 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27555 is defined.
27556 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27557 windows environment (for instance, using VT-100 terminal emulation), you 
27558 may wish to specify a non-X windows URL-viewer application such as Lynx
27559 as the last entry.
27560 </OL><BR>
27561 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27562 the command shell, the URL-viewer application(s), and possibly the specific 
27563 version of the latter, you are using.  
27565 Relevant command 
27566 line options for the Netscape browser for showing URLs (selected from Alpine) 
27567 when Netscape is already running are discussed in the document
27568 &quot;Remote Control of UNIX Netscape&quot; 
27569 found at the URL (as of 12 Aug. 1998):
27572 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27574 <P>(If the URL-viewer application is 
27575 <B>not</B> running on the same host as Alpine, but being launched from an 
27576 applications server, you may not be able to use the command line options for 
27577 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27579 <!--chtml if this-method="shown-to-work"-->
27580 An example using the Korn shell and the Netscape browser (first entry wrapped 
27581 because of its length, but should all appear on one line):
27583 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27585 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27586               &quot;/usr/local/bin/lynx '_URL_'&quot;
27588 <!--chtml endif-->
27590 <UL>   
27591 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27592 </UL><P>
27593 &lt;End of help on this topic&gt;
27594 </BODY>
27595 </HTML>
27596 ====== h_config_enable_full_hdr =====
27597 <HTML>
27598 <HEAD>
27599 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27600 </HEAD>
27601 <BODY>
27602 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27604 This feature enables the &quot;H Full Headers&quot; command which toggles between
27605 the display of all headers in the message and the normal edited view of
27606 headers.  The Full Header command also controls which headers are included
27607 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27608 Full Header mode will respect the
27609 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27610 feature setting.)
27612 If Full Header mode is turned on and you Forward a message, you will
27613 be asked if you'd like to forward the message as an attachment, as opposed
27614 to including the text of the message in the body of your new message.
27616 If you have also turned on the
27617 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27618 option then the Full Headers command actually rotates through three states
27619 instead of just two.
27620 The first is the normal view with long quotes suppressed.
27621 The second is the normal view but with the long quotes included.
27622 The last enables the display of all headers in the message.
27623 When using Export, Pipe, Print, Forward, or Reply the quotes are
27624 never suppressed, so the first two states are identical.
27626 Normally, the Header Mode will reset
27627 to the default behavior when moving to a new message.
27628 The mode can be made to persist from message to message by setting the feature
27629 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27631 <UL>   
27632 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27633 </UL><P>
27634 &lt;End of help on this topic&gt;
27635 </BODY>
27636 </HTML>
27637 ====== h_config_enable_full_hdr_and_text =====
27638 <HTML>
27639 <HEAD>
27640 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27641 </HEAD>
27642 <BODY>
27643 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27645 This feature affects how the &quot;H Full Headers&quot; command displays
27646 message text.  If set, the raw message text will be displayed.  This
27647 especially affects MIME formatted email, where the entire MIME format
27648 will be displayed.  This feature similarly affects how messages are
27649 included for the Export, Pipe, Print, Forward, and Reply functions.
27651 When viewing a raw message that has attachments with this feature set,
27652 you will not be able to view attachments without first leaving full 
27653 headers mode.  This is because MIME parsing is not done on the raw message.
27655 <UL>   
27656 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27657 </UL><P>
27658 &lt;End of help on this topic&gt;
27659 </BODY>
27660 </HTML>
27661 ====== h_config_enable_pipe =====
27662 <HTML>
27663 <HEAD>
27664 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27665 </HEAD>
27666 <BODY>
27667 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27669 This feature enables the "| Pipe" command that sends the current message
27670 to the specified command for external processing.
27673 A short description of how the pipe command works is given
27674 <A HREF="h_pipe_command">here</A>.
27677 <UL>   
27678 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27679 </UL><P>
27680 &lt;End of help on this topic&gt;
27681 </BODY>
27682 </HTML>
27683 ====== h_config_quell_full_hdr_reset =====
27684 <HTML>
27685 <HEAD>
27686 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27687 </HEAD>
27688 <BODY>
27689 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27691 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27692 normally resets to the default state when switching to a new message.
27693 For example, if you've used the &quot;H&quot; command to turn on Full
27694 Headers for a message you are viewing, and then you type the Next command
27695 to look at the next message, the full headers will no longer be shown.
27696 Setting this feature disables that reset.
27697 Instead, the Header Mode remains the same from message to message.
27700 The presence or absence of the HdrMode command is determined by the
27701 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27702 Feature-List option.
27704 <UL>   
27705 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27706 </UL><P>
27707 &lt;End of help on this topic&gt;
27708 </BODY>
27709 </HTML>
27710 ====== h_config_enable_tab_complete =====
27711 <HTML>
27712 <HEAD>
27713 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27714 </HEAD>
27715 <BODY>
27716 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27718 This feature enables the TAB key when at a prompt for a filename. In this
27719 case, TAB will cause the partial name already entered to be automatically
27720 completed, provided the partial name is unambiguous.
27721 This feature is on by default.
27723 Similarly, this feature also enables TAB completion of address book
27724 nicknames when at a prompt for a nickname,
27725 or when typing in an address field in the composer.
27727 &lt;End of help on this topic&gt;
27728 </BODY>
27729 </HTML>
27730 ====== h_config_quit_wo_confirm =====
27731 <HTML>
27732 <HEAD>
27733 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27734 </HEAD>
27735 <BODY>
27736 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27738 This feature controls whether or not Alpine will ask for confirmation when a
27739 Quit command is received.
27741 &lt;End of help on this topic&gt;
27742 </BODY>
27743 </HTML>
27744 ====== h_config_quote_replace_noflow =====
27745 <HTML>
27746 <HEAD>
27747 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27748 </HEAD>
27749 <BODY>
27750 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27752 This feature, which is only active when
27753 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27754 also set,
27755 enables quote-replacement on non-flowed messages.  It is off
27756 by default because a non-flowed message is more dependent on its format,
27757 and thus quote-replacement may cause less-than-pleasing results.
27758 Setting this feature will cause quote-replacement similar to that of flowed
27759 messages, but with the added possibility of long lines being wrapped
27760 into new lines if the Quote-Replacement-String is longer than the string
27761 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27763 &lt;End of help on this topic&gt;
27764 </BODY>
27765 </HTML>
27766 ====== h_config_enable_jump =====
27767 <HTML>
27768 <HEAD>
27769 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27770 </HEAD>
27771 <BODY>
27772 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27774 When this feature is set you may enter a number (followed by RETURN)
27775 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27776 screens.  In other words, it obviates the need for typing the "J" for the
27777 Jump command.
27779 &lt;End of help on this topic&gt;
27780 </BODY>
27781 </HTML>
27782 ====== h_config_enable_alt_ed =====
27783 <HTML>
27784 <HEAD>
27785 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27786 </HEAD>
27787 <BODY>
27788 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27790 If this feature is set (the default), and the 
27791 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27792 <B>is not</B> set, entering
27793 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27794 for the name of the editor you would like to use.
27796 If the environment variable $EDITOR is set, its value will be offered as
27797 a default.
27799 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27800 <B>is</B> set, the ^_ key will activate the specified
27801 editor without prompting, in which case it is not necessary to
27802 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27804 <UL>   
27805 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27806 </UL><P>
27807 &lt;End of help on this topic&gt;
27808 </BODY>
27809 </HTML>
27810 ====== h_config_alt_ed_now =====
27811 <HTML>
27812 <HEAD>
27813 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27814 </HEAD>
27815 <BODY>
27816 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27818 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27819 variable are both set, Alpine will
27820 automatically activate the specified editor when the cursor is moved from
27821 the header of the message being composed into the message text.  For
27822 replies, the alternate editor will be activated immediately.  If this
27823 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27824 automatically ask for the name of an alternate editor when the cursor
27825 is moved out of the header being composed, or if a reply is being done.
27827 <P><UL>
27828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27829 </UL>
27831 &lt;End of help on this topic&gt;
27832 </BODY>
27833 </HTML>
27834 ====== h_config_enable_bounce =====
27835 <HTML>
27836 <HEAD>
27837 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27838 </HEAD>
27839 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27840 <BODY>
27842 Setting this feature enables the "B Bounce" command, which will prompt
27843 for an address and *remail* the message to the new recipient.  This command
27844 is used to re-direct messages that you have received in error, or need to
27845 be redirected for some other reason (e.g. list moderation).  The final
27846 recipient will see a header indicating that you have Resent the msg, but
27847 the message's From: header will show the original author of the message,
27848 and replies to it will go back to that author, and not to you.
27850 &lt;End of help on this topic&gt;
27851 </BODY>
27852 </HTML>
27853 ====== h_config_enable_agg_ops =====
27854 <HTML>
27855 <HEAD>
27856 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27857 </HEAD>
27858 <BODY>
27859 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27861 When this feature is set you may use the commands and subcommands that relate to
27862 performing operations on more than one message at a time.  We call these
27863 &quot;aggregate operations&quot;.  In particular, the 
27864 <!--chtml if pinemode="function_key"-->&quot;F5
27865 <!--chtml else-->&quot;;
27866 <!--chtml endif--> Select&quot;, 
27868 <!--chtml if pinemode="function_key"-->
27869 &quot;F6
27870 <!--chtml else-->
27871 &quot;A 
27872 <!--chtml endif-->
27873 Apply&quot;, and 
27874 <!--chtml if pinemode="function_key"-->
27875 &quot;F4
27876 <!--chtml else-->
27877 &quot;Z 
27878 <!--chtml endif-->
27879 Zoom&quot; commands are enabled by this feature.  Select is used to
27880 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27881 then be used to apply any message command to all of the selected/tagged
27882 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27883 view between just those Selected and all messages in the folder.
27885 This feature also enables the 
27886 <!--chtml if pinemode="function_key"-->
27887 &quot;F7&quot; 
27888 <!--chtml else-->
27889 &quot;^X&quot; 
27890 <!--chtml endif-->
27892 subcommand in the MESSAGE INDEX 
27893 WhereIs command that causes all messages matching the WhereIs argument to 
27894 become selected; and the Select, Select Current, and ZoomMode commands in the
27895 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27897 Some related help topics are
27898 <UL>
27899 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27900 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27901 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27902 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27903 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27904 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27905 </UL>
27907 <UL>   
27908 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27909 </UL><P>
27910 &lt;End of help on this topic&gt;
27911 </BODY>
27912 </HTML>
27914 ====== h_config_enable_flag =====
27915 <HTML>
27916 <HEAD>
27917 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27918 </HEAD>
27919 <BODY>
27920 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27922 Setting this feature enables the
27923 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27924 command that allows you to
27925 manipulate the status flags associated with a message.  By default, Flag
27926 will set the "Important" flag, which results in an asterisk being
27927 displayed in column one of the MESSAGE INDEX for such messages.
27929 &lt;End of help on this topic&gt;
27930 </BODY>
27931 </HTML>
27932 ====== h_config_flag_screen_default =====
27933 <HTML>
27934 <HEAD>
27935 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27936 </HEAD>
27937 <BODY>
27938 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27940 The feature modifies the behavior of the
27941 <a href="h_common_flag">Flag</a>
27942 command (provided it too is
27943 <A HREF="h_config_enable_flag">enabled</A>).
27944 By default, when the "* Flag" command is selected,
27945 Alpine offers a prompt to set one of several flags and also offers the
27946 option of entering the detailed flag manipulation screen via the "^T"
27947 key. Enabling this feature causes Alpine to immediately enter the detailed
27948 flag screen rather than first offer the simple prompt.
27950 <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.
27952 &lt;End of help on this topic&gt;
27953 </BODY>
27954 </HTML>
27955 ====== h_config_flag_screen_kw_shortcut =====
27956 <HTML>
27957 <HEAD>
27958 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27959 </HEAD>
27960 <BODY>
27961 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27963 This feature modifies the behavior of the
27964 <a href="h_common_flag">Flag</a> command
27965 and the <A HREF="h_index_cmd_select">Select</A> command.
27966 This feature is set by default.
27967 When this feature is not set, when the "* Flag" command is selected,
27968 Alpine offers a prompt to set one of several flags and also offers the
27969 option of entering the detailed flag manipulation screen via the "^T"
27970 key.
27971 If you have
27972 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27973 defined, then enabling this feature adds a shortcut way to set or unset
27974 keywords.
27975 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27976 a keyword if you've given it a nickname) and that will set the keyword.
27978 An example is easier to understand than the explanation.
27979 The flag command can always be used to set the system flags.
27980 For example, to set the Answered flag you would type
27982 <CENTER><SAMP>* A</SAMP></CENTER>
27984 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27985 option in the Config screen.
27986 By default, to set a keyword like &quot;Work&quot; you would usually
27987 have to go to the Flag Details screen using
27988 the &quot;^T To Flag Details&quot; command.
27989 Instead, if you have enabled this feature, you may type
27991 <CENTER><SAMP>* W</SAMP></CENTER>
27993 to set the Work flag, or
27995 <CENTER><SAMP>* ! W</SAMP></CENTER>
27997 to unset it.
27998 Just like for the other flag setting commands, the case of the letter does
27999 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
28000 keyword.
28002 Notice that you can only use this trick for one keyword that begins
28003 with &quot;W&quot;.
28004 If you happen to have a &quot;Work&quot; keyword and another keyword that is
28005 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
28006 your list of keywords.
28007 Also, there are five letters that are reserved for system
28008 flags and the NOT command.
28009 If you type &quot;* A&quot; it will always set the Answered flag, not
28010 your &quot;Aardvark&quot; keyword.
28011 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
28012 the Flag Details screen.
28014 Because enabling the
28015 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
28016 option causes Alpine to skip directly to the Flag Details screen when the
28017 Flag command is used, 
28018 setting it will cause this feature to have no effect at all.
28020 Similarly, when Selecting by Keyword, setting this option will allow you
28021 to use Keyword initials instead of full keywords.
28023 &lt;End of help on this topic&gt;
28024 </BODY>
28025 </HTML>
28026 ====== h_config_can_suspend =====
28027 <HTML>
28028 <HEAD>
28029 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
28030 </HEAD>
28031 <BODY>
28032 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
28034 Setting this feature will allow you to type ^Z (Control Z) to 
28035 <!--chtml if pinemode="os_windows"-->
28036 minimize Alpine into its icon, bringing into focus whatever
28037 application is running behind the PC-Alpine window.
28038 <!--chtml else-->
28039 temporarily suspend Alpine.
28042 This does not exit Alpine, but puts it in the background to watch
28043 for new mail and such.  Normally, you type a command, such
28044 as &quot;fg&quot; at your system prompt to return to your Alpine session.
28047 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
28048 adjusts whether Alpine is placed into the background of the shell its 
28049 running in or starts a news shell.
28050 <!--chtml endif-->
28053 <UL>   
28054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28055 </UL><P>
28056 &lt;End of help on this topic&gt;
28057 </BODY>
28058 </HTML>
28059 ====== h_config_take_lastfirst ======
28060 <HTML>
28061 <HEAD>
28062 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
28063 </HEAD>
28064 <BODY>
28065 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
28067 Normally, when TakeAddr is used to copy an address from a message into
28068 an address book entry, Alpine will attempt to rewrite the full name of the
28069 address in the form
28072 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
28074 instead of<P>
28076 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
28079 It does this because many people find it useful to sort by Last name
28080 instead of First name.  If this feature is set, then the TakeAddr command
28081 will not attempt to reverse the name in this manner.
28083 &lt;End of help on this topic&gt;
28084 </BODY></HTML>
28085 ====== h_config_disable_regex ======
28086 <HTML>
28087 <HEAD>
28088 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
28089 </HEAD>
28090 <BODY>
28091 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
28093 Normally, the
28094 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
28095 option is interpreted as a regular expression.
28096 One type of address that might cause trouble is an address that
28097 contains a plus sign.
28098 If you want to have an address with a plus as one of your
28099 <!--#echo var="VAR_alt-addresses"-->
28100 and you don't want to use regular expressions, then setting this
28101 feature will cause Alpine to treat the addresses you list literally instead.
28103 &lt;End of help on this topic&gt;
28104 </BODY></HTML>
28105 ====== h_config_take_fullname ======
28106 <HTML>
28107 <HEAD>
28108 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
28109 </HEAD>
28110 <BODY>
28111 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
28113 Normally, when TakeAddr is used to copy an address or addresses
28114 from a message into an address book entry, Alpine will try to preserve
28115 the full name associated with each address in the list of addresses.
28116 The reason for this is so that if the entry is a list or later becomes a
28117 list, then information about the individual addresses in the list
28118 is preserved.
28119 If you would rather just have the simple addresses in the list of addresses,
28120 set this feature. For example, with the default setting you might
28121 see something like this in the ADDRESS BOOK editor after you type TakeAddr
28123 <PRE>
28124  Nickname  : nick
28125  Fullname  : Bedrock Elders
28126  Fcc       :
28127  Comment   :
28128  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
28129              Barney Rubble &lt;rubble@bedrock.org&gt;
28130 </PRE>
28132 but with this feature set it would look like
28134 <PRE>
28135  Nickname  : nick
28136  Fullname  : Bedrock Elders
28137  Fcc       :
28138  Comment   :
28139  Addresses : flint@bedrock.org,
28140              rubble@bedrock.org
28141 </PRE>
28143 instead. Note the difference in the Addresses field.
28145 &lt;End of help on this topic&gt;
28146 </BODY></HTML>
28147 ====== h_config_print_from ======
28148 <HTML>
28149 <HEAD>
28150 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
28151 </HEAD>
28152 <BODY>
28153 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
28155 If this feature is set, then the Berkeley-mail style From line is included
28156 at the start of each message that is printed.  This line looks something
28157 like the following, with the address replaced by the address from the
28158 From line of the message being printed:
28160 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
28161 14:11:06 1998
28163 &lt;End of help on this topic&gt;
28164 </BODY>
28165 </HTML>
28166 ====== h_config_expanded_distlists ======
28167 <HTML>
28168 <HEAD>
28169 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
28170 </HEAD>
28171 <BODY>
28172 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
28173 If this feature is set, then distribution lists in the address book
28174 screen will always be expanded automatically.
28176 &lt;End of help on this topic&gt;
28177 </BODY>
28178 </HTML>
28179 ====== h_config_compose_news_wo_conf ======
28180 <HTML>
28181 <HEAD>
28182 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
28183 </HEAD>
28184 <BODY>
28185 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
28186 This feature controls one aspect of Alpine's Composer.  If you enter the
28187 composer while reading a newsgroup, you will normally be prompted to
28188 determine whether you intend the new message to be posted to the current
28189 newsgroup or not.  If this feature is set, Alpine will not prompt you
28190 in this situation, and will assume that you do indeed wish to post
28191 to the newsgroup you are reading.
28193 &lt;End of help on this topic&gt;
28194 </BODY>
28195 </HTML>
28196 ====== h_config_compose_rejects_unqual ======
28197 <HTML>
28198 <HEAD>
28199 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
28200 </HEAD>
28201 <BODY>
28202 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28204 This feature controls one aspect of the message composer; in particular,
28205 what happens when an unqualified name is entered into an address header.
28206 If set, unqualified names entered as addresses will be treated as errors
28207 unless they match an addressbook nickname.  Alpine will not attempt to turn
28208 them into complete addresses by adding your local domain.<P>
28210 A complete (fully qualified) address is one containing a username followed
28211 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28212 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28213 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28215 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28219 When you enter a fully qualified address, Alpine does not interpret or
28220 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28221 your system.  Alpine conforms to the Internet standards governing message
28222 headers and will not send an unqualifed name to the MTA.  Therefore, when
28223 you enter an unqualified name, Alpine will normally attempt to turn it into
28224 a fully qualified address, first by checking to see if you have entered a
28225 matching nickname in your addressbook, or failing that, by simply adding
28226 your own domain to the name entered.  So if your address is
28227 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28228 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28229 that into &quot;fred@example.com&quot;.<P>
28231 There are situations where it is not desirable for Alpine to interpret such
28232 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28233 turned out to be a typo (intended to be an addressbook nickname), but
28234 there actually was a &quot;fred&quot; in your local domain, the message might 
28235 be mis-delivered without your realizing it.  In order to reduce the likelihood
28236 of such accidents, setting this feature will cause Alpine to treat such
28237 addresses as errors, and require that you explicitly enter the full local
28238 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28239 matches an address book nickname.<P>
28241 Consider this a safety feature against mis-directed mail.
28243 <UL>   
28244 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28245 </UL><P>
28246 &lt;End of help on this topic&gt;
28247 </BODY>
28248 </HTML>
28249 ====== h_config_quell_local_lookup ======
28250 <HTML>
28251 <HEAD>
28252 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28253 </HEAD>
28254 <BODY>
28255 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28257 This feature controls an aspect of Alpine's Composer, and if needed, will
28258 usually be set by your system manager in Alpine's system-wide configuration
28259 file. Specifically, if this feature is set, Alpine will not attempt to look
28260 in the system password file to find a Full Name for the entered address.
28262 Normally, names you enter into address fields (e.g. To: or Cc:) are
28263 checked against your address book(s) to see if they match an address book
28264 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28265 the Unix password file.  If the entered name matches a username in the
28266 system password file, Alpine extracts the corresponding Full Name information
28267 for that individual, and adds that to the address being entered.
28269 However, password file matching can have surprising (incorrect) results if
28270 other users of the system do not receive mail at the domain you are using.
28271 That is, if either the 
28272 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28273 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28274 option
28275 is set such that the administrative domain of other users on the system
28276 isn't accurately reflected, Alpine should be told that a passwd file match
28277 is coincidental, and Full Name info will be incorrect.  For example, a
28278 personal name from the password file could get falsely paired with the
28279 entered name as it is turned into an address in the configured domain.
28281 If you are seeing this behavior, enabling this feature will prevent Unix
28282 Alpine from looking up names in the password file to find the Full Name
28283 for incomplete addresses you enter.<P>
28284 <UL>
28285 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28286 </UL>
28288 &lt;End of help on this topic&gt;
28289 </BODY>
28290 </HTML>
28291 ====== h_config_tab_checks_recent ======
28292 <HTML>
28293 <HEAD>
28294 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28295 </HEAD>
28296 <BODY>
28297 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28299 In a FOLDER LIST screen, the TAB key usually just changes which
28300 folder is highlighted.
28301 If this feature is set, then the TAB key will cause the number of
28302 recent messages and the total number of messages in the highlighted folder
28303 to be displayed instead.
28306 &lt;End of help on this topic&gt;
28307 </BODY>
28308 </HTML>
28309 ====== h_config_maildrops_preserve_state ======
28310 <HTML>
28311 <HEAD>
28312 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28313 </HEAD>
28314 <BODY>
28315 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28317 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28318 Normally, when mail is moved from a Mail Drop folder to a destination
28319 folder, it is delivered as new mail.
28320 Any Seen/New, Answered, Important/Flagged state that has changed will be
28321 ignored.
28322 All of the mail will be considered unSeen, unAnswered, and unImportant after
28323 it is moved.
28325 If this feature is set, then the state changes that have been made
28326 to the messages in the Mail Drop folder will be preserved.
28328 In any case, messages that are already marked Deleted when the
28329 mail is to be moved from the Mail Drop will be ignored.
28331 &lt;End of help on this topic&gt;
28332 </BODY>
28333 </HTML>
28334 ====== h_config_preopen_stayopens ======
28335 <HTML>
28336 <HEAD>
28337 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28338 </HEAD>
28339 <BODY>
28340 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28342 This feature is related to the option
28343 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28344 Normally, Stay Open folders are only opened on demand, when the user
28345 asks to open them.
28346 From then on they are kept open for the duration of the session.
28347 However, if this feature is set, then the Stay Open folders will all be
28348 opened at startup, at the same time that the INBOX is opened.
28351 &lt;End of help on this topic&gt;
28352 </BODY>
28353 </HTML>
28354 ====== h_config_expunge_inbox ======
28355 <HTML>
28356 <HEAD>
28357 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28358 </HEAD>
28359 <BODY>
28360 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28362 The INBOX is normally treated differently from regular folders in several
28363 ways.
28364 One of the differences is that the normal &quot;close&quot; sequence of
28365 events is deferred until Alpine is exited, instead of happening when you
28366 leave the INBOX to view another folder.
28367 The &quot;close&quot; sequence normally includes the Expunging
28368 of deleted messages
28369 (either automatically or after a prompt, controlled by the features
28370 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28371 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28372 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28373 handling of the
28374 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28377 If this feature is set the &quot;close&quot; sequence handling will take
28378 place every time you leave the INBOX.
28379 The INBOX will still be kept open, but the offer to Expunge and the archiving
28380 to the <!--#echo var="VAR_read-message-folder"-->
28381 will take place each time you leave the INBOX instead of only once at the
28382 end of the session.
28385 &lt;End of help on this topic&gt;
28386 </BODY>
28387 </HTML>
28388 ====== h_config_expunge_stayopens ======
28389 <HTML>
28390 <HEAD>
28391 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28392 </HEAD>
28393 <BODY>
28394 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28396 This feature is related to the option
28397 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28398 Stay Open folders are treated differently from regular folders in several
28399 ways.
28400 One of the differences is that the normal &quot;close&quot; sequence of
28401 events is deferred until Alpine is exited, instead of happening when you
28402 leave the folder to view another folder.
28403 The &quot;close&quot; sequence normally includes the Expunging
28404 of deleted messages
28405 (either automatically or after a prompt, controlled by the features
28406 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28407 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28408 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28409 handling of
28410 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28413 If this feature is set the &quot;close&quot; sequence handling will take
28414 place when you leave the Stay Open folder.
28415 The folder will still be kept open, but the offer to Expunge and the archiving
28416 will take place each time you leave the folder instead of only once at the
28417 end of the session.
28418 This feature does not affect the INBOX, which will still only be processed
28419 when you exit Alpine.
28420 However, there is a similar feature that affects only the INBOX called
28421 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28424 &lt;End of help on this topic&gt;
28425 </BODY>
28426 </HTML>
28427 ====== h_config_preserve_start_stop ======
28428 <HTML>
28429 <HEAD>
28430 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28431 </HEAD>
28432 <BODY>
28433 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28435 This feature controls how special control key characters, typically
28436 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28437 are known as the "stop" and "start" characters and are sometimes used in
28438 communications paths to control data flow between devices that operate at
28439 different speeds.
28443 By default, Alpine turns the system's handling of these special characters
28444 off except during printing.  However, if you see Alpine reporting input errors
28445 such as:
28447 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28449 and, at the same time, see your display become garbled, then it is likely
28450 that setting this option will solve the problem.  Be aware, though, that
28451 enabling this feature will also cause Alpine to ostensibly "hang" 
28452 whenever the Ctrl-S key combination is entered as the system is now
28453 interpreting such input as a "stop output" command.  To "start
28454 output"  again, simply type Ctrl-Q. 
28456 &lt;End of help on this topic&gt;
28457 </BODY>
28458 </HTML>
28459 ====== h_config_enable_incoming ======
28460 <HTML>
28461 <HEAD>
28462 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28463 </HEAD>
28464 <BODY>
28465 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28467 Alpine's Incoming Message Folders collection
28468 provides a convenient way to access multiple incoming folders.
28469 It is also useful if you have accounts on multiple computers.
28472 If set, this feature defines a pseudo-folder collection called
28473 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28474 in this collection will be your INBOX, which will no longer show up in
28475 your Default folder collection.
28478 You may add more folders to the Incoming Message Folders collection by
28479 using the
28480 <!--chtml if pinemode="function_key"-->
28481 &quot;F10
28482 <!--chtml else-->
28483 &quot;A
28484 <!--chtml endif-->
28485 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28486 the host the folder is stored on (which defaults to the same host used
28487 for your INBOX), a nickname, and the actual folder name.  Once a set
28488 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28489 or MESSAGE TEXT screens) may be used to scan the folders for those
28490 with Recent messages.  If you add more folders to
28491 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28492 no effect.
28494 NOTE: Normally the software that actually delivers mail (the stuff that happens
28495 before Alpine is involved) is in a better position to do delivery filtering
28496 than is Alpine itself.
28497 If possible, you may want to look at programs such as
28498 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28499 filtering programs.
28500 If you'd prefer to have Alpine do the filtering for you, you may set that
28502 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28504 <UL>   
28505 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28506 </UL><P>
28507 &lt;End of help on this topic&gt;
28508 </BODY>
28509 </HTML>
28510 ====== h_config_enable_incoming_checking ======
28511 <HTML>
28512 <HEAD>
28513 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28514 </HEAD>
28515 <BODY>
28516 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28518 This feature is only operational if you have enabled the optional
28519 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28520 If you do have Incoming Message Folders and you also set this feature,
28521 then the number of Unseen messages in each folder will be displayed
28522 in the FOLDER LIST screen for the Incoming Message Folders.
28523 The number of Unseen messages in a folder will be displayed in parentheses
28524 to the right of the name of each folder.
28525 If there are no Unseen messages in a folder then only the name
28526 is displayed, not a set of parentheses with zero inside them.
28527 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28528 the Incoming Message Folders to cause an immediate update.
28530 If a check for Unseen messages fails for a particular folder then Alpine
28531 will no longer attempt to check that folder for the duration of the
28532 session and this will be indicated by a question mark inside the
28533 parentheses.
28535 The features
28536 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28537 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28538 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28539 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28540 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28541 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28542 all affect how this feature behaves.
28544 <UL>   
28545 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28546 </UL><P>
28547 &lt;End of help on this topic&gt;
28548 </BODY>
28549 </HTML>
28550 ====== h_config_incoming_checking_total ======
28551 <HTML>
28552 <HEAD>
28553 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28554 </HEAD>
28555 <BODY>
28556 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28558 This option has no effect unless the feature
28559 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28560 is set, which in turn has no effect unless
28561 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28562 is set.
28564 When incoming folder checking is turned on the default is to display
28565 the number of unseen messages in each folder.
28566 More precisely, it is the number of undeleted unseen messages.
28567 Using this option you may also display the total number of messages
28568 in each folder.
28569 Instead of a single number representing the number of unseen messages
28570 you will get two numbers separated by a slash character.
28571 The first is the number of unseen messages and the second is the
28572 total number of messages.
28574 You may also use the recent message count instead of the unseen message
28575 count by turning on the feature
28576 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28578 <UL>   
28579 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28580 </UL><P>
28581 &lt;End of help on this topic&gt;
28582 </BODY>
28583 </HTML>
28584 ====== h_config_incoming_checking_recent ======
28585 <HTML>
28586 <HEAD>
28587 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28588 </HEAD>
28589 <BODY>
28590 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28592 This option has no effect unless the feature
28593 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28594 is set, which in turn has no effect unless
28595 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28596 is set.
28598 When incoming folder checking is turned on the default is to display
28599 the number of unseen messages in each folder.
28600 More precisely, it is the number of undeleted unseen messages.
28601 Using this option you may display the number of recent messages instead
28602 of the number of unseen messages.
28603 A message is only counted as recent if this is the first session to
28604 see it, so the recent count might be less than the unseen count.
28605 The difference between the two would be accounted for by the unseen messages
28606 in the folder which were there previously but have not been looked at yet.
28608 If you simultaneously run more than one email client at a time
28609 (for example, you run more than one Alpine in parallel) then turning
28610 this feature on can cause some confusion.
28611 The confusion stems from the fact that each message is only considered to be
28612 recent in one session.
28613 That means that the counts of new messages may be different in the two
28614 Alpines running side by side, because each incoming message will only be
28615 counted as recent in one of the two sessions.
28617 You may also display the total number of messages
28618 in each folder by using the
28619 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28620 option.
28622 <UL>   
28623 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28624 </UL><P>
28625 &lt;End of help on this topic&gt;
28626 </BODY>
28627 </HTML>
28628 ====== h_config_attach_in_reply ======
28629 <HTML>
28630 <HEAD>
28631 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28632 </HEAD>
28633 <BODY>
28634 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28636 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28637 attachments that were part of the original message will automatically be
28638 included in the Reply.
28640 &lt;End of help on this topic&gt;
28641 </BODY>
28642 </HTML>
28643 ====== h_config_include_header =====
28644 <HTML>
28645 <HEAD>
28646 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28647 </HEAD>
28648 <BODY>
28649 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28651 This feature controls an aspect of Alpine's Reply command. If set, and the
28652 original message is being included in the reply, then headers from that
28653 message will also be part of the reply.
28655 &lt;End of help on this topic&gt;
28656 </HEAD>
28657 </HTML>
28658 ====== h_config_sig_at_bottom =====
28659 <HTML>
28660 <HEAD>        
28661 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28662 </HEAD>
28663 <BODY>
28664 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28666 This feature controls an aspect of Alpine's Reply command.  If this feature
28667 is set, and the original message is being included in the reply, then the
28668 contents of your signature file (if any) will be inserted after the included
28669 message.
28671 This feature does not affect the results of a Forward command.
28673 &lt;End of help on this topic&gt;
28674 </BODY>
28675 </HTML>
28676 ====== h_config_sigdashes =====
28677 <HTML>
28678 <HEAD>
28679 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28680 </HEAD>
28681 <BODY>
28682 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28684 This feature enables support for the common USENET news convention 
28685 of preceding a message signature with the special line consisting of 
28686 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28689 When enabled and a
28690 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28691 Alpine will insert the special line before including the file's text (unless
28692 the special line already exists somewhere in the file's text).
28695 In addition, when you Reply or Followup to a message containing one of
28696 these special lines and choose to include its text, Alpine will observe
28697 the convention of not including text beyond the special line in your
28698 reply.
28699 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28700 mode is enabled and turned on, then Alpine <EM>will</EM>
28701 include the text beyond the special line regardless of the setting of
28702 this feature.
28705 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28706 for a related feature.
28709 <UL>   
28710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28711 </UL><P>
28712 &lt;End of help on this topic&gt;
28713 </BODY>
28714 </HTML>
28715 ====== h_config_new_thread_blank_subject =====
28716 <HTML>
28717 <HEAD>
28718 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28719 </HEAD>
28720 <BODY>
28721 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28723 When this feature is enabled (the default) Alpine will create a new thread
28724 every time that the subject line becomes empty at any time during composition.
28727 This behavior is particularly useful in case you are replying to a message.
28728 Replying to a message causes the message to be in the same thread than the
28729 original message that is being replied to. However, many authors want to create
28730 a new message (in a different thread) while replying to a message, and they do
28731 this by changing the full subject, by first deleting the original subject and
28732 typing the new subject of the current message.
28735 Enabling this feature causes that any time that the subject is deleted, the 
28736 message being composed will be considered the first message of a new thread.
28739 <UL>   
28740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28741 </UL><P>
28742 &lt;End of help on this topic&gt;
28743 </BODY>
28744 </HTML>
28745 ====== h_config_strip_sigdashes =====
28746 <HTML>
28747 <HEAD>
28748 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28749 </HEAD>
28750 <BODY>
28751 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28753 This feature doesn't do anything if the feature
28754 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28755 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28756 then turning on this feature enables support for the convention
28757 of not including text beyond the sigdashes line when Replying or Following
28758 up to a message and including the text of that message.
28759 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28760 mode is enabled and turned on, then Alpine <EM>will</EM>
28761 include the text beyond the special line regardless of the setting of
28762 this feature.
28764 In other words, this is a way to turn on the signature stripping behavior
28765 without also turning on the dashes-adding behavior.
28767 <UL>   
28768 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28769 </UL><P>
28770 &lt;End of help on this topic&gt;
28771 </BODY>
28772 </HTML>
28773 ====== h_config_forward_as_attachment =====
28774 <HTML>
28775 <HEAD>
28776 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28777 </HEAD>
28778 <BODY>
28779 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28781 This feature affects the way forwarded message text is handled.  When set, rather than 
28782 include the text of the forwarded message below any additional text you provide in the
28783 composer, the forwarded message is attached in its entirety to the message you send.
28785 This is useful in that it keeps the text you provide in the composer distinct from the
28786 text of the forwarded message.  Similarly, it allows the recipient to 
28787 conveniently operate on the forwarded message.  For example, they might reply directly to
28788 the sender of the forwarded message, or process it as part of a spam report.
28789 <UL>   
28790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28791 </UL><P>
28792 &lt;End of help on this topic&gt;
28793 </BODY>
28794 </HTML>
28795 ====== h_config_preserve_field =====
28796 <HTML>
28797 <HEAD>
28798 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28799 </HEAD>
28800 <BODY>
28801 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28803 This feature affects Alpine's behavior when one replies to a message. 
28804 When you receive a message, some or all of the recipients of the message 
28805 have been added to the To: and Cc: fields. If you reply to such message, 
28806 and this feature is disabled, then the original sender of the message is 
28807 added to the To: field, and all other recipients are added to the Cc: 
28808 field, while your address is added to the From: field.
28811 However, if this feature is enabled, then Alpine will preserve the 
28812 original fields as sent in the original message, so the Cc: and To: 
28813 fields will be preserved. The sender's address will be added to the To: 
28814 field, while your address is added to the From: field.
28817 The behavior of this feature is that replies to all messages will behave 
28818 in the way described above. If you only intend this to happen on a per 
28819 message basis, then keep this feature disabled, and when replying to a 
28820 message you will see a new option in the menu for the &quot;Reply to all 
28821 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28822 make Alpine toggle its question so you can preserve the To: and Cc: 
28823 fields for that message only.
28825 <UL>   
28826 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28827 </UL><P>
28828 &lt;End of help on this topic&gt;
28829 </BODY>
28830 </HTML>
28831 ====== h_config_sub_lists =====
28832 <HTML>
28833 <HEAD>
28834 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28835 </HEAD>
28836 <BODY>
28837 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28839 This feature affects the subcommands available when Saving, 
28840 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28841 available. This command allows you to type in a substring of the folder
28842 you are looking for and when you type ^X it will display all folders
28843 that contain that substring in their names.
28844 This feature is set by default.
28847 &lt;End of help on this topic&gt;
28848 </BODY>
28849 </HTML>
28850 ====== h_config_scramble_message_id =====
28851 <HTML>
28852 <HEAD>
28853 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28854 </HEAD>
28855 <BODY>
28856 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28858 Normally the Message-ID header that Alpine generates when sending a message
28859 contains the name of the computer from which the message is being sent.
28860 Some believe that this hostname could be used by spammers or could
28861 be used by others for nefarious purposes.
28862 If this feature is set, that name will be transformed with a simple
28863 Rot13 transformation.
28864 The result will still have the correct syntax for a Message-ID but the
28865 part of the MessageID that is often a domain name will not be an actual
28866 domain name because the letters will be scrambled.
28868 In addition, other information such as the name program, version, and
28869 a code for operating system used to build Alpine, will be encoded using
28870 the Rot13 transformation, except for the version number which will be
28871 encoded using a Rot5 transformation.
28873 It is possible (but unlikely?) that some spam detection
28874 software will use that as a reason to reject the mail as spam.
28875 It has also been reported that some spam detection software uses the
28876 fact that there are no dots after the &quot;@&quot; as a reason to reject
28877 messages.
28878 If your PC-Alpine Message-ID is using a name without a dot that is because
28879 that is what Windows thinks is your &quot;Full computer name&quot;.
28880 The method used to set this varies from one type of Windows to another but
28881 check under Settings -> Control Panel -> System and
28882 look for Network Identification or Computer Name or something similar.
28883 How to set it is beyond the scope of Alpine.
28886 &lt;End of help on this topic&gt;
28887 </BODY>
28888 </HTML>
28889 ====== h_downgrade_multipart_to_text =====
28890 <HTML>
28891 <HEAD>
28892 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28893 </HEAD>
28894 <BODY>
28895 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28898 This feature affects Alpine's behavior when sending mail.  Internet
28899 standards require Alpine to translate all non-ASCII characters in
28900 messages that it sends using MIME encoding.  This encoding can be
28901 ostensibly broken for recipients if any agent between Alpine and the
28902 recipient, such as an email list expander, appends text to the
28903 message, such as list information or advertising.  When sending such
28904 messages Alpine attempts to protect such encoding by placing extra
28905 MIME boundaries around the message text.
28907 These extra boundaries are invisible to recipients that 
28908 use MIME-aware email programs (the vast majority).  However, if
28909 you correspond with users of email programs that are not MIME-aware,
28910 or do not handle the extra boundaries gracefully, you can
28911 use this feature to prevent Alpine from including the extra
28912 MIME information.  Of course, it will increase the likelihood
28913 that non-ASCII text you send may appear corrupt to the recipient.
28915 &lt;End of help on this topic&gt;
28916 </BODY>
28917 </HTML>
28918 ====== h_config_show_sort =====
28919 <HTML>
28920 <HEAD>
28921 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28922 </HEAD>
28923 <BODY>
28924 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28926 If this feature is set and there is sufficient space on the screen,
28927 a short indication of the current sort order will be
28928 added in the titlebar (the top line on the screen), before the name
28929 of the folder.
28930 For example, with the default Arrival sort in effect,
28931 the display would have the characters
28933 <P><CENTER>[A]</CENTER><P>
28935 added between the title of the screen and the folder name.
28936 The letters are the same as the letters you may type to manually
28937 sort a folder with the SortIndex command ($).
28938 The letters in the table below are the ones that may show
28939 up in the titlebar line.
28941 <TABLE>   
28942 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28943 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28944 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28945 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28946 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28947 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28948 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28949 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28950 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28951 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28952 </TABLE>
28954 If the sort order is Reversed, the letter above will be preceded by the letter
28955 &quot;R&quot;, for example
28957 <P><CENTER>[RS]</CENTER><P>
28959 means that a Reverse Subject sort is in effect.
28960 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28961 left out, and just an &quot;R&quot; is shown.
28963 <P><CENTER>[R]</CENTER>
28966 &lt;End of help on this topic&gt;
28967 </BODY>
28968 </HTML>
28969 ====== h_config_disable_reset_disp =====
28970 <HTML>
28971 <HEAD>
28972 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28973 </HEAD>
28974 <BODY>
28975 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28977 UNIX Alpine only.
28979 This feature affects Alpine's behavior when using
28980 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28981 Normally, before the display filter is run, the terminal mode is reset
28982 to what it was before you started Alpine.
28983 This may be necessary if the filter requires the use of the terminal.
28984 For example, it may need to interact with you.
28985 If you set this feature, then the terminal mode will not be reset.
28986 One thing that turning on this feature should fix is the coloring of
28987 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28988 breaks because the terminal reset resets the color state of the terminal.
28991 &lt;End of help on this topic&gt;
28992 </BODY>
28993 </HTML>
28994 ====== h_config_disable_sender =====
28995 <HTML>
28996 <HEAD>
28997 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28998 </HEAD>
28999 <BODY>
29000 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
29002 This feature affects Alpine's generation of the &quot;Sender:&quot; or
29003 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
29004 header fields.
29005 By default, Alpine will generate such a header in situations where the
29006 username or domain are not the same as
29007 the &quot;From:&quot; header on the message.
29008 With this feature set,
29009 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
29010 This may be desirable on a system that is virtually hosting many domains,
29011 and the sysadmin has other methods available for tracking a message to
29012 its originator.
29014 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
29017 &lt;End of help on this topic&gt;
29018 </BODY>
29019 </HTML>
29020 ====== h_config_use_sender_not_x =====
29021 <HTML>
29022 <HEAD>
29023 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
29024 </HEAD>
29025 <BODY>
29026 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
29028 Normally Alpine adds a header line
29029 labeled &quot;X-X-Sender&quot;, if the sender is
29030 different from the From: line.
29031 The standard specifies that this header
29032 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
29033 Setting this feature causes
29034 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
29036 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
29039 &lt;End of help on this topic&gt;
29040 </BODY>
29041 </HTML>
29042 ====== h_config_use_fk =====
29043 <HTML>
29044 <HEAD>
29045 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
29046 </HEAD>
29047 <BODY>
29048 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
29050 This feature specifies that Alpine will respond to function keys instead of
29051 the normal single-letter commands. In this mode, the key menus at the
29052 bottom of each screen will show function key designations instead of the
29053 normal mnemonic key.
29056 &lt;End of help on this topic&gt;
29057 </BODY>
29058 </HTML>
29059 ====== h_config_cancel_confirm =====
29060 <HTML>
29061 <HEAD>
29062 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
29063 </HEAD>
29064 <BODY>
29065 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
29067 This feature affects what happens when you type ^C to cancel a composition.
29068 By default, if you attempt to cancel a composition by typing ^C, you will be
29069 asked to confirm the cancellation by typing a &quot;C&quot;
29070 for <EM>C</EM>onfirm.
29071 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
29072 risky because the &quot;^C Y&quot; needed to cancel a message
29073 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
29075 If this feature is set the confirmation asked for
29076 will be a &quot;<EM>Y</EM>es&quot;
29077 instead of a &quot;<EM>C</EM>onfirm&quot; response.
29080 &lt;End of help on this topic&gt;
29081 </BODY>
29082 </HTML>
29083 ====== h_config_compose_maps_del =====
29084 <HTML>
29085 <HEAD>
29086 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
29087 </HEAD>
29088 <BODY>
29089 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
29091 This feature affects the behavior of the DELETE key.
29092 If set, Delete will be equivalent to ^D, and delete
29093 the current character.  Normally Alpine defines the Delete key
29094 to be equivalent to ^H, which deletes the <EM>previous</EM>
29095 character.
29098 &lt;End of help on this topic&gt;
29099 </BODY>
29100 </HTML>
29101 ====== h_config_compose_bg_post =====
29102 <HTML>
29103 <HEAD>
29104 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
29105 </HEAD>
29106 <BODY>
29107 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
29109 This feature affects the behavior of Alpine's mail sending.  If set, this
29110 feature enables a subcommand in the composer's "Send?" confirmation
29111 prompt.  The subcommand allows you to tell Alpine to handle the actual
29112 posting in the background.  While this feature usually allows posting
29113 to appear to happen very fast, it has no affect on the actual delivery
29114 time it takes a message to arrive at its destination.
29117 Please Note:
29118 <OL>
29119  <LI>This feature will have no effect if the feature
29120        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
29121        is set.
29122  <LI>This feature isn't supported on all systems.  All DOS and Windows,
29123        as well as several Unix ports, do not recognize this feature.
29124  <LI>Error handling is significantly different when this feature is
29125         enabled.  Any message posting failure results in the message
29126         being appended to your &quot;Interrupted&quot; mail folder.  When you
29127         type the <A HREF="h_common_compose">C</A>ompose command,
29128         Alpine will notice this folder and
29129         offer to extract any messages contained.  Upon continuing a 
29130         failed message, Alpine will display the nature of the failure 
29131         in the status message line.
29132  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
29133         for message data to
29134         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
29135         if you typically run close to any sort of disk-space limits or quotas.
29136 </OL>
29138 &lt;End of help on this topic&gt;
29139 </BODY>
29140 </HTML>
29141 ====== h_config_compose_dsn =====
29142 <HTML>
29143 <HEAD>
29144 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
29145 </HEAD>
29146 <BODY>
29147 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
29149 This feature affects the behavior of Alpine's mail sending.  If set, this
29150 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
29151 prompt.  The subcommand allows you to tell Alpine to request the type of
29152 Delivery Status Notification (DSN) that you would like.  Most users will
29153 be happy with the default, and need not enable this feature.
29155 If the feature
29156 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29157 then this feature has no effect and the type of DSN is not selectable.
29160 Turning on this feature and then turning on the DSNOpts from the send
29161 prompt reveals four on-off toggles at the bottom of the screen.
29162 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
29163 that no notification be returned to you, even if there is a delivery
29164 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
29165 server that you are willing (or not) to receive delay notifications, which
29166 happen when there is an unusual delay at some mail server (in that mail
29167 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
29168 Success requests that you be sent a DSN message when the message is
29169 successfully delivered to the recipients mailbox.  Setting NoErrRets will
29170 automatically turn off Delay and Success notification, and will flip the
29171 toggles to show that.  Similarly, turning on Delay and/or Success will
29172 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
29173 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
29174 the full message be returned in any failed DSN.  RetHdrs requests that
29175 only the headers be returned in any failed DSN.  Notice that this command
29176 applies only to failed delivery status reports.  For delay or success
29177 reports, the full message is never returned, only the headers are returned.
29180 If you don't enable the DSN feature or if you don't turn it on for a
29181 particular message, the default is that you will be notified about failures,
29182 you might be notified about delays, and you won't be notified about
29183 successes.  You will usually receive the full message back when there is
29184 a failure.
29187 If you turn on the DSNOpts the default is to return as much information as
29188 possible to you.  That is, by default, the Success and Delay options are
29189 turned on and the full message will be returned on failure.
29192 The sending prompt will display the current DSN request (if any) in a
29193 shorthand form.  It will be:
29195 <P><CENTER>[Never]</CENTER>
29198 if you have requested NoErrRets.  Otherwise, it will look something like:
29200 <P><CENTER>[FDS-Hdrs]</CENTER>
29203 The &quot;F&quot; will always be there, indicating that you will be notified
29204 of failures.  (Alpine doesn't provide a way to request no failure notification
29205 and at the same time request either success or delay notification.  The only
29206 way to request no failure notifications is to request no notifications at
29207 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29208 requested Delay and/or Success notification.  If one of those is missing,
29209 that means you are requesting no notification of the corresponding type.
29210 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29211 the headers and Full means to return the full message (applies to
29212 failure notifications only).
29215 NOTE: This feature relies on your system's mail transport agent or
29216 configured
29217 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29218 having the negotiation mechanism introduced in
29219 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29220 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
29221 are using doesn't support DSN, a short warning will be shown to you on
29222 the message line at the bottom of the screen after you send your message,
29223 but your message will have been sent anyway.
29226 Note that DSNs don't provide a mechanism to request read receipts.  That
29227 is, if you request notification on success you are notified when the
29228 message is delivered to the mailbox, not when the message is read.
29231 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29232 it is possible that this feature might cause problems for some servers. 
29235 &lt;End of help on this topic&gt;
29236 </BODY>
29237 </HTML>
29238 ====== h_config_auto_zoom =====
29239 <HTML>
29240 <HEAD>
29241 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29242 </HEAD>
29243 <BODY>
29244 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29246 This feature affects the behavior of the Select command.
29247 If set, the select command will automatically perform a zoom
29248 after the select is complete.
29249 This feature is set by default.
29251 Some related help topics are
29252 <UL>
29253 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29254 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29255 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29256 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29257 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29258 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29259 </UL>
29262 &lt;End of help on this topic&gt;
29263 </BODY>
29264 </HTML>
29265 ====== h_config_auto_unzoom =====
29266 <HTML>
29267 <HEAD>
29268 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29269 </HEAD>
29270 <BODY>
29271 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29273 This feature affects the behavior of the Apply command.  If set, and if
29274 you are currently looking at a Zoomed Index view of selected messages,
29275 the Apply command will do the operation you specify, but then will
29276 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29277 the normal Index view after the Apply. 
29278 This feature is set by default.
29281 Some related help topics are
29282 <UL>
29283 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29284 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29285 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29286 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29287 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29288 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29289 </UL>
29291 &lt;End of help on this topic&gt;
29292 </BODY>
29293 </HTML>
29294 ====== h_config_auto_unselect =====
29295 <HTML>
29296 <HEAD>
29297 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29298 </HEAD>
29299 <BODY>
29300 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29302 This feature affects the behavior of the Apply command.  If set,
29303 the Apply command will do the operation you specify, but then will
29304 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29305 the normal Index view after the Apply. 
29308 Some related help topics are
29309 <UL>
29310 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29311 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29312 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29313 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29314 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29315 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29316 </UL>
29318 &lt;End of help on this topic&gt;
29319 </BODY>
29320 </HTML>
29321 ====== h_config_fast_recent =====
29322 <HTML>
29323 <HEAD>
29324 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29325 </HEAD>
29326 <BODY>
29327 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29329 This feature controls the behavior of the TAB key when traversing folders
29330 in the optional 
29331 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29332 collection or in optional <!--#echo var="VAR_news-collections"-->.
29335 When the TAB
29336 (<A HREF="h_common_nextnew">NextNew</A>)
29337 key is pressed, the default behavior is to
29338 explicitly examine the status of the folder for the number of recent
29339 messages (messages delivered since the last time it was viewed).
29340 Depending on the size and number of messages in the folder, this test
29341 can be time consuming.
29344 Enabling this feature will cause Alpine to only test for the existence of
29345 any recent messages rather than to obtain the count.  This is much faster
29346 in many cases.  The downside is that you're not given the number of recent
29347 messages when prompted to view the next folder.
29348 If the feature
29349 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29350 is turned on, then the present feature will have no effect.
29353 <UL>   
29354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29355 </UL><P>
29356 &lt;End of help on this topic&gt;
29357 </BODY>
29358 </HTML>
29359 ====== h_config_arrow_nav =====
29360 <HTML>
29361 <HEAD>
29362 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29363 </HEAD>
29364 <BODY>
29365 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29367 This feature controls the behavior of the left and right arrow keys.
29368 If set, the left and right arrow keys will operate like the usual
29369 navigation keys &lt; and &gt;.
29370 This feature is set by default.
29373 If you set this feature, and do not like the changed behavior of the up/down 
29374 arrow 
29375 keys when navigating through the FOLDER LIST screen -- 
29376 <B>first</B> from column to column, if more than one folder is 
29377 displayed per row, 
29378 and <B>then</B> from row to row -- you may either also wish to set the feature 
29379 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29380 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29381 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29382 folders in each column.
29384 <UL>   
29385 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29386 </UL><P>
29387 &lt;End of help on this topic&gt;
29388 </BODY>
29389 </HTML>
29390 ====== h_config_relaxed_arrow_nav =====
29391 <HTML>
29392 <HEAD>
29393 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29394 </HEAD>
29395 <BODY>
29396 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29398 This feature controls the behavior of the left, right, up and down
29399 arrow keys in the FOLDER LIST screen when the &quot;<A
29400 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29401 set.
29402 This feature is set by default.
29406 When this feature is set, the left and right
29407 arrow keys in the FOLDER LIST screen
29408 move the highlight bar to the left or right, and the up and
29409 down arrows move it up or down.
29412 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29413 feature is not set;
29414 the left and right arrow keys in the Folder List screen strictly
29415 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29416 and down arrow keys move the highlight bar to the previous and next
29417 folder or directory name.
29420 <UL>   
29421 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29422 </UL><P>
29423 &lt;End of help on this topic&gt;
29424 </BODY>
29425 </HTML>
29426 ====== h_config_alt_compose_menu =====
29427 <HTML>
29428 <HEAD>
29429 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29430 </HEAD>
29431 <BODY>
29432 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29434 This feature controls the menu that is displayed when Compose is selected.
29435 If set, a list of options will be presented, with each option representing
29436 the type of composition that could be used. This feature is most useful for
29437 users who want to avoid being prompted with each option separately, or who
29438 want to avoid the checking of remote postponed or form letter folders.
29439 The possible types of composition are:
29442 New, for starting a new composition. Note that if New is selected and roles
29443 are set, roles are checked for matches and applied according to the setting
29444 of the matching role.
29447 Interrupted, for continuing an interrupted composition. This option is only
29448 offered if an interrupted message folder is detected.
29451 Postponed, for continuing postponed compositions. This option is offered
29452 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29453 the postponed folder actually exists. This option is especially handy
29454 for avoiding having to check for the existence of a remote postponed folder.
29457 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29458 is set in the config, and is not checked for existence for reasons similar
29459 to those explained by the postponed option.
29462 setRole, for selecting a role to apply to a composition.
29465 &lt;End of help on this topic&gt;
29466 </BODY>
29467 </HTML>
29468 ====== h_config_alt_role_menu =====
29469 <HTML>
29470 <HEAD>
29471 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29472 </HEAD>
29473 <BODY>
29474 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29476 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29477 a role and compose a new message using that role.
29478 When this feature is set, the role command will first ask whether you want to
29479 Compose a new message, Forward the current message, Reply to the
29480 current message, or Bounce the current message.
29481 If you are not in the MESSAGE INDEX and are not viewing a message,
29482 then there is no current message and the question will be skipped.
29483 After you have chosen to Compose, Forward, Reply, or Bounce you will
29484 then choose the role to be used.
29486 When Bouncing the &quot;Set From&quot; address is used for the
29487 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29488 provided that the option
29489 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29490 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29491 set.
29492 Other actions of the role are ignored when Bouncing.
29495 &lt;End of help on this topic&gt;
29496 </BODY>
29497 </HTML>
29498 ====== h_config_always_spell_check =====
29499 <HTML>
29500 <HEAD>
29501 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29502 </HEAD>
29503 <BODY>
29504 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29506 When this feature is set, every composed message will be spell-checked before
29507 being sent.
29509 &lt;End of help on this topic&gt;
29510 </BODY>
29511 </HTML>
29512 ====== h_config_quell_asterisks =====
29513 <HTML>
29514 <HEAD>
29515 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29516 </HEAD>
29517 <BODY>
29518 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29520 When you are running Alpine you will sometimes be asked for a password
29521 in a prompt on the third line from the bottom of the screen.
29522 Normally each password character you type will cause an asterisk to echo
29523 on the screen. That gives you some feedback to know that your typing is
29524 being recognized.
29525 There is a very slight security risk in doing it this way because someone
29526 watching over your shoulder might be able to see how many characters there
29527 are in your password.
29528 If you'd like to suppress the echoing of the asterisks set this feature.
29530 &lt;End of help on this topic&gt;
29531 </BODY>
29532 </HTML>
29533 ====== h_config_quell_flowed_text =====
29534 <HTML>
29535 <HEAD>
29536 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29537 </HEAD>
29538 <BODY>
29539 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29541 Alpine generates flowed text where possible.
29542 The method for generating flowed text is defined by
29543 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29544 the benefit of doing so is
29545 to send message text that can properly be viewed both on normal width displays
29546 and on displays with smaller or larger than normal screen widths.
29547 With flowed text, a space at the end of a line tells the receiving mail
29548 client that the following line belongs to the same paragraph.
29549 Quoted text will also be affected, with only the innermost
29550 level of &quot;&gt;&quot; quoting being followed by a space.
29551 However, if you have changed the
29552 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29553 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29554 quoted text will not be flowed.
29555 For this reason, we recommend that you leave your
29556 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29558 This feature turns off the generation of flowed text, as it might be
29559 desired to more tightly control how a message is displayed on the receiving end.
29561 If this feature is <EM>not</EM> set, you can control on a message by message
29562 basis whether or not flowed text is generated.
29563 You do this by typing ^V at the Send confirmation prompt that you get
29564 after typing ^X to send a message.
29565 ^V is a toggle that turns flowing off and back on if typed again.
29566 If for some reason flowing cannot be done on a particular message, then the
29567 ^V command will not be available.
29568 This would be the case, for example, if this feature was set, or if your
29569 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29570 If the feature
29571 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29572 then the opportunity to control on a message by message basis
29573 whether or not flowed text is generated is lost.
29575 When this feature is not set and you have typed ^V to turn off flowing,
29576 the Send confirmation prompt will change to look like
29578 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29580 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29581 also turn off the sending of flowed text messages, but it differs in that
29582 it also trims all trailing white space from a message before sending it.
29584 If alternate editors are used extensively, be aware that a message will still
29585 be sent flowed if this feature is unset.  In most cases this will be fine,
29586 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29587 use that.
29589 &lt;End of help on this topic&gt;
29590 </BODY>
29591 </HTML>
29592 ====== h_config_strip_ws_before_send =====
29593 <HTML>
29594 <HEAD>
29595 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29596 </HEAD>
29597 <BODY>
29598 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29600 By default, trailing whitespace is not stripped from
29601 a message before sending.  Trailing whitespace should have no effect on an
29602 email message, and in flowed text can aid in delimiting paragraphs.
29603 However, the old behavior of stripping trailing whitespace was in place
29604 to better deal with older clients that couldn't handle certain types of
29605 text encodings.  This feature restores the old behavior
29607 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29608 generated by default but can be turned off via the
29609 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29610 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29611 of flowed text.
29613 &lt;End of help on this topic&gt;
29614 </BODY>
29615 </HTML>
29616 ====== h_config_alt_reply_menu =====
29617 <HTML>
29618 <HEAD>
29619 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
29620 </HEAD>
29621 <BODY>
29622 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
29624 Note that if this option is enabled, then the option
29625 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29626 is ignored. See below to understand why.
29628 When you reply to a message, a series of questions are asked that 
29629 determines how your reply will be handled by Alpine. This feature only 
29630 affects the result of the first question you are asked, and its purpose is 
29631 to set values that could override defaults set in Alpine's main 
29632 configuration screen. As a result, this menu allows you to configure even 
29633 more features than you would be able to do without this option. For 
29634 example, this menu always allows you to override or select a <A 
29635 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
29636 override your indent string, regardless of if you have enabled 
29637 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
29638 The full list of options can be found below.
29640 Here is an example of how this option works. After you press Reply,
29641 if you see &quot;A Inc Attach&quot; in the menu, it means that 
29642 if you press &quot;A&quot;, then Alpine will include the attachments
29643 of the original message, and the default is not to include them. 
29644 Conversely, if you see &quot;A No Attach&quot; 
29645 then by pressing &quot;A&quot; Alpine will not include
29646 attachments in your reply, and the default is that Alpine will 
29647 include them in your reply. The value that you see when you 
29648 start your reply is controlled by the option
29649 <A HREF="h_config_attach_in_reply">
29650 <!--#echo var="FEAT_include-attachments-in-reply"-->
29651 </A>. If the feature is enabled, then Alpine will display 
29652 &quot;A No Attach&quot; to override the default behavior. You can
29653 toggle between the two values of this option by pressing &quot;A&quot;.
29654 Remember that the value that you see in the menu is the action that will 
29655 be done when you press the associated command.
29657 Below are your options:
29658 <OL>
29659 <LI><B>A</B>: This determines if Alpine will include or not the 
29660 attachments sent to you in the message that you are replying to. The default 
29661 is to use the value of the configuration option 
29662 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overriden by using this command.
29664 <LI><B>H</B>: This command determines if the headers of a message are
29665 included in the body of the message that is being replied to. By default 
29666 Alpine will use the value of the configuration option 
29667 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
29668 Observe that by toggling this option to include headers, text will be toggled
29669 to be included by default.
29671 <LI><B>R</B>: Can be used to set a role different from the default.
29673 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
29674 message. The default is to strip the signature when the message is not
29675 viewed in headers mode, and you either have enabled
29676 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
29678 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
29680 <LI><B>Ctrl-R</B>: Can be used to edit the 
29681 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
29682 </OL>
29684 In order to include the text of the original message in the reply
29685 you either need to press 'y' to include the original text, or 'n' to 
29686 exclude it from the reply. Pressing return will execute the default 
29687 action, which is to include text only if the option
29688 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29689 is enabled. However, notice that the default is to include text if you edit the 
29690 reply indent string or if you explicitly set through this menu that you
29691 want headers included in the reply message.
29694 &lt;End of help on this topic&gt;
29695 </BODY>
29696 </HTML>
29697 ====== h_config_del_from_dot =====
29698 <HTML>
29699 <HEAD>
29700 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29701 </HEAD>
29702 <BODY>
29703 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29705 This feature controls the behavior of the Ctrl-K command in the composer.
29706 If set, ^K will cut from the current cursor position to the end of the line,
29707 rather than cutting the entire line.
29710 &lt;End of help on this topic&gt;
29711 </BODY>
29712 </HTML>
29713 ====== h_config_print_index =====
29714 <HTML>
29715 <HEAD>
29716 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29717 </HEAD>
29718 <BODY>
29719 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29721 This feature controls the behavior of the Print command when in the
29722 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29723 asking if you wish to print the message index, or the currently highlighted
29724 message. If not set, the message will be printed.
29727 &lt;End of help on this topic&gt;
29728 </BODY>
29729 </HTML>
29730 ====== h_config_allow_talk =====
29731 <HTML>
29732 <HEAD>
29733 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29734 </HEAD>
29735 <BODY>
29736 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29738 UNIX Alpine only.
29740 By default, permission for others to &quot;talk&quot; to your terminal is turned
29741 off when you are running Alpine.  When this feature is set, permission is
29742 instead turned on.  If enabled, you may see unexpected messages in the
29743 middle of your Alpine screen from someone attempting to contact you via the
29744 &quot;talk&quot; program.
29747 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29748 talk daemon on your system will attempt to print a message on your screen 
29749 when someone else is trying to contact you.  If you wish to see these
29750 messages while you are running Alpine, you should enable this feature.
29753 If you do enable this feature and see a &quot;talk&quot; message, you must 
29754 suspend or quit Alpine before you can respond.
29757 &lt;End of help on this topic&gt;
29758 </BODY>
29759 </HTML>
29760 ====== h_config_send_filter_dflt =====
29761 <HTML>
29762 <HEAD>
29763 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29764 </HEAD>
29765 <BODY>
29766 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29767 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29768 configured, setting this feature will cause
29769 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29770 instead of unfiltered, the usual default.
29772 <UL>   
29773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29774 </UL><P>
29775 &lt;End of help on this topic&gt;
29776 </BODY>
29777 </HTML>
29778 ====== h_config_custom_print =====
29779 <HTML>
29780 <HEAD>
29781 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29782 </HEAD>
29783 <BODY>
29784 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29786 When this feature is set, the print command will have an additional
29787 subcommand called "C CustomPrint".  If selected, you will have
29788 the opportunity to enter any system print command --instead of being 
29789 restricted to using those that have been previously configured in the 
29790 printer setup menu.
29793 &lt;End of help on this topic&gt;
29794 </BODY>
29795 </HTML>
29796 ====== h_config_enable_dot_files =====
29797 <HTML>
29798 <HEAD>
29799 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29800 </HEAD>
29801 <BODY>
29802 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29804 When this feature is set, files beginning with dot (".") will be
29805 visible in the file browser.  For example, you'll be able to select them
29806 when using the browser to add an attachment to a message.
29808 &lt;End of help on this topic&gt;
29809 </BODY>
29810 </HTML>
29811 ====== h_config_enable_dot_folders =====
29812 <HTML>
29813 <HEAD>        
29814 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29815 </HEAD>
29816 <BODY>
29817 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29819 When this feature is set, folders beginning with dot (".") may be added
29820 and viewed.
29822 &lt;End of help on this topic&gt;
29823 </BODY>
29824 </HTML>
29825 ====== h_config_ff_between_msgs =====
29826 <HTML>
29827 <HEAD>
29828 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29829 </HEAD>
29830 <BODY>
29831 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29833 Setting this feature causes a formfeed to be printed between messages when
29834 printing multiple messages (with Apply Print command).
29836 &lt;End of help on this topic&gt;
29837 </BODY>
29838 </HTML>
29839 ====== h_config_blank_keymenu =====
29840 <HTML>
29841 <HEAD>
29842 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29843 </HEAD>
29844 <BODY>
29845 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29847 If this feature is set the command key menu that normally appears on the
29848 bottom two lines of the screen will not usually be there.  Asking for
29849 help with ^G or ? will cause the key menu to appear instead of causing
29850 the help message to come up.  If you want to actually see the help text,
29851 another ^G or ? will show it to you.  After the key menu has popped
29852 up with the help key it will remain there for an O for Other command but
29853 disappear if any other command is typed.
29855 &lt;End of help on this topic&gt;
29856 </BODY>
29857 </HTML>
29858 ====== h_config_enable_mouse =====
29859 <HTML>
29860 <HEAD>
29861 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29862 </HEAD>
29863 <BODY>
29864 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29866 This feature controls whether or not an X terminal mouse can be used with
29867 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29868 being used, the left mouse button on the mouse can be used to select text
29869 or commands.
29870 Clicking on a command at the bottom of the screen will behave as if you had
29871 typed that command.
29872 Clicking on an index line will move the current message highlight to
29873 that line.
29874 Double-clicking on an index line will view the message.
29875 Double-clicking on a link will view the link.
29877 This type of mouse support will also work in some terminal emulators which are
29878 not actually X terminals, but which have extra code to support the xterm
29879 style mouse.
29880 For those emulators you not only need to turn this feature on but you also
29881 have to set the $DISPLAY environment variable even though it isn't needed
29882 for your terminal.
29883 That will cause Alpine to think that it is an xterm and to properly interpret the
29884 escape sequences sent by the mouse.
29886 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29887 also modified.  It is sometimes possible to hold the shift key down while clicking
29888 left or middle mouse buttons for the normal xterm cut/paste operations. 
29889 There is also an Alpine command to toggle this mode on or off.
29890 The command is Ctrl-&#92; (Control-backslash).
29892 &lt;End of help on this topic&gt;
29893 </BODY>
29894 </HTML>
29895 ====== h_config_enable_xterm_newmail =====
29896 <HTML>
29897 <HEAD>        
29898 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29899 </HEAD>
29900 <BODY>
29901 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29903 This feature controls whether or not Alpine will attempt to announce new
29904 mail arrival when it is running in an X terminal window and that window
29905 is iconified.  If set, and the $DISPLAY variable indicates that an X
29906 terminal is being used, Alpine will send appropriate escape sequences to
29907 the X terminal to modify the label on Alpine's icon to indicate that new
29908 mail has arrived. Alpine will also modify the Alpine window's title to
29909 indicate new mail.
29910 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29912 &lt;End of help on this topic&gt;
29913 </BODY></HTML>
29914 ====== h_config_enable_newmail_short_text =====
29915 <HTML>
29916 <HEAD>        
29917 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29918 </HEAD>
29919 <BODY>
29920 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29922 This feature controls the text to be displayed in an icon in the event
29923 of a new message arrival.  Normally, the message will
29924 be the one that is displayed on the screen.  This feature shortens the
29925 message to a count of the number of new messages in brackets.  This may be
29926 more useful for those who use the window's title bar in the task bar as a
29927 new mail indicator.  This feature is only useful if the
29928 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29929 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29930 feature, this feature is only relevant when run in an xterm environment.
29932 &lt;End of help on this topic&gt;
29933 </BODY></HTML>
29934 ====== h_config_copy_to_to_from =====
29935 <HTML>
29936 <HEAD>
29937 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29938 </HEAD>
29939 <BODY>
29940 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29942 This feature affects the From address used when Replying to a message.
29943 It is probably only useful if you have some
29944 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29945 defined.
29946 When enabled, it checks to see if any of the addresses in the To or Cc
29947 fields of the message you are replying to is one of your addresses.
29948 If it is, and there is only one of them, then that address is used as
29949 the From address in the message you are composing.
29950 In other words, you will be using a From address that is the same
29951 as the To address that was used to get the mail to you in the first place.
29954 If a role is being used and it has a From address defined, that From address will
29955 be used rather than the one derived from this feature.
29958 <UL>   
29959 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29960 </UL><P>
29961 &lt;End of help on this topic&gt;
29962 </BODY>
29963 </HTML>
29964 ====== h_config_prefix_editing =====
29965 <HTML>
29966 <HEAD>
29967 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29968 </HEAD>
29969 <BODY>
29970 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29972 This feature affects the Reply command's &quot;Include original message
29973 in Reply?&quot; prompt.  When enabled, it causes the
29974 &quot;Edit Indent String&quot; sub-command to appear which allows 
29975 you to edit the string Alpine would otherwise use to denote included 
29976 text from the message being replied to.<P>
29978 Thus, you can change Alpine's default message quote character (usually
29979 an angle bracket) on a per message basis. So you could change your quoted message to
29980 look, for example, like this:<p>
29982 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29984 John: I just wanted to say hello and to congratulate you
29985 John: on a job well done!</pre><p>
29987 The configuration option
29988 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29989 may be used to change what appears as the default string to be edited.
29991 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29992 currently being replied to.
29994 If you change your <!--#echo var="VAR_reply-indent-string"-->
29995 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29996 quoted text will not be flowed
29997 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29998 when you reply.
29999 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
30000 set to the default value.
30002 <UL>   
30003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30004 </UL><P>
30005 &lt;End of help on this topic&gt;
30006 </BODY>
30007 </HTML>
30008 ====== h_config_enable_search_and_repl =====
30009 <HTML>
30010 <HEAD>
30011 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
30012 </HEAD>
30013 <BODY>
30014 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
30016 This feature modifies the behavior of Alpine's composer.  Setting this
30017 feature causes Alpine to offer the "^R Replace" subcommand, which
30018 allows you to search and replace text strings in a message you are composing, 
30019 inside the "^W Where is" command.  
30023 To search and replace text, first enter the text to be replaced at the 
30024 "Search: " prompt.  Then, rather than pressing Enter to just search for that
30025 text, press ^R, which turns the prompt into 
30029 Search (to replace): 
30033 and then press Enter.  The cursor will highlight the first occurrence 
30034 of the text string you entered, and the prompt will show: 
30038 Replace "<your text string>" with : 
30042 where <your text string> is what you entered at the previous prompt;
30043 here, enter the replacement text.  To only replace the highlighted 
30044 occurrence, simply press Enter now; to replace all occurrences in the 
30045 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
30046 each replacement.
30050 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
30051 ^X toggles between "Replace All" and "Replace One."
30055 If you previously searched for text in a message, it will be offered for 
30056 re-use as part of the prompt, shown in [ ] brackets.
30059 &lt;End of help on this topic&gt;
30060 </BODY>
30061 </HTML>
30062 ====== h_config_enable_view_attach =====
30063 <HTML>
30064 <HEAD>
30065 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
30066 </HEAD>
30067 <BODY>
30068 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
30070 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30071 Setting this feature causes Alpine to present attachments in boldface.
30072 The first available attachment is displayed in inverse.  This is the
30073 "selected" attachment.  Pressing RETURN will cause Alpine to display
30074 the selected attachment.  Use the arrow keys to change which of the
30075 attachments displayed in boldface is the current selection.
30079 Speaking of arrow keys, the Up and Down Arrows will select the next
30080 and previous attachments if one is available on the screen for selection.
30081 Otherwise, they will simply adjust the viewed text one line up or down.
30085 Similarly, when selectable items are present in a message, the Ctrl-F key
30086 can be used to select the next item in the message independent of which
30087 portion of the viewed message is currently displayed. The Ctrl-B key can
30088 be used to select the previous item in the same way. 
30089 <P> 
30090 &lt;End of help on this topic&gt;
30091 </BODY>
30092 </HTML>
30093 ====== h_config_enable_y_print =====
30094 <HTML>
30095 <HEAD>
30096 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
30097 </HEAD>
30098 <BODY>
30099 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
30101 This feature modifies the behavior of Alpine's Print command.
30103 By default, Alpine's print command is available by pressing the "%" key.  
30104 (This command is a substantial change from Pine versions before 4.00 -- 
30105 where the print command was "Y" -- based on numerous complaints about 
30106 printing being invoked inadvertently, since Y also means "Yes.")  
30110 This feature is supplied to mitigate any disruption or anxiety users 
30111 might feel as a result of this change.  
30115 Enabling this feature will cause Alpine to recognize both the old
30116 command, "Y" for Prynt, as well the new "%" method for invoking
30117 printing.  Note, key menu labels are not changed as a result of
30118 enabling this feature.
30122 &lt;End of help on this topic&gt;
30123 </BODY>
30124 </HTML>
30125 ====== h_config_enable_lessthan_exit =====
30126 <HTML>
30127 <HEAD>
30128 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
30129 </HEAD>
30130 <BODY>
30131 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
30133 If this feature is set, then on screens where there is an Exit command
30134 but no < command, the < key will perform the same function as the Exit
30135 command.
30136 This feature is set by default.
30138 &lt;End of help on this topic&gt;
30139 </BODY>
30140 </HTML>
30141 ====== h_config_enable_view_url =====
30142 <HTML>
30143 <HEAD>
30144 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
30145 </HEAD>
30146 <BODY>
30147 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
30148 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30149 When this feature is set (the default) Alpine will select possible URLs from the
30150 displayed text and display them in boldface for selection.
30152 The first available URL is displayed in inverse.  This is the
30153 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
30154 the selected URL via either built-in means as with mailto:, imap:,
30155 news:, and nntp:, or via an external application as defined
30156 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30157 variable.
30159 Use the arrow keys to change which of the URLs displayed in boldface
30160 is the current selection.
30162 Speaking of arrow keys, the Up and Down Arrows will select the next
30163 and previous URL if one is available on the screen for selection (unless 
30164 you have set the feature 
30165 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
30166 Otherwise, they will simply adjust the viewed text one line up or down.
30168 Similarly, when selectable items are present in a message, the Ctrl-F
30169 key can be used to select the next item in the message independent
30170 of which portion of the viewed message is currently displayed. The
30171 Ctrl-B key can be used to select the previous item in the same way.
30173 <UL>   
30174 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30175 </UL><P>
30176 &lt;End of help on this topic&gt;
30177 </BODY>
30178 </HTML>
30179 ====== h_config_enable_view_web_host =====
30180 <HTML>
30181 <HEAD>
30182 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
30183 </HEAD>
30184 <BODY>
30185 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
30187 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30188 When this feature is set (the default) Alpine will select possible web hostnames
30189 from the displayed text and display them in boldface for selection.  
30190 This can be useful when you receive messages referencing World Wide Web 
30191 sites without the use of complete URLs; for example, specifying only 
30192 &quot;www.some.site.com&quot; (which will <B>not</B> become a 
30193 selectable 
30194 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
30195 rather than explicitly
30196 &quot;http://www.some.site.com&quot;.  
30198 The first available hostname is displayed in inverse.  This is the
30199 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
30200 the selected hostname via an external application as defined
30201 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30202 variable.
30204 Use the arrow keys (unless you have set the feature 
30205 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30206 to change which of the hostnames displayed in
30207 boldface is the current selection.
30209 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30210 key can be used to select the next web hostname in the message independent
30211 of which portion of the viewed message is currently displayed. The
30212 Ctrl-B key can be used to select the previous web hostnames in the same way.
30214 <UL>   
30215 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30216 </UL><P>
30217 &lt;End of help on this topic&gt;
30218 </BODY>
30219 </HTML>
30220 ====== h_config_enable_view_addresses =====
30221 <HTML>
30222 <HEAD>
30223 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30224 </HEAD>
30225 <BODY>
30226 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30228 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30229 Setting this feature causes Alpine to select possible email addresses
30230 from the displayed text and display them in boldface for selection.  
30233 The first available email address is displayed in inverse.  This is the
30234 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30235 the message composition screen with the To: field filled in with the
30236 selected address.
30238 Use the arrow keys (unless you have set the feature 
30239 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30240 to change which of the hostnames displayed in
30241 boldface is the current selection.
30243 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30244 key can be used to select the next web hostname in the message independent
30245 of which portion of the viewed message is currently displayed. The
30246 Ctrl-B key can be used to select the previous web hostnames in the same way.
30248 <UL>   
30249 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30250 </UL><P>
30251 &lt;End of help on this topic&gt;
30252 </BODY>
30253 </HTML>
30254 ====== h_config_enable_view_arrows =====
30255 <HTML>
30256 <HEAD>
30257 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30258 </HEAD>
30259 <BODY>
30260 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30262 This feature modifies Up and Down arrow key behavior in Alpine's
30263 MESSAGE TEXT screen when selectable Attachments, URL's, or
30264 web-hostnames are presented. Alpine's usual behavior is to move to
30265 the next or previous selectable item if currently displayed or
30266 simply to adjust the screen view by one line.
30270 Setting this feature causes the UP and Down arrow key to behave as
30271 if no selectable items were present in the message.
30275 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30276 item) functionality is unchanged.
30279 &lt;End of help on this topic&gt;
30280 </BODY>
30281 <HTML>
30282 ====== h_config_quell_charset_warning =====
30283 <HTML>
30284 <HEAD>
30285 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30286 </HEAD>
30287 <BODY>
30288 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30290 By default, if the message you are viewing contains characters that are
30291 not representable in your
30292 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30293 then Alpine will
30294 add a warning to the start of the displayed text.
30295 If this option is set, then that editorial message will be suppressed.
30297 Setting this feature also suppresses the comment about the character set
30298 in header lines.
30299 For example, when viewing a message you might see
30301 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30303 in the From header if your Character-Set is something other than ISO-8859-2.
30304 If you set this feature, the comment about the character set will
30305 no longer be there.
30307 &lt;End of help on this topic&gt;
30308 </BODY>
30309 </HTML>
30310 ====== h_config_quell_host_after_url =====
30311 <HTML>
30312 <HEAD>
30313 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
30314 </HEAD>
30315 <BODY>
30316 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
30318 By default, links in HTML text are displayed with the host the link
30319 references appended, within square brackets, to the link text.  Alpine
30320 does this to help indicate where a link will take you, particularly when
30321 the link text might suggest a different destination.
30324 Setting this feature will prevent the server name from being appended
30325 to the displayed text.
30328 &lt;End of help on this topic&gt;
30329 </BODY>
30330 </HTML>
30331 ====== h_config_prefer_plain_text =====
30332 <HTML>
30333 <HEAD>
30334 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
30335 </HEAD>
30336 <BODY>
30337 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
30339 A message being viewed may contain alternate versions of the same content.
30340 Those alternate versions are supposed to be ordered by the sending software such that the
30341 first alternative is the least preferred and the last alternative is the
30342 most preferred. Alpine will normally display the most-preferred version that
30343 it knows how to display. This is most often encountered where the two
30344 alternate versions are a plain text version and an HTML version, with the
30345 HTML version listed last as the most preferred.
30347 If this option is set, then any plain text version will be preferred to
30348 all other versions.
30350 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
30351 which will temporarily change the sense of this option.
30352 If this option is set you will first see the plain text version of a
30353 message.
30354 If you then type the &quot;A&quot; command, you will see the most preferred version,
30355 most likely HTML, instead.
30356 Typing the &quot;A&quot; command a second time will switch it back.
30357 Alternatively, if the present option is not set you will originally see
30358 the most preferred version of the message and typing &quot;A&quot; will switch to
30359 the plain text version.
30361 &lt;End of help on this topic&gt;
30362 </BODY>
30363 </HTML>
30364 ====== h_config_pass_control =====
30365 <HTML>
30366 <HEAD>
30367 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
30368 </HEAD>
30369 <BODY>
30370 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
30372 It is probably not useful to set this option.
30373 This is a legacy option left behind &quot;just in case&quot;.
30374 Multi-byte characters that have an octet that has the same
30375 value as a control character are permitted through whether or not
30376 this option is turned on.
30378 This feature controls how certain characters contained in messages are
30379 displayed.
30380 If set, all characters in a message will be sent to the
30381 screen. Normally, control characters are displayed as shown below to
30382 avoid a garbled screen and to 
30383 avoid inadvertently changing terminal setup parameters.
30384 Control characters are usually displayed as two character sequences like
30385 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
30386 for Control-C,
30387 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
30388 for ESCAPE,
30389 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
30390 for DELETE, and
30391 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
30392 for the character with value 133 (0x85).
30393 (The DEL character is displayed as ^?, regular control characters are displayed
30394 as the character ^ followed by the character obtained by adding the
30395 five low-order bits of the character to 0x40, and the C1
30396 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
30397 character obtained by adding the
30398 five low-order bits of the character to 0x40.)
30399 Sometimes, in cases where changing a single control character into a
30400 two-character sequence would confuse Alpine's display routines,
30401 a question mark is substituted for the control character.
30403 If you wish to filter out regular control characters but pass the
30404 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30405 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.
30407 &lt;End of help on this topic&gt;
30408 </BODY>
30409 </HTML>
30410 ====== h_config_pass_c1_control =====
30411 <HTML>
30412 <HEAD>
30413 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
30414 </HEAD>
30415 <BODY>
30416 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
30418 It is probably not useful to set this option.
30419 This is a legacy option left behind &quot;just in case&quot;.
30420 Multi-byte characters that have an octet that has the same
30421 value as a control character are permitted through whether or not
30422 this option is turned on.
30424 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30425 is set, then this feature has no effect.
30426 However, if you wish to filter out regular control characters but pass the
30427 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30428 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30429 unset and set this feature.
30431 &lt;End of help on this topic&gt;
30432 </BODY>
30433 </HTML>
30434 ====== h_config_fcc_on_bounce =====
30435 <HTML>
30436 <HEAD>
30437 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30438 </HEAD>
30439 <BODY>
30440 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30442 This feature controls an aspect of Alpine's behavior when bouncing a
30443 message. If set, normal FCC ("File Carbon Copy") processing will be
30444 done, just as if you had composed a message to the address you are
30445 bouncing to.  If not set, no FCC of the message will be saved. 
30447 &lt;End of help on this topic&gt;
30448 </BODY>
30449 </HTML>
30450 ====== h_config_show_cursor =====
30451 <HTML>
30452 <HEAD>
30453 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30454 </HEAD>
30455 <BODY>
30456 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30458 This feature controls an aspect of Alpine's displays.  If set, the system
30459 cursor will move to convenient locations in the displays.  For example,
30460 to the beginning of the status field of the highlighted index line, or
30461 to the highlighted word after a successful WhereIs command.  It is intended
30462 to draw your attention to an "interesting" spot on the screen.
30464 &lt;End of help on this topic&gt;
30465 </BODY>
30466 </HTML>
30467 ====== h_config_sort_fcc_alpha =====
30468 <HTML>
30469 <HEAD>
30470 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30471 </HEAD>
30472 <BODY>
30473 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30475 This feature controls an aspect of Alpine's FOLDER LIST screen.
30476 If set, the default Fcc folder will be sorted alphabetically with the other
30477 folders instead of appearing right after the INBOX.
30479 &lt;End of help on this topic&gt;
30480 </BODY>
30481 </HTML>
30482 ====== h_config_sort_save_alpha =====
30483 <HTML>
30484 <HEAD>
30485 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30486 </HEAD>
30487 <BODY>
30488 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30490 This feature controls an aspect of Alpine's FOLDER LIST screen.
30491 If set, the default save folder will be sorted alphabetically with the other
30492 folders instead of appearing right after the INBOX (and default FCC folder).
30494 &lt;End of help on this topic&gt;
30495 </BODY>
30496 </HTML>
30497 ====== h_config_single_list =====
30498 <HTML>
30499 <HEAD>
30500 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30501 </HEAD>
30502 <BODY>
30503 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30505 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30506 the folders will be listed one per line instead of several per line
30507 in the FOLDER LIST display.
30509 &lt;End of help on this topic&gt;
30510 </BODY>
30511 </HTML>
30512 ====== h_config_vertical_list =====
30513 <HTML>
30514 <HEAD>
30515 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30516 </HEAD>
30517 <BODY>
30518 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30520 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30521 the folders will be listed alphabetically down the columns rather
30522 than across the columns as is the default.
30524 &lt;End of help on this topic&gt;
30525 </BODY>
30526 </HTML>
30527 ====== h_config_verbose_post =====
30528 <HTML>
30529 <HEAD>
30530 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30531 </HEAD>
30532 <BODY>
30533 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30534 This feature controls an aspect of Alpine's message sending.  When enabled,
30535 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30536 intended to cause the SMTP server to provide a more detailed account of
30537 the transaction.  This feature is typically only useful to system
30538 administrators and other support personel as an aid in troublshooting
30539 problems.
30541 Note, this feature relies on a specific capability of the system's mail
30542 transport agent or configured 
30543 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30544 It is possible that this
30545 feature will cause problems for some tranport agents, and may result in
30546 sending failure.  In addition, as the verbose output comes from the mail
30547 transport agent, it is likely to vary from one system to another. 
30548 <P><UL>
30549 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30550 </UL><P>
30551 &lt;End of help on this topic&gt;
30552 </BODY>
30553 </HTML>
30554 ====== h_config_auto_reply_to =====
30555 <HTML>
30556 <HEAD>
30557 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30558 </HEAD>
30559 <BODY>
30560 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30562 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30563 will not prompt when a message being replied to contains a "Reply-To:"
30564 header value, but will simply use its value (as opposed to using the
30565 "From:" field's value).
30569 Note: Using the "Reply-To:" address is usually the preferred behavior,
30570 however, some mailing list managers choose to place the list's address in
30571 the "Reply-To:" field of any message sent out to the list.  In such
30572 cases, this feature makes it all too easy for personal replies to be
30573 inadvertently sent to the entire mail list, so be careful! 
30575 &lt;End of help on this topic&gt;
30576 </BODY>
30577 </HTML>
30578 ====== h_config_del_skips_del =====
30579 <HTML>
30580 <HEAD>
30581 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30582 </HEAD>
30583 <BODY>
30584 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30586 This feature controls an aspect of Alpine's Delete command.  If set, this
30587 feature will cause the Delete command to advance past following messages that
30588 are marked deleted.  In other words, pressing "D" will both mark the
30589 current message deleted and advance to the next message that is not marked
30590 deleted.
30591 This feature is set by default.
30593 &lt;End of help on this topic&gt;
30594 </BODY></HTML>
30595 ====== h_config_expunge_manually =====
30596 <HTML>
30597 <HEAD>
30598 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30599 </HEAD>
30600 <BODY>
30601 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30603 Normally, when you close a folder that contains deleted messages you are
30604 asked if you want to expunge those messages from the folder permanently.
30605 If this feature is set, you won't be asked and the deleted messages will
30606 remain in the folder.
30607 If you choose to set this feature you will have to expunge the
30608 messages manually using the eXpunge command, which you can use while
30609 in the MESSAGE INDEX screen.
30610 If you do not expunge deleted messages the size of your
30611 folder will continue to increase until you are out of disk space.
30613 <UL>   
30614 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30615 </UL><P>
30616 &lt;End of help on this topic&gt;
30617 </BODY>
30618 </HTML>
30619 ====== h_config_auto_expunge =====
30620 <HTML>
30621 <HEAD>
30622 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30623 </HEAD>
30624 <BODY>
30625 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30627 This features controls an aspect of Alpine's eXpunge command.  If set, you
30628 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30629 place.
30630 Actually, this is only true for the INBOX folder and for folders in the
30631 Incoming Folders collection. See the feature
30632 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30634 <UL>   
30635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30636 </UL><P>
30637 &lt;End of help on this topic&gt;
30638 </BODY>
30639 </HTML>
30640 ====== h_config_full_auto_expunge =====
30641 <HTML>
30642 <HEAD>
30643 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30644 </HEAD>
30645 <BODY>
30646 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30648 This features controls an aspect of Alpine's eXpunge command.  If set, you
30649 will <B>not</B> be prompted to confirm your intent before the expunge 
30650 takes place.  This feature sets this behavior for all folders, unlike the
30651 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30652 feature that works only for incoming folders.
30654 <UL>   
30655 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30656 </UL><P>
30657 &lt;End of help on this topic&gt;
30658 </BODY>
30659 </HTML>
30660 ====== h_config_auto_read_msgs =====
30661 <HTML>
30662 <HEAD>
30663 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30664 </HEAD>
30665 <BODY>
30666 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30667 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30668 and the 
30669 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30670 option is also set, then Alpine will
30671 automatically transfer all read messages to the designated folder and mark
30672 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30673 &quot;N&quot; (meaning New, or unseen) are not affected.
30675 <UL>   
30676 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30677 </UL><P>
30678 &lt;End of help on this topic&gt;
30679 </BODY>
30680 </HTML>
30681 ====== h_config_auto_fcc_only =====
30682 <HTML>
30683 <HEAD>
30684 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30685 </HEAD>
30686 <BODY>
30687 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30688 This features controls an aspect of Alpine's composer.
30689 The only time this feature will be used is if you attempt to send mail
30690 that has no recipients but does have an Fcc.
30691 Normally, Alpine will ask if you really mean to copy the message only to
30692 the Fcc.
30693 That is, it asks if you really meant to have no recipients.
30694 If this feature is set, you
30695 will <B>not</B> be prompted to confirm your intent to make only a copy
30696 of a message with no recipients.
30698 This feature is closely related to
30699 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30700 The difference between this feature and that feature is that this feature
30701 considers a Bcc to be a recipient while that feature will ask for confirmation
30702 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30703 The default values also differ. This feature defaults to asking the question
30704 and you have to turn it off.
30705 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30706 unless you turn it on.
30709 <UL>   
30710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30711 </UL><P>
30712 &lt;End of help on this topic&gt;
30713 </BODY>
30714 </HTML>
30715 ====== h_config_mark_fcc_seen =====
30716 <HTML>
30717 <HEAD>
30718 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30719 </HEAD>
30720 <BODY>
30721 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30723 This features controls the way Fccs (File carbon copies) are
30724 made of the messages you send.
30727 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30728 copy will be marked as Unseen.
30729 When you look at the folder it was saved in the message will appear to
30730 be a New message until you read it.
30731 When this feature is enabled, the message will be marked as having
30732 been Seen.
30735 <UL>   
30736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30737 </UL><P>
30738 &lt;End of help on this topic&gt;
30739 </BODY>
30740 </HTML>
30741 ====== h_config_no_fcc_attach =====
30742 <HTML>
30743 <HEAD>
30744 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30745 </HEAD>
30746 <BODY>
30747 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30749 This features controls the way Fcc's (File carbon copies) are
30750 made of the messages you send.
30753 Normally, Alpine saves an exact copy of your message as it was sent.
30754 When this feature is enabled, the &quot;body&quot; of the message
30755 you send (the text you type in the composer) is preserved in the 
30756 copy as before, however all attachments are replaced with text
30757 explaining what had been sent rather than the attachments themselves.
30760 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30761 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30762 allows you to interactively set whether or not attachments are saved
30763 to the Fcc'd copy.
30766 <UL>   
30767 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30768 </UL><P>
30769 &lt;End of help on this topic&gt;
30770 </BODY>
30771 </HTML>
30772 ====== h_config_read_in_newsrc_order =====
30773 <HTML>
30774 <HEAD>
30775 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30776 </HEAD>
30777 <BODY>
30778 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30780 This feature controls the order in which newsgroups will be presented.  If
30781 set, they will be presented in the same order as they occur in your 
30782 <!--chtml if pinemode="os_windows"-->
30783 &quot;NEWSRC&quot;
30784 <!--chtml else-->
30785 &quot;.newsrc&quot;
30786 <!--chtml endif-->
30787 file (the default location of which can be changed with the 
30788 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30790 If not set, the newsgroups will be presented in alphabetical order.
30792 <UL>   
30793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30794 </UL><P>
30795 &lt;End of help on this topic&gt;
30796 </BODY>
30797 </HTML>
30798 ====== h_config_quell_tz_comment =====
30799 <HTML>
30800 <HEAD>
30801 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30802 </HEAD>
30803 <BODY>
30804 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30806 Normally, when Alpine generates a Date header for outgoing mail,
30807 it will try to include the symbolic timezone at the end of the
30808 header inside parentheses.
30809 The symbolic timezone is often three characters long, but on
30810 some operating systems, it may be longer.
30811 Apparently there are some SMTP servers in the world that will reject an
30812 incoming message if it has a Date header longer than about 80 characters.
30813 If this feature is set, the symbolic timezone normally generated by
30814 Alpine will not be included.
30815 You probably don't need to worry about this feature unless you run into
30816 the problem described above.
30819 &lt;End of help on this topic&gt;
30820 </BODY>
30821 </HTML>
30822 ====== h_config_post_wo_validation =====
30823 <HTML>
30824 <HEAD>
30825 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30826 </HEAD>
30827 <BODY>
30828 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30830 This feature controls whether the NNTP server is queried as newsgroups
30831 are entered for posting.  Validation over slow links (e.g. dialup using
30832 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30834 &lt;End of help on this topic&gt;
30835 </BODY>
30836 </HTML>
30837 ====== h_config_send_wo_confirm =====
30838 <HTML>
30839 <HEAD>
30840 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30841 </HEAD>
30842 <BODY>
30843 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30845 By default, when you send or post a message you will be asked to confirm
30846 with a question that looks something like:
30849 <CENTER><SAMP>Send message?</SAMP></CENTER>
30852 If this feature is set, you
30853 will <B>not</B> be prompted to confirm your intent to send
30854 and your message will be sent.
30856 If this feature is set it disables some possibilities and renders some
30857 other features meaningless.
30858 You will not be able to use
30859 <A HREF="h_config_sending_filter">Sending Filters</A>,
30860 Verbose sending mode,
30861 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30862 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30863 or ^V to turn off the generation of flowed text for this message.
30864 These options are normally available as suboptions in the Send prompt, but
30865 with no Send prompt the options are gone.
30868 A somewhat related feature is
30869 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30870 which may be used to eliminate the extra confirmation
30871 question when posting to a newsgroup.
30873 <UL>   
30874 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30875 </UL><P>
30876 &lt;End of help on this topic&gt;
30877 </BODY>
30878 </HTML>
30879 ====== h_config_quell_filtering_done_message =====
30880 <HTML>
30881 <HEAD>
30882 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30883 </HEAD>
30884 <BODY>
30885 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30887 If you use Filter Rules that move messages or set status of messages
30888 you sometimes see a message from Alpine that looks like
30891 <CENTER><SAMP>filtering done</SAMP></CENTER>
30894 If this feature is set, this message will be suppressed.
30895 If the feature
30896 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30897 is set then this message will be suppressed regardless.
30900 <UL>   
30901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30902 </UL><P>
30903 &lt;End of help on this topic&gt;
30904 </BODY>
30905 </HTML>
30906 ====== h_config_quell_filtering_messages =====
30907 <HTML>
30908 <HEAD>
30909 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30910 </HEAD>
30911 <BODY>
30912 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30914 If you use Filter Rules that move messages or set status of messages
30915 you sometimes see messages from Alpine that look like
30918 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30924 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30930 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30933 If this feature is set, these messages will be suppressed.
30934 The feature
30935 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30936 is related.
30939 <UL>   
30940 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30941 </UL><P>
30942 &lt;End of help on this topic&gt;
30943 </BODY>
30944 </HTML>
30945 ====== h_config_quell_post_prompt =====
30946 <HTML>
30947 <HEAD>
30948 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30949 </HEAD>
30950 <BODY>
30951 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30953 By default, when you post a message to a newsgroup you are asked to confirm
30954 that you want to post with the question
30957 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30960 If this feature is set, you
30961 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30962 and your message will be posted.
30965 <UL>   
30966 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30967 </UL><P>
30968 &lt;End of help on this topic&gt;
30969 </BODY>
30970 </HTML>
30971 ====== h_config_check_mail_onquit =====
30972 <HTML>
30973 <HEAD>
30974 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30975 </HEAD>
30976 <BODY>
30977 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30979 If this feature is set, Alpine will check for new mail after you give the
30980 Quit command.
30981 If new mail has arrived since the previous check, you will be notified
30982 and given the choice of quitting or not quitting.
30984 <UL>   
30985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30986 </UL><P>
30987 &lt;End of help on this topic&gt;
30988 </BODY>
30989 </HTML>
30990 ====== h_config_inbox_no_confirm =====
30991 <HTML>
30992 <HEAD>
30993 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30994 </HEAD>
30995 <BODY>
30996 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30998 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30999 command and there are no more folders or newsgroups to visit, you are asked
31000 if you want to return to the INBOX.
31001 If this feature is set you will not be asked.
31002 It will be assumed that you do want to return to the INBOX.
31004 <UL>   
31005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31006 </UL><P>
31007 &lt;End of help on this topic&gt;
31008 </BODY>
31009 </HTML>
31010 ====== h_config_dates_to_local =====
31011 <HTML>
31012 <HEAD>
31013 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
31014 </HEAD>
31015 <BODY>
31016 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
31018 Normally, the message dates that you see in the
31019 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
31020 For example, if a message was sent to you from a few timezones to the east
31021 it might appear that it was sent from the future;
31022 or if it was sent from somewhere to the west it might appear
31023 as if it is from yesterday even though it was sent only a few minutes ago.
31024 If this feature is set an attempt will be made to convert the dates
31025 to your local timezone to be displayed.
31027 Note that this does not affect the results of Select by Date or of
31028 anything else other than these displayed dates.
31029 When viewing the message you may look at the original unconverted value of the Date
31030 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
31032 <UL>   
31033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31034 </UL><P>
31035 &lt;End of help on this topic&gt;
31036 </BODY>
31037 </HTML>
31038 ====== h_config_tab_no_prompt =====
31039 <HTML>
31040 <HEAD>
31041 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
31042 </HEAD>
31043 <BODY>
31044 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
31046 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31047 command and there is a problem checking a folder, you are asked
31048 whether you want to continue with the search in the following folder or not.
31049 This question gives you a chance to stop the NextNew processing.
31050 (The checking problem might be caused by the fact that the folder does not
31051 exist, or by an authentication problem, or by a server problem
31052 of some sort.)
31055 If this feature is set you will not be asked.
31056 It will be assumed that you do want to continue.
31058 <UL>   
31059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31060 </UL><P>
31061 &lt;End of help on this topic&gt;
31062 </BODY>
31063 </HTML>
31064 ====== h_config_input_history =====
31065 <HTML>
31066 <HEAD>
31067 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
31068 </HEAD>
31069 <BODY>
31070 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
31072 Many of the prompts that ask for input in the status line near the
31073 bottom of the screen will respond to Up Arrow and Down Arrow
31074 with the history of previous entries.
31075 For example, in the MESSAGE INDEX screen when you use the WhereIs
31076 command the text you entered will be remembered and can be recalled
31077 by using the Up Arrow key.
31078 Another example, when saving a message the folders saved to will
31079 be remembered and can be recalled using the arrow keys.
31081 In the Save prompt, some users prefer that the Up and Down arrow keys
31082 be used for the Previous Collection and Next Collection commands
31083 instead of for a history of previous saves.
31084 If this option is set the Up and Down arrow keys will become synonyms for the
31085 Previous Collection and Next Collection (^P and ^N) commands in the
31086 prompt for the name of a folder to Save to or in the prompt for the
31087 name of a folder to GoTo.
31088 When this feature is not set (the default), ^P and ^N will change the
31089 collection and the arrow keys will show the history.
31091 <UL>   
31092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31093 </UL><P>
31094 &lt;End of help on this topic&gt;
31095 </BODY>
31096 </HTML>
31097 ====== h_config_confirm_role =====
31098 <HTML>
31099 <HEAD>
31100 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
31101 </HEAD>
31102 <BODY>
31103 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
31105 If you have roles, when you Reply to or Forward a message, or Compose
31106 a new message, Alpine
31107 will search through your roles for one that matches.
31108 Normally, if no matches are found you will be placed into the composer
31109 with no opportunity to select a role.
31110 If this feature is set, then you will be asked to confirm that you don't
31111 want a role.
31112 This will give you the opportunity to select a role (with the ^T command).
31113 If you confirm no role with a Return, you will be placed in
31114 the composer with no role.
31115 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
31116 These behave the same as if you pressed the Return.
31117 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
31118 match what you might type if there was a role match.)
31120 If you are using the alternate form of the Compose command called
31121 &quot;Role&quot;, then all of your roles will be available to you,
31122 independent of the value of this feauture and of the values set for all of
31123 Reply Use, Forward Use, and Compose Use.
31125 <UL>   
31126 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31127 </UL><P>
31128 &lt;End of help on this topic&gt;
31129 </BODY>
31130 </HTML>
31131 ====== h_config_news_cross_deletes =====
31132 <HTML>
31133 <HEAD>
31134 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
31135 </HEAD>
31136 <BODY>
31137 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
31139 This feature controls what Alpine does when you delete a message in a
31140 newsgroup that appears in more than one newsgroup.  Such a message
31141 is sometimes termed a &quot;crossposting&quot; in that it was posted
31142 across several newsgroups.
31145 Alpine's default behavior when you delete such a message is to remove
31146 only the copy in the current newsgroup from view when you use the
31147 &quot;Exclude&quot; command or the next time you visit the newsgroup.
31150 Enabling this feature causes Alpine to remove every occurrence of the
31151 message from all newsgroups it appears in and to which you are
31152 subscribed.
31155 NOTE: As currently implemented, enabling this feature may increase the
31156 time it takes the Expunge command and newsgroup closing to complete.
31159 <UL>   
31160 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31161 </UL><P>
31162 &lt;End of help on this topic&gt;
31163 </BODY>
31164 </HTML>
31165 ====== h_config_news_catchup =====
31166 <HTML>
31167 <HEAD>
31168 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
31169 </HEAD>
31170 <BODY>
31171 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
31173 This feature controls what Alpine does as it closes a newsgroup.
31174 When set, Alpine will offer to delete all messages from the newsgroup
31175 as you are quitting Alpine or opening a new folder.
31178 This feature is useful if you typically read all the interesting messages
31179 in a newsgroup each time you open it.  This feature saves you from
31180 having to delete each message in a newsgroup as you read it or from
31181 selecting all the messages and doing an
31182 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
31183 move on to the next folder or newsgroup.
31186 <UL>   
31187 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31188 </UL><P>
31189 &lt;End of help on this topic&gt;
31190 </BODY>
31191 </HTML>
31192 ====== h_config_next_thrd_wo_confirm =====
31193 <HTML>
31194 <HEAD>
31195 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
31196 </HEAD>
31197 <BODY>
31198 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
31200 This feature controls an aspect of Alpine's Next and Prev commands in
31201 the case where you are using one of the
31202 &quot;separate-index-screen&quot; styles for the configuration option
31203 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31204 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31205 When you are Viewing a particular thread you have a
31206 MESSAGE INDEX of only the messages in that thread.
31207 If you press the Next command with the last message in the thread highlighted
31208 you will normally be asked if you want to &quot;View next thread?&quot;,
31209 assuming there is a next thread to view.
31210 If this feature is set it will be assumed that you always want to view the
31211 next thread and you won't be asked to confirm that.
31212 Similarly, if the first message of the thread is highlighted and you
31213 press the Prev command, this feature will prevent the question
31214 &quot;View previous thread&quot;.
31216 This feature only has an effect in the MESSAGE INDEX screen.
31217 If you then view a particular message from that screen and press the
31218 Next command, you will be sent to the next thread without being asked,
31219 independent of the setting of this feature.
31221 The feature
31222 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31224 &lt;End of help on this topic&gt;
31225 </BODY>
31226 </HTML>
31227 ====== h_config_kw_braces =====
31228 <HTML>
31229 <HEAD>
31230 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31231 </HEAD>
31232 <BODY>
31233 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31235 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31236 TEXT screens.
31237 If you have modified the
31238 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31239 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31240 are used to display keywords or their initials along with the Subject; then
31241 this option may be used to modify the resulting display slightly.
31242 By default, the keywords or initials displayed for these tokens will be
31243 surrounded with curly braces ({ and }) and a trailing space.
31244 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31245 a message, the &quot;SUBJKEY&quot; token will normally look like
31247 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31249 and the SUBJKEYINIT token would look like
31251 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31253 The default character before the keywords is the left brace ({) and the
31254 default after the keywords is the right brace followed by a space (} ).
31256 This option allows you to change that.
31257 You should set it to two values separated by a space.
31258 The values may be quoted if they include space characters.
31259 So, for example, the default value could be specified explicitly by setting this
31260 option to
31262 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31264 The first part wouldn't need to be quoted (but it doesn't hurt).
31265 The second part does need the quotes because it includes a space character.
31266 If you wanted to change the braces to brackets you could use
31268 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31270 Inside the quotes you can use backslash quote to mean quote, so
31272 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31274 would produce
31276 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31278 It is also possible to color keywords in the index using the
31279 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31281 It is not possible to change the fact that a space character is used to
31282 separate the keywords if more than one keyword is set for a message.
31283 It is also not possible to change the fact that there are no separators
31284 between the keyword initials if more than one keyword is set.
31286 &lt;End of help on this topic&gt;
31287 </BODY>
31288 </HTML>
31289 ====== h_config_opening_sep =====
31290 <HTML>
31291 <HEAD>
31292 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31293 </HEAD>
31294 <BODY>
31295 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31297 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31298 With some setups the text of the subject is followed
31299 by the opening text of the message if there is any room available in the index line.
31300 If you have configured your
31301 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31302 to include one of the Subject tokens that causes this behavior
31303 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
31304 to modify what is displayed slightly.
31305 By default, the Subject is separated from the opening text of the message by
31306 the three characters space dash space;
31308 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
31310 Use this option to set it to something different.
31311 The value must be quoted if it includes any space characters.
31312 For example, the default value could be specified explicitly by setting this
31313 option to
31315 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
31317 &lt;End of help on this topic&gt;
31318 </BODY>
31319 </HTML>
31320 ====== h_config_select_wo_confirm =====
31321 <HTML>
31322 <HEAD>
31323 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
31324 </HEAD>
31325 <BODY>
31326 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
31328 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
31329 These commands all take text input to specify the name of the folder or
31330 file to be used, but allow you to press ^T for a list of possible names.
31331 If set, the selected name will be used immediately, without further
31332 opportunity to confirm or edit the name.
31334 Some related help topics are
31335 <UL>
31336 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
31337 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
31338 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
31339 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
31340 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
31341 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
31342 </UL>
31344 &lt;End of help on this topic&gt;
31345 </BODY>
31346 </HTML>
31347 ====== h_config_save_part_wo_confirm =====
31348 <HTML>
31349 <HEAD>
31350 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
31351 </HEAD>
31352 <BODY>
31353 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
31355 This feature controls an aspect of Alpine's Save command.
31356 By default, when you Save a message that has some deleted parts, you will
31357 be asked to confirm that you want to Save with a prompt that looks like:
31359 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
31361 If this feature is set, you will not be asked.
31363 &lt;End of help on this topic&gt;
31364 </BODY>
31365 </HTML>
31366 ====== h_config_use_resentto =====
31367 <HTML>
31368 <HEAD>
31369 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
31370 </HEAD>
31371 <BODY>
31372 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
31374 This feature is turned off by default because turning it on causes problems
31375 with some deficient IMAP servers.
31376 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
31377 <A HREF="h_rule_patterns">Pattern</A>
31378 contains a To header pattern and this feature is turned on,
31379 then a check is made in the message to see
31380 if a Resent-To header is present, and that is used instead of the To header.
31381 If this feature is not turned on, then the regular To header will always
31382 be used.
31385 &lt;End of help on this topic&gt;
31386 </BODY>
31387 </HTML>
31388 ====== h_config_use_reg_start_for_stayopen =====
31389 <HTML>
31390 <HEAD>
31391 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
31392 </HEAD>
31393 <BODY>
31394 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
31396 This feature affects which message is selected as the current message
31397 when you enter a
31398 <A HREF="h_config_permlocked">Stay Open</A> folder.
31400 Normally, the starting position for an incoming folder (which most Stay Open
31401 folders will likely be) is controlled by the
31402 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
31403 However, if a folder is a Stay Open folder, when you re-enter the folder
31404 after the first time the current message will be the same as it was when
31405 you left the folder.
31406 An exception is made if you use the TAB command to get to the folder.
31407 In that case, the message number will be incremented by one from what it
31408 was when you left the folder.
31410 The above special behavior is thought to be useful.
31411 However, it is special and different from what you might at first expect.
31412 If this feature is set, then Stay Open folders will not be treated specially
31413 as far as the startup rule is concerned.
31416 &lt;End of help on this topic&gt;
31417 </BODY>
31418 </HTML>
31419 ====== h_config_use_current_dir =====
31420 <HTML>
31421 <HEAD>
31422 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
31423 </HEAD>
31424 <BODY>
31425 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31427 This feature controls an aspect of several commands. 
31428 If set, your &quot;current working directory&quot; 
31429 <!--chtml if pinemode="running"-->
31430 (which, at least for your current Alpine &quot;session,&quot; 
31431 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31432 <!--chtml endif-->
31433 will be used instead of your home directory 
31434 <!--chtml if pinemode="running"-->
31435 (which, in the present configuration of your system, is
31436  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31437 <!--chtml endif-->
31438 for all of the following operations:<UL>
31439     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31440     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31441     <LI> <!--chtml if pinemode="function_key"-->F4
31442          <!--chtml else-->Ctrl-R
31443          <!--chtml endif--> file inclusion in the COMPOSER
31444     <LI> <!--chtml if pinemode="function_key"-->F5
31445          <!--chtml else-->Ctrl-J
31446          <!--chtml endif--> file attachment in the COMPOSER
31447 </UL>
31448 <!--chtml if pinemode="os_windows"-->
31450 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31451 you can set the &quot;current drive&quot; 
31452 by specifying it in the &quot;Start in:&quot; 
31453 box found in the Shortcut tab of the Properties.  
31454 <!--chtml endif-->
31456 <UL>   
31457 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31458 </UL>
31461 &lt;End of help on this topic&gt;
31462 </BODY>
31463 </HTML>
31464 ====== h_config_save_wont_delete =====
31465 <HTML>
31466 <HEAD>
31467 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31468 </HEAD>
31469 <BODY>
31470 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31472 This feature controls one aspect of the Save command.  If set, Save will
31473 not mark the message &quot;deleted&quot; (its default behavior) after
31474 it has been copied to the designated folder.
31477 &lt;End of help on this topic&gt;
31478 </BODY>
31479 </HTML>
31480 ====== h_config_use_boring_spinner =====
31481 <HTML>
31482 <HEAD>
31483 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31484 </HEAD>
31485 <BODY>
31486 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31488 When Alpine is delayed for some reason it usually shows that
31489 something is happening with a small animated display in the status
31490 message line near the bottom of the screen.
31491 Setting this feature will cause that animation to be the same
31492 each time instead of having Alpine choose a random animation.
31493 You may turn the animation off altogether by setting the
31494 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31495 option to zero.
31498 &lt;End of help on this topic&gt;
31499 </BODY>
31500 </HTML>
31501 ====== h_config_unsel_wont_advance =====
31502 <HTML>
31503 <HEAD>
31504 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31505 </HEAD>
31506 <BODY>
31507 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31509 This feature controls one aspect of the Unselect Current message command.
31510 Normally, when the Unselect current message command (:) is typed when the
31511 current message is selected, the message will be unselected and the next
31512 message will become the current message.
31513 If this feature is set, the cursor will not advance to the next message.
31514 Instead, the current message will remain the current message after
31515 unselecting.
31518 &lt;End of help on this topic&gt;
31519 </BODY>
31520 </HTML>
31521 ====== h_config_prune_uses_iso =====
31522 <HTML>
31523 <HEAD>
31524 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31525 </HEAD>
31526 <BODY>
31527 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31529 By default, Alpine asks monthly whether or not you would like to rename
31530 some folders to a new name containing the date.
31531 It also asks whether or not you would like to delete some old folders.
31532 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31533 explanation.
31536 By default, the name used when renaming a folder looks like
31538 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31540 For example, the first time you run Alpine in May of 2004,
31541 the folder &quot;sent-mail&quot; might be renamed to
31543 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31545 If this feature is set, the name used will be of the form
31547 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31549 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31550 month (01, 02, ..., 12).
31551 For the April, 2004 example above, it would instead be
31553 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31555 because April is the 4th month of the year.
31556 A reason you might want to set this feature is so that the folders
31557 will sort in chronological order.
31560 &lt;End of help on this topic&gt;
31561 </BODY>
31562 </HTML>
31563 ====== h_config_save_advances =====
31564 <HTML>
31565 <HEAD>
31566 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31567 </HEAD>
31568 <BODY>
31569 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31571 This feature controls one aspect of the Save command.  If set, Save will
31572 (in addition to copying the current message to the designated folder) also
31573 advance to the next message.
31576 &lt;End of help on this topic&gt;
31577 </BODY>
31578 </HTML>
31579 ====== h_config_force_arrow =====
31580 <HTML>
31581 <HEAD>
31582 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31583 </HEAD>
31584 <BODY>
31585 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31587 This feature affects Alpine's MESSAGE INDEX display routine.
31588 If set, the normal inverse-video cursor will be
31589 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31590 second column of the index display.
31592 This is the same index cursor you get if you turn on
31593 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31594 line coloring will still be present if this feature is turned on and
31595 <!--#echo var="FEAT_assume-slow-link"--> is off.
31597 An alternative version of the Arrow cursor is available by including the
31598 <A HREF="h_config_index_arrow_color">ARROW</A>
31599 token in the
31600 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31602 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31603 but that is not implemented.
31606 &lt;End of help on this topic&gt;
31607 </BODY>
31608 </HTML>
31609 ====== h_config_ignore_size =====
31610 <HTML>
31611 <HEAD>
31612 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31613 </HEAD>
31614 <BODY>
31615 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31617 When you have an account residing in an IMAP server, Alpine records the 
31618 size of each message as reported by the server. However, when Alpine saves 
31619 a message in such IMAP server, Alpine will compute the size of the message 
31620 independently, from the data it received. If these two numbers do not 
31621 match for a message, Alpine asks you if you still want to take the risk of 
31622 saving such message, since data corruption or loss of data could result 
31623 from this save.
31626 Sometimes the root of this problem is that the IMAP server does not 
31627 compute sizes correctly, and there will not be loss of information when 
31628 saving such message. Enabling this feature will make Alpine ignore such 
31629 error and continue saving the message without producing any warnings or 
31630 ever stopping the process, as if there had not been any error. This option 
31631 applies to all IMAP servers that you use, so if you enable this feature, 
31632 size discrepancy warnings will not be given for any IMAP server you 
31633 connect to.
31636 Example of a server where you could reproduce this problem is the Gmail 
31637 IMAP server. Another example can be found in some versions of the Exchange 
31638 server.
31641 It is recommended that this feature be disabled most of the time and only 
31642 enabled when you find a server which you can determine that has the above 
31643 mentioned defect, but be disabled again after making the save operation 
31644 succeed.
31647 &lt;End of help on this topic&gt;
31648 </BODY>
31649 </HTML>
31650 ====== h_config_force_low_speed =====
31651 <HTML>
31652 <HEAD>
31653 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31654 </HEAD>
31655 <BODY>
31656 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31658 UNIX Alpine only.
31660 This feature affects Alpine's display routines.  If set, the normal
31661 inverse-video cursor (used to highlight the current item in a list) will be
31662 replaced by an &quot;arrow&quot; cursor and other
31663 screen update optimizations for
31664 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31665 One of the optimizations is that colored index lines (set up with Indexcolor
31666 Rules) will not be colored.
31667 If you are just turning this feature on because you like using
31668 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31669 coloring by turning this feature off and the
31670 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31673 &lt;End of help on this topic&gt;
31674 </BODY>
31675 </HTML>
31676 ====== h_config_show_delay_cue =====
31677 <HTML>
31678 <HEAD>
31679 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31680 </HEAD>
31681 <BODY>
31682 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31684 If set, this feature will cause an asterisk to appear in the upper
31685 left-hand corner of the screen whenever Alpine checks for new mail.
31686 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31687 mailbox to disk.
31689 <!--chtml if pinemode="os_windows"-->
31691 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31692 it is trying to open a network connection (e.g, to open your INBOX
31693 on an IMAP
31694 server) or read from the network connection.  A greater-than symbol,
31695 will be displayed when PC-Alpine is trying to write to the network
31696 connection (e.g, sending a command to your IMAP server).
31697 <!--chtml endif-->
31700 &lt;End of help on this topic&gt;
31701 </BODY>
31702 </HTML>
31703 ====== h_config_color_style =====
31704 <HTML>
31705 <HEAD>
31706 <TITLE>OPTION: Color Style</TITLE>
31707 </HEAD>
31708 <BODY>
31709 <H1>OPTION: Color Style</H1>
31711 UNIX Alpine only.
31713 If the terminal or terminal emulator you are using is capable of displaying
31714 colors, this option controls whether or not color will be used in Alpine.
31715 If you turn color on and things are set up correctly,
31716 you should see color appear on the screen immmediately.
31717 Modern terminal emulators are usually capable of displaying colors.
31719 The available options include:
31722 <DL>
31723 <DT>no-color</DT>
31724 <DD>Don't use color.
31725 </DD>
31727 <DT>use-termdef</DT>
31728 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31729 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31730 how Alpine was compiled.
31731 This is a good option to choose if you switch between a color and a non-color
31732 terminal with the same Alpine configuration.
31733 Alpine will know to use color on the color terminal because it is described
31734 in the termcap entry, and Alpine will know to use black and white on the
31735 non-color terminal.
31736 The Alpine Technical Notes
31737 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31738 have more information on configuring a TERMCAP or TERMINFO
31739 entry for color Alpine.
31740 This is usually something a system administrator does.
31741 </DD>
31743 <DT>force-ansi-8color</DT>
31744 <DD>This is probably the setting that most people should use.
31745 Because setting up a termcap entry is confusing and because the
31746 terminal capabilities database is often not correctly configured for color,
31747 this choice and the next may be easier for you to use.
31748 If your terminal emulator responds to ANSI color escape sequences, which
31749 many do, this option will cause Alpine to believe your terminal will respond
31750 to the escape sequences that produce eight different foreground and background
31751 colors.
31752 The escape sequences used to set the foreground colors are
31754   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31756 where the color_number is an ASCII digit between 0 and 7.
31757 The numbers 0 through 7 should correspond to the colors black, red, green,
31758 yellow, blue, magenta, cyan, and white.
31759 Some terminal emulators use a pre-ANSI scheme that swaps
31760 the colors blue and red and the colors yellow and cyan.
31761 This will cause the default colors to be different, but other than that
31762 things should work fine.
31763 There is also a 9th color available, the last one shown, which is the default
31764 color from the terminal emulator.
31765 When used as a background color some people refer to this color as
31766 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31767 shown in the color swatch of the SETUP COLOR screen.
31768 The foreground transparent color is shown as
31769 the color of the &quot;TRAN&quot; text.
31770 (The transparent color will not work correctly in a PC-Alpine configuration.)
31771 The escape sequences used to set the background colors are the same
31772 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31773 The escape sequences for foreground and background default colors (transparent)
31774 are 39m and 49m.
31776 Note: With the Tera Term terminal emulator this setting works well.
31777 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31778 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31779 menu, in the &quot;Window&quot; submenu.
31780 </DD>
31782 <DT>force-ansi-16color</DT>
31783 <DD>Many terminal emulators know about the same eight colors above
31784 plus eight more.
31785 This option attempts to use all 16 colors.
31786 The same escape sequences as for the eight-color terminal are used
31787 for the first eight colors.
31788 The escape sequences used to set foreground colors 8-15 are the same as
31789 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31790 The background color sequences for colors 8-15 are the same as for 0-7
31791 except the &quot;4&quot; is replaced with &quot;10&quot;.
31792 You can tell if the 16 colors are working by turning on this option
31793 and then going into one of the color configuration screens, for example,
31794 the configuration screen for Normal Color.
31795 If you see 16 different colors to select from (plus a 17th for
31796 the transparent color), it's working.
31797 </DD>
31799 <DT>force-xterm-256color</DT>
31800 <DD>Some versions of xterm (and some other terminal emulators)
31801 have support for 256 colors.
31802 The escape sequences used to set the foreground colors are
31804   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31806 where the color_number is an ASCII digit between 0 and 255.
31807 Background colors are the same with the 38 replaced with a 48.
31808 The numbers 0 through 15 are probably similar to the 16 color version
31809 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31810 The terminal default (transparent) color is the 257th color at the bottom.
31811 Some terminal emulators will misinterpret these escape sequences causing
31812 the terminal to blink or overstrike characters or to do something else
31813 undesirable.
31815 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31816 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31817 this 256-color setting.
31819 </DD>
31820 </DL>
31823 The normal default is &quot;no-color&quot;.
31826 Once you've turned on color you may set the
31827 colors of many objects on the screen individually.
31828 For example, you may add colors to the status letters on the MESSAGE
31829 INDEX page.
31830 Most categories of color that Alpine supports are configurable here.
31831 For example, &quot;Normal Color&quot;
31832 is the color used to display most of the text in Alpine, and
31833 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31834 current message in the MESSAGE INDEX.
31836 Lines in the MESSAGE INDEX may also be colored.
31837 Use Setup Rules to get to the Indexcolor configuration screen.
31840 <UL>   
31841 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31842 </UL><P>
31843 &lt;End of help on this topic&gt;
31844 </BODY>
31845 </HTML>
31846 ====== h_config_disable_index_locale_dates =====
31847 <HTML>
31848 <HEAD>
31849 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31850 </HEAD>
31851 <BODY>
31852 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31854 This feature affects the display of dates in the MESSAGE INDEX.
31855 Normally an attempt is made to localize the dates
31856 used in the MESSAGE INDEX display to your locale.
31857 This is controlled with the
31858 LC_TIME locale setting on a UNIX system.
31859 On Windows the Regional Options control panel may be used to set the date format.
31860 At the programming level, Alpine is using the strftime routine
31861 to print the parts of a date.
31863 If this feature is set, dates are displayed in English and
31864 with the conventions of the United States.
31867 <UL>   
31868 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31869 </UL><P>
31870 &lt;End of help on this topic&gt;
31871 </BODY>
31872 </HTML>
31873 ====== h_config_auto_open_unread =====
31874 <HTML>
31875 <HEAD>
31876 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31877 </HEAD>
31878 <BODY>
31879 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
31881 This feature controls the behavior of the TAB key when traversing folders
31882 in the optional 
31883 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
31884 collection or in optional <!--#echo var="VAR_news-collections"-->.
31886 When the TAB
31887 (<A HREF="h_common_nextnew">NextNew</A>)
31888 key is pressed, and there
31889 are no more unseen messages in the current (incoming message or news)
31890 folder, Alpine will search the list of folders in the current collection for
31891 one containing New or Recent (new since the last time the folder was
31892 opened) messages.
31893 This behavior may be modified slightly with the
31894 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31895 feature that causes Alpine to look for Unseen messages instead of Recent
31896 messages.
31897 Normally, when such a folder is found, Alpine will ask
31898 whether you wish to open the folder.  If this feature is set, Alpine will
31899 automatically open the folder without prompting.
31901 This feature also affects some other similar situations.
31902 If you have a
31903 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31904 that is equal to one of the &quot;separate-&quot; values, and you are
31905 viewing a thread; then when you type the NextNew command and are at the
31906 end of the current thread you will automatically go to the next thread
31907 if this feature is set.
31908 By default, you would be asked if you want to view the next thread.
31909 You will also be asked at times whether or not you want to view the next
31910 thread after you delete the last message in the thread.
31911 Setting this feature will also cause that question to be skipped.
31914 <UL>   
31915 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31916 </UL><P>
31917 &lt;End of help on this topic&gt;
31918 </BODY>
31919 </HTML>
31920 ====== h_config_auto_include_reply =====
31921 <HTML>
31922 <HEAD>
31923 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31924 </HEAD>
31925 <BODY>
31926 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31928 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31929 will ask whether you wish to include the original message in your reply.
31930 If this feature is set and the feature
31931 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31932 is <EM>not</EM> set, then the original message will be included in the reply
31933 automatically, without prompting.
31935 &lt;End of help on this topic&gt;
31936 </BODY>
31937 </HTML>
31938 ====== h_config_select_in_bold =====
31939 <HTML>
31940 <HEAD>
31941 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31942 </HEAD>
31943 <BODY>
31944 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31946 This feature controls an aspect of Alpine's 
31947 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31948 commands; in
31949 particular, the Select and WhereIs commands. Select and WhereIs (with the
31950 ^X subcommand) will search the current folder for messages meeting a
31951 specified criteria, and &quot;tag&quot; the resulting messages with an 
31952 &quot;X&quot; in the
31953 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31954 is set, instead of using the &quot;X&quot; to denote a selected message, 
31955 Alpine will
31956 attempt to display those index lines in boldface. Whether this is
31957 preferable to the &quot;X&quot; will depend on personal taste and the type of
31958 terminal being used.
31960 <UL>   
31961 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31962 </UL><P>
31963 &lt;End of help on this topic&gt;
31964 </BODY>
31965 </HTML>
31966 ====== h_config_alt_auth =====
31967 <HTML>
31968 <HEAD>
31969 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31970 </HEAD>
31971 <BODY>
31972 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31974 This feature affects how Alpine connects to IMAP servers.
31975 It's utility has largely been overtaken by events,
31976 but it may still be useful in some circumstances.
31977 If you only connect to modern IMAP servers that support
31978 &quot;TLS&quot; you can ignore this feature.
31981 Details:
31984 By default, Alpine will attempt to connect to an IMAP server on the
31985 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31986 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31987 then a secure (encrypted) session will be negotiated.
31990 With this feature enabled, before connecting on the normal IMAP port, Alpine
31991 will first attempt to connect to an alternate IMAP service port (993) used
31992 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31993 (SSL) method.
31994 If the SSL attempt fails, Alpine will then try the default
31995 behavior described in the previous paragraph.
31998 TLS negotiation on the normal port is preferred, and supersedes the use of
31999 SSL on port 993, but older servers may not provide TLS support.
32000 This feature may be convenient when accessing IMAP servers that do not support
32001 TLS, but do support SSL connections on port 993.
32002 However, it is important to understand that with this feature enabled,
32003 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
32004 but it will proceed to make an insecure connection if that is the only
32005 option offered by the server, or if the Alpine in question has been built
32006 without encryption capability.
32009 Note that this feature specifies a per-user (or system-wide) default
32010 behavior, but host/folder specification flags may be used to control the
32011 behavior of any specific connection.
32012 This feature interacts with some of
32013 the possible host/folder path specification flags as follows:
32016 The <SAMP>/tls</SAMP> host flag, for example,
32019 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
32021 will over-ride this feature for the specified host by bypassing the
32022 SSL connection attempt.
32023 Moreover, with <SAMP>/tls</SAMP> specified,
32024 the connection attempt will fail if the
32025 service on port 143 does not offer TLS support.
32028 The <SAMP>/ssl</SAMP> host flag, for example,
32031 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
32033 will insist on an SSL connection for the specified host,
32034 and will fail if the SSL service on port 993 is not available.
32035 Alpine will not subsequently retry a connection
32036 on port 143 if <SAMP>/ssl</SAMP> is specified.
32039 <UL>   
32040 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32041 </UL><P>
32042 &lt;End of help on this topic&gt;
32043 </BODY>
32044 </HTML>
32045 ====== h_config_file_dir ======
32046 <HTML>
32047 <HEAD>
32048 <TITLE>OPTION: File Directory</TITLE>
32049 </HEAD>
32050 <BODY>
32051 <H1>OPTION: File Directory</H1>
32053 PC-Alpine only.
32055 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
32056 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
32057 Message Index's &quot;E&nbsp;Export&quot; command.
32060 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
32061 component, Alpine assumes the file exists in the user's home directory.
32062 Under Windows operating systems, this definition isn't always clear.  This 
32063 feature allows you to explictly set where Alpine should look for files
32064 without a leading path.
32067 NOTE: this feature's value is ignored if either 
32068 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
32069 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
32072 <UL>   
32073 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32074 </UL><P>
32075 &lt;End of help on this topic&gt;
32076 </BODY>
32077 </HTML>
32078 ====== h_config_quote_all_froms =====
32079 <HTML>
32080 <HEAD>
32081 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
32082 </HEAD>
32083 <BODY>
32084 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
32086 This feature controls an aspect of the Save command (and also the way
32087 outgoing messages are saved to an FCC folder).  If set, Alpine will add
32088 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
32089 when they are saved to another folder, including lines syntactically
32090 distinguishable from the type of message separator line commonly used on
32091 Unix systems.
32094 The default behavior is that a &quot;>&quot; will be prepended only to lines
32095 beginning with &quot;From &quot; that might otherwise be confused with a message
32096 separator line on Unix systems.  If pine is the only mail program you use,
32097 this default is reasonable.  If another program you use has trouble
32098 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
32099 enable this feature.  This feature only applies to the common Unix mailbox
32100 format that uses message separator lines beginning with &quot;From &quot;.  If
32101 Alpine has been configured to use a different mailbox format (possibly
32102 incompatible with other mail programs), then this issue does not arise,
32103 and the feature is irrelevant.
32106 &lt;End of help on this topic&gt;
32107 </BODY>
32108 </HTML>
32109 ====== h_config_normal_color =====
32110 <HTML>
32111 <HEAD>
32112 <TITLE>OPTION: Normal Color</TITLE>
32113 </HEAD>
32114 <BODY>
32115 <H1>OPTION: Normal Color</H1>
32117 Sets the color Alpine normally uses.
32118 The foreground color is the color of the actual character and the
32119 background color is the color of the area behind the character.
32120 By default this color is black characters on a white background.
32122 <A HREF="h_color_setup">Descriptions of the available commands</A>
32124 Look <A HREF="h_edit_nav_cmds">here</A>
32125 to see the available Editing and Navigation commands.
32127 &lt;End of help on this topic&gt;
32128 </BODY>
32129 </HTML>
32130 ====== h_config_reverse_color =====
32131 <HTML>
32132 <HEAD>
32133 <TITLE>OPTION: Reverse Color</TITLE>
32134 </HEAD>
32135 <BODY>
32136 <H1>OPTION: Reverse Color</H1>
32138 Sets the color Alpine uses for reverse video characters.
32139 The foreground color is the color of the actual character and the
32140 background color is the color of the area behind the character.
32142 <A HREF="h_color_setup">Descriptions of the available commands</A>
32144 Look <A HREF="h_edit_nav_cmds">here</A>
32145 to see the available Editing and Navigation commands.
32147 &lt;End of help on this topic&gt;
32148 </BODY>
32149 </HTML>
32150 ====== h_config_title_color =====
32151 <HTML>
32152 <HEAD>
32153 <TITLE>OPTION: Title Color</TITLE>
32154 </HEAD>
32155 <BODY>
32156 <H1>OPTION: Title Color</H1>
32158 Sets the color Alpine uses for the titlebar (the top line on the screen).
32159 The foreground color is the color of the actual character and the
32160 background color is the color of the area behind the character.
32161 By default, the Title Color is black characters on a yellow background.
32163 The actual titlebar color may be different from the Title Color if
32164 the option
32165 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
32166 is set to some value other than the default.
32167 It may also be different if the current folder is closed and the
32168 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
32169 color is set to something different from the Title Color.
32171 <A HREF="h_color_setup">Descriptions of the available commands</A>
32173 Look <A HREF="h_edit_nav_cmds">here</A>
32174 to see the available Editing and Navigation commands.
32176 &lt;End of help on this topic&gt;
32177 </BODY>
32178 </HTML>
32179 ====== h_config_titleclosed_color =====
32180 <HTML>
32181 <HEAD>
32182 <TITLE>OPTION: Title Closed Color</TITLE>
32183 </HEAD>
32184 <BODY>
32185 <H1>OPTION: Title Closed Color</H1>
32187 Sets the color Alpine uses for the titlebar (the top line on the screen)
32188 when the current folder is closed.
32189 The foreground color is the color of the actual character and the
32190 background color is the color of the area behind the character.
32191 By default, the Title Color Closed Color is white characters on a red background.
32193 By setting this color to something noticeable you will be alerted to the
32194 fact that the current folder is closed, perhaps unexpectedly.
32196 &lt;End of help on this topic&gt;
32197 </BODY>
32198 </HTML>
32199 ====== h_config_status_color =====
32200 <HTML>
32201 <HEAD>
32202 <TITLE>OPTION: Status Color</TITLE>
32203 </HEAD>
32204 <BODY>
32205 <H1>OPTION: Status Color</H1>
32207 Sets the color Alpine uses for status messages written to the message
32208 line near the bottom of the screen.
32209 The foreground color is the color of the actual character and the
32210 background color is the color of the area behind the character.
32211 By default, the Status Color is the same as the Reverse Color.
32213 <A HREF="h_color_setup">Descriptions of the available commands</A>
32215 Look <A HREF="h_edit_nav_cmds">here</A>
32216 to see the available Editing and Navigation commands.
32218 &lt;End of help on this topic&gt;
32219 </BODY>
32220 </HTML>
32221 ====== h_config_index_opening_color =====
32222 <HTML>
32223 <HEAD>
32224 <TITLE>OPTION: Index Opening Color</TITLE>
32225 </HEAD>
32226 <BODY>
32227 <H1>OPTION: Index Opening Color</H1>
32229 With some setups the text of the subject is followed
32230 by the opening text of the message if there is any room available in the index line.
32231 If you have configured your
32232 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32233 to include one of the Subject tokens that causes this behavior
32234 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32235 this opening text with this option.
32236 This coloring takes place for all but the current index line, and the Opening
32237 Color appears to be in front of any color from an Index Color Rule.
32239 By default the Index Opening Color is gray characters on a white background.
32242 <A HREF="h_color_setup">Descriptions of the available commands</A>
32244 Look <A HREF="h_edit_nav_cmds">here</A>
32245 to see the available Editing and Navigation commands.
32247 &lt;End of help on this topic&gt;
32248 </BODY>
32249 </HTML>
32250 ====== h_config_index_pri_color =====
32251 <HTML>
32252 <HEAD>
32253 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32254 </HEAD>
32255 <BODY>
32256 <H1>OPTION: Index Priority Symbol Colors</H1>
32258 The X-Priority header is a non-standard header that is used in a
32259 somewhat standard way by many mail programs.
32260 Alpine expects the value of this header to be a digit with a value
32261 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32262 Alpine can be made to display an indication of this priority in
32263 messages by use of one of the tokens
32264 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32265 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32266 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32269 You may set the color used to draw these tokens by use of the colors
32270 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32271 This coloring takes place for all but the current index line, and the Priority
32272 Color appears to be in front of any color from an Index Color Rule.
32273 If the priority has a value of 1 or 2 the High Priority color will be
32274 used,
32275 and if the value is 4 or 5 the Low Priority color will be used.
32277 If you don't set these colors the index line will be colored in the same color as
32278 the bulk of the index line.
32281 <A HREF="h_color_setup">Descriptions of the available commands</A>
32283 Look <A HREF="h_edit_nav_cmds">here</A>
32284 to see the available Editing and Navigation commands.
32286 &lt;End of help on this topic&gt;
32287 </BODY>
32288 </HTML>
32289 ====== h_config_index_subject_color =====
32290 <HTML>
32291 <HEAD>
32292 <TITLE>OPTION: Index Subject Color</TITLE>
32293 </HEAD>
32294 <BODY>
32295 <H1>OPTION: Index Subject Color</H1>
32297 You may set the color used to draw the Subject part of the index line.
32298 This coloring takes place for all but the current index line, and the Subject
32299 Color appears to be in front of any color from an Index Color Rule.
32301 If you don't set this color it will be colored in the same color as
32302 the bulk of the index line.
32305 <A HREF="h_color_setup">Descriptions of the available commands</A>
32307 Look <A HREF="h_edit_nav_cmds">here</A>
32308 to see the available Editing and Navigation commands.
32310 &lt;End of help on this topic&gt;
32311 </BODY>
32312 </HTML>
32313 ====== h_config_index_from_color =====
32314 <HTML>
32315 <HEAD>
32316 <TITLE>OPTION: Index From Color</TITLE>
32317 </HEAD>
32318 <BODY>
32319 <H1>OPTION: Index From Color</H1>
32321 You may set the color used to draw the From part of the index line.
32322 This coloring takes place for all but the current index line, and the From
32323 Color appears to be in front of any color from an Index Color Rule.
32325 If you don't set this color it will be colored in the same color as
32326 the bulk of the index line.
32329 <A HREF="h_color_setup">Descriptions of the available commands</A>
32331 Look <A HREF="h_edit_nav_cmds">here</A>
32332 to see the available Editing and Navigation commands.
32334 &lt;End of help on this topic&gt;
32335 </BODY>
32336 </HTML>
32337 ====== h_config_index_arrow_color =====
32338 <HTML>
32339 <HEAD>
32340 <TITLE>OPTION: Index Arrow Color</TITLE>
32341 </HEAD>
32342 <BODY>
32343 <H1>OPTION: Index Arrow Color</H1>
32345 If you have configured your
32346 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32347 to include the &quot;ARROW&quot; token, you may set the color of
32348 the arrow displayed with this option.
32349 If you don't set the color it will be colored in the same color as
32350 the bulk of the index line.
32353 <A HREF="h_color_setup">Descriptions of the available commands</A>
32355 Look <A HREF="h_edit_nav_cmds">here</A>
32356 to see the available Editing and Navigation commands.
32358 &lt;End of help on this topic&gt;
32359 </BODY>
32360 </HTML>
32361 ====== h_config_index_color =====
32362 <HTML>
32363 <HEAD>
32364 <TITLE>OPTION: Index Colors</TITLE>
32365 </HEAD>
32366 <BODY>
32367 <H1>OPTION: Index Colors</H1>
32369 You may add color to the single character symbols that give the status
32370 of each message in the MESSAGE INDEX.
32371 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
32372 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
32373 screen depending on whether the message is addressed to you, and whether
32374 the message is marked Important, is Deleted, is Answered, or is New.
32375 The color for each of those characters may be specified by setting the
32376 &quot;Index-to-me&quot; Symbol Color,
32377 the &quot;Index-important&quot; Symbol Color,
32378 the &quot;Index-deleted&quot; Symbol Color,
32379 the &quot;Index-answered&quot; Symbol Color,
32380 and the &quot;Index-new&quot; Symbol Color.
32381 There are also two other symbol colors called &quot;Index-recent&quot;
32382 and &quot;Index-unseen&quot;.
32383 These two colors will only be used if you have configured your
32384 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32385 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
32387 The default colors for these symbols are:
32388 <TABLE>
32389 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
32390 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
32391 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32392 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
32393 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
32394 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32395 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32396 </TABLE>
32398 Besides coloring the message status symbols, you may also color the
32399 entire index line.
32400 This is done by using the
32401 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
32402 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
32403 When the entire line is colored that color will be &quot;behind&quot; the
32404 status symbol colors talked about in the paragraph above.
32406 You may also color
32407 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32408 in the index using the
32409 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
32410 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
32411 the Subject using
32412 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
32413 the From field using
32414 <A HREF="h_config_index_from_color">Index From Color</A>;
32415 and the
32416 <A HREF="h_config_index_opening_color">Index Opening</A> text.
32418 <A HREF="h_color_setup">Descriptions of the available commands</A>
32420 Look <A HREF="h_edit_nav_cmds">here</A>
32421 to see the available Editing and Navigation commands.
32423 &lt;End of help on this topic&gt;
32424 </BODY>
32425 </HTML>
32426 ====== h_config_metamsg_color =====
32427 <HTML>
32428 <HEAD>
32429 <TITLE>OPTION: Meta-Message Color</TITLE>
32430 </HEAD>
32431 <BODY>
32432 <H1>OPTION: Meta-Message Color</H1>
32434 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32435 that aren't part of the message itself.
32436 For example, an attachment that isn't shown might produce a meta
32437 message something like:
32439 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32441 If you set the
32442 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32443 option you might see
32445 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32447 Warnings about suspicious looking URLs in HTML will also be colored
32448 with this color.
32450 The foreground color is the color of the actual character and the
32451 background color is the color of the area behind the character.
32452 By default, the Meta-Message Color is black characters on a yellow background.
32454 <A HREF="h_color_setup">Descriptions of the available commands</A>
32456 Look <A HREF="h_edit_nav_cmds">here</A>
32457 to see the available Editing and Navigation commands.
32459 &lt;End of help on this topic&gt;
32460 </BODY>
32461 </HTML>
32462 ====== h_config_keylabel_color =====
32463 <HTML>
32464 <HEAD>
32465 <TITLE>OPTION: KeyLabel Color</TITLE>
32466 </HEAD>
32467 <BODY>
32468 <H1>OPTION: KeyLabel Color</H1>
32470 Sets the color Alpine uses for the labels of the keys in the two-line
32471 menu at the bottom of the screen.
32472 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32473 This option sets the color used when displaying &quot;PrevMsg&quot;.
32474 The foreground color is the color of the actual character and the
32475 background color is the color of the area behind the character.
32476 By default, the KeyLabel Color is the same as the Normal Color.
32478 WARNING: Some terminal emulators have the property that the screen will scroll
32479 down one line whenever a character is written to the character cell in the
32480 lower right corner of the screen.
32481 Alpine can usually avoid writing a character in that corner of the screen.
32482 However, if you have defined a KeyLabel Color then Alpine does have to write
32483 a character in that cell in order to color the cell correctly.
32484 If you find that your display sometimes scrolls up a line this could be
32485 the problem.
32486 The most obvious symptom is probably that the titlebar at the top of the
32487 screen scrolls off the screen.
32488 Try setting KeyLabel Color to Default to see if that fixes the problem.
32490 <A HREF="h_color_setup">Descriptions of the available commands</A>
32492 Look <A HREF="h_edit_nav_cmds">here</A>
32493 to see the available Editing and Navigation commands.
32495 &lt;End of help on this topic&gt;
32496 </BODY>
32497 </HTML>
32498 ====== h_config_keyname_color =====
32499 <HTML>
32500 <HEAD>
32501 <TITLE>OPTION: KeyName Color</TITLE>
32502 </HEAD>
32503 <BODY>
32504 <H1>OPTION: KeyName Color</H1>
32506 Sets the color Alpine uses for the names of the keys in the two-line
32507 menu at the bottom of the screen.
32508 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32509 This option sets the color used when displaying the &quot;P&quot;.
32510 The foreground color is the color of the actual character and the
32511 background color is the color of the area behind the character.
32512 By default, the KeyName Color is the same as the Reverse Color.
32514 <A HREF="h_color_setup">Descriptions of the available commands</A>
32516 Look <A HREF="h_edit_nav_cmds">here</A>
32517 to see the available Editing and Navigation commands.
32519 &lt;End of help on this topic&gt;
32520 </BODY>
32521 </HTML>
32522 ====== h_config_slctbl_color =====
32523 <HTML>
32524 <HEAD>
32525 <TITLE>OPTION: Selectable Item Color</TITLE>
32526 </HEAD>
32527 <BODY>
32528 <H1>OPTION: Selectable Item Color</H1>
32530 Sets the color Alpine uses for selectable items, such as URLs.
32531 The foreground color is the color of the actual character and the
32532 background color is the color of the area behind the character.
32533 By default, the Selectable Item Color is the same as the Normal Color,
32534 except that it is bold.
32536 <A HREF="h_color_setup">Descriptions of the available commands</A>
32538 Look <A HREF="h_edit_nav_cmds">here</A>
32539 to see the available Editing and Navigation commands.
32541 &lt;End of help on this topic&gt;
32542 </BODY>
32543 </HTML>
32544 ====== h_config_quote_color =====
32545 <HTML>
32546 <HEAD>
32547 <TITLE>OPTION: Quote Colors</TITLE>
32548 </HEAD>
32549 <BODY>
32550 <H1>OPTION: Quote Colors</H1>
32552 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32553 screen.
32554 If a line begins with a &gt; character (or space followed by &gt;)
32555 it is considered a quote.
32556 That line will be given the Quote1 Color (first level quote).
32557 If there is a second level of quoting then the Quote2 Color will be used.
32558 Alpine considers there to be a second level of quoting if that first &gt; is
32559 followed by another &gt; (or space followed by &gt;).
32560 If there are characters other than whitespace and &gt; signs, then it isn't
32561 considered another level of quoting.
32562 Similarly, if there is a third level of quoting the Quote3 Color will be
32563 used.
32564 If there are more levels after that the Quote Colors are re-used.
32565 If you define all three colors then it would repeat like Color1, Color2, Color3,
32566 Color1, Color2, Color3, ...
32567 If you only define the first two it would be
32568 Color1, Color2, Color1, Color2, ...
32569 If you define only the Quote1 Color, then the entire quote would be that
32570 color regardless of the quoting levels.
32571 By default, the Quote1 Color is black characters on a greenish-blue background;
32572 the Quote2 Color is black characters on a dull yellow background; and
32573 the Quote3 Color is black characters on a green background.
32575 <A HREF="h_color_setup">Descriptions of the available commands</A>
32577 Look <A HREF="h_edit_nav_cmds">here</A>
32578 to see the available Editing and Navigation commands.
32580 &lt;End of help on this topic&gt;
32581 </BODY>
32582 </HTML>
32583 ====== h_config_folder_color =====
32584 <HTML>
32585 <HEAD>
32586 <TITLE>OPTION: Folder Color</TITLE>
32587 </HEAD>
32588 <BODY>
32589 <H1>OPTION: Folder Color</H1>
32591 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32592 screen. By default, the Folder Color is the normal text color.
32595 If you set a color for this feature, other than the normal color
32596 (the default), or a color for
32597 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32598 will be colored according to the color specified in the
32599 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32600 case, the color will be the only indication that the colored name
32601 refers to a directory. The normal behavior is that Alpine
32602 indicates that a name refers to a directory by appending a
32603 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32604 the folder.
32607 If a folder is a directory, then the folder name will be painted
32608 according to the color defined by this variable, and a separator
32609 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32610 to the name. That
32611 indicator will be painted according to the color defined in the
32612 <A HREF="h_config_directory_color">Directory Color</A> option.
32615 &lt;End of help on this topic&gt;
32616 </BODY>
32617 </HTML>
32618 ====== h_config_directory_color =====
32619 <HTML>
32620 <HEAD>
32621 <TITLE>OPTION: Directory Color</TITLE>
32622 </HEAD>
32623 <BODY>
32624 <H1>OPTION: Directory Color</H1>
32626 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32627 screen. By default, the Folder Color is the normal text color.
32629 If you set a color for this feature, other than the normal color
32630 (the default), or a color for
32631 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32632 will be colored according to the color specified in the
32633 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32634 case, the color will be the only indication that the colored name
32635 refers to a directory. The normal behavior is that Alpine
32636 indicates that a name refers to a directory by appending a
32637 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32638 the folder.
32640 If a folder is a directory, then the folder name will be painted
32641 according to the color defined by the option
32642 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32643 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32644 after the name. That
32645 indicator will be painted according to the color defined in this
32646 option.
32648 &lt;End of help on this topic&gt;
32649 </BODY>
32650 </HTML>
32651 ====== h_config_folder_list_color =====
32652 <HTML>
32653 <HEAD>
32654 <TITLE>OPTION: Folder-List Color</TITLE>
32655 </HEAD>
32656 <BODY>
32657 <H1>OPTION: Folder-List Color</H1>
32659 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32660 screen. By default, the Folder-List Color is the normal text color.
32662 This text refers to the informative text that Alpine displays so you
32663 can recognize each collection. The color of the content of each collection
32664 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32665 and <A HREF="h_config_directory_color">Directory Color</A>.
32667 Unlike the options
32668 <A HREF="h_config_folder_color">Folder Color</A>
32669 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32670 this option does not affect the way that Alpine reports folders,
32671 directories and folders that are directories.
32673 &lt;End of help on this topic&gt;
32674 </BODY>
32675 </HTML>
32676 ====== h_config_incunseen_color =====
32677 <HTML>
32678 <HEAD>
32679 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32680 </HEAD>
32681 <BODY>
32682 <H1>OPTION: Incoming Unseen Color</H1>
32684 If the option
32685 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32686 is turned on it is possible to highlight the folders that contain
32687 unseen messages by coloring them with this color.
32688 By default, this is the same as the Normal Color and no highlighting is done.
32690 Usually the &quot;current&quot; folder (the folder the cursor is on)
32691 is highlighted using reverse video.
32692 If the current folder is colored because it contains unseen messages then
32693 the color used to show that it is also the current folder is controlled
32694 by the
32695 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32696 feature at the top of the SETUP COLOR screen.
32698 <A HREF="h_color_setup">Descriptions of the available commands</A>
32700 Look <A HREF="h_edit_nav_cmds">here</A>
32701 to see the available Editing and Navigation commands.
32703 &lt;End of help on this topic&gt;
32704 </BODY>
32705 </HTML>
32706 ====== h_config_signature_color =====
32707 <HTML>
32708 <HEAD>
32709 <TITLE>OPTION: Signature Color</TITLE>
32710 </HEAD>
32711 <BODY>
32712 <H1>OPTION: Signature Color</H1>
32714 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32715 screen. According to USENET conventions, the signature is defined as the
32716 paragraph following the &quot;sigdashes&quot;, that is, the special line
32717 consisting of the three characters
32718 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32719 empty line right after the sigdashes to be considered as part of the
32720 signature.
32721 By default, the Signature Color is blue characters on a white background.
32723 <A HREF="h_color_setup">Descriptions of the available commands</A>
32725 Look <A HREF="h_edit_nav_cmds">here</A>
32726 to see the available Editing and Navigation commands.
32728 &lt;End of help on this topic&gt;
32729 </BODY>
32730 </HTML>
32731 ====== h_config_prompt_color =====
32732 <HTML>
32733 <HEAD>
32734 <TITLE>OPTION: Prompt Color</TITLE>
32735 </HEAD>
32736 <BODY>
32737 <H1>OPTION: Prompt Color</H1>
32739 Sets the color Alpine uses for confirmation prompts and questions that
32740 appear in the status line near the bottom of the screen.
32741 The foreground color is the color of the actual character and the
32742 background color is the color of the area behind the character.
32743 By default, the Prompt Color is the same as the Reverse Color.
32745 <A HREF="h_color_setup">Descriptions of the available commands</A>
32747 Look <A HREF="h_edit_nav_cmds">here</A>
32748 to see the available Editing and Navigation commands.
32750 &lt;End of help on this topic&gt;
32751 </BODY>
32752 </HTML>
32753 ====== h_config_header_general_color =====
32754 <HTML>
32755 <HEAD>
32756 <TITLE>OPTION: Header General Color</TITLE>
32757 </HEAD>
32758 <BODY>
32759 <H1>OPTION: Header General Color</H1>
32761 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32762 screen.
32763 The foreground color is the color of the actual character and the
32764 background color is the color of the area behind the character.
32765 By default, this is the same as the Normal Color.
32767 It is also possible to set the colors for specific header fields, for
32768 example the Subject, using
32769 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32770 If both a Header General Color and a specific Viewer Header Color are set
32771 the specific color will override the general color, as you would expect.
32773 <A HREF="h_color_setup">Descriptions of the available commands</A>
32775 Look <A HREF="h_edit_nav_cmds">here</A>
32776 to see the available Editing and Navigation commands.
32778 &lt;End of help on this topic&gt;
32779 </BODY>
32780 </HTML>
32781 ====== h_config_incol =====
32782 <HTML>
32783 <HEAD>
32784 <TITLE>Index Line Color</TITLE>
32785 </HEAD>
32786 <BODY>
32787 <H1>Index Line Color</H1>
32789 This option is used to set the color of a line in the index when the
32790 message for that line matches the Pattern.
32791 This colors the whole index line, except possibly the status letters,
32792 which may be colored separately using the
32793 <A HREF="h_color_setup">Setup Kolor</A> screen.
32794 The foreground color is the color of the actual characters and the
32795 background color is the color of the area behind the characters.
32797 <A HREF="h_color_setup">Descriptions of the available commands</A>
32799 Look <A HREF="h_edit_nav_cmds">here</A>
32800 to see the available Editing and Navigation commands.
32802 &lt;End of help on this topic&gt;
32803 </BODY>
32804 </HTML>
32805 ====== h_config_usetransparent_color =====
32806 <HTML>
32807 <HEAD>
32808 <TITLE>OPTION: Use Transparent Color</TITLE>
32809 </HEAD>
32810 <BODY>
32811 <H1>OPTION: Use Transparent Color</H1>
32813 This is a special color supported by some terminal emulators.
32814 It is intended to result in the default foreground or background color
32815 from the terminal emulator.
32816 This is the color the terminal was displaying characters in before you started Alpine.
32817 The reason it is called Transparent is because you could set the foreground color
32818 to some specific color, like Red, and then set the background color to the
32819 Transparent Color. If it works as expected, the background color from the terminal
32820 window in which Alpine is running will show through but with the Red characters
32821 in the foreground.
32823 <A HREF="h_color_setup">Descriptions of the available commands</A>
32825 Look <A HREF="h_edit_nav_cmds">here</A>
32826 to see the available Editing and Navigation commands.
32828 &lt;End of help on this topic&gt;
32829 </BODY>
32830 </HTML>
32831 ====== h_config_usenormal_color =====
32832 <HTML>
32833 <HEAD>
32834 <TITLE>OPTION: Use Normal Color</TITLE>
32835 </HEAD>
32836 <BODY>
32837 <H1>OPTION: Use Normal Color</H1>
32839 When you use this color value, the actual color used will be the same
32840 as the corresponding Normal Color.
32841 For example if your Normal Color is black on white and you set both
32842 the foreground and background colors here to use the Normal Color, you'll
32843 get black on white. If you later change the Normal Color to red on blue
32844 this color will also change to red on blue.
32846 <A HREF="h_color_setup">Descriptions of the available commands</A>
32848 Look <A HREF="h_edit_nav_cmds">here</A>
32849 to see the available Editing and Navigation commands.
32851 &lt;End of help on this topic&gt;
32852 </BODY>
32853 </HTML>
32854 ====== h_config_usenone_color =====
32855 <HTML>
32856 <HEAD>
32857 <TITLE>OPTION: Use None Color</TITLE>
32858 </HEAD>
32859 <BODY>
32860 <H1>OPTION: Use None Color</H1>
32862 This is a special color that simply means to leave the color alone.
32863 It is useful for Index symbols and for Keyword Colors used in the Subject
32864 field of an index line.
32865 The most likely use is to set an explicit foreground color and then set
32866 the background color to the None Color.
32867 That will cause the symbol or keyword to be drawn in the foreground color
32868 with a background equal to whatever color the rest of the index line is already
32869 drawn in.
32870 You will see no visible effect unless you have assigned Indexcolor Rules to
32871 color index lines or you have set an actual color for the Reverse Color.
32873 <A HREF="h_color_setup">Descriptions of the available commands</A>
32875 Look <A HREF="h_edit_nav_cmds">here</A>
32876 to see the available Editing and Navigation commands.
32878 &lt;End of help on this topic&gt;
32879 </BODY>
32880 </HTML>
32881 ====== h_config_dflt_color =====
32882 <HTML>
32883 <HEAD>
32884 <TITLE>OPTION: Default Color</TITLE>
32885 </HEAD>
32886 <BODY>
32887 <H1>OPTION: Default Color</H1>
32889 Setting default will cause the color to be the default color.
32890 Unsetting default is normally done by choosing a color, but in some cases
32891 you may want to declare the current default color to be your non-default
32892 choice.
32893 For example, the default Keyname Color is the same as the Reverse Color.
32894 Whenever the Reverse Color changes the Keyname Color will also change, unless
32895 you've changed it or unset the default box.
32897 <A HREF="h_color_setup">Descriptions of the available commands</A>
32899 Look <A HREF="h_edit_nav_cmds">here</A>
32900 to see the available Editing and Navigation commands.
32902 &lt;End of help on this topic&gt;
32903 </BODY>
32904 </HTML>
32905 ====== h_config_bold_slctbl =====
32906 <HTML>
32907 <HEAD>
32908 <TITLE>OPTION: Bold</TITLE>
32909 </HEAD>
32910 <BODY>
32911 <H1>OPTION: Bold</H1>
32913 The color for this particular section may have the Bold attribute turned
32914 on or off.
32915 Setting bold will cause the characters to be bold.
32917 <A HREF="h_color_setup">Descriptions of the available commands</A>
32919 Look <A HREF="h_edit_nav_cmds">here</A>
32920 to see the available Editing and Navigation commands.
32922 &lt;End of help on this topic&gt;
32923 </BODY>
32924 </HTML>
32925 ====== h_config_kw_color =====
32926 <HTML>
32927 <HEAD>
32928 <TITLE>OPTION: Keyword Colors</TITLE>
32929 </HEAD>
32930 <BODY>
32931 <H1>OPTION: Keyword Colors</H1>
32933 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32934 Keywords are displayed as part of the Subject by default.
32935 They are also displayed as part of the Subject if the tokens
32936 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32937 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32938 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32939 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32941 For example, you might have set up a Keyword
32942 &quot;Work&quot; using the
32943 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32944 You could cause that Keyword to show up as a special color
32945 by setting up the Keyword Color using this option, and then including it
32946 in the MESSAGE INDEX screen using one of the tokens listed above in the
32947 <!--#echo var="VAR_index-format"-->.
32949 <A HREF="h_color_setup">Descriptions of the available commands</A>
32951 Look <A HREF="h_edit_nav_cmds">here</A>
32952 to see the available Editing and Navigation commands.
32954 &lt;End of help on this topic&gt;
32955 </BODY>
32956 </HTML>
32957 ====== h_config_customhdr_color =====
32958 <HTML>
32959 <HEAD>
32960 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32961 </HEAD>
32962 <BODY>
32963 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32965 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32966 For example, you may set the color of the Subject header or the From header.
32967 The foreground color is the color of the actual character and the
32968 background color is the color of the area behind the character.
32970 In addition to setting the colors for particular headers (like the Subject)
32971 you may also set a color to be used for all headers unless overridden by a
32972 more specific Viewer Header Color.
32973 To do this use the
32974 <A HREF="h_config_header_general_color">Header General Color</A>.
32976 For Header Colors,
32977 there is an additional line on the
32978 screen labeled &quot;Pattern to match&quot;.
32979 If you leave that blank, then the whole field for that header will
32980 be colored.
32981 However, if you give a pattern to match, the coloring will only take place
32982 if there is a match for that pattern in the value of the field.
32983 For example, if you are working on a color for the Subject header and
32984 you fill in a pattern of &quot;important&quot;, then only Subjects that
32985 contain the word &quot;important&quot; will be colored.
32987 If the pattern you enter is a comma-separated list of patterns, then coloring
32988 happens if any of those patterns matches.
32990 <A HREF="h_color_setup">Descriptions of the available commands</A>
32992 Look <A HREF="h_edit_nav_cmds">here</A>
32993 to see the available Editing and Navigation commands.
32995 &lt;End of help on this topic&gt;
32996 </BODY>
32997 </HTML>
32998 ====== h_config_indextoken_color =====
32999 <HTML>
33000 <HEAD>
33001 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
33002 </HEAD>
33003 <BODY>
33004 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
33006 This option allows you to set up the color in which any token, not specified by the
33007 previous options, will be colored in the MESSAGE INDEX screen. 
33009 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
33010 a token that can be used in the index format. 
33011 The list of available tokens is <A HREF="h_index_tokens">here</A>.
33013 If you fail to enter a valid token your entry will be ignored, and you will be asked to
33014 enter a new one. Once you have entered a valid token, a line will be added to the
33015 configuration screen that you can use to set up the colors in which that token will
33016 be painted. This is done in the same way that you configure colors for other
33017 variables.
33019 <A HREF="h_color_setup">Descriptions of the available commands</A>
33021 Look <A HREF="h_edit_nav_cmds">here</A>
33022 to see the available Editing and Navigation commands.
33024 &lt;End of help on this topic&gt;
33025 </BODY>
33026 </HTML>
33027 ====== h_config_customhdr_pattern =====
33028 <HTML>
33029 <HEAD>
33030 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
33031 </HEAD>
33032 <BODY>
33033 <H1>OPTION: Viewer Header Color Pattern</H1>
33035 If you leave this blank, then the whole field for the header will
33036 be colored.
33037 If you give a pattern to match, the coloring will only take place
33038 if there is a match for that pattern in the value of the field.
33039 For example, if you are working on a color for the Subject header and
33040 you fill in a pattern of &quot;important&quot;, then only Subjects that
33041 contain the word &quot;important&quot; will be colored.
33043 For address headers (like From and To) and for the Newsgroups header,
33044 a pattern match will cause only the matched addresses or newsgroups to be
33045 colored.
33046 If there is no pattern to match, then all of the addresses or newsgroups
33047 in the relevant header will be colored.
33049 The matching pattern may be a comma-separated list of patterns to match
33050 instead of a single pattern.
33051 For example, you could use the pattern &quot;important,urgent&quot; which would
33052 cause a match if either the word &quot;important&quot; or the word
33053 &quot;urgent&quot; appeared in the value of the header.
33054 You could list several comma-separated email addresses in the Header
33055 From Color pattern so that those addresses will be colored when any of
33056 them appear in the From header.
33058 To add a new matching pattern or change the existing pattern use the 
33059 <!--chtml if pinemode="function_key"-->
33060 &quot;F4&quot;
33061 <!--chtml else-->
33062 &quot;C&quot;
33063 <!--chtml endif-->
33064 &quot;Change&quot; command that is available when the &quot;Pattern to
33065 match&quot; line is highlighted.
33067 <!--chtml if pinemode="function_key"-->
33068 &quot;F10&quot;
33069 <!--chtml else-->
33070 &quot;D&quot;
33071 <!--chtml endif-->
33072 &quot;Delete&quot; command may be used to quickly remove all patterns
33073 for a particular header.
33075 &lt;End of help on this topic&gt;
33076 </BODY>
33077 </HTML>
33078 ====== h_color_setup =====
33079 <HTML>
33080 <HEAD>
33081 <TITLE>SETUP COLOR COMMANDS</TITLE>
33082 </HEAD>
33083 <BODY>
33084 <H1>SETUP COLOR COMMANDS</H1>
33085 <!--chtml if pinemode="function_key"-->
33086 <PRE>
33087 Available Commands -- Group 1
33088 -------------------------------
33089 F1  Display this help text
33090 F2  Show other available commands
33091 F3  Exit to MAIN MENU
33092 F4  Select the highlighted foreground or background color
33093 F5  Move to previous line
33094 F6  Move to next line
33095 F7  Previous page
33096 F8  Next page
33097 F9  Add a config section for a header field
33098 F10 Restore all default colors (for all sections)
33099 F11 Print color configuration screen
33100 F12 Whereis (search for word)
33102 Available Commands -- Group 2
33103 -------------------------------
33104 F1  Display this help text
33105 F2  Show other available commands
33106 F5  Delete config section for highlighted header field
33107 F6  Shuffle the order of Header Color sections
33108 </PRE>
33109 <!--chtml else-->
33110 <PRE>
33111 General commands
33112 -------------------------------------------------
33113  ?  Display this help text     E  Exit back to MAIN MENU
33114  P  Previous Line              N  Next Line
33115  -  Previous page             Spc (space bar) Next page
33116  W  WhereIs (search for word)  %  Print color configuration screen
33118 Color Setup Commands
33119 ------------------------------------------------
33120  *  Select the highlighted foreground or background color
33121  A  Add a config section for a header field
33122  D  Delete config section for highlighted header field
33123  R  Restore all default colors (for all sections)
33124  $  Shuffle the order of Header Color sections
33125 </PRE>
33126 <!--chtml endif-->
33128 <H2>Description of the Setup Color Screen</H2>
33130 From this screen you may turn on color and set the colors of
33131 various parts of the Alpine display.
33132 For help on turning on color move your cursor into the Color Style section
33133 at the top of the Setup Color screen and ask for help.
33136 There are several sections in the Setup Color Screen.
33137 At the top are some settings that handle the style of color used
33138 with your terminal emulator (UNIX only), and some settings that
33139 control how the current indexline and the titlebar are colored.
33140 After that comes a long section called GENERAL COLORS that allows
33141 you to set the color of many elements in the Alpine screens.
33142 For example, the color of the titlebar, status messages,
33143 selectable links, quotes and signatures in messages, and so on.
33144 After that is a section called INDEX COLORS that allows you to
33145 set the colors of various pieces of the displayed index lines in
33146 the MESSAGE INDEX screen.
33147 The next section is HEADER COLORS. This is for coloring headers of
33148 messages in the MESSAGE TEXT screen in just about any way you would like.
33149 Finally, the KEYWORD COLORS section allows you to highlight
33150 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33151 in the MESSAGE INDEX screen.
33154 To change a color, highlight the color you want to change (for example,
33155 the Status Color) by moving
33156 the cursor into it.
33157 You may want to read the help text for the color to see a brief desription
33158 of what you are coloring.
33159 Then press &quot;C&quot; for Change to set the color to something new.
33160 That will put you into a screen with two columns of colors, one for
33161 the foreground color and one for the background color.
33162 The foreground color is just the color you want the actual characters
33163 to be and the background color is the color of the rest of the rectangle
33164 behind the characters.
33165 Select the foreground and background colors desired by using the Next and
33166 Prev keys to highlight the color, and the * command to select it.
33168 To set a color to its default value, set the X in the Default line at
33169 the bottom of the list of colors.
33172 The HEADER COLORS section is a little bit different from the others.
33173 Besides coloring the specific fields that Alpine knows about, you may also
33174 color specific header fields when viewing a message in the MESSAGE TEXT
33175 screen.
33176 For example, you may color the Subject header a particular color.
33177 There are a few commands for use with headers.
33178 The &quot;AddHeader&quot; command adds a section to the color
33179 configuration screen that allows you to set the color for that header.
33180 You'll be asked for the name of the header field you want to color.
33181 If you wanted to color the Subject, you would answer
33182 with the word &quot;subject&quot;.
33183 Once you've added a header field, the color setting works just like the
33184 other color fields, except that there is an additional line on the
33185 configuration screen labeled &quot;Pattern to match&quot;.
33186 If you leave that blank, then the whole field for that header will always
33187 be colored.
33188 However, if you give a pattern to match, the coloring will only take place
33189 if there is a match for that pattern in the value of the field.
33190 For example, if you are working on a color for the Subject header and
33191 you fill in a pattern of &quot;important&quot;, then only Subjects that
33192 contain the word &quot;important&quot; will be colored.
33194 The &quot;DeleteHdr&quot; command removes a header section from the
33195 configuration altogether.
33196 The &quot;Shuffle&quot; command changes the order of header sections.
33197 This is only necessary if you use header sections with pattern fields.
33198 For example, if you have two Subject sections, one with one pattern and
33199 another with another pattern, and the subject for a particular message
33200 happens to match both, then the color from the first match is used.
33203 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33204 Each section will change to the default value used for that section when
33205 color is first enabled.
33206 When you restore all default colors the color settings for the Header Colors
33207 will be unset (since that's the default), but the header fields you've
33208 added will remain so that you may easily reset them.
33209 In order to get rid of them completely you'd have to use
33210 the &quot;DeleteHdr&quot; command.
33213 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33214 may be set with matching rules and that is configured separately from
33215 the rest of the color settings described here.
33216 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33217 instead of in the Setup/Kolor section.
33219 <P><UL>
33220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33221 </UL><P>
33222 &lt;End of help on this topic&gt;
33223 </BODY>
33224 </HTML>
33225 ====== h_config_news_uses_recent ======
33226 <HTML>
33227 <HEAD>
33228 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33229 </HEAD>
33230 <BODY>
33231 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33233 This feature causes certain messages to be marked as "New" in the
33234 MESSAGE INDEX of newsgroups.
33235 This feature is set by default.
33239 When opening a newsgroup, Alpine will consult your "newsrc" file and
33240 determine the last message you have previously disposed of via the "D"
33241 key.  If this feature is set, any subsequent messages will be shown in the
33242 Index with an "N", and the first of these messages will be highlighted.
33243 Although this is only an approximation of true "New" or "Unseen"
33244 status, it provides a useful cue to distinguish more-or-less recent
33245 messages from those you have seen previously, but are not yet ready to
33246 mark deleted.
33250 Background: your "newsrc" file (used to store message status information
33251 for newsgroups) is only capable of storing a single flag, and Alpine uses
33252 this to record whether or not you are "done with" a message, as
33253 indicated by marking the message as "Deleted".  Unfortunately, this
33254 means that Alpine has no way to record exactly which messages you have
33255 previously seen, so it normally does not show the "N" status flag for
33256 any messages in a newsgroup. This feature enables a starting
33257 *approximation* of seen/unseen status that may be useful.
33259 &lt;End of help on this topic&gt;
33260 </BODY>
33261 </HTML>
33262 ====== h_config_expose_hidden_config =====
33263 <HTML>
33264 <HEAD>
33265 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33266 </HEAD>
33267 <BODY>
33268 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33270 If set, this causes configuration options and features that are normally
33271 hidden from view to be editable in the Setup/Config screen.
33274 The purpose of this feature is to allow you to change configuration
33275 features and variables that are normally hidden.
33276 This is particularly useful if you are using a remote configuration,
33277 where it is difficult to edit the contents manually, but it may also be used
33278 on a local pinerc configuration file.
33280 If set, several configuration variables and features that are normally
33281 hidden from view will show up in the Setup/Configuration screen.
33282 They will be at the bottom of the configuration screen.
33283 You can find them by searching for the words &quot;hidden configuration&quot;.
33286 Note that this is an advanced feature that should be used with care.
33287 The reason that this part of the configuration is normally hidden is because
33288 there is a significant potential for causing problems if you change these
33289 variables.
33290 If something breaks after a change try changing it back to see if that is
33291 what is causing the problem.
33292 There are also some variables that are normally hidden because they are
33293 manipulated through Alpine in other ways.
33294 For example, colors are normally set using the Setup/Kolors screen and
33295 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33296 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33297 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33298 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33299 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33300 internally by Alpine and not set directly by the user.
33302 <UL>   
33303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33304 </UL><P>
33305 &lt;End of help on this topic&gt;
33306 </BODY>
33307 </HTML>
33308 ====== h_config_disable_signature_edit =====
33309 <HTML>
33310 <HEAD>
33311 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
33312 </HEAD>
33313 <BODY>
33314 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
33316 If set, this disables the editing of signature files from within
33317 the Setup/Config screen.
33319 <UL>   
33320 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33321 </UL><P>
33322 &lt;End of help on this topic&gt;
33323 </BODY>
33324 </HTML>
33325 ====== h_config_disable_roles_templateedit =====
33326 <HTML>
33327 <HEAD>
33328 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
33329 </HEAD>
33330 <BODY>
33331 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
33333 If set, this disables the editing of template files within the
33334 Role setup screen.
33336 <UL>   
33337 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33338 </UL><P>
33339 &lt;End of help on this topic&gt;
33340 </BODY>
33341 </HTML>
33342 ====== h_config_disable_roles_sigedit =====
33343 <HTML>
33344 <HEAD>
33345 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
33346 </HEAD>
33347 <BODY>
33348 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
33350 If set, this disables the editing of signature files within the
33351 Role setup screen.
33353 <UL>   
33354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33355 </UL><P>
33356 &lt;End of help on this topic&gt;
33357 </BODY>
33358 </HTML>
33359 ====== h_config_disable_roles_setup =====
33360 <HTML>
33361 <HEAD>
33362 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
33363 </HEAD>
33364 <BODY>
33365 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
33367 If set, this disables the Setup/Rules/Roles command.
33369 <UL>   
33370 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33371 </UL><P>
33372 &lt;End of help on this topic&gt;
33373 </BODY>
33374 </HTML>
33375 ====== h_config_disable_pipes_in_templates =====
33376 <HTML>
33377 <HEAD>
33378 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
33379 </HEAD>
33380 <BODY>
33381 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
33383 By default, if a template file name is followed by a vertical bar (|) then
33384 that causes the file to be executed to produce the text for the template.
33385 If this feature is set, then this is not allowed.
33387 <UL>   
33388 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33389 </UL><P>
33390 &lt;End of help on this topic&gt;
33391 </BODY>
33392 </HTML>
33393 ====== h_config_disable_pipes_in_sigs =====
33394 <HTML>
33395 <HEAD>
33396 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
33397 </HEAD>
33398 <BODY>
33399 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
33401 By default, if a signature file name is followed by a vertical bar (|) then
33402 that causes the file to be executed to produce the text for the signature.
33403 If this feature is set, then this is not allowed.
33405 <UL>   
33406 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33407 </UL><P>
33408 &lt;End of help on this topic&gt;
33409 </BODY>
33410 </HTML>
33411 ====== h_config_disable_password_cmd =====
33412 <HTML>
33413 <HEAD>
33414 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
33415 </HEAD>
33416 <BODY>
33417 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
33419 If set, then the Setup/Newpassword command is disabled.
33421 <UL>   
33422 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33423 </UL><P>
33424 &lt;End of help on this topic&gt;
33425 </BODY>
33426 </HTML>
33427 ====== h_config_disable_password_caching =====
33428 <HTML>
33429 <HEAD>
33430 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33431 </HEAD>
33432 <BODY>
33433 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33435 Normally, loginname/password combinations are cached in Alpine so that
33436 you do not have to enter the same password more than once in a session.
33437 A disadvantage to this approach is that the password must be stored in
33438 the memory image of the running Alpine in order that it can be re-used.
33439 In the event that Alpine crashes and produces a core dump, and that core
33440 dump is readable by others, the loginname and password could be read
33441 from the core dump.
33443 If this feature is set, then the passwords will not be cached and you
33444 will have to retype the password whenever Alpine needs it.
33445 Even with this feature set there is still some chance that the core
33446 file will contain a password, so care should be taken to make the
33447 core files unreadable.
33449 NOTE: If PASSFILE caching is enabled, this does not disable it.
33450 That is a separate and independent feature.
33451 <UL>   
33452 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33453 </UL><P>
33454 &lt;End of help on this topic&gt;
33455 </BODY>
33456 </HTML>
33457 ====== h_config_disable_password_file_saving =====
33458 <HTML>
33459 <HEAD>
33460 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33461 </HEAD>
33462 <BODY>
33463 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33465 This feature changes the behavior of Alpine when a login name and password combination
33466 for a specific server is not found in the password file. The default behavior is that
33467 Alpine will ask the user if they wish to save this information in the password file for future
33468 use. It is assumed that if a user created a password file it is because they intend
33469 to use it, but in some instances a user might want to save some passwords and not others.
33470 In this case, enabling this feature will make Alpine not add any more passwords to the
33471 password file and will only use the passwords that it already saved. If you wish to allow
33472 Alpine to save more passwords in the password file, disable this feature.
33474 <UL>   
33475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33476 </UL><P>
33477 &lt;End of help on this topic&gt;
33478 </BODY>
33479 </HTML>
33480 ====== h_config_disable_kb_lock =====
33481 <HTML>
33482 <HEAD>
33483 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33484 </HEAD>
33485 <BODY>
33486 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33488 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33490 <UL>   
33491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33492 </UL><P>
33493 &lt;End of help on this topic&gt;
33494 </BODY>
33495 </HTML>
33496 ====== h_config_disable_config_cmd =====
33497 <HTML>
33498 <HEAD>
33499 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33500 </HEAD>
33501 <BODY>
33502 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33504 If set, then the Setup/Config screen is disabled.
33506 <UL>   
33507 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33508 </UL><P>
33509 &lt;End of help on this topic&gt;
33510 </BODY>
33511 </HTML>
33512 ====== h_config_allow_chg_from =====
33513 <HTML>
33514 <HEAD>
33515 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33516 </HEAD>
33517 <BODY>
33518 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33520 This feature affects Alpine's handling of the &quot;From:&quot; header field
33521 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33522 option.
33524 If this feature is set then the From line can be changed just like
33525 all the other header fields that can be changed.
33526 This feature defaults to <EM>ON</EM>.
33528 Even with this feature turned ON (the default) you will not be able 
33529 to change the From header unless you add it to your list of
33530 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33531 You may also want to change the
33532 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33533 if you want the From header to always show up in the composer without
33534 having to type the Rich Headers command first.
33536 Note that many sites restrict the use of this feature in order to
33537 reduce the chance of falsified addresses and misdirected mail.
33538 If you want to change the value of what gets included in the From header
33539 in messages you send
33540 look <A HREF="h_config_change_your_from">here</A> for a description.
33542 <UL>   
33543 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33544 </UL><P>
33545 &lt;End of help on this topic&gt;
33546 </BODY>
33547 </HTML>
33548 ====== h_config_disable_collate =====
33549 <HTML>
33550 <HEAD>
33551 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33552 </HEAD>
33553 <BODY>
33554 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33556 This is a hard to understand feature that should only be used in rare cases.
33557 Normally, the C function call
33559 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33561 is used by Alpine.
33562 If you want to try turning it off,
33563 setting this feature will turn it off.
33564 This part of the locale has to do with the sort order
33565 of characters in your locale.
33567 <UL>   
33568 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33569 </UL><P>
33570 &lt;End of help on this topic&gt;
33571 </BODY>
33572 </HTML>
33573 ====== h_config_quell_attach_extra_prompt =====
33574 <HTML>
33575 <HEAD>
33576 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33577 </HEAD>
33578 <BODY>
33579 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33581 By default, when you attempt to view an attachment externally
33582 from the &quot;Attachment View&quot; screen, you are asked if you
33583 really want to view the selected attachment.
33586 If this feature is set, you will <B>not</B> be prompted to confirm
33587 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33588 prompt. This feature was added for those wanting to preserve that
33589 behavior (along with 
33590 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
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_attach_ext_warn =====
33600 <HTML>
33601 <HEAD>
33602 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33603 </HEAD>
33604 <BODY>
33605 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33608 This feature suppresses the extra warning you can get when trying
33609 to view an attachment for which there is no mime-type match.  Turning
33610 on this feature will just run the program according to extension
33611 instead of first warning the user that it will run according to the
33612 file's extension.
33614 This feature can be used along side 
33615 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33616 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33618 <UL>   
33619 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33620 </UL><P>
33621 &lt;End of help on this topic&gt;
33622 </BODY>
33623 </HTML>
33624 ====== h_config_mailcap_params =====
33625 <HTML>
33626 <HEAD>
33627 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33628 </HEAD>
33629 <BODY>
33630 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33632 If set, this will allow mailcap named parameter substitution to occur
33633 in mailcap entries.
33634 By default, this is turned off to prevent security problems that may occur
33635 with some incorrect mailcap configurations.
33636 For more information, see RFC1524 and look for "named parameters" in the
33637 text of the RFC.
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_disable_shared =====
33646 <HTML>
33647 <HEAD>
33648 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33649 </HEAD>
33650 <BODY>
33651 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33653 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33654 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33655 will be disabled.
33656 The reason this feature exists is because there are some implementations
33657 of system password lookup routines that are very slow when presented with
33658 a long loginname that does not exist.
33659 This feature could be set to prevent the delay at startup time when the
33660 names above are searched for in the password file.
33662 <UL>   
33663 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33664 </UL><P>
33665 &lt;End of help on this topic&gt;
33666 </BODY>
33667 </HTML>
33668 ====== h_config_hide_nntp_path =====
33669 <HTML>
33670 <HEAD>
33671 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33672 </HEAD>
33673 <BODY>
33674 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33676 Normally the Path header that Alpine generates when posting to a newsgroup
33677 contains the name of the computer from which the message is being sent and
33678 the user name.
33679 Some believe that this information is used by spammers.
33680 If this feature is set, that information will be replaced with the text
33682 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33684 instead.
33686 It should be noted that many servers being connected to will still reveal
33687 the information that this feature attempts to protect.
33689 <UL>   
33690 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33691 </UL><P>
33692 &lt;End of help on this topic&gt;
33693 </BODY>
33694 </HTML>
33695 ====== h_config_no_bezerk_zone =====
33696 <HTML>
33697 <HEAD>
33698 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33699 </HEAD>
33700 <BODY>
33701 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33703 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33704 (the line that begins with From <SPACE>).
33705 Some versions of Berkeley mail have trouble with this, and don't recognize
33706 the line as a message delimiter.
33707 If this feature is set, the timezone will be left off the delimiter line.
33709 <UL>   
33710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33711 </UL><P>
33712 &lt;End of help on this topic&gt;
33713 </BODY>
33714 </HTML>
33715 ====== h_config_quell_domain_warn =====
33716 <HTML>
33717 <HEAD>
33718 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33719 </HEAD>
33720 <BODY>
33721 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33723 When your configuration is set up so that your domain name contains no dots,
33724 it is usually a configuration error.
33725 By default, Alpine will warn you about this when you start it up.
33726 You will see a warning message that looks like
33729 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33732 If this feature is set, the warning is turned off.
33734 <UL>   
33735 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33736 </UL><P>
33737 &lt;End of help on this topic&gt;
33738 </BODY>
33739 </HTML>
33740 ====== h_config_quell_imap_env =====
33741 <HTML>
33742 <HEAD>
33743 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33744 </HEAD>
33745 <BODY>
33746 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33748 In the MESSAGE INDEX screen, if the open folder is being accessed
33749 using IMAP, Alpine normally tries to paint the index lines on the screen
33750 as soon as the information arrives from the IMAP server.
33751 This means that the index information makes it onto the screen more quickly
33752 than it otherwise would.
33753 This sometimes results in behavior that bothers some users.
33754 For example, when paging to a new page of the index, it may be possible for
33755 the lines to be painted on the screen in a random order, rather than from
33756 top to bottom.
33759 Setting this feature causes Alpine to wait for all of the information
33760 to be gathered before it paints the index screen.
33761 Once it collects all of the information, the screen will be painted quickly
33762 from top to bottom.
33764 <UL>   
33765 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33766 </UL><P>
33767 &lt;End of help on this topic&gt;
33768 </BODY>
33769 </HTML>
33770 ====== h_config_quell_news_env =====
33771 <HTML>
33772 <HEAD>
33773 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33774 </HEAD>
33775 <BODY>
33776 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33778 In the MESSAGE INDEX screen, if the open folder is being accessed
33779 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33780 as soon as the information arrives from the NNTP server.
33781 This means that the index information makes it onto the screen more quickly
33782 than it otherwise would.
33783 This sometimes results in behavior that bothers some users.
33784 For example, when paging to a new page of the index, it may be possible for
33785 the lines to be painted on the screen in a random order, rather than from
33786 top to bottom.
33789 Setting this feature causes Alpine to wait for all of the information
33790 to be gathered before it paints the index screen.
33791 Once it collects all of the information, the screen will be painted quickly
33792 from top to bottom.
33794 <UL>   
33795 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33796 </UL><P>
33797 &lt;End of help on this topic&gt;
33798 </BODY>
33799 </HTML>
33800 ====== h_config_quell_content_id =====
33801 <HTML>
33802 <HEAD>
33803 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33804 </HEAD>
33805 <BODY>
33806 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33808 This feature changes the behavior of Alpine when sending messages.
33809 It is intended to work around a bug in Microsoft's Outlook XP mail user
33810 agent.
33811 As of this writing, Microsoft has acknowledged the bug but
33812 has not added it to the Knowledge Base.
33813 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33814 This particular bug has bug fix number OfficeQFE:4781.
33815 The nature of the bug is that messages with attachments that
33816 contain a Content-ID header (which standard Alpine attachments do)
33817 do not show the attachment indicator (a paperclip) when viewed with
33818 Outlook XP.
33819 So the user has no indication that the message contains an attachment.
33822 If this feature is set then Alpine will remove most Content-ID headers
33823 before sending a message.
33824 If an attachment is of type MESSAGE, then the existing Content-ID headers
33825 inside the message will be left intact.
33826 This would only happen with Alpine if a message was forwarded as an attachment
33827 or if a message with a message attached was forwarded.
33828 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33829 the Content-ID headers of the alternative parts will not be removed.
33832 Because the Content-ID header is a standard part of MIME it is possible
33833 that setting this feature will break something.
33834 For example, if an attachment has a Content-ID header that is necessary
33835 for the correct functioning of that attachment, it is possible that Alpine
33836 may remove that header when the attachment is forwarded.
33837 However, it seems fairly safe at this time.
33840 <UL>   
33841 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33842 </UL><P>
33843 &lt;End of help on this topic&gt;
33844 </BODY>
33845 </HTML>
33846 ====== h_config_winpos_in_config =====
33847 <HTML>
33848 <HEAD>
33849 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33850 </HEAD>
33851 <BODY>
33852 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33854 PC-Alpine only.
33857 Normally, PC-Alpine will store its window size and position in the
33858 Windows Registry.
33859 This is convenient if you want to use the same remote
33860 configuration from more than one PC.
33861 If you use multiple configuration files to start PC-Alpine, you may want
33862 to store the window size and position in the configuration file instead
33863 of in the Registry.
33864 Setting this feature causes the value to be stored in 
33865 <A HREF="h_config_window_position">Window-Position</A>.
33868 <UL>   
33869 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33870 </UL><P>
33871 &lt;End of help on this topic&gt;
33872 </BODY>
33873 </HTML>
33874 ====== h_config_quell_ssl_largeblocks =====
33875 <HTML>
33876 <HEAD>
33877 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33878 </HEAD>
33879 <BODY>
33880 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
33882 PC-Alpine only.
33884 This feature changes the behavior of fetching messages
33885 and attachments so that the message data is fetched in chunks no larger
33886 than 12K bytes.
33887 This works around a bug in Microsoft's SSL/TLS support.
33888 Some versions of Microsoft SSL are not able to read full-sized (16K)
33889 SSL/TLS packets.
33890 Some servers will send such packets and this will
33891 cause PC-Alpine to crash with the error
33894 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
33897 Microsoft is aware of the problem and has developed a hotfix for it, it is
33898 discussed in article 300562 in the Microsoft Knowledge Base.
33900 <UL>   
33901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33902 </UL><P>
33903 &lt;End of help on this topic&gt;
33904 </BODY>
33905 </HTML>
33906 ====== h_config_quell_partial =====
33907 <HTML>
33908 <HEAD>
33909 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
33910 </HEAD>
33911 <BODY>
33912 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33914 Partial fetching is a feature of the IMAP protocol.
33915 By default, Alpine
33916 will use partial fetching when copying the contents of a message or attachment
33917 from the IMAP server to Alpine.
33918 This means that the fetch will be done in many
33919 small chunks instead of one big chunk. The main benefit of this approach is
33920 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33921 to stop the fetch early. In some cases partial fetching may cause a performance
33922 problem so that the fetching of data takes significantly longer when partial
33923 fetching is used. Turning on this feature will turn off partial fetching.
33925 <UL>   
33926 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33927 </UL><P>
33928 &lt;End of help on this topic&gt;
33929 </BODY>
33930 </HTML>
33931 ====== h_config_quell_personal_name_prompt =====
33932 <HTML>
33933 <HEAD>
33934 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33935 </HEAD>
33936 <BODY>
33937 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33939 PC-Alpine only.  This feature quells the prompting for a 
33940 <A HREF="h_config_pers_name">personal name</A>.  This
33941 prompt normally happens before composing a message, and only happens when
33942 there is no personal name already set.
33944 <UL>   
33945 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33946 </UL><P>
33947 &lt;End of help on this topic&gt;
33948 </BODY>
33949 </HTML>
33950 ====== h_config_quell_user_id_prompt =====
33951 <HTML>
33952 <HEAD>
33953 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33954 </HEAD>
33955 <BODY>
33956 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33958 PC-Alpine only.  This feature quells the prompting for a 
33959 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33960 if the information can be obtained from the login name used
33961 to open the INBOX.  Normally, this prompt happens before composing
33962 a message, and only happens when there is no user-id already set
33963 in the configuration.
33965 With this feature set, composing a message is only possible after
33966 establishing a connection to the INBOX.
33968 <UL>   
33969 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33970 </UL><P>
33971 &lt;End of help on this topic&gt;
33972 </BODY>
33973 </HTML>
33974 ====== h_config_save_aggregates =====
33975 <HTML>
33976 <HEAD>
33977 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33978 </HEAD>
33979 <BODY>
33980 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33982 This feature will optimize an aggregate copy operation, if
33983 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33984 list of the messages to be copied.
33985 This feature is set by default.
33986 This may reduce network traffic and elapsed time for the Save.
33987 <EM>However, many IMAP servers (including the UW IMAP server) do
33988 not preserve the order of messages when this optimization is applied.</EM>
33989 If this feature is not set, 
33990 Alpine will copy each message individually and the order of the messages
33991 will be preserved.
33993 <UL>   
33994 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33995 </UL><P>
33996 &lt;End of help on this topic&gt;
33997 </BODY>
33998 </HTML>
33999 ====== h_config_use_system_translation =====
34000 <HTML>
34001 <HEAD>
34002 <TITLE>FEATURE: Use System Translation</TITLE>
34003 </HEAD>
34004 <BODY>
34005 <H1>FEATURE: Use System Translation</H1>
34007 UNIX Alpine only.
34009 Alpine normally uses its own internal software to convert between the multi-byte
34010 representation of characters and the Unicode representation of those
34011 same characters.
34012 It converts from the multi-byte characters your keyboard produces to Unicode,
34013 and from Unicode to the multi-byte characters your display expects.
34014 Alpine also uses its own internal software to decide how much space on
34015 the screen a particular Unicode character will occupy.
34018 Setting this feature tells Alpine to use the system-supplied routines to
34019 perform these tasks instead.
34020 In particular there are three tasks and three system routines that will
34021 be used for these tasks.
34024 To convert from multi-byte to Unicode the routine
34027 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
34030 is used.
34031 To convert from Unicode to multi-byte the routine
34034 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
34037 is used.
34038 And to find the screen width a particular Unicode character will
34039 occupy the routine used is
34042 <CENTER><SAMP>wcwidth</SAMP></CENTER>
34045 This feature has been only lightly tested.
34046 The internal routines should normally be used unless you run into
34047 a problem that you think may be solved by using the system routines.
34048 Note that your environment needs to be set up for these
34049 routines to work correctly.
34050 In particular, the LANG or LC_CTYPE variable in your environment will
34051 need to be set.
34054 <UL>   
34055 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34056 </UL><P>
34057 &lt;End of help on this topic&gt;
34058 </BODY>
34059 </HTML>
34060 ====== h_config_suspend_spawns =====
34061 <HTML>
34062 <HEAD>
34063 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
34064 </HEAD>
34065 <BODY>
34066 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
34068 This feature affects Alpine's behavior when process suspension is enabled
34069 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
34070 temporarily interact with the operating system command &quot;shell&quot; 
34071 without
34072 quitting Alpine, and then subsequently resume the still-active Alpine session.
34075 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
34076 is set and subsequently the Ctrl-Z key
34077 is pressed, Alpine will normally suspend itself and return temporary control
34078 to Alpine's parent shell process.  However, if this feature is set, Alpine
34079 will instead create an inferior subshell process.  This is useful when the
34080 parent process is not intended to be used interactively.  Examples include
34081 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
34082 or via a menu system.<P>
34084 Note that one typically resumes a suspended Alpine by entering the Unix
34085 &quot;fg&quot; command, but if this feature is set, it will be necessary to
34086 enter the &quot;exit&quot; command instead.
34088 <UL>   
34089 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34090 </UL><P>
34091 &lt;End of help on this topic&gt;
34092 </BODY>
34093 </HTML>
34094 ====== h_config_8bit_smtp =====
34095 <HTML>
34096 <HEAD>
34097 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
34098 </HEAD>
34099 <BODY>
34100 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
34102 This feature affects Alpine's behavior when sending mail.
34103 By default, this feature is set.
34104 Internet standards
34105 require that all electronic mail messages traversing the global Internet
34106 consist of 7bit ASCII characters unless a pair of cooperating mail 
34107 transfer agents explicitly agree to allow 8bit messages.  In general, 
34108 then, exchanging messages in non-ASCII characters requires MIME encoding.
34110 However, there are now Internet standards that allow for unencoded 8bit
34111 exchange of messages between cooperating systems.  When this feature is set
34112 Alpine will try to negotiate unencoded 8bit transmission during the
34113 sending process.  Should the negotiation fail, Alpine will fall back to its
34114 ordinary encoding rules. 
34116 Note, this feature relies on your system's mail transport agent or
34117 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
34118 having the negotiation mechanism introduced in
34119 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
34120 &quot;8BITMIME&quot;. 
34122 ESMTP allows for graceful migration to upgraded mail transfer agents, but
34123 it is possible that this feature might cause problems for some servers. 
34124 <P><UL>
34125 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34126 </UL>
34127 <P>&lt;End of help on this topic&gt;
34128 </BODY>
34129 </HTML>
34130 ====== h_config_8bit_nntp =====
34131 <HTML>
34132 <HEAD>
34133 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
34134 </HEAD>
34135 <BODY>
34136 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
34138 This feature affects Alpine's behavior when posting news.  
34142 The Internet standard for exchanging USENET news messages (RFC-1036)
34143 specifies that USENET messages should conform to Internet mail standards
34144 and contain only 7bit characters, but much of the news transport software
34145 in use today is capable of successfully sending messages containing 8bit
34146 characters.  Hence, many people believe that it is appropriate to send 8bit
34147 news messages without any MIME encoding.
34151 Moreover, there is no Internet standard for explicitly negotiating 8bit
34152 transfer, as there is for Internet email.  Therefore, Alpine provides the
34153 option of posting unencoded 8bit news messages, though not as the default.
34154 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
34155 postings that contain 8bit characters. 
34159 Note, articles may cross a path or pass through news transport software
34160 that is unsafe or even hostile to 8bit characters.  At best this will only
34161 cause the posting to become garbled.  The safest way to transmit 8bit
34162 characters is to leave Alpine's MIME encoding turned on, but recipients
34163 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
34164 messages.
34166 &lt;End of help on this topic&gt;
34167 </BODY>
34168 </HTML>
34169 ====== h_config_mark_for_cc =====
34170 <HTML>
34171 <HEAD>
34172 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
34173 </HEAD>
34174 <BODY>
34175 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
34177 This feature affects Alpine's MESSAGE INDEX display.
34178 By default, a '+' is displayed in the first column if the
34179 message is addressed directly to you.
34180 When this feature is set and the message is not addressed to you, then a
34181 '-' character is displayed if the message is instead Cc'd directly
34182 to you.
34185 <UL>   
34186 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34187 </UL><P>
34188 &lt;End of help on this topic&gt;
34189 </BODY>
34190 </HTML>
34191 ====== h_config_tab_uses_unseen =====
34192 <HTML>
34193 <HEAD>
34194 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
34195 </HEAD>
34196 <BODY>
34197 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
34199 This feature affects Alpine's behavior when using the TAB
34200 <A HREF="h_common_nextnew">NextNew Command</A>
34201 to move from one folder to the next.
34202 Alpine's usual behavior is to search for folders
34203 with <EM>Recent</EM> messages in them.
34204 Recent messages are messages that have arrived since the last time the
34205 folder was opened.
34208 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34209 messages instead of Recent messages.
34210 Unseen messages remain Unseen until you view them (or flag then as Seen with
34211 the <A HREF="h_common_flag">Flag Command</A>).
34212 Setting this feature allows you to locate messages you have not read
34213 instead of only recently received messages.
34214 When this feature is set, the feature
34215 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34216 will have no effect, so the checking may be slower.
34219 Another reason why you might want to use this feature is that Alpine sometimes
34220 opens folders implicitly behind the scenes, and this clears the
34221 Recent status of all messages in the folder.
34222 One example where this happens is when Saving or filtering a
34223 message to another folder.
34224 If that message has some <A HREF="h_config_keywords">keywords</A>
34225 set, then because of some shortcomings
34226 in the IMAP specification, the best way to ensure that those keywords are
34227 still set in the saved copy of the message is to open the folder and
34228 set the keywords explicitly.
34229 Because this clears the Recent status of all messages in that folder the
34230 folder will not be found by the NextNew command unless this feature is set.
34233 &lt;End of help on this topic&gt;
34234 </BODY>
34235 </HTML>
34236 ====== h_config_tab_new_only =====
34237 <HTML>
34238 <HEAD>
34239 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34240 </HEAD>
34241 <BODY>
34242 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34244 This feature affects Alpine's behavior when using the TAB key to move from
34245 one message to the next.  Alpine's usual behavior is to select the next
34246 unread message or message flagged as "Important".
34250 Setting this feature causes Alpine to skip the messages flagged as important,
34251 and select unread messages exclusively.  Tab behavior when there are no
34252 new messages left to select remains unchanged.
34254 &lt;End of help on this topic&gt;
34255 </BODY>
34256 </HTML>
34257 ====== h_config_warn_if_subj_blank =====
34258 <HTML>
34259 <HEAD>
34260 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34261 </HEAD>
34262 <BODY>
34263 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34265 This feature affects Alpine's behavior when you send a message being
34266 composed.
34267 If this option is set, Alpine will check to see if the message about to be sent
34268 has a subject or not.
34269 If not, you will be asked if you want to send the message anyway.
34272 <UL>   
34273 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34274 </UL><P>
34275 &lt;End of help on this topic&gt;
34276 </BODY>
34277 </HTML>
34278 ====== h_config_warn_if_fcc_blank =====
34279 <HTML>
34280 <HEAD>
34281 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34282 </HEAD>
34283 <BODY>
34284 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34286 This feature affects Alpine's behavior when you send a message being
34287 composed.
34288 If this option is set, Alpine will check to see if the message about to be sent
34289 has an Fcc or not.
34290 If not, you will be asked if you want to send the message anyway.
34293 <UL>   
34294 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34295 </UL><P>
34296 &lt;End of help on this topic&gt;
34297 </BODY>
34298 </HTML>
34299 ====== h_config_warn_if_no_to_or_cc =====
34300 <HTML>
34301 <HEAD>
34302 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
34303 </HEAD>
34304 <BODY>
34305 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
34307 This feature affects Alpine's behavior when you send a message being
34308 composed.
34309 If this option is set, Alpine will check to see if the message about to be sent
34310 has either a To address, a Cc address, or a Newsgroup.
34311 If none of these is set,
34312 you will be asked if you want to send the message anyway.
34315 This feature is closely related to
34316 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
34317 Alpine will normally ask if you want to copy a message only to the Fcc.
34318 This feature also applies to cases where there is a Bcc but still no To, Cc,
34319 or Newsgroup.
34320 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
34321 message with only an Fcc, then you won't be asked about sending with
34322 a blank To and Cc and Newsgroups header even if this feature is set.
34323 Similarly, if you have already been asked if you want to send to the Fcc
34324 only and you have answered Yes, then you won't be asked again about sending with
34325 blank To, Cc, and Newsgroups headers even if this feature is set.
34328 <UL>   
34329 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34330 </UL><P>
34331 &lt;End of help on this topic&gt;
34332 </BODY>
34333 </HTML>
34334 ====== h_config_quell_dead_letter =====
34335 <HTML>
34336 <HEAD>
34337 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
34338 </HEAD>
34339 <BODY>
34340 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
34342 This feature affects Alpine's behavior when you cancel a message being
34343 composed.  Alpine's usual behavior is to write the canceled message to
34344 a file named 
34345 <!--chtml if pinemode="os_windows"-->
34346 &quot;DEADLETR&quot;,
34347 <!--chtml else-->
34348 &quot;dead.letter&quot; in your home directory,
34349 <!--chtml endif-->
34350 overwriting any previous message. Under
34351 some conditions (some routine), this can introduce a noticeable delay.
34352 Setting this feature will cause Alpine NOT to write canceled compositions
34353 into the file.
34355 NOTE: Enabling this feature means NO record of canceled messages is
34356 maintained.
34358 This feature affects the newer option
34359 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
34360 number of dead letter files to keep around.
34361 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
34363 <UL>   
34364 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34365 </UL><P>
34366 &lt;End of help on this topic&gt;
34367 </BODY>
34368 </HTML>
34369 ====== h_config_quell_beeps =====
34370 <HTML>
34371 <HEAD>
34372 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
34373 </HEAD>
34374 <BODY>
34375 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
34377 This feature affects Alpine's behavior when it displays status message
34378 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
34379 will not affect the display of such messages, but will cause those that
34380 emit a beep to become silent.
34383 <UL>   
34384 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34385 </UL><P>
34386 &lt;End of help on this topic&gt;
34387 </BODY>
34388 </HTML>
34389 ====== h_config_suppress_user_agent =====
34390 <HTML>
34391 <HEAD>
34392 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
34393 </HEAD>
34394 <BODY>
34395 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
34397 If this feature is set then Alpine will not generate a
34398 <CODE>User-Agent</CODE> header in outgoing messages.
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_quell_lock_failure_warnings =====
34407 <HTML>
34408 <HEAD>
34409 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
34410 </HEAD>
34411 <BODY>
34412 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
34414 This feature affects Alpine's behavior when it encounters a problem
34415 acquiring a mail folder lock.  Typically, a secondary file associated
34416 with the mail folder being opened is created as part of the locking
34417 process.  On some systems, such file creation has been administratively
34418 precluded by the system configuration.
34420 Alpine issues a warning when such failures occur, which can become bothersome
34421 if the system is configured to disallow such actions.  Setting this
34422 feature causes Alpine to remain silent when this part of lock creation fails.
34424 WARNING: systems that have been configured in a way that precludes locking
34425 introduce some risk of mail folder corruption when more than one program
34426 attempts to modify the mail folder.  This is most likely to occur to one's
34427 INBOX or other incoming message folder. 
34429 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34431 <UL>   
34432 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34433 </UL><P>
34434 &lt;End of help on this topic&gt;
34435 </BODY>
34436 </HTML>
34437 ====== h_config_enable_role_take ======
34438 <HTML>
34439 <HEAD>
34440 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34441 </HEAD>
34442 <BODY>
34443 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34445 Normally, the Take command takes addresses from a message and helps you
34446 put them into your Address Book.
34447 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34448 you may find it useful
34449 to be able to Take information from a message's headers and put it into
34450 a new Rule.
34451 When this feature is set, you will be given an extra prompt that gives
34452 you the choice to Take into the Address Book or Take into a rule.
34453 <P><UL>
34454 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34455 </UL>
34457 &lt;End of help on this topic&gt;
34458 </BODY>
34459 </HTML>
34460 ====== h_config_enable_take_export ======
34461 <HTML>
34462 <HEAD>
34463 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34464 </HEAD>
34465 <BODY>
34466 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34468 Normally, the Take command takes addresses from a message and helps you
34469 put them into your Address Book.
34470 When this feature is set, you will be given an extra prompt that gives you
34471 the choice to Take addresses into a file instead of your Address
34472 Book.
34473 Only the user@domain_name part of the address is put in the file.
34474 <P><UL>
34475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34476 </UL>
34478 &lt;End of help on this topic&gt;
34479 </BODY>
34480 </HTML>
34481 ====== h_config_quell_folder_internal_msg ======
34482 <HTML>
34483 <HEAD>
34484 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34485 </HEAD>
34486 <BODY>
34487 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34489 This feature determines whether or not Alpine will create 
34490 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34491 MMDF format. <P> 
34493 Alpine will normally create these pseudo messages when they are not already
34494 present in a standard Unix or MMDF folder.  Their purpose is to record
34495 certain mailbox state data needed for correct IMAP and POP server
34496 operation, and also for Alpine to be able to mark messages as Answered when
34497 the Reply has been postponed.<P>
34499 Sites that do not use IMAP/POP for remote mail access, and that need to
34500 support mail tools that are adversely affected by the presence of the
34501 pseudo-messages (e.g. some mail notification tools) may enable this
34502 feature to tell Alpine not to create them.  Note that Alpine's 
34503 &quot;Answered&quot; flag
34504 capability will be adversely affected if this is done.<P>
34506 Note too that, even if this feature is enabled, Alpine will not remove
34507 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34508 or ipopd servers.) This feature has no effect on folders that are not in
34509 standard Unix or MMDF format, as pseudo-messages are not needed in the
34510 other formats to record mailbox state information.
34511 <P><UL>
34512 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34513 </UL>
34515 &lt;End of help on this topic&gt;
34516 </BODY>
34517 </HTML>
34518 ====== h_config_mulnews_as_typed ======
34519 <HTML>
34520 <HEAD>
34521 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34522 </HEAD>
34523 <BODY>
34524 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34526 This feature will be of little use to most users.
34527 It has no effect unless the feature
34528 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34529 is set.
34531 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34532 then the setting of this feature may have an effect on the names of the
34533 newsrc files used.
34534 Normally, the name of the news server will be canonicalized before it is
34535 used in the newsrc file name.
34536 For example, if you type the news server name
34539 <CENTER><SAMP>servername</SAMP></CENTER>
34542 it is likely that the canonical name will be something like
34545 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34548 Or it may be the case that
34551 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34554 is really an alias (a DNS CNAME) for
34557 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34560 If this feature is not set, then the canonicalized names will be used.
34561 If this feature is set, then the name you typed in (or put in your
34562 configuration) will be used.
34564 <P><UL>
34565 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34566 </UL>
34568 &lt;End of help on this topic&gt;
34569 </BODY>
34570 </HTML>
34571 ====== h_config_quell_empty_dirs ======
34572 <HTML>
34573 <HEAD>
34574 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34575 </HEAD>
34576 <BODY>
34577 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34579 This feature causes Alpine to remove from the display any directories
34580 that do not contain at least one file or directory.  This can be useful
34581 to prevent overly cluttered folder lists when a collection is stored on
34582 a server that treats all names as both a folder and a directory.
34585 Note, enabling this feature can cause surprising behavior!  For example,
34586 you can still use Add to create a directory, but unless you immediately
34587 enter that directory and create a folder, that newly created directory
34588 may not be displayed next time you enter the folder list.
34591 The description above is not quite correct.
34592 Only directories which potentially may hold messages are hidden if empty.
34593 That is, a directory which is really just a directory and is not selectable
34594 as a folder will not be hidden.
34595 Such directories can occur on servers that treat most names as both a folder
34596 and a directory.
34597 These directories are typically created implicitly when a folder is created
34598 inside a directory that does not yet exist.
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_config_termcap_wins =====
34608 <HTML>
34609 <HEAD>
34610 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34611 </HEAD>
34612 <BODY>
34613 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34615 This feature may affect Alpine's low-level input routines.  Termcap (or
34616 terminfo, depending on how your copy of Alpine was compiled and linked)
34617 is the name of the database that describes terminal capabilities.  In
34618 particular, it describes the sequences of characters that various keys
34619 will emit.
34622 An example would be the Up Arrow key on the keyboard.  Up
34623 Arrow is not a distinct character on most Unix systems.  When you press
34624 the Up Arrow key a short sequence of characters are produced.  This
34625 sequence is supposed to be described in the termcap database by the
34626 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34627 are using terminfo instead of termcap).
34630 By default, Alpine defines some terminal
34631 escape sequences that are commonly used.  For example, the sequence
34632 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34633 &quot;ESC&nbsp;[&nbsp;A&quot;
34634 is also recognized as an Up Arrow key.  These are chosen because common
34635 terminals like VT100's or ANSI standard terminals produce these
34636 sequences when you press the Up Arrow key.
34639 If your system's termcap
34640 (terminfo) database assigns some other function to the sequence
34641 &quot;ESC&nbsp;O&nbsp;A&quot;
34642 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34643 database assigns a sequence that doesn't begin with an escape
34644 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34645 This usually works fine
34646 because most terminals emit the escape sequences that Alpine has defined
34647 by default.  We have also found that it is usually better to have these
34648 defaults take precedence over the definitions contained in the database
34649 because the defaults are more likely to be correct than the database.
34652 There are some terminals where this breaks down.  If you want Alpine to
34653 believe the definitions given in your termcap (terminfo) database in
34654 preference to the defaults the Alpine itself sets up, then you may turn
34655 this feature on.  Then, sequences of characters that are defined in
34656 both termcap (terminfo) and in Alpine's set of defaults will be
34657 interpreted the way that termcap (terminfo) says they should be
34658 interpreted.  Also, if your terminal capabilities database assigns a
34659 sequence that doesn't begin with escape, it will not be ignored.
34662 <UL>   
34663 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34664 </UL><P>
34665 &lt;End of help on this topic&gt;
34666 </BODY>
34667 </HTML>
34668 ====== h_config_cruise_mode =====
34669 <HTML>
34670 <HEAD>
34671 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34672 </HEAD>
34673 <BODY>
34674 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34676 This feature affects Alpine's behavior when you hit the
34677 &quot;Space&nbsp;Bar&quot; at
34678 the end of a displayed message.  Typically, Alpine complains that the end
34679 of the text has already been reached.  Setting this feature causes such
34680 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34681 taking you to the next &quot;interesting&quot; message,
34682 or scanning ahead to the 
34683 next incoming folder with &quot;interesting&quot; messages.
34686 <UL>   
34687 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34688 </UL><P>
34689 &lt;End of help on this topic&gt;
34690 </BODY>
34691 </HTML>
34692 ====== h_config_cruise_mode_delete =====
34693 <HTML>
34694 <HEAD>
34695 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34696 </HEAD>
34697 <BODY>
34698 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34700 This feature modifies the behavior of Alpine's 
34701 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34702 Setting this feature causes Alpine to implicitly delete read
34703 messages when it moves on to display the next &quot;interesting&quot; message.
34705 NOTE: Beware when enabling this feature AND the 
34706 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34707 feature.
34709 <UL>   
34710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34711 </UL><P>
34712 &lt;End of help on this topic&gt;
34713 </BODY>
34714 </HTML>
34715 ====== h_config_slash_coll_entire =====
34716 <HTML>
34717 <HEAD>
34718 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34719 </HEAD>
34720 <BODY>
34721 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34723 The slash (/) command is available from the MESSAGE INDEX screen when
34724 the folder is sorted by either Threads or OrderedSubject, and the
34725 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34726 is set to something other than &quot;none&quot;.
34727 Normally, the slash command Collapses or Expands the subthread that
34728 starts at the currently highlighted message, if any.
34729 If this option is set, then the slash command Collapses or Expands the
34730 <EM>entire</EM> current thread instead of just the subthread.
34731 The current thread is simply the top-level thread that contains the
34732 current message.
34735 <UL>   
34736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34737 </UL><P>
34738 &lt;End of help on this topic&gt;
34739 </BODY>
34740 </HTML>
34741 ====== h_config_color_thrd_import =====
34742 <HTML>
34743 <HEAD>
34744 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34745 </HEAD>
34746 <BODY>
34747 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34749 This option affects only the THREAD INDEX screen.
34750 Whether or not you ever see a THREAD INDEX screen depends on the setting
34751 of the configuration option
34752 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34753 and on the sort order of the index.
34756 If a message within a thread is flagged as Important
34757 and this option is set, then
34758 the entire line in the THREAD INDEX will be colored the color of the
34759 Index-important Symbol, which can be set using the
34760 <A HREF="h_color_setup">Setup Kolor</A> screen.
34763 <UL>   
34764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34765 </UL><P>
34766 &lt;End of help on this topic&gt;
34767 </BODY>
34768 </HTML>
34769 ====== h_config_allow_goto =====
34770 <HTML>
34771 <HEAD>        
34772 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34773 </HEAD>
34774 <BODY>
34775 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34777 This feature modifies the behavior of Alpine's file browser.  Setting this
34778 feature causes Alpine to offer the "G Goto" command in the file browser.
34779 That is the default.
34783 The Goto command allows you to explicitly type in the desired directory.
34785 &lt;End of help on this topic&gt;
34786 </BODY></HTML>
34787 ====== h_config_add_ldap =====
34788 <HTML>
34789 <HEAD>
34790 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34791 </HEAD>
34792 <BODY>
34793 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34795 If both the Directory option
34796 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34797 and this feature are set,
34798 then when an implicit directory lookup is done from the
34799 composer you will automatically be prompted to add the result of the
34800 directory lookup to your address book.
34802 <UL>   
34803 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34804 </UL><P>
34805 &lt;End of help on this topic&gt;
34806 </BODY>
34807 </HTML>
34808 ===== h_patterns_compat_behavior =====
34809 <HTML>
34810 <HEAD>
34811 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34812 </HEAD>
34813 <BODY>
34814 <H1>Rules Behavior Changes in Pine 4.50</H1>
34816 In Alpine, Rules that contain unrecognized elements
34817 are ignored.
34818 In most cases, the unrecognized elements will be something that was
34819 added as a new Rules feature in a later version of Alpine.
34820 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34821 ignore rules that contained unrecognized elements.
34822 For example, a new element of Rules that was added in Pine 4.50 is
34823 Age interval.
34824 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34825 all messages older than a week red.
34826 Now, if you run Pine 4.44 using that same configuration file, it will not
34827 recognize the Age interval and so will just ignore it.
34828 That means that all messages will match that rule so all messages will
34829 be colored red when using Pine version 4.44.
34832 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34833 However, since the behavior still exists in versions prior to Pine 4.50 and
34834 since Filtering is a potentially destructive operation, another measure
34835 was taken to attempt to avoid unintentional Filtering of messages.
34836 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34837 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34838 will be copied to a new Filters configuration variable
34839 with a different name (&quot;Patterns-Filters2&quot;).
34840 From then on, Alpine will continue to use the new
34841 variable.
34842 Of course, Pine version 4.44 or lower will continue to use the old
34843 variable.
34844 That means that if you are using Alpine
34845 and also using a version of Pine that is older than 4.50, they will not
34846 share the configuration information about Filters.
34847 If you make a change in one version you won't see it in the other version.
34850 Since Scoring can be used to trigger Filtering, the same thing has been
34851 done for Score rules.
34852 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34853 and the new name is (&quot;Patterns-Scores2&quot;).
34854 The same is not true of Role, Indexcolor, and Other rules that are
34855 thought to be less harmful when a mistake is made.
34858 &lt;End of help on this topic&gt;
34859 </BODY>
34860 </HTML>
34861 ======= h_config_filt_opts_sentdate =======
34862 <HTML>
34863 <HEAD>
34864 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34865 </HEAD>
34866 <BODY>
34867 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34869 By default, the Age interval of a Pattern uses a message's time of
34870 arrival to compute the age of the message.
34871 If this feature is set, the date in the message's Date header will
34872 be used instead.
34874 &lt;End of help on this topic&gt;
34875 </BODY>
34876 </HTML>
34877 ======= h_config_filt_opts_notdel =======
34878 <HTML>
34879 <HEAD>
34880 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
34881 </HEAD>
34882 <BODY>
34883 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
34885 If this option is set then a message will be moved into the
34886 specified folder only if it is not marked for deletion.
34887 This is useful if you have multiple Alpine sessions running
34888 simultaneously and you don't want messages to be filtered into a
34889 folder more than once.
34890 It is also useful if you want to filter
34891 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
34892 This method is not foolproof.
34893 There may be cases where a message
34894 gets marked deleted and so it is never filtered into the folder.
34895 For example, if you deleted it in another Alpine session or another mail
34896 program that didn't use the filtering rule.
34898 This option has no effect if the Filter Action is not set to Move.
34900 &lt;End of help on this topic&gt;
34901 </BODY>
34902 </HTML>
34903 ======= h_config_filt_opts_nonterm =======
34904 <HTML>
34905 <HEAD>
34906 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
34907 </HEAD>
34908 <BODY>
34909 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
34911 If this option is set then this is a non-terminating rule.
34912 Usually, for each message, Alpine searches through the Filter Rules until
34913 a match is found and then it performs the action associated with that rule.
34914 Rules following the match are not considered.
34915 If this option is set then the search for matches will continue at the next
34916 rule.
34918 If a non-terminating rule matches then the actions associated with
34919 that rule, except for any implied deletion of the message, are performed
34920 before the match for the next rule is checked.
34921 For example, if the non-terminating rule sets the Important status, then that
34922 status will be set when the next rule is considered.
34923 However, if the non-terminating rule Moves the message, the message will
34924 actually be copied instead of copied and deleted so that it is still there
34925 for the next rule.
34926 A moved message is deleted after all the relevant rules have been checked.
34927 The name of the &quot;Move&quot; action is confusing in this case because
34928 a single message can be moved to more than one folder.
34929 It turns the Move into a Copy instead, but it is still followed by a deletion
34930 at the end.
34932 This option may be useful if you want to have a single message filtered to
34933 two different folders because it matches two different Patterns.
34934 For example, suppose you normally filter messages to a particular mailing
34935 list into one folder, and messages addressed directly to you into a second
34936 folder.
34937 If a message is sent to both you and the list (and you can tell that by
34938 looking at the headers of the message) this option may give you a convenient
34939 way to capture a copy to each folder.
34940 (It may also cause you to capture two copies to each folder,
34941 depending on whether your mail system delivers one or two copies of the
34942 message to you and on how the list works.)
34944 &lt;End of help on this topic&gt;
34945 </BODY>
34946 </HTML>
34947 ===== h_mainhelp_smime ======
34948 <HTML>
34949 <HEAD>
34950 <TITLE>S/MIME Overview</TITLE>
34951 </HEAD>
34952 <BODY>
34953 <H1>S/MIME Overview</H1>
34955 S/MIME is a standard for the public key encryption and signing of email.
34956 UNIX Alpine contains a basic implementation of S/MIME based on
34957 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries. The
34958 same support can be provided using the 
34959 <A HREF="http://www.libressl.org/">LibreSSL</A> libraries. The
34960 support for S/MIME in PC-Alpine is fully based on the LibreSSL libraries.
34961 To check if this version of Alpine supports S/MIME look at
34962 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34963 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34965 Some limitations:
34966 <UL>
34967    <LI> There is no provision for checking for CRLs
34968         (Certificate Revocation Lists) in Alpine.
34969    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34970    <LI> There is no mechanism available for feeding either an entire incoming
34971         or an entire outgoing message to an external
34972         filter and using that external filter to do S/MIME or PGP processing.
34973    <LI> Because the implementation currently uses OpenSSL, there is only a very
34974         limited integration with the Mac OS Keychain (the storing and access of
34975         public certificates).
34976 </UL>
34978 The S/MIME configuration screen is reached by going to the Main Menu and typing
34979 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34982 <H2>S/MIME BASICS</H2>
34984 In order to digitally sign messages you send you must have a public/private key-pair.
34985 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34986 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34987 users or a company which provides certificates for its workers.
34988 These certificates are bound to an email address, so the identity being verified is the
34989 email address not a person's name.
34991 Mail is signed by using the sender's private key, which only the owner of the private key
34992 has access to.
34993 The signature is verified using the signer's public key, which anyone can
34994 have access to.
34995 With Alpine, the first time you receive a signed message the public key of the
34996 sender will be stored for future use.
34999 Mail is encrypted using the recipient's public key and decrypted by
35000 the recipient with their private key.
35003 You need a key of your own in order to sign outgoing messages and to have others
35004 encrypt messages sent to you.
35005 You do not need a key of your own to verify signed messages sent by others or to
35006 encrypt messages sent to others.
35008 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
35010 By default UNIX Alpine stores the certificates it uses in a directory in your
35011 home directory.
35012 The directory name is
35014 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
35016 For PC-Alpine, the equivalent directory is called 
35017 <CENTER><SAMP>alpine-smime</SAMP></CENTER>
35018 and is also located under your home directory.
35020 Within that directory are three subdirectories.
35021 Each of the three subdirectories contains files with PEM-encoded contents,
35022 the default format for OpenSSL.
35023 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
35024 The files within that directory have names that are email addresses with the
35025 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
35026 An example filename is
35028 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35030 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
35031 your private key.
35032 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
35033 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
35034 Authorities that you want to trust but that aren't contained in the set of system CAs.
35035 Those files may have arbitrary names as long as they end with the
35036 suffix &quot;<SAMP>.crt</SAMP>&quot;.
35038 <H2>HOW TO SIGN AND ENCRYPT</H2>
35040 If you have a certificate you may sign outgoing messages.
35041 After typing the Ctrl-X command to send a message you will see the prompt
35043 <CENTER><SAMP>Send message?</SAMP></CENTER>
35045 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
35046 Typing the &quot;G&quot; command will change the prompt to
35048 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
35050 Typing the &quot;E&quot; command will change the prompt to
35052 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
35054 You may even type both to get
35056 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
35059 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
35061 The reading of a signed message should not require any special action on
35062 your part.
35063 There should be an editorial addition at the start of the message which
35064 says either
35066 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
35070 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
35072 If an encrypted message is sent to you the encrypted text will not
35073 be shown.
35074 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
35075 you are viewing the message) and supply your passphrase when asked.
35077 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
35078 which gives you some information about the certificate used to sign or encrypt the message.
35080 <H2>MISCELLANEOUS</H2>
35082 If you have access to a private certificate in the PKCS12 format, which 
35083 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
35084 use the following commands to generate private keys, public and certificate
35085 authorities certificates. In the examples below, we assume that the 
35086 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
35087 that your email address is &quot;your@address.com&quot;.
35090 In order to create a private key use the command
35092 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
35094 In order to create a public certificate use the command
35096 <CENTER><SAMP>
35097 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
35098 </SAMP></CENTER>
35100 In order to create a certificate authority certificate use the command
35102 <CENTER><SAMP>
35103 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
35104 </SAMP></CENTER>
35106 <P> If the previous command produces an empty file, it means that the 
35107 certificate authority was not included in the .p12 file, so you will have 
35108 to get it from some other sources. You will need these certificates, so 
35109 that you can validate correctly signatures.
35112 After you have exported these certificates and keys, you can  use the import 
35113 command in Alpine, from the S/MIME configuration screen,
35114 to import these certificates into Alpine. They will be available for use
35115 as soon as you import them.
35117 &lt;End of help on this topic&gt;
35118 </BODY>
35119 </HTML>
35120 ====== h_config_smime_pubcertdir =====
35121 <HTML>
35122 <HEAD>
35123 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
35124 </HEAD>
35125 <BODY>
35126 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
35129 If the option
35130 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35131 is set then this option will have no effect.
35133 Normally, Public Certificates for use with S/MIME will be stored in the directory
35134 which is the value of this option.
35135 Those certificates will be stored in PEM format, one certificate per file.
35136 The name of the file for the certificate corresponding to
35138 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35140 should be
35142 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
35144 For example, a file for user@example.com would be in the file
35146 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35148 in this directory.
35150 Use the Setup/SMIME screen to modify this variable.
35152 Typically, the public certificates that you have will come from S/MIME signed
35153 messages that are sent to you.
35154 Alpine will extract the public certificate from the signed message and store
35155 it in the certificates directory.
35156 These PEM format public certificates look something like:
35157 <PRE>
35158 -----BEGIN CERTIFICATE-----
35159 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
35160 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
35161 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
35163 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
35164 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
35165 -----END CERTIFICATE-----
35166 </PRE>
35168 <UL>   
35169 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35170 </UL><P>
35172 <UL>   
35173 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35174 </UL><P>
35175 &lt;End of help on this topic&gt;
35176 </BODY>
35177 </HTML>
35178 ====== h_config_smime_pubcertcon =====
35179 <HTML>
35180 <HEAD>
35181 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
35182 </HEAD>
35183 <BODY>
35184 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
35187 If this option is set it will be used instead of
35188 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35190 This option gives you a way to store certificates remotely on an IMAP server
35191 instead of storing the certificates one per file locally.
35192 In order to do that you just give this option a remote folder name for a folder
35193 which does not yet exist.
35194 The name is similar to the name you might use for a remote configuration file.
35195 A remote folder name might look something like:
35197 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
35200 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35201 about the syntax of folder names.
35203 Use the Setup/SMIME screen to modify this variable.
35205 <UL>   
35206 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35207 </UL><P>
35209 <UL>   
35210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35211 </UL><P>
35212 &lt;End of help on this topic&gt;
35213 </BODY>
35214 </HTML>
35215 ====== h_config_smime_privkeydir =====
35216 <HTML>
35217 <HEAD>
35218 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
35219 </HEAD>
35220 <BODY>
35221 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
35224 In order to sign outgoing S/MIME messages you will need a
35225 personal digital ID certificate.
35226 You will usually get such a certificate from a certificate authority such as
35227 Thawte or CAcert.
35228 (In order to encrypt outgoing messages you don't need a personal digital ID, you
35229 need the public certificate of the recipient instead.)
35230 If the option
35231 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
35232 is set then this option will have no effect.
35234 Normally, Private Keys for use with S/MIME will be stored in the directory
35235 which is the value of this option.
35236 Those certificates will be stored in PEM format, one certificate per file.
35237 The name of the file for the certificate corresponding to your
35239 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35241 should be
35243 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
35245 For example, if your address is user@example.com the name of the file would be
35247 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
35249 in this directory.
35251 Use the Setup/SMIME screen to modify this variable.
35253 Typically, the private key that you have will come from a Certificate
35254 Authority.
35255 The private key should be stored in a PEM format file that
35256 looks something like:
35257 <PRE>
35258 -----BEGIN RSA PRIVATE KEY-----
35259 Proc-Type: 4,ENCRYPTED
35260 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
35262 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
35263 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
35264 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
35266 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
35267 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
35268 -----END RSA PRIVATE KEY-----
35269 </PRE>
35271 <UL>   
35272 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35273 </UL><P>
35275 <UL>   
35276 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35277 </UL><P>
35278 &lt;End of help on this topic&gt;
35279 </BODY>
35280 </HTML>
35281 ====== h_config_smime_privkeycon =====
35282 <HTML>
35283 <HEAD>
35284 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
35285 </HEAD>
35286 <BODY>
35287 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
35290 If this option is set it will be used instead of
35291 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35293 This option gives you a way to store keys remotely on an IMAP server
35294 instead of storing the keys one per file locally.
35295 In order to do that you just give this option a remote folder name for a folder
35296 which does not yet exist.
35297 The name is similar to the name you might use for a remote configuration file.
35298 A remote folder name might look something like:
35300 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
35303 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35304 about the syntax of folder names.
35306 Use the Setup/SMIME screen to modify this variable.
35308 <UL>   
35309 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35310 </UL><P>
35312 <UL>   
35313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35314 </UL><P>
35315 &lt;End of help on this topic&gt;
35316 </BODY>
35317 </HTML>
35318 ====== h_config_smime_cacertdir =====
35319 <HTML>
35320 <HEAD>
35321 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
35322 </HEAD>
35323 <BODY>
35324 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
35327 If the option
35328 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
35329 is set then this option will have no effect.
35331 CACert is a shorthand name for certification authority certificate.
35332 Normally Alpine will use the CACerts that are located in the standard system
35333 location for CACerts.
35334 It may be the case that one of your correspondents has a Digital ID which has
35335 been signed by a certificate authority that is not in the regular set of system certificate
35336 authorities.
35337 You may supplement the system list by adding further certificates of your own.
35338 These should  be stored in the directory
35339 which is the value of this option.
35340 The certificates will be stored in PEM format, one certificate per file.
35341 The names of the files can be anything ending in &quot;.crt&quot;.
35343 Use the Setup/SMIME screen to modify this variable.
35345 These PEM format CA certificates look very similar to your public
35346 certificates for particular email addresses
35347 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
35349 <UL>   
35350 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35351 </UL><P>
35353 <UL>   
35354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35355 </UL><P>
35356 &lt;End of help on this topic&gt;
35357 </BODY>
35358 </HTML>
35359 ====== h_config_smime_cacertcon =====
35360 <HTML>
35361 <HEAD>
35362 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
35363 </HEAD>
35364 <BODY>
35365 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
35368 If this option is set it will be used instead of
35369 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35371 This option gives you a way to store certificates remotely on an IMAP server
35372 instead of storing the certificates one per file locally.
35373 In order to do that you just give this option a remote folder name for a folder
35374 which does not yet exist.
35375 The name is similar to the name you might use for a remote configuration file.
35376 A remote folder name might look something like:
35378 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
35381 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35382 about the syntax of folder names.
35384 Use the Setup/SMIME screen to modify this variable.
35386 <UL>   
35387 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35388 </UL><P>
35390 <UL>   
35391 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35392 </UL><P>
35393 &lt;End of help on this topic&gt;
35394 </BODY>
35395 </HTML>
35396 ========== h_config_smime_sign_by_default ==========
35397 <HTML>
35398 <HEAD>
35399 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
35400 </HEAD>
35401 <BODY>
35402 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
35405 This feature only has an effect if your version of Alpine includes
35406 support for S/MIME.
35407 It affects Alpine's behavior when you send a message.
35408 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
35410 Only the default value is affected.
35411 In any case, you may still toggle the Signing option on or off before sending
35412 with the &quot;G Sign&quot; command (provided you have a personal digital ID
35413 certificate).
35415 <UL>   
35416 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35417 </UL><P>
35420 <UL>   
35421 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35422 </UL><P>
35423 &lt;End of help on this topic&gt;
35424 </BODY>
35425 </HTML>
35426 ========== h_config_smime_use_cert_store ==========
35427 <HTML>
35428 <HEAD>
35429 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35430 </HEAD>
35431 <BODY>
35432 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35435 This feature only has an effect if your version of Alpine includes
35436 support for S/MIME.
35437 It affects Alpine's behavior when you validate a message, and should
35438 not be disabled, unless you are performing a test.
35440 There are two important aspects of validation: validation of the message
35441 (that is, the message was not modified after it was sent) 
35442 as well as validation of the identity of the sender. This option has to 
35443 do with the latter. 
35445 In order to validate that the message came from the sender in the message
35446 and not an impersonator, Alpine can 
35447 either use the certificates that come in the message, or the ones that 
35448 you have personally stored. If this feature is enabled (the default) then 
35449 Alpine will use certificates that you have already saved in your store 
35450 and not those that come in the message to validate the sender of the 
35451 message. In particular, the first time that you receive a signed message
35452 from a sender, and their certificate does not validate against your
35453 store, then you will be asked if you wish to save such certificate. If
35454 you do not wish to save the certificate, then Alpine will fail to validate
35455 the signature of the message. Otherwise, Alpine will proceed to validate
35456 the signature of the message. This behavior helps you prevent against impersonation, because 
35457 it is assumed that you trust the certificates that you have saved, and 
35458 might not trust those that came with the message that you are validating.
35460 <UL>   
35461 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35462 </UL><P>
35465 <UL>   
35466 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35467 </UL><P>
35468 &lt;End of help on this topic&gt;
35469 </BODY>
35470 </HTML>
35471 ========== h_config_smime_pubcerts_in_keychain ==========
35472 <HTML>
35473 <HEAD>
35474 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35475 </HEAD>
35476 <BODY>
35477 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35480 If this feature is set the Mac OS X default keychain will be used as the place
35481 to store public certificates instead of a
35482 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35483 or a
35484 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35486 <UL>   
35487 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35488 </UL><P>
35490 <UL>   
35491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35492 </UL><P>
35493 &lt;End of help on this topic&gt;
35494 </BODY>
35495 </HTML>
35496 ========== h_config_smime_dont_do_smime ==========
35497 <HTML>
35498 <HEAD>
35499 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35500 </HEAD>
35501 <BODY>
35502 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35505 Setting this feature turns off all of Alpine's S/MIME support.
35506 You might want to set this if you are having trouble due to the S/MIME support.
35508 <UL>   
35509 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35510 </UL><P>
35513 <UL>   
35514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35515 </UL><P>
35516 &lt;End of help on this topic&gt;
35517 </BODY>
35518 </HTML>
35519 ========== h_config_smime_encrypt_by_default ==========
35520 <HTML>
35521 <HEAD>
35522 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35523 </HEAD>
35524 <BODY>
35525 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35528 This feature only has an effect if your version of Alpine includes
35529 support for S/MIME.
35530 It affects Alpine's behavior when you send a message.
35531 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35533 Only the default value is affected.
35534 In any case, you may still toggle the Encrypt option on or off before sending
35535 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35536 for the recipient).
35538 <UL>   
35539 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35540 </UL><P>
35543 <UL>   
35544 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35545 </UL><P>
35546 &lt;End of help on this topic&gt;
35547 </BODY>
35548 </HTML>
35549 ========== h_config_smime_remember_passphrase ==========
35550 <HTML>
35551 <HEAD>
35552 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35553 </HEAD>
35554 <BODY>
35555 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35558 This feature only has an effect if your version of Alpine includes
35559 support for S/MIME.
35560 If this option is set, you will only have to enter your passphrase for your private key
35561 once during an Alpine session.
35563 <UL>   
35564 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35565 </UL><P>
35568 <UL>   
35569 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35570 </UL><P>
35571 &lt;End of help on this topic&gt;
35572 </BODY>
35573 </HTML>
35574 ====== h_config_smime_transfer_pub_to_con =====
35575 <HTML>
35576 <HEAD>
35577 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35578 </HEAD>
35579 <BODY>
35580 <H1>S/MIME: Transfer Public Certs to Container</H1>
35583 The Transfer command will copy the public certificates in your configured
35584 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35585 to the container in your configured
35586 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35587 This might be useful if you decide to switch from using a cert directory to a cert
35588 container.
35590 Warning: Any previous contents in the container will be lost.
35592 <UL>   
35593 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35594 </UL><P>
35596 <UL>   
35597 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35598 </UL><P>
35599 &lt;End of help on this topic&gt;
35600 </BODY>
35601 </HTML>
35602 ====== h_config_smime_transfer_pub_to_dir =====
35603 <HTML>
35604 <HEAD>
35605 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35606 </HEAD>
35607 <BODY>
35608 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35611 The Transfer command will copy the public certificates in your configured
35612 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35613 to the directory in your configured
35614 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35615 This might be useful if you decide to switch from using a cert container to a cert
35616 directory.
35618 <UL>   
35619 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35620 </UL><P>
35622 <UL>   
35623 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35624 </UL><P>
35625 &lt;End of help on this topic&gt;
35626 </BODY>
35627 </HTML>
35628 ====== h_config_smime_transfer_priv_to_con =====
35629 <HTML>
35630 <HEAD>
35631 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35632 </HEAD>
35633 <BODY>
35634 <H1>S/MIME: Transfer Private Keys to Container</H1>
35637 The Transfer command will copy the private keys in your configured
35638 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35639 to the container in your configured
35640 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35641 This might be useful if you decide to switch from using a key directory to a key
35642 container.
35644 Warning: Any previous contents in the container will be lost.
35646 <UL>   
35647 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35648 </UL><P>
35650 <UL>   
35651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35652 </UL><P>
35653 &lt;End of help on this topic&gt;
35654 </BODY>
35655 </HTML>
35656 ====== h_config_smime_transfer_priv_to_dir =====
35657 <HTML>
35658 <HEAD>
35659 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35660 </HEAD>
35661 <BODY>
35662 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35665 The Transfer command will copy the private keys in your configured
35666 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35667 to the directory in your configured
35668 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35669 This might be useful if you decide to switch from using a key container to a key
35670 directory.
35672 <UL>   
35673 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35674 </UL><P>
35676 <UL>   
35677 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35678 </UL><P>
35679 &lt;End of help on this topic&gt;
35680 </BODY>
35681 </HTML>
35682 ====== h_config_smime_transfer_cacert_to_con =====
35683 <HTML>
35684 <HEAD>
35685 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35686 </HEAD>
35687 <BODY>
35688 <H1>S/MIME: Transfer CA Certs to Container</H1>
35691 The Transfer command will copy the CA certificates in your configured
35692 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35693 to the container in your configured
35694 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35695 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35696 container.
35698 Warning: Any previous contents in the container will be lost.
35700 <UL>   
35701 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35702 </UL><P>
35704 <UL>   
35705 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35706 </UL><P>
35707 &lt;End of help on this topic&gt;
35708 </BODY>
35709 </HTML>
35710 ====== h_config_smime_transfer_cacert_to_dir =====
35711 <HTML>
35712 <HEAD>
35713 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35714 </HEAD>
35715 <BODY>
35716 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35719 The Transfer command will copy the CA certificates in your configured
35720 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35721 to the directory in your configured
35722 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35723 This might be useful if you decide to switch from using a CA cert container to a CA cert
35724 directory.
35726 <UL>   
35727 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35728 </UL><P>
35730 <UL>   
35731 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35732 </UL><P>
35733 &lt;End of help on this topic&gt;
35734 </BODY>
35735 </HTML>
35736 ====== h_config_smime_transfer_pubcon_to_key =====
35737 <HTML>
35738 <HEAD>
35739 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35740 </HEAD>
35741 <BODY>
35742 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35744 Mac OS X Alpine only.
35746 The Transfer command will copy the public certificates in your configured
35747 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35748 to your default Mac OS X Keychain.
35749 This might be useful if you decide to switch from using a cert container to using
35750 the Keychain to store your public certs, which you may do by using the
35751 feature
35752 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35754 <UL>   
35755 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35756 </UL><P>
35758 <UL>   
35759 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35760 </UL><P>
35761 &lt;End of help on this topic&gt;
35762 </BODY>
35763 </HTML>
35764 ====== h_config_smime_transfer_pubkey_to_con =====
35765 <HTML>
35766 <HEAD>
35767 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35768 </HEAD>
35769 <BODY>
35770 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35773 The Transfer command will copy the public certificates in your configured
35774 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35775 to your default Mac OS X Keychain.
35776 This might be useful if you decide to switch from using a cert container to using
35777 the Keychain to store your public certs.
35779 <UL>   
35780 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35781 </UL><P>
35783 <UL>   
35784 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35785 </UL><P>
35786 &lt;End of help on this topic&gt;
35787 </BODY>
35788 </HTML>
35789 ====== h_config_smime_public_certificates =====
35790 <HTML>
35791 <HEAD>
35792 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35793 </HEAD>
35794 <BODY>
35795 <H1>S/MIME: Manage Public Certificates</H1>
35798 This menu item allows you to manage your public certificates, this
35799 may include your own public certificate, but it normally includes
35800 certificates of people you correspond with. These certificates are
35801 saved by Alpine automatically when they are found in signed messages
35802 that you receive. This interface allows you to manage them, by
35803 giving you the option to delete them, or trust them (in the case
35804 of self-signed certificates).
35807 Please note that Alpine will not validate a message that was sent to you
35808 using a self-signed certificate, unless you decide to trust that certificate.
35809 Internally, a certificate is trusted by copying it to the
35810 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35811 collection. If you decide that you want to stop trusting a self-signed
35812 certificate, you must delete such certificate from such collection.
35814 The <B>I</B> Import command available in this screen allows you to 
35815 import a command to this collection.
35817 <UL>   
35818 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35819 </UL><P>
35821 <UL>   
35822 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35823 </UL><P>
35824 &lt;End of help on this topic&gt;
35825 </BODY>
35826 </HTML>
35827 ====== h_config_smime_private_keys =====
35828 <HTML>
35829 <HEAD>
35830 <TITLE>S/MIME: Manage Private Keys</TITLE>
35831 </HEAD>
35832 <BODY>
35833 <H1>S/MIME: Manage Private Keys</H1>
35836 This option allows you to manage your private key. Normally a person has only
35837 one key, in the same way that a person only has one valid passport, or ID card,
35838 at any given time. This option allows you to manage private keys. You can
35839 delete them or import them. Additionally, you can view information
35840 about your public certificate, such as the issuer and the dates of validity
35841 of such certificate, among others.
35844 If you have more than one e-mail address for which you want to use the 
35845 same private key, you must add all those addresses to the private key at 
35846 the moment that the key is generated. When you receive a signed message using 
35847 a key generated for several e-mail addresses, Alpine will save a 
35848 certificate for each e-mail address included in such certificate.
35850 The <B>I</B> Import command available in this screen allows you to 
35851 import a command to this collection.
35853 <UL>   
35854 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35855 </UL><P>
35857 <UL>   
35858 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35859 </UL><P>
35860 &lt;End of help on this topic&gt;
35861 </BODY>
35862 </HTML>
35863 ====== h_config_smime_certificate_authorities =====
35864 <HTML>
35865 <HEAD>
35866 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35867 </HEAD>
35868 <BODY>
35869 <H1>S/MIME: Manage Certificate Authorities</H1>
35872 This collection contains certificates that are needed to validate the 
35873 certificate of another person, and therefore contains certificates that 
35874 you trust. Typically a certificate is signed by another entity, called a 
35875 certificate authority. This option allows you to manage which certificates 
35876 you trust, allowing you to import them and to delete them or view information
35877 about each certificate, such as the issuer and the dates of validity
35878 of such certificate.
35880 The <B>I</B> Import command available in this screen allows you to 
35881 import a command to this collection.
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_password_file_certificates =====
35894 <HTML>
35895 <HEAD>
35896 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
35897 </HEAD>
35898 <BODY>
35899 <H1>S/MIME: Manage Password File Certificates</H1>
35902 This option allows you to manage the certificates that are used to
35903 encrypt and decrypt your password file. This is useful in case you
35904 want to change the certificates used to encrypt your password file.
35906 Depending on the version of Alpine that you used for the first time
35907 to set this up, you might have had to enter a password to enter this
35908 screen. In the case that you did not enter a password to enter this
35909 screen, you should know two things that are important:
35910 <UL>
35911 <LI> If anyone takes control of your computer (for example, if you 
35912 left it unattended) then that person can add a password to your
35913 password file and make it unreadable to you in the future.
35914 <LI> If anyone can access your computer (this includes remote access)
35915 then that person can steal your password file and decrypt it without
35916 your help. This gives access to that person to the same services you
35917 have access and such person can use your name to access that service.
35918 In particular, that person can try to hack into your service provider
35919 with your name on it, or that person could try to send spam with
35920 your name.
35921 </UL>
35922 <P> Needless to say, this is not advisable. You should keep your
35923 password file protected. In order to do so, all you need to do is use
35924 the &quot;Create Key&quot; command to create a key. Once you do this,
35925 Alpine will use that key, encrypted with the password used to create that
35926 key, to protect your password file.
35928 In this screen you can import a new key to encrypt your password file, 
35929 and read cryptographic information on your current key.
35931 To import a new key press &quot;RETURN&quot; and enter the location of
35932 the new key. You will be asked to enter the password of the new key. If
35933 this part of the process is successful, Alpine will search for the 
35934 certificate that matches that key. If your key is named 
35935 &quot;your_email@address.com.key&quot;, then Alpine will look for your
35936 certificate in the same directory in the file named
35937 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
35938 as part of your key (that is, it will look to see if your certificate
35939 is in the file &quot;your_email@address.com.key&quot;), if all of this
35940 fails, Alpine will ask you to enter the location of the certificate
35941 that matches the key you unlocked. If a certificate is found, it will be 
35942 used, and in this case, the password file will be read, decrypted with the 
35943 old key and encrypted with the new key. Once this is done, the new key and 
35944 certificates are saved, and the old keys are permanently deleted.
35946 Alpine does not create a backup of your password file, or your old keys
35947 that will be replaced. If you need to keep old copies, you will have to do
35948 this operation outside Alpine.
35950 Observe that you can use this screen to remove the password for the key.
35951 As explained earlier, this is not advisable, but you can always restore the
35952 password to encrypt your password file by creating a new key.
35954 Be safe and keep your password file encrypted with a password.
35955 <UL>   
35956 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35957 </UL><P>
35959 <UL>   
35960 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35961 </UL><P>
35962 &lt;End of help on this topic&gt;
35963 </BODY>
35964 </HTML>
35965 ====== h_certificate_information =====
35966 <HTML>
35967 <HEAD>
35968 <TITLE>S/MIME: Certificate Information Screen</TITLE>
35969 </HEAD>
35970 <BODY>
35971 <H1>S/MIME: Certificate Information Screen</H1>
35974 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
35975 such as its owner, e-mail address, issuer, and interval of validity, 
35976 among others.
35978 In the case of public certificates, this screen shows you if there was a
35979 failure when attempting to validate such message. If the certificate is
35980 self-signed, then the <B>T</B> Trust command will be available, which
35981 you can use to trust such certificate and make Alpine not fail validating 
35982 signatures signed with such certificate.
35984 You can also mark a certificate deleted, with the <B>D</B> command, or 
35985 remove the deleted mark with the <B>U</B> undelete command.
35987 In the case of your private key, Alpine shows you the information
35988 from your public key. Additionally, Alpine allows you to see public
35989 and private information about your key, with the <B>B</B> and
35990 <B>R</B> commands respectively.
35991 <UL>   
35992 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35993 </UL><P>
35995 <UL>   
35996 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35997 </UL><P>
35998 &lt;End of help on this topic&gt;
35999 </BODY>
36000 </HTML>
36001 ====== h_config_smime_manage_public_menu =====
36002 <HTML>
36003 <HEAD>
36004 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
36005 </HEAD>
36006 <BODY>
36007 <H1>S/MIME: Commands that Manage Public Certificates</H1>
36010 This screen allows you to manage your public certificates. 
36012 The format of this screen is as follows. There are five fields: The 
36013 leftmost field is normally empty, but it could contain the letter 
36014 &quot;D&quot; to indicate that that certificate has been marked for 
36015 deletion. The next field is the e-mail address of the owner of the 
36016 certificate, shown in its entirety. The third and fourth field are the 
36017 first and last day validity for that certificate, respectively. The date
36018 is displayed in the user's locale unless the option 
36019 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
36020 is set. In this case, the month, day and year are represented by two
36021 digits, and the format used is mm/dd/yy. Finally, the fifth 
36022 field is what can be displayed of the MD5 hash of the certificate. You can 
36023 use any of the last three fields to distinguish between two certificates 
36024 for the same owner.
36026 Available commands in this screen and a short description of what they 
36027 do follows.
36028 <UL>
36029 <LI> <B>I</B> Imports a public certificate to this collection.
36030 <LI> <B>V</B> View information about a certificate such as the name of the person the
36031 certificate was issued to, its dates of validity, and validity status.
36032 <LI> <B>D</B> Marks a certificate deleted.
36033 <LI> <B>U</B> Removes the deletion mark on a certificate.
36034 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36035 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
36036 trust a certificate by copying it to the collection of trusted certificates.
36037 </UL>
36039 All commands provide feedback to let you know about their success or failure.
36041 <UL>   
36042 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36043 </UL><P>
36045 <UL>   
36046 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36047 </UL><P>
36048 &lt;End of help on this topic&gt;
36049 </BODY>
36050 </HTML>
36051 ====== h_config_smime_manage_private_menu =====
36052 <HTML>
36053 <HEAD>
36054 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
36055 </HEAD>
36056 <BODY>
36057 <H1>S/MIME: Commands that Manage Private Keys</H1>
36060 This screen allows you to manage your private key.
36062 The format of this screen is as follows. There are five fields: The 
36063 leftmost field is normally empty, but it could contain the letter 
36064 &quot;D&quot; to indicate that that certificate has been marked for 
36065 deletion. The next field is the e-mail address of the owner of the 
36066 certificate, shown in its entirety. The third field is the first day of 
36067 validity for that certificate; the fourth field in the last day that that 
36068 certificate is valid, and the fifth field is what can be displayed of the 
36069 MD5 hash of the public certificate corresponding to this private key. You 
36070 can use any of the last three fields to distinguish between two 
36071 certificates for the same owner.
36073 Available commands and a short description of what they do follows.
36074 <UL>
36075 <LI> <B>I</B> Imports a new public key to this collection.
36076 <LI> <B>V</B> View information about the public certificate corresponding to this
36077 key.
36078 <LI> <B>D</B> Marks a key to be deleted.
36079 <LI> <B>U</B> Removes the deletion mark on a key.
36080 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
36081 Note that expunging a private key does not remove the public key, which must
36082 be removed separately.
36083 </UL>
36085 All commands provide feedback to let you know about their success or failure.
36087 <UL>   
36088 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36089 </UL><P>
36091 <UL>   
36092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36093 </UL><P>
36094 &lt;End of help on this topic&gt;
36095 </BODY>
36096 </HTML>
36097 ====== h_config_smime_manage_cacerts_menu =====
36098 <HTML>
36099 <HEAD>
36100 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
36101 </HEAD>
36102 <BODY>
36103 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
36106 This screen allows you to manage your collection of certificates that you
36107 trust. 
36109 The format of this screen is as follows. There are five fields: The 
36110 leftmost field is normally empty, but it could contain the letter 
36111 &quot;D&quot; to indicate that that certificate has been marked for 
36112 deletion. The next field is the e-mail address of the owner of the 
36113 certificate, shown in its entirety. The third field is the first day of 
36114 validity for that certificate; the fourth field in the last day that that 
36115 certificate is valid, and the fifth field is what can be displayed of the 
36116 MD5 hash of the certificate. You can use any of the last three fields to 
36117 distinguish between two certificates for the same owner.
36119 Available commands and a short description of what they do follows.
36120 <UL>
36121 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
36122 done by reading the certificate and validating it. Once a certificate
36123 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
36124 to the certificate, if necessary.
36125 <LI> <B>V</B> View information about this certificate, such as its issuer 
36126 and validity dates.
36127 <LI> <B>D</B> Marks a certificate to be deleted.
36128 <LI> <B>U</B> Removes the deletion mark on a certificate.
36129 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36130 </UL>
36132 All commands provide feedback to let you know about their success or failure.
36134 <UL>
36135 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36136 </UL><P>
36138 <UL>   
36139 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36140 </UL><P>
36141 &lt;End of help on this topic&gt;
36142 </BODY>
36143 </HTML>
36144 ====== h_config_lame_list_mode =====
36145 <HTML>
36146 <HEAD>
36147 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
36148 </HEAD>
36149 <BODY>
36150 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
36152 This feature modifies the method Alpine uses to ask your IMAP
36153 server for folder names to display in the FOLDER LIST screen.
36154 It is intended to compensate for a small set of IMAP servers that
36155 are programmed to ignore a part of the request, and thus respond
36156 to Alpine's query with nonsensical results.
36159 If you find that Alpine is erroneously displaying blank folder lists,
36160 try enabling this feature.
36163 NOTE: Enabling this feature has consequences for the Goto and Save
36164 commands.  Many servers allow access to folders outside the area
36165 reserved for your personal folders via some reserved character,
36166 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
36167 allows, at the Goto and Save prompts, quick access to folders
36168 outside your personal folder collection without requiring a specific
36169 collection definition.  This behavior will generally not be available
36170 when this feature is enabled.
36173 <UL>   
36174 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36175 </UL><P>
36176 &lt;End of help on this topic&gt;
36177 </BODY>
36178 </HTML>
36179 ====== h_config_enable_mulnewsrcs =====
36180 <HTML>
36181 <HEAD>
36182 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
36183 </HEAD>
36184 <BODY>
36185 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
36187 This feature makes it so Alpine can use multiple newsrcs based on
36188 the news server being connected to, which allows for separate lists
36189 of subscribed-to newsgroups. When this feature is not set, there is only
36190 one list of newsgroups.
36192 Under this feature, the name of a newsrc is based on the news server.
36193 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
36194 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
36195 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
36196 Setting this feature for the first time will allow for the option of using
36197 your old newsrc the next time you read news.
36199 If this feature is set, then the feature
36200 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
36201 also may affect the name of the newsrc file that is used.
36203 <UL>   
36204 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36205 </UL><P>
36206 &lt;End of help on this topic&gt;
36207 </BODY>
36208 </HTML>
36209 ======= h_ab_export_vcard =======
36210 <HTML>
36211 <HEAD>
36212 <TITLE>Address Book Export Format</TITLE>
36213 </HEAD>
36214 <BODY>
36215 <H1>Address Book Export Format</H1>
36217 You are exporting address book data from Alpine to a file outside of Alpine.
36218 You are being asked to choose the format of the export.
36219 Here are the choices:
36221 <DL>
36222 <DT><EM>A</EM>ddress List</DT>
36223 <DD>
36224 The addresses from the address book entries you are saving
36225 from will be saved one address per line.
36226 Address book lists (those with more than one address) will have
36227 all of their addresses saved separately.
36228 </DD>
36230 <DT><EM>V</EM>Card</DT>
36231 <DD>
36232 The entries will be saved in
36233 <A HREF="h_whatis_vcard">vCard</A> format.
36234 </DD>
36236 <DT><EM>T</EM>ab Separated</DT>
36237 <DD>
36238 The entries will be saved in tab-separated columns.
36239 There will be just 4 columns of data that correspond to Alpine's
36240 Nickname field, Full Name field, Address field, and Comment field.
36241 It might prove useful to Select only the Simple, non-List address book
36242 entries before Saving.
36243 </DD>
36245 <DT><EM>^C</EM> Cancel</DT>
36246 <DD>
36247 Cancel out of the Save.
36248 </DD>
36250 </DL>
36254 &lt;End of help on this topic&gt;
36255 </BODY>
36256 </HTML>
36257 ====== h_config_predict_nntp_server =====
36258 <HTML>
36259 <HEAD>
36260 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
36261 </HEAD>
36262 <BODY>
36263 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
36265 This feature allows Alpine to assume that the open NNTP server at the
36266 time of composition is the NNTP server to which the message should be
36267 posted.  This is especially recommended when there are multiple News
36268 collections.  If this feature is not set, Alpine will try to post to the first server in
36269 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
36270 this feature also negates the need to add News collection servers to
36271 the <!--#echo var="VAR_nntp-server"--> variable.
36273 This feature can be especially handy when used in conjunction with
36274 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
36276 <UL>   
36277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36278 </UL><P>
36279 &lt;End of help on this topic&gt;
36280 </BODY>
36281 </HTML>
36282 ====== h_config_nntp_search_uses_overview =====
36283 <HTML>
36284 <HEAD>
36285 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
36286 </HEAD>
36287 <BODY>
36288 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
36290 This feature should probably be turned on unless it causes trouble.
36291 The results of the NNTP overview command (XOVER) may be used to help
36292 with some searches in news groups.
36293 It should result in quicker response time.
36294 Turning this feature on apparently causes search results which are
36295 different from what you would get with the feature turned off on some
36296 servers.
36298 <UL>   
36299 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36300 </UL><P>
36301 &lt;End of help on this topic&gt;
36302 </BODY>
36303 </HTML>
36304 ====== h_config_thread_sorts_by_arrival =====
36305 <HTML>
36306 <HEAD>
36307 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
36308 </HEAD>
36309 <BODY>
36310 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
36312 This feature affects how a threading sort arranges threads.  The default way
36313 to arrange threads is by the date of the earliest message in the thread.
36314 This feature arranges threads by the last message to arrive in a thread.
36316 This feature causes old threads that get recent messages to sort to the bottom,
36317 where previously a message arrival to a thread would not rearrange the order of
36318 that thread.
36320 <UL>   
36321 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36322 </UL><P>
36323 &lt;End of help on this topic&gt;
36324 </BODY>
36325 </HTML>
36326 ====== h_config_textplain_int =====
36327 <HTML>
36328 <HEAD>
36329 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
36330 </HEAD>
36331 <BODY>
36332 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
36334 This feature modifies the method Alpine uses to display Text/Plain
36335 MIME attachments from the Attachment Index screen.  Normally, the
36336 &quot;View&quot; command searches for any externally defined (usually
36337 via the
36338 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
36339 and displays the selected text within that viewer.
36342 Enabling this feature causes Alpine to ignore any external viewer
36343 settings and always display text with Alpine's internal viewer.
36346 <UL>   
36347 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36348 </UL><P>
36349 &lt;End of help on this topic&gt;
36350 </BODY>
36351 </HTML>
36352 ====== h_config_wp_columns =====
36353 <HTML>
36354 <HEAD>
36355 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
36356 </HEAD>
36357 <BODY>
36358 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
36360 Web Alpine only.
36362 This configuration setting specifies the number of horizontal characters
36363 used to format various WebAlpine pages.  Smaller values will tend to reduce
36364 the amount of horizontal scrolling required to view pages within narrow
36365 browsers, such as those found on PDAs, and larger values will tend to 
36366 spread more information across the page.
36369 The Message List page uses the width to determine how many characters
36370 to assign each field.  Note, a smaller value may result in a disproportionate
36371 amount of blank space between fields on each line.  Similarly, a large
36372 value may result in cramped fields or horizontal scrolling.
36375 The Message View page uses this value to determine when to wrap lines
36376 in displayed message text.  Note, a smaller value may result in jagged
36377 right margins or confusing quoting.  A larger value may cause lines of text to
36378 run beyond the browser's right edge, requiring horizontal scrolling.
36381 <UL>   
36382 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36383 </UL><P>
36384 &lt;End of help on this topic&gt;
36385 </BODY>
36386 </HTML>
36387 ====== h_config_wp_state =====
36388 <HTML>
36389 <HEAD>
36390 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
36391 </HEAD>
36392 <BODY>
36393 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
36395 Web Alpine only.
36397 Various aspects of cross-session state.
36400 <UL>   
36401 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36402 </UL><P>
36403 &lt;End of help on this topic&gt;
36404 </BODY>
36405 </HTML>
36406 ====== h_config_wp_aggstate =====
36407 <HTML>
36408 <HEAD>
36409 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
36410 </HEAD>
36411 <BODY>
36412 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
36414 Web Alpine only.
36416 Aggregate operations tab state.
36419 <UL>   
36420 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36421 </UL><P>
36422 &lt;End of help on this topic&gt;
36423 </BODY>
36424 </HTML>
36425 ====== h_config_wp_indexlines =====
36426 <HTML>
36427 <HEAD>
36428 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36429 </HEAD>
36430 <BODY>
36431 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36433 Web Alpine only.
36435 Number of index lines in table.
36438 <UL>   
36439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36440 </UL><P>
36441 &lt;End of help on this topic&gt;
36442 </BODY>
36443 </HTML>
36444 ====== h_config_wp_indexheight =====
36445 <HTML>
36446 <HEAD>
36447 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36448 </HEAD>
36449 <BODY>
36450 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36452 Web Alpine only.
36454 Index table row height.
36457 <UL>   
36458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36459 </UL><P>
36460 &lt;End of help on this topic&gt;
36461 </BODY>
36462 </HTML>
36463 ====== h_config_rss_news =====
36464 <HTML>
36465 <HEAD>
36466 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36467 </HEAD>
36468 <BODY>
36469 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36471 Web Alpine only.
36473 RSS News feed.
36476 <UL>   
36477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36478 </UL><P>
36479 &lt;End of help on this topic&gt;
36480 </BODY>
36481 </HTML>
36482 ====== h_config_rss_weather =====
36483 <HTML>
36484 <HEAD>
36485 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36486 </HEAD>
36487 <BODY>
36488 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36490 Web Alpine only.
36492 RSS Weather feed.
36495 <UL>   
36496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36497 </UL><P>
36498 &lt;End of help on this topic&gt;
36499 </BODY>
36500 </HTML>
36501 ====== h_config_send_confirms_only_expanded =====
36502 <HTML>
36503 <HEAD>
36504 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36505 </HEAD>
36506 <BODY>
36507 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36509 This Web Alpine option specifies whether or not a Send confirmations
36510 happens when a composed message is readied for sending or not.  The
36511 default behavior is to not confirm that the nicknames were expanded to
36512 the intended addresses.
36515 <UL>   
36516 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36517 </UL><P>
36518 &lt;End of help on this topic&gt;
36519 </BODY>
36520 </HTML>
36521 ====== h_config_enable_jump_command =====
36522 <HTML>
36523 <HEAD>
36524 <TITLE>FEATURE: enable-jump-command</TITLE>
36525 </HEAD>
36526 <BODY>
36527 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36529 This Web Alpine option specifies whether or not a Jump command is
36530 offered in the Message List and Message View pages.  The command is
36531 implemented as an input field in the left column of the List and View
36532 screens. 
36535 When enabled and a number is entered in the input field while the
36536 Message List is displayed, the Message List is reframed with the
36537 specified message.  While viewing a message, the message associated
36538 with the specified message number is displayed.
36541 <UL>   
36542 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36543 </UL><P>
36544 &lt;End of help on this topic&gt;
36545 </BODY>
36546 </HTML>
36547 ====== h_config_enable_newmail_sound =====
36548 <HTML>
36549 <HEAD>
36550 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36551 </HEAD>
36552 <BODY>
36553 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36555 This Web Alpine option specifies whether or not a sound file is sent
36556 to the web browser along with the newmail notification message.
36560 <UL>   
36561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36562 </UL><P>
36563 &lt;End of help on this topic&gt;
36564 </BODY>
36565 </HTML>
36566 ====== h_config_render_html_internally =====
36567 <HTML>
36568 <HEAD>
36569 <TITLE>FEATURE: render-html-internally</TITLE>
36570 </HEAD>
36571 <BODY>
36572 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36574 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36575 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36576 the HTML text into plain text in the same way Unix and PC-Alpine do.
36580 <UL>   
36581 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36582 </UL><P>
36583 &lt;End of help on this topic&gt;
36584 </BODY>
36585 </HTML>
36586 ====== h_config_role_undo =====
36587 Yes, remember changes and exit back to list of roles; No, discard changes
36588 made in this screen; ^C, cancel exit and stay in this config screen.
36589 ====== h_exit_editor =====
36590 S, save changes and exit from the editor; D, do not save changes but
36591 do exit from the editor; or ^C, cancel exit and stay in the editor.
36592 ====== h_config_undo =====
36593 Yes, save changes and exit; No, exit without saving any changes made since
36594 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36595 ====== h_os_index_whereis =====
36596 Enter ^V or ^Y to go immediately to the last or first message in the index.
36597 Or, enter the match string followed by RETURN.
36598 ====== h_os_index_whereis_agg =====
36599 Enter ^V or ^Y to go immediately to the last or first message in the index,
36600 Or, enter the match string followed by RETURN (or ^X to select all matches).
36601 =========== h_oe_add_full ==================
36602 Type the full name of the person being added and press the RETURN key.
36603 Press ^C to cancel addition.
36604 =========== h_oe_add_nick ==================
36605 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36606 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36607 ========== h_oe_add_addr ================
36608 Type the e-mail address and press RETURN.
36609 Press ^C to cancel addition.
36610 ========== h_oe_crlst_full ==============
36611 Type a long name or description for the list that you are creating and
36612 press RETURN.  Press ^C to cancel creation of list.
36613 =========== h_oe_crlst_nick =============
36614 Type a nickname (short, easy-to-remember name or single word) for the list
36615 you are creating and press RETURN.  Press ^C to cancel.
36616 ========== h_oe_crlst_addr ==============
36617 Type an e-mail address, or a nickname already in the address book that you
36618 want to be part of this list and press RETURN.
36619 ========== h_oe_adlst_addr =============
36620 Type an e-mail address or a nickname already in the address book that you
36621 want to add to this list and press RETURN.
36622 ========== h_oe_editab_nick ============
36623 Change the nickname using the arrow keys and delete key.  Press RETURN
36624 when done.  Press ^C to cancel editing and leave the nickname as it was.
36625 ========== h_oe_editab_full ============
36626 Change the full name using the arrow keys and delete key.  Press RETURN
36627 when done.  Press ^C to cancel editing and leave the full name as it was.
36628 ========== h_oe_editab_addr ============
36629 Change the address using the arrow keys and delete key.  Press RETURN
36630 when done.  Press ^C to cancel editing and leave the address as it was.
36631 ========== h_oe_editab_fcc ============
36632 Change the fcc using the arrow keys and delete key.  Press RETURN when
36633 done.  Press ^C to cancel editing and leave the fcc as it was.
36634 ========== h_oe_editab_comment ============
36635 Change the comment field using the arrow keys and delete key.  Press RETURN
36636 when done.  Press ^C to cancel editing and leave the comment as it was.
36637 ====== h_ab_forward =====
36638 Yes, expand nicknames and qualify local names with your current domain name;
36639 No, leave nicknames and local names as is;  ^C, cancel.
36640 ========== h_ab_export ==========
36641 Type the name of a file to write the addresses into and
36642 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36643 ========== h_ab_edit_a_field ==========
36644 Edit any of the fields of the currently selected entry by typing one of the
36645 letters at the bottom of the screen.  Press ^C to cancel edit.
36646 ====== h_ab_del_data_revert =====
36647 Press B to completely delete addrbook and revert to default, C to delete config
36648 and revert while leaving data, or D to only delete data (make it empty).
36649 ====== h_ab_del_data_modify =====
36650 Press B to completely delete addrbook, C to delete configuration while leaving
36651 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36652 ====== h_ab_del_config_modify =====
36653 Yes, remove this address book from my configuration.
36654 No, make no changes now.
36655 ====== h_ab_del_config_revert =====
36656 Yes, remove this address book from my config and revert to default.
36657 No, make no changes now.
36658 ====== h_ab_del_default =====
36659 Yes, remove this default address book from my configuration.
36660 No, make no changes now.
36661 ====== h_ab_really_delete =====
36662 Yes, delete the actual contents of the address book, not just the 
36663 configuration.  No, don't delete the data after all, cancel and start over.
36664 ====== h_ab_del_ignore =====
36665 Press I to ignore all the default address books for this category.  Press R to
36666 remove this one address book and add the others to your personal list.
36667 ====== h_ab_del_dir_ignore =====
36668 Press I to ignore all the default directory servers for this category.
36669 Press R to remove this one server and add the others to your personal list.
36670 ====== h_ab_copy_dups =====
36671 Yes, overwrite the existing entry.
36672 No, skip duplicates but save the rest. Press ^C to cancel.
36673 ====== h_confirm_cancel =====
36674 Type C to Confirm that you want to abandon the message you are composing.
36675 Type N or ^C to cancel out of the cancel and keep composing.
36676 ====== h_ab_text_or_vcard =====
36677 Text, start composer with displayed text already included.
36678 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36679 ====== h_ab_backup_or_ldap =====
36680 Backup, copy email address from entry and allow editing of it.
36681 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36682 ====== h_ldap_text_or_vcard =====
36683 Text: export displayed text for selected entry. Address: export only the
36684 email address. VCard: export entry in vCard format. ^C cancels.
36685 ====== h_ab_save_exp =====
36686 Save, save entry or entries to an address book.
36687 Export, save to file outside of pine. ^C cancels save.
36688 ====== h_ab_add =====
36689 A, add a brand new entry to this address book.
36690 E, edit the entry that is currently highlighted. ^C to cancel.
36691 ====== h_ab_shuf =====
36692 U, swap order of highlighted address book and the one above it.
36693 D, swap order of highlighted address book and the one below it. ^C to cancel.
36694 ====== h_ab_shuf_up =====
36695 U, swap order of highlighted address book and the one above it.
36696 Press ^C to cancel.
36697 ====== h_ab_shuf_down =====
36698 D, swap order of highlighted address book and the one below it.
36699 Press ^C to cancel.
36700 ====== h_folder_prop =====
36701 Count is # of messages in the folder, Unseen means messages that have not
36702 been read, New means messages that were Recently added to the folder.
36703 ====== h_role_shuf =====
36704 U, swap order of highlighted rule and the one above it.
36705 D, swap order of highlighted rule and the one below it. ^C to cancel.
36706 ====== h_role_shuf_up =====
36707 U, swap order of highlighted rule and the one above it.
36708 Press ^C to cancel.
36709 ====== h_role_shuf_down =====
36710 D, swap order of highlighted rule and the one below it.
36711 Press ^C to cancel.
36712 ====== h_incoming_shuf =====
36713 B, swap order of highlighted directory and the one before it.
36714 F, swap order of highlighted directory and the one after it. ^C to cancel.
36715 ====== h_incoming_shuf_up =====
36716 B, swap order of highlighted directory and the one before it.
36717 Press ^C to cancel.
36718 ====== h_incoming_shuf_down =====
36719 F, swap order of highlighted directory and the one after it.
36720 Press ^C to cancel.
36721 ====== h_dir_shuf =====
36722 U, swap order of highlighted directory and the one above it.
36723 D, swap order of highlighted directory and the one below it. ^C to cancel.
36724 ====== h_dir_shuf_up =====
36725 U, swap order of highlighted directory and the one above it.
36726 Press ^C to cancel.
36727 ====== h_dir_shuf_down =====
36728 D, swap order of highlighted directory and the one below it.
36729 Press ^C to cancel.
36730 ====== h_hdrcolor_shuf =====
36731 U, swap order of highlighted Header Color and the one above it.
36732 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36733 ====== h_hdrcolor_shuf_up =====
36734 U, swap order of highlighted Header Color and the one above it.
36735 Press ^C to cancel.
36736 ====== h_hdrcolor_shuf_down =====
36737 D, swap order of highlighted Header Color and the one below it.
36738 Press ^C to cancel.
36739 ========== h_oe_editab_al ============
36740 Change the address using the arrow keys and delete key.  Press RETURN
36741 when done.  Press ^C to cancel editing and leave the address as it was.
36742 ========== h_dir_comp_search ===============
36743 Type a string to look for just like you would in the composer. Your configured
36744 rules for the servers with the implicit flag set will be used.
36745 ========== h_oe_searchab ===============
36746 Type the word or name you want to search for and press RETURN.  If you press
36747 RETURN without entering anything the word in [] will be searched for.
36748 ========== h_oe_chooseabook ==========
36749 Choose the address book you want to save the new entry in.
36750 Use ^N or ^P to change address books.  ^C to cancel.
36751 ========== h_oe_takeaddr ==========
36752 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36753 when done.  Press ^C to cancel adding this entry to the address book.
36754 ========== h_oe_take_replace ==========
36755 Press R to replace the old entry with this new data.  You will still have
36756 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36757 ========== h_oe_take_replace_or_add ==========
36758 Press R to replace the old entry.  Press A to add the selected addresses to
36759 the old existing list.  N to enter another nickname. ^C to cancel now.
36760 ========== h_oe_takename ==========
36761 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36762 when done.  Press ^C to cancel adding this entry to the address book.
36763 ========== h_oe_takenick ==========
36764 Type a nickname (short easy-to-remember name, initials or single word) for this
36765 entry in the address book and press RETURN.  Press ^C to cancel addition.
36766 ========== h_oe_jump ==========
36767 Type the message number you want to jump to and press RETURN.  The word "end"
36768 represents the last message. Press ^C to cancel jumping to another message.
36769 ========== h_oe_jump_thd ==========
36770 Type the thread number you want to jump to and press RETURN.  The word "end"
36771 represents the last thread. Press ^C to cancel jumping to another thread.
36772 ========== h_oe_debuglevel ==========
36773 Higher number shows more debugging details.
36774 Press ^C if you want to cancel the change.
36775 ========== h_oe_broach ==========
36776 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36777 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36778 ========== h_oe_foldsearch ==========
36779 Type the text you want to search for in foldernames and press RETURN.  If you
36780 press RETURN without entering anything, any text in [] will be searched for.
36781 ========== h_oe_foldrename ==========
36782 Change the old name of the folder to the new name using the arrow and
36783 delete keys and press RETURN.  Press ^C to cancel rename.
36784 ========== h_oe_login ==========
36785 Enter your login name for the host you are opening the mailbox on.  Just press
36786 RETURN to use your login from this host as is, or edit it with delete key.
36787 ========== h_oe_passwd ==========
36788 Type your password for the host and login shown as part of the prompt.
36789 Press ^C to cancel opening folder.
36790 ========== h_oe_choosep ==========
36791 Enter the number associated with the printer you want to select.  Press ^C to
36792 cancel the printer selection.  The current selection is highlighted.
36793 ========== h_oe_customp ==========
36794 Type the name of the Unix print command and press RETURN.  Press ^C to
36795 cancel the printer selection.
36796 ========== h_oe_searchview ==========
36797 Type the word or name you want to search for and press RETURN.  If you press
36798 RETURN without entering anything the word in [] will be searched for.
36799 ========== h_oe_keylock ==========
36800 The keyboard is in use and locked by another user.  Only that user can
36801 unlock this keyboard by typing the password.
36802 ========== h_wt_expire ==========
36803 At the beginning of each month Alpine offers to rename your current sent-mail
36804 folder to one named for the month so you have a sent-mail folder for each month
36805 ========== h_wt_delete_old ==========
36806 It is the beginning of the month, and we need to conserve disk
36807 space.  Please delete any sent-mail that you do not need.
36808 ========== h_select_sort ==========
36809 Select the order for sorting the index by typing the capitalized letter.
36810 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36811 ========== h_no_F_arg ============
36812 Enter name of file to be opened.
36814 ========== h_sticky_personal_name ==========
36815 Type in your name as you want it to appear on outgoing email.  This entry
36816 will be saved into your Alpine configuration file.
36817 ========== h_sticky_inbox ============
36818 INBOX syntax is usually {complete.machine.name}INBOX
36819 This entry will be saved in your Alpine configuration file.
36820 ========== h_sticky_smtp ============
36821 The name of the computer on your campus that relays your outgoing email
36822 to the Internet.  This entry will be saved in your Alpine configuration file.
36823 ========== h_sticky_user_id ==========
36824 The username or login-id part of your email address.  This entry will be
36825 saved in your Alpine configuration file.
36826 ========== h_sticky_domain ==========
36827 The domain part of your email address, NOT the name of your PC.  This
36828 entry will be saved in your Alpine configuration file.
36829 ========== h_bounce =========
36830 Enter the address or nickname of the intended recipient.  Alpine will resend
36831 the message, which will retain the original author's From: address.
36832 ========== h_incoming_add_folder_nickname =========
36833 Enter an (optional) nickname that will be used in lieu of the actual
36834 host and folder names in the FOLDER LIST display.
36835 ========== h_anon_forward ==========
36836 Enter the address of your intended recipient, or ^C to cancel.
36837 Example: jsmith@somewhere.edu
36838 ========== h_news_subscribe ==========
36839 Enter the name of the newsgroup to which you wish to subscribe,
36840 or ^C to cancel.  Example: comp.mail.pine
36841 ========== h_pipe_msg ==========
36842 Enter the name of the Unix command to which you wish to send this
36843 message, or ^C to cancel.
36844 ========== h_pipe_attach ==========
36845 Enter the name of the Unix command to which you wish to send this
36846 attachment, or ^C to cancel.
36847 ========== h_select_by_num ==========
36848 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36849 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36850 ========== h_select_by_thrdnum ==========
36851 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36852 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36853 ========== h_select_txt_from ==========
36854 Messages with From: headers containing the entered string will be selected.
36855 ^C to cancel. ^G again to see original options.
36856 ========== h_select_txt_not_from ==========
36857 Messages without From: headers containing the entered string will be selected.
36858 ^C to cancel. ^G again to see original options.
36859 ========== h_select_txt_to ==========
36860 Messages with To: headers containing the entered string will be selected.
36861 ^C to cancel. ^G again to see original options.
36862 ========== h_select_txt_not_to ==========
36863 Messages without To: headers containing the entered string will be selected.
36864 ^C to cancel. ^G again to see original options.
36865 ========== h_select_txt_cc ==========
36866 Messages with Cc: headers containing the entered string will be selected.
36867 ^C to cancel. ^G again to see original options.
36868 ========== h_select_txt_not_cc ==========
36869 Messages without Cc: headers containing the entered string will be selected.
36870 ^C to cancel. ^G again to see original options.
36871 ========== h_select_txt_subj ==========
36872 Messages with Subject: headers containing the entered string will be selected.
36873 ^C to cancel.  ^X enters Subject: line of current message.
36874 ========== h_select_txt_not_subj ==========
36875 Messages without Subject headers containing the entered string will be selected.
36876 ^C to cancel.  ^X enters Subject: line of current message.
36877 ========== h_select_txt_all ==========
36878 All messages containing the entered string will be selected.  Headers and body,
36879 but not encoded attachments, will be compared.  Enter ^C to cancel.
36880 ========== h_select_txt_not_all ==========
36881 All messages that don't contain the entered string will be selected.  Headers
36882 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
36883 ========== h_select_txt_body ==========
36884 All messages containing the entered string will be selected. Body text, but
36885 not headers or encoded attachments, will be compared. ^C to cancel.
36886 ========== h_select_txt_not_body ==========
36887 All messages that don't contain the entered string will be selected. Body
36888 text, but not headers or encoded attachments, will be compared. ^C to cancel.
36889 ========== h_select_txt_recip ==========
36890 Messages with Cc: or To: headers containing the entered string will be selected.
36891 ^C to cancel. ^G again to see original options.
36892 ========== h_select_txt_not_recip ==========
36893 Messages without Cc: or To: headers containing the string will be selected.
36894 ^C to cancel. ^G again to see original options.
36895 ========== h_select_txt_partic ==========
36896 Messages with Cc, To, or From headers containing the string will be selected.
36897 ^C to cancel. ^G again to see original options.
36898 ========== h_select_txt_not_partic ==========
36899 Messages without Cc, To, or From headers containing the string will be selected.
36900 ^C to cancel. ^G again to see original options.
36901 ========== h_select_date ==========
36902 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
36903 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
36904 ========== h_attach_index_whereis ==========
36905 Enter some text that appears in the Attachment Index entry for the desired
36906 attachment.  The first attachment containing that text will be highlighted.
36907 ========== h_kb_lock ==========
36908 Keystrokes entered here (up to a RETURN) comprise a password that must
36909 be entered again later in order to unlock the keyboard.
36910 ========== h_compose_default ==========
36911 N, compose a new message. R, set a role.
36912 ^C to cancel.
36913 ========== h_untranslatable ==========
36914 Send using UTF-8 character set; Send but replace untranslatable characters
36915 with question marks; return to the composer; or cancel message altogether.
36916 ========== h_compose_intrptd ==========
36917 N, compose a new msg. I, continue interrupted msg. R, set a role.
36918 ^C to cancel.
36919 ========== h_compose_postponed ==========
36920 N, compose a new message. P, continue postponed msg. R, set a role.
36921 ^C to cancel.
36922 ========== h_compose_intrptd_postponed ==========
36923 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36924 R, set a role. ^C to cancel.
36925 ========== h_compose_form ==========
36926 N, compose a new message. F, use form letter. R, set a role.
36927 ^C to cancel.
36928 ========== h_compose_intrptd_form ==========
36929 N, compose a new msg. I, continue interrupted msg. F, use form letter.
36930 R, set a role. ^C to cancel.
36931 ========== h_compose_postponed_form ==========
36932 N, compose a new message. P, continue postponed msg. F, use form letter.
36933 R, set a role. ^C to cancel.
36934 ========== h_compose_intrptd_postponed_form ==========
36935 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36936 F, use form letter. R, set a role. ^C to cancel.
36937 ========== h_config_context_del_except ==========
36938 If you delete the last exceptional collection you can only add it back by
36939 manually editing the exceptions config file.
36940 ========== h_config_whereis ==========
36941 To move quickly to a particular line, enter a search string or
36942 ^C to cancel.
36943 ========== h_config_edit_scorei ==========
36944 Enter interval in the form (min,max). -INF and INF may be used to represent
36945 -infinity and infinity. ^C to cancel change. RETURN to accept change.
36946 ========== h_config_add ==========
36947 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
36948 pressing RETURN sets the Empty Value (this turns off any global default).
36949 ========== h_config_add_custom_color ==========
36950 Enter a header fieldname. For example, "subject" or "from".
36952 ========== h_config_add_pat_hdr ==========
36953 Enter a header fieldname. For example, "reply-to" or "organization" or
36954 any fieldname you want that isn't included already.
36955 ========== h_config_print_opt_choice ==========
36956 You may edit either the initialization string (characters printed before
36957 printing starts) or the trailer string.  Choose one or ^C to cancel.
36958 ========== h_config_print_init ==========
36959 Enter a C-style string for this.  You may use common backslash escapes like
36960 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
36961 ========== h_config_change ==========
36962 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
36963 delete current (highlighted) character, etc.  Enter ^C to cancel change.
36964 ========== h_config_replace_add ==========
36965 Replace ignores the current default, Add places the current default in your
36966 editing buffer as if you had typed it in.
36967 ========== h_config_insert_after ==========
36968 Enter a nickname for this print command.  (InsertBefore puts the new item
36969 before the current line, InsertAfter puts it after the current line.)
36970 ========== h_config_print_cmd ==========
36971 Enter command to be executed for the printer.  Use normal editing keys
36972 to modify, ^C to cancel, carriage return to accept current value.
36973 ========== h_config_role_del ==========
36974 Answering Yes will remove this rule completely from your rules list.
36975 ========== h_config_role_addfile ==========
36976 Type the name of a file to add to your configuration. You don't need to
36977 use a file, you may add rules directly (with Add) without using a file.
36978 ========== h_config_role_delfile ==========
36979 Answering Yes will remove this rule file completely from your rules list.
36980 The rules data file itself will not be removed.
36981 ========== h_config_print_del ==========
36982 Answering Yes will remove this printer completely from your printer list.
36983 ========== h_config_print_name_cmd ==========
36984 You may edit the Nickname of this printer, the Command to be executed when
36985 printing, or change the Options associated with this printer.
36986 ========== h_send_check_fcc ==========
36987 Yes, send message without an Fcc.
36988 No, return to composer.
36989 ========== h_send_check_subj ==========
36990 Yes, send message without a Subject.
36991 No, return to composer.
36992 ========== h_send_check_to_cc ==========
36993 Yes, send message without a To address, or a Cc address, or a Newsgroup.
36994 No, return to composer.
36995 ========== h_send_fcc_only ==========
36996 Yes, copy message to Fcc only and send to NO recipients.
36997 No, return to composer.
36998 ========== h_send_prompt ==========
36999 Yes, send the message.
37000 No or ^C, return to composer.
37001 ========== h_send_prompt_flowed ==========
37002 Yes, send the message.  No or ^C, return to composer.
37003 What's Flowed? See Do Not Send Flowed Text in config screen.
37004 ========== h_send_prompt_dsn ==========
37005 Yes, send the message.  No or ^C, return to composer.
37006 What's DSNOpts? See Enable Delivery Status Notification in config screen.
37007 ========== h_send_prompt_dsn_flowed ==========
37008 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
37009 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
37010 ========== h_role_confirm ==========
37011 Yes, use displayed role. No, compose without a role.
37012 ^C, cancel the message. ^T, select a role from your other eligible roles.
37013 ========== h_norole_confirm ==========
37014 Return, compose without a role.
37015 ^C, cancel the message. ^T, select a role from your eligible roles.
37016 ========== h_custom_print ==========
37017 Enter a Unix command that accepts its data on standard input.
37018 Alpine will display any information the command sends to standard output.
37019 ========== h_convert_abooks_and_sigs ==========
37020 You will be given the opportunity to convert address books and signature files
37021 to remote configurations.
37022 ========== h_convert_abooks ==========
37023 You will be given the opportunity to convert address books to remote
37024 configurations.
37025 ========== h_flag_keyword ==========
37026 Enter the name of the keyword you want to add for this folder.
37027 No spaces, parentheses, braces, percents or asterisks are allowed.
37028 ========== h_select_keyword ==========
37029 Enter the keyword you want to match, or use ^T to select a keyword from a list
37030 of possible keywords for this folder. Use ! to look for non-matches instead.
37031 ========== h_type_keyword ==========
37032 Enter the keyword you want to add. You may add a nickname in the next step.
37033 No spaces, parentheses, braces, percents or asterisks are allowed.
37034 ========== h_type_keyword_nickname ==========
37035 Enter an optional nickname for the keyword you want to add.
37036 Type Carriage return to use the keyword name instead of a nickname.
37037 ========== h_convert_sigs ==========
37038 You will be given the opportunity to convert signature files to remote
37039 configurations.
37040 ========== h_convert_abook ==========
37041 Yes is fairly safe. You will be ADDing a remote address book that is a copy
37042 of the current address book. The current abook won't be removed automatically.
37043 ========== h_convert_sig ==========
37044 Answering Yes copies the contents of the signature file into your Alpine
37045 configuration file. After that, the contents of the file will not be used.
37046 ========== h_save_addman ==========
37047 Enter the simple name of the folder you want to add. Carriage return to
37048 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
37049 ========== h_reopen_folder ==========
37050 Yes reopens the folder, as if you were starting over. This uncovers new mail.
37051 No leaves the folder index as it was without discovering new mail.
37052 ========== h_convert_pinerc_server ==========
37053 This is the name of the host (computer) where the remote Alpine configuration
37054 will be stored. This should be an IMAP server that you have permission to use.
37055 ========== h_convert_pinerc_folder ==========
37056 Enter the correct remote folder name. This folder is special and should
37057 contain only configuration data. It shouldn't contain other mail messages.
37058 ========== h_role_compose ==========
37059 Compose a New message, Reply to current message, Forward current message, or
37060 Bounce message. Then you will be asked to choose one of your Roles to be used.
37061 ========== h_role_aggregate ==========
37062 Compose a reply, or forward, or bounce the selected messages. Then you 
37063 will be asked to choose one of your Roles to be used for this operation.
37064 ========== h_save_size_changed ==========
37065 The reported size of a message is not the same as the actual size. Answer Yes
37066 to continue and hope for the best or No to Cancel the entire Save.
37067 ========== h_select_by_larger_size ==========
37068 Enter a number or ^C to cancel. All messages greater than this many characters
37069 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37070 ========== h_select_by_smaller_size ==========
37071 Enter a number or ^C to cancel. All messages less than this many characters
37072 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37073 ========== h_preserve_field ==========
37074 Use 'p' to toggle between preserving or not preserving the original To:
37075 and Cc: fields of the message. Enter ^C to cancel message.